blob: 58b94348c95ca6c942e955644edc28253ebffbd0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Pantelis Antoniouc6631762013-03-14 05:32:52 +00002/*
3 * dfu_nand.c -- DFU for NAND routines.
4 *
5 * Copyright (C) 2012-2013 Texas Instruments, Inc.
6 *
7 * Based on dfu_mmc.c which is:
8 * Copyright (C) 2012 Samsung Electronics
9 * author: Lukasz Majewski <l.majewski@samsung.com>
Pantelis Antoniouc6631762013-03-14 05:32:52 +000010 */
11
12#include <common.h>
13#include <malloc.h>
14#include <errno.h>
15#include <div64.h>
16#include <dfu.h>
17#include <linux/mtd/mtd.h>
18#include <jffs2/load_kernel.h>
19#include <nand.h>
20
Afzal Mohammed5a127c82013-09-18 01:14:50 +053021static int nand_block_op(enum dfu_op op, struct dfu_entity *dfu,
Pantelis Antoniouc6631762013-03-14 05:32:52 +000022 u64 offset, void *buf, long *len)
23{
24 loff_t start, lim;
25 size_t count, actual;
26 int ret;
Scott Wood151c06e2016-05-30 13:57:54 -050027 struct mtd_info *mtd;
Pantelis Antoniouc6631762013-03-14 05:32:52 +000028
29 /* if buf == NULL return total size of the area */
30 if (buf == NULL) {
31 *len = dfu->data.nand.size;
32 return 0;
33 }
34
35 start = dfu->data.nand.start + offset + dfu->bad_skip;
36 lim = dfu->data.nand.start + dfu->data.nand.size - start;
37 count = *len;
38
Grygorii Strashko16520182017-06-26 19:12:53 -050039 mtd = get_nand_dev_by_index(nand_curr_device);
40
Pantelis Antoniouc6631762013-03-14 05:32:52 +000041 if (nand_curr_device < 0 ||
42 nand_curr_device >= CONFIG_SYS_MAX_NAND_DEVICE ||
Grygorii Strashko16520182017-06-26 19:12:53 -050043 !mtd) {
Pantelis Antoniouc6631762013-03-14 05:32:52 +000044 printf("%s: invalid nand device\n", __func__);
45 return -1;
46 }
47
Heiko Schochera67cc372013-06-24 18:50:40 +020048 if (op == DFU_OP_READ) {
Scott Wood151c06e2016-05-30 13:57:54 -050049 ret = nand_read_skip_bad(mtd, start, &count, &actual,
50 lim, buf);
Heiko Schochera67cc372013-06-24 18:50:40 +020051 } else {
52 nand_erase_options_t opts;
Guillermo Rodríguez13cb7cc2019-12-16 16:27:57 +010053 int write_flags = WITH_WR_VERIFY;
Heiko Schochera67cc372013-06-24 18:50:40 +020054
55 memset(&opts, 0, sizeof(opts));
56 opts.offset = start;
57 opts.length = count;
58 opts.spread = 1;
59 opts.quiet = 1;
60 opts.lim = lim;
61 /* first erase */
Scott Wood151c06e2016-05-30 13:57:54 -050062 ret = nand_erase_opts(mtd, &opts);
Heiko Schochera67cc372013-06-24 18:50:40 +020063 if (ret)
64 return ret;
65 /* then write */
Guillermo Rodríguez13cb7cc2019-12-16 16:27:57 +010066#ifdef CONFIG_DFU_NAND_TRIMFFS
67 if (dfu->data.nand.ubi)
68 write_flags |= WITH_DROP_FFS;
69#endif
Scott Wood151c06e2016-05-30 13:57:54 -050070 ret = nand_write_skip_bad(mtd, start, &count, &actual,
Guillermo Rodríguez13cb7cc2019-12-16 16:27:57 +010071 lim, buf, write_flags);
Heiko Schochera67cc372013-06-24 18:50:40 +020072 }
Pantelis Antoniouc6631762013-03-14 05:32:52 +000073
74 if (ret != 0) {
75 printf("%s: nand_%s_skip_bad call failed at %llx!\n",
76 __func__, op == DFU_OP_READ ? "read" : "write",
77 start);
78 return ret;
79 }
80
81 /*
82 * Find out where we stopped writing data. This can be deeper into
83 * the NAND than we expected due to having to skip bad blocks. So
84 * we must take this into account for the next write, if any.
85 */
86 if (actual > count)
87 dfu->bad_skip += actual - count;
88
89 return ret;
90}
91
92static inline int nand_block_write(struct dfu_entity *dfu,
93 u64 offset, void *buf, long *len)
94{
95 return nand_block_op(DFU_OP_WRITE, dfu, offset, buf, len);
96}
97
98static inline int nand_block_read(struct dfu_entity *dfu,
99 u64 offset, void *buf, long *len)
100{
101 return nand_block_op(DFU_OP_READ, dfu, offset, buf, len);
102}
103
104static int dfu_write_medium_nand(struct dfu_entity *dfu,
105 u64 offset, void *buf, long *len)
106{
107 int ret = -1;
108
109 switch (dfu->layout) {
110 case DFU_RAW_ADDR:
111 ret = nand_block_write(dfu, offset, buf, len);
112 break;
113 default:
114 printf("%s: Layout (%s) not (yet) supported!\n", __func__,
115 dfu_get_layout(dfu->layout));
116 }
117
118 return ret;
119}
120
Patrick Delaunay15970d82017-07-19 16:39:23 +0200121int dfu_get_medium_size_nand(struct dfu_entity *dfu, u64 *size)
Stephen Warren0e285b52014-06-11 12:47:27 -0600122{
Patrick Delaunay4de51202017-07-19 16:39:22 +0200123 *size = dfu->data.nand.size;
124
125 return 0;
Stephen Warren0e285b52014-06-11 12:47:27 -0600126}
127
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000128static int dfu_read_medium_nand(struct dfu_entity *dfu, u64 offset, void *buf,
129 long *len)
130{
131 int ret = -1;
132
133 switch (dfu->layout) {
134 case DFU_RAW_ADDR:
135 ret = nand_block_read(dfu, offset, buf, len);
136 break;
137 default:
138 printf("%s: Layout (%s) not (yet) supported!\n", __func__,
139 dfu_get_layout(dfu->layout));
140 }
141
142 return ret;
143}
144
Heiko Schocher815c30b2013-07-25 06:43:11 +0200145static int dfu_flush_medium_nand(struct dfu_entity *dfu)
146{
147 int ret = 0;
Heiko Schocher9ae63f42016-06-07 08:55:44 +0200148 u64 off;
Heiko Schocher815c30b2013-07-25 06:43:11 +0200149
150 /* in case of ubi partition, erase rest of the partition */
151 if (dfu->data.nand.ubi) {
Grygorii Strashko16520182017-06-26 19:12:53 -0500152 struct mtd_info *mtd = get_nand_dev_by_index(nand_curr_device);
Heiko Schocher815c30b2013-07-25 06:43:11 +0200153 nand_erase_options_t opts;
154
155 if (nand_curr_device < 0 ||
156 nand_curr_device >= CONFIG_SYS_MAX_NAND_DEVICE ||
Grygorii Strashko16520182017-06-26 19:12:53 -0500157 !mtd) {
Heiko Schocher815c30b2013-07-25 06:43:11 +0200158 printf("%s: invalid nand device\n", __func__);
159 return -1;
160 }
161
Heiko Schocher815c30b2013-07-25 06:43:11 +0200162 memset(&opts, 0, sizeof(opts));
Heiko Schocher9ae63f42016-06-07 08:55:44 +0200163 off = dfu->offset;
164 if ((off & (mtd->erasesize - 1)) != 0) {
165 /*
166 * last write ended with unaligned length
167 * sector is erased, jump to next
168 */
169 off = off & ~((mtd->erasesize - 1));
170 off += mtd->erasesize;
171 }
172 opts.offset = dfu->data.nand.start + off +
Heiko Schocher815c30b2013-07-25 06:43:11 +0200173 dfu->bad_skip;
174 opts.length = dfu->data.nand.start +
175 dfu->data.nand.size - opts.offset;
Scott Wood151c06e2016-05-30 13:57:54 -0500176 ret = nand_erase_opts(mtd, &opts);
Heiko Schocher815c30b2013-07-25 06:43:11 +0200177 if (ret != 0)
178 printf("Failure erase: %d\n", ret);
179 }
180
181 return ret;
182}
183
Heiko Schocherfc25fa22014-04-11 07:59:47 +0200184unsigned int dfu_polltimeout_nand(struct dfu_entity *dfu)
185{
186 /*
187 * Currently, Poll Timeout != 0 is only needed on nand
188 * ubi partition, as the not used sectors need an erase
189 */
190 if (dfu->data.nand.ubi)
191 return DFU_MANIFEST_POLL_TIMEOUT;
192
193 return DFU_DEFAULT_POLL_TIMEOUT;
194}
195
Stephen Warrendd648272014-06-11 16:03:33 -0600196int dfu_fill_entity_nand(struct dfu_entity *dfu, char *devstr, char *s)
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000197{
198 char *st;
199 int ret, dev, part;
200
Heiko Schocher815c30b2013-07-25 06:43:11 +0200201 dfu->data.nand.ubi = 0;
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000202 dfu->dev_type = DFU_DEV_NAND;
203 st = strsep(&s, " ");
204 if (!strcmp(st, "raw")) {
205 dfu->layout = DFU_RAW_ADDR;
206 dfu->data.nand.start = simple_strtoul(s, &s, 16);
207 s++;
208 dfu->data.nand.size = simple_strtoul(s, &s, 16);
Heiko Schocher815c30b2013-07-25 06:43:11 +0200209 } else if ((!strcmp(st, "part")) || (!strcmp(st, "partubi"))) {
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000210 char mtd_id[32];
211 struct mtd_device *mtd_dev;
212 u8 part_num;
213 struct part_info *pi;
214
215 dfu->layout = DFU_RAW_ADDR;
216
217 dev = simple_strtoul(s, &s, 10);
218 s++;
219 part = simple_strtoul(s, &s, 10);
220
221 sprintf(mtd_id, "%s%d,%d", "nand", dev, part - 1);
Ralph Siemsen0a815ff2019-08-27 14:28:19 -0400222 debug("using id '%s'\n", mtd_id);
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000223
224 mtdparts_init();
225
226 ret = find_dev_and_part(mtd_id, &mtd_dev, &part_num, &pi);
227 if (ret != 0) {
228 printf("Could not locate '%s'\n", mtd_id);
229 return -1;
230 }
231
232 dfu->data.nand.start = pi->offset;
233 dfu->data.nand.size = pi->size;
Heiko Schocher815c30b2013-07-25 06:43:11 +0200234 if (!strcmp(st, "partubi"))
235 dfu->data.nand.ubi = 1;
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000236 } else {
237 printf("%s: Memory layout (%s) not supported!\n", __func__, st);
238 return -1;
239 }
240
Stephen Warren0e285b52014-06-11 12:47:27 -0600241 dfu->get_medium_size = dfu_get_medium_size_nand;
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000242 dfu->read_medium = dfu_read_medium_nand;
243 dfu->write_medium = dfu_write_medium_nand;
Heiko Schocher815c30b2013-07-25 06:43:11 +0200244 dfu->flush_medium = dfu_flush_medium_nand;
Heiko Schocherfc25fa22014-04-11 07:59:47 +0200245 dfu->poll_timeout = dfu_polltimeout_nand;
Pantelis Antoniouc6631762013-03-14 05:32:52 +0000246
247 /* initial state */
248 dfu->inited = 0;
249
250 return 0;
251}