]>
Commit | Line | Data |
---|---|---|
dc7c9a1a WD |
1 | /* |
2 | * Driver for NAND support, Rick Bronson | |
3 | * borrowed heavily from: | |
4 | * (c) 1999 Machine Vision Holdings, Inc. | |
5 | * (c) 1999, 2000 David Woodhouse <[email protected]> | |
384cc687 | 6 | * |
c9f7351b BG |
7 | * Ported 'dynenv' to 'nand env.oob' command |
8 | * (C) 2010 Nanometrics, Inc. | |
9 | * 'dynenv' -- Dynamic environment offset in NAND OOB | |
10 | * (C) Copyright 2006-2007 OpenMoko, Inc. | |
384cc687 WD |
11 | * Added 16-bit nand support |
12 | * (C) 2004 Texas Instruments | |
ea533c26 | 13 | * |
418396e2 | 14 | * Copyright 2010, 2012 Freescale Semiconductor |
ea533c26 SW |
15 | * The portions of this file whose copyright is held by Freescale and which |
16 | * are not considered a derived work of GPL v2-only code may be distributed | |
17 | * and/or modified under the terms of the GNU General Public License as | |
18 | * published by the Free Software Foundation; either version 2 of the | |
19 | * License, or (at your option) any later version. | |
dc7c9a1a WD |
20 | */ |
21 | ||
22 | #include <common.h> | |
52f24238 | 23 | #include <bootstage.h> |
8e8ccfe1 | 24 | #include <image.h> |
90526e9f | 25 | #include <asm/cache.h> |
cfa460ad | 26 | #include <linux/mtd/mtd.h> |
addb2e16 | 27 | #include <command.h> |
24b852a7 | 28 | #include <console.h> |
c7694dd4 | 29 | #include <env.h> |
addb2e16 BS |
30 | #include <watchdog.h> |
31 | #include <malloc.h> | |
32 | #include <asm/byteorder.h> | |
addb2e16 BS |
33 | #include <jffs2/jffs2.h> |
34 | #include <nand.h> | |
35 | ||
eb446ef6 MR |
36 | #include "legacy-mtd-utils.h" |
37 | ||
0c8a8491 | 38 | #if defined(CONFIG_CMD_MTDPARTS) |
856f0544 | 39 | |
445093d1 | 40 | /* partition handling routines */ |
856f0544 | 41 | int mtdparts_init(void); |
856f0544 | 42 | int find_dev_and_part(const char *id, struct mtd_device **dev, |
4b070809 | 43 | u8 *part_num, struct part_info **part); |
856f0544 SR |
44 | #endif |
45 | ||
151c06ec SW |
46 | static int nand_dump(struct mtd_info *mtd, ulong off, int only_oob, |
47 | int repeat) | |
addb2e16 BS |
48 | { |
49 | int i; | |
9ad754fe | 50 | u_char *datbuf, *oobbuf, *p; |
8c5659a6 | 51 | static loff_t last; |
e40520b5 | 52 | int ret = 0; |
8c5659a6 SW |
53 | |
54 | if (repeat) | |
151c06ec | 55 | off = last + mtd->writesize; |
8c5659a6 SW |
56 | |
57 | last = off; | |
addb2e16 | 58 | |
151c06ec | 59 | datbuf = memalign(ARCH_DMA_MINALIGN, mtd->writesize); |
e40520b5 | 60 | if (!datbuf) { |
addb2e16 BS |
61 | puts("No memory for page buffer\n"); |
62 | return 1; | |
63 | } | |
e40520b5 | 64 | |
151c06ec | 65 | oobbuf = memalign(ARCH_DMA_MINALIGN, mtd->oobsize); |
e40520b5 MY |
66 | if (!oobbuf) { |
67 | puts("No memory for page buffer\n"); | |
68 | ret = 1; | |
69 | goto free_dat; | |
70 | } | |
151c06ec | 71 | off &= ~(mtd->writesize - 1); |
cfa460ad | 72 | loff_t addr = (loff_t) off; |
9ad754fe WJ |
73 | struct mtd_oob_ops ops; |
74 | memset(&ops, 0, sizeof(ops)); | |
75 | ops.datbuf = datbuf; | |
cfdae12f | 76 | ops.oobbuf = oobbuf; |
151c06ec SW |
77 | ops.len = mtd->writesize; |
78 | ops.ooblen = mtd->oobsize; | |
dfe64e2c | 79 | ops.mode = MTD_OPS_RAW; |
151c06ec | 80 | i = mtd_read_oob(mtd, addr, &ops); |
addb2e16 | 81 | if (i < 0) { |
e870690b | 82 | printf("Error (%d) reading page %08lx\n", i, off); |
e40520b5 MY |
83 | ret = 1; |
84 | goto free_all; | |
addb2e16 | 85 | } |
e870690b | 86 | printf("Page %08lx dump:\n", off); |
4b070809 | 87 | |
7d25cd34 | 88 | if (!only_oob) { |
151c06ec | 89 | i = mtd->writesize >> 4; |
7d25cd34 MY |
90 | p = datbuf; |
91 | ||
92 | while (i--) { | |
9ad754fe WJ |
93 | printf("\t%02x %02x %02x %02x %02x %02x %02x %02x" |
94 | " %02x %02x %02x %02x %02x %02x %02x %02x\n", | |
95 | p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7], | |
dfbf617f SW |
96 | p[8], p[9], p[10], p[11], p[12], p[13], p[14], |
97 | p[15]); | |
7d25cd34 MY |
98 | p += 16; |
99 | } | |
addb2e16 | 100 | } |
7d25cd34 | 101 | |
addb2e16 | 102 | puts("OOB:\n"); |
151c06ec | 103 | i = mtd->oobsize >> 3; |
cfdae12f | 104 | p = oobbuf; |
addb2e16 | 105 | while (i--) { |
cfa460ad WJ |
106 | printf("\t%02x %02x %02x %02x %02x %02x %02x %02x\n", |
107 | p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]); | |
addb2e16 BS |
108 | p += 8; |
109 | } | |
e40520b5 MY |
110 | |
111 | free_all: | |
9ad754fe | 112 | free(oobbuf); |
e40520b5 MY |
113 | free_dat: |
114 | free(datbuf); | |
addb2e16 | 115 | |
e40520b5 | 116 | return ret; |
addb2e16 BS |
117 | } |
118 | ||
119 | /* ------------------------------------------------------------------------- */ | |
120 | ||
ea533c26 SW |
121 | static int set_dev(int dev) |
122 | { | |
ad92dff2 M |
123 | struct mtd_info *mtd = get_nand_dev_by_index(dev); |
124 | ||
125 | if (!mtd) | |
126 | return -ENODEV; | |
ea533c26 SW |
127 | |
128 | if (nand_curr_device == dev) | |
129 | return 0; | |
130 | ||
ad92dff2 | 131 | printf("Device %d: %s", dev, mtd->name); |
ea533c26 SW |
132 | puts("... is now current device\n"); |
133 | nand_curr_device = dev; | |
134 | ||
135 | #ifdef CONFIG_SYS_NAND_SELECT_DEVICE | |
6308e71b | 136 | board_nand_select_device(mtd_to_nand(mtd), dev); |
ea533c26 SW |
137 | #endif |
138 | ||
139 | return 0; | |
140 | } | |
141 | ||
50657c27 NM |
142 | #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK |
143 | static void print_status(ulong start, ulong end, ulong erasesize, int status) | |
144 | { | |
e70bfa29 JH |
145 | /* |
146 | * Micron NAND flash (e.g. MT29F4G08ABADAH4) BLOCK LOCK READ STATUS is | |
147 | * not the same as others. Instead of bit 1 being lock, it is | |
148 | * #lock_tight. To make the driver support either format, ignore bit 1 | |
149 | * and use only bit 0 and bit 2. | |
150 | */ | |
50657c27 NM |
151 | printf("%08lx - %08lx: %08lx blocks %s%s%s\n", |
152 | start, | |
153 | end - 1, | |
154 | (end - start) / erasesize, | |
155 | ((status & NAND_LOCK_STATUS_TIGHT) ? "TIGHT " : ""), | |
e70bfa29 | 156 | (!(status & NAND_LOCK_STATUS_UNLOCK) ? "LOCK " : ""), |
50657c27 NM |
157 | ((status & NAND_LOCK_STATUS_UNLOCK) ? "UNLOCK " : "")); |
158 | } | |
159 | ||
151c06ec | 160 | static void do_nand_status(struct mtd_info *mtd) |
50657c27 NM |
161 | { |
162 | ulong block_start = 0; | |
163 | ulong off; | |
164 | int last_status = -1; | |
165 | ||
17cb4b8f | 166 | struct nand_chip *nand_chip = mtd_to_nand(mtd); |
50657c27 | 167 | /* check the WP bit */ |
151c06ec | 168 | nand_chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1); |
50657c27 | 169 | printf("device is %swrite protected\n", |
151c06ec SW |
170 | (nand_chip->read_byte(mtd) & 0x80 ? |
171 | "NOT " : "")); | |
50657c27 | 172 | |
151c06ec SW |
173 | for (off = 0; off < mtd->size; off += mtd->erasesize) { |
174 | int s = nand_get_lock_status(mtd, off); | |
50657c27 NM |
175 | |
176 | /* print message only if status has changed */ | |
177 | if (s != last_status && off != 0) { | |
151c06ec | 178 | print_status(block_start, off, mtd->erasesize, |
50657c27 NM |
179 | last_status); |
180 | block_start = off; | |
181 | } | |
182 | last_status = s; | |
183 | } | |
184 | /* Print the last block info */ | |
151c06ec | 185 | print_status(block_start, off, mtd->erasesize, last_status); |
50657c27 NM |
186 | } |
187 | #endif | |
188 | ||
c9f7351b BG |
189 | #ifdef CONFIG_ENV_OFFSET_OOB |
190 | unsigned long nand_env_oob_offset; | |
191 | ||
ea533c26 | 192 | int do_nand_env_oob(cmd_tbl_t *cmdtp, int argc, char *const argv[]) |
c9f7351b BG |
193 | { |
194 | int ret; | |
195 | uint32_t oob_buf[ENV_OFFSET_SIZE/sizeof(uint32_t)]; | |
ad92dff2 | 196 | struct mtd_info *mtd = get_nand_dev_by_index(0); |
c9f7351b BG |
197 | char *cmd = argv[1]; |
198 | ||
8b7d5124 | 199 | if (CONFIG_SYS_MAX_NAND_DEVICE == 0 || !mtd) { |
ea533c26 SW |
200 | puts("no devices available\n"); |
201 | return 1; | |
202 | } | |
203 | ||
204 | set_dev(0); | |
205 | ||
c9f7351b | 206 | if (!strcmp(cmd, "get")) { |
151c06ec | 207 | ret = get_nand_env_oob(mtd, &nand_env_oob_offset); |
53504a27 | 208 | if (ret) |
c9f7351b | 209 | return 1; |
53504a27 SW |
210 | |
211 | printf("0x%08lx\n", nand_env_oob_offset); | |
c9f7351b | 212 | } else if (!strcmp(cmd, "set")) { |
ea533c26 SW |
213 | loff_t addr; |
214 | loff_t maxsize; | |
c9f7351b | 215 | struct mtd_oob_ops ops; |
ea533c26 | 216 | int idx = 0; |
c9f7351b BG |
217 | |
218 | if (argc < 3) | |
219 | goto usage; | |
220 | ||
ad92dff2 | 221 | mtd = get_nand_dev_by_index(idx); |
c39d6a0e | 222 | /* We don't care about size, or maxsize. */ |
09c32807 | 223 | if (mtd_arg_off(argv[2], &idx, &addr, &maxsize, &maxsize, |
ad92dff2 | 224 | MTD_DEV_TYPE_NAND, mtd->size)) { |
09c32807 HS |
225 | puts("Offset or partition name expected\n"); |
226 | return 1; | |
227 | } | |
228 | if (set_dev(idx)) { | |
ea533c26 SW |
229 | puts("Offset or partition name expected\n"); |
230 | return 1; | |
231 | } | |
232 | ||
233 | if (idx != 0) { | |
234 | puts("Partition not on first NAND device\n"); | |
c9f7351b BG |
235 | return 1; |
236 | } | |
237 | ||
151c06ec | 238 | if (mtd->oobavail < ENV_OFFSET_SIZE) { |
53504a27 SW |
239 | printf("Insufficient available OOB bytes:\n" |
240 | "%d OOB bytes available but %d required for " | |
241 | "env.oob support\n", | |
151c06ec | 242 | mtd->oobavail, ENV_OFFSET_SIZE); |
c9f7351b BG |
243 | return 1; |
244 | } | |
245 | ||
151c06ec | 246 | if ((addr & (mtd->erasesize - 1)) != 0) { |
c9f7351b BG |
247 | printf("Environment offset must be block-aligned\n"); |
248 | return 1; | |
249 | } | |
250 | ||
251 | ops.datbuf = NULL; | |
252 | ops.mode = MTD_OOB_AUTO; | |
253 | ops.ooboffs = 0; | |
254 | ops.ooblen = ENV_OFFSET_SIZE; | |
255 | ops.oobbuf = (void *) oob_buf; | |
256 | ||
257 | oob_buf[0] = ENV_OOB_MARKER; | |
151c06ec | 258 | oob_buf[1] = addr / mtd->erasesize; |
c9f7351b | 259 | |
151c06ec | 260 | ret = mtd->write_oob(mtd, ENV_OFFSET_SIZE, &ops); |
53504a27 | 261 | if (ret) { |
c9f7351b BG |
262 | printf("Error writing OOB block 0\n"); |
263 | return ret; | |
264 | } | |
53504a27 | 265 | |
151c06ec | 266 | ret = get_nand_env_oob(mtd, &nand_env_oob_offset); |
53504a27 SW |
267 | if (ret) { |
268 | printf("Error reading env offset in OOB\n"); | |
269 | return ret; | |
270 | } | |
271 | ||
272 | if (addr != nand_env_oob_offset) { | |
273 | printf("Verification of env offset in OOB failed: " | |
ea533c26 SW |
274 | "0x%08llx expected but got 0x%08lx\n", |
275 | (unsigned long long)addr, nand_env_oob_offset); | |
53504a27 SW |
276 | return 1; |
277 | } | |
c9f7351b BG |
278 | } else { |
279 | goto usage; | |
280 | } | |
281 | ||
282 | return ret; | |
283 | ||
284 | usage: | |
4c12eeb8 | 285 | return CMD_RET_USAGE; |
c9f7351b BG |
286 | } |
287 | ||
288 | #endif | |
289 | ||
ce80ddc1 | 290 | static void nand_print_and_set_info(int idx) |
672ed2ae | 291 | { |
ad92dff2 M |
292 | struct mtd_info *mtd; |
293 | struct nand_chip *chip; | |
294 | ||
295 | mtd = get_nand_dev_by_index(idx); | |
296 | if (!mtd) | |
297 | return; | |
ce80ddc1 | 298 | |
ad92dff2 | 299 | chip = mtd_to_nand(mtd); |
672ed2ae WG |
300 | printf("Device %d: ", idx); |
301 | if (chip->numchips > 1) | |
302 | printf("%dx ", chip->numchips); | |
303 | printf("%s, sector size %u KiB\n", | |
151c06ec SW |
304 | mtd->name, mtd->erasesize >> 10); |
305 | printf(" Page size %8d b\n", mtd->writesize); | |
306 | printf(" OOB size %8d b\n", mtd->oobsize); | |
307 | printf(" Erase size %8d b\n", mtd->erasesize); | |
5db73feb | 308 | printf(" subpagesize %8d b\n", chip->subpagesize); |
66dc09c5 LW |
309 | printf(" options 0x%08x\n", chip->options); |
310 | printf(" bbt options 0x%08x\n", chip->bbt_options); | |
ce80ddc1 MV |
311 | |
312 | /* Set geometry info */ | |
018f5303 SG |
313 | env_set_hex("nand_writesize", mtd->writesize); |
314 | env_set_hex("nand_oobsize", mtd->oobsize); | |
315 | env_set_hex("nand_erasesize", mtd->erasesize); | |
672ed2ae WG |
316 | } |
317 | ||
151c06ec | 318 | static int raw_access(struct mtd_info *mtd, ulong addr, loff_t off, |
2dc3c483 | 319 | ulong count, int read, int no_verify) |
418396e2 SW |
320 | { |
321 | int ret = 0; | |
418396e2 SW |
322 | |
323 | while (count--) { | |
324 | /* Raw access */ | |
325 | mtd_oob_ops_t ops = { | |
326 | .datbuf = (u8 *)addr, | |
151c06ec SW |
327 | .oobbuf = ((u8 *)addr) + mtd->writesize, |
328 | .len = mtd->writesize, | |
329 | .ooblen = mtd->oobsize, | |
dfe64e2c | 330 | .mode = MTD_OPS_RAW |
418396e2 SW |
331 | }; |
332 | ||
6b94f118 | 333 | if (read) { |
151c06ec | 334 | ret = mtd_read_oob(mtd, off, &ops); |
6b94f118 | 335 | } else { |
151c06ec | 336 | ret = mtd_write_oob(mtd, off, &ops); |
2dc3c483 | 337 | if (!ret && !no_verify) |
151c06ec | 338 | ret = nand_verify_page_oob(mtd, &ops, off); |
6b94f118 | 339 | } |
418396e2 SW |
340 | |
341 | if (ret) { | |
342 | printf("%s: error at offset %llx, ret %d\n", | |
343 | __func__, (long long)off, ret); | |
344 | break; | |
345 | } | |
346 | ||
151c06ec SW |
347 | addr += mtd->writesize + mtd->oobsize; |
348 | off += mtd->writesize; | |
418396e2 SW |
349 | } |
350 | ||
351 | return ret; | |
352 | } | |
353 | ||
e834402f | 354 | /* Adjust a chip/partition size down for bad blocks so we don't |
9b80aa8e | 355 | * read/write past the end of a chip/partition by accident. |
e834402f HC |
356 | */ |
357 | static void adjust_size_for_badblocks(loff_t *size, loff_t offset, int dev) | |
358 | { | |
359 | /* We grab the nand info object here fresh because this is usually | |
360 | * called after arg_off_size() which can change the value of dev. | |
361 | */ | |
ad92dff2 | 362 | struct mtd_info *mtd = get_nand_dev_by_index(dev); |
e834402f HC |
363 | loff_t maxoffset = offset + *size; |
364 | int badblocks = 0; | |
365 | ||
366 | /* count badblocks in NAND from offset to offset + size */ | |
151c06ec SW |
367 | for (; offset < maxoffset; offset += mtd->erasesize) { |
368 | if (nand_block_isbad(mtd, offset)) | |
e834402f HC |
369 | badblocks++; |
370 | } | |
371 | /* adjust size if any bad blocks found */ | |
372 | if (badblocks) { | |
151c06ec | 373 | *size -= badblocks * mtd->erasesize; |
e834402f HC |
374 | printf("size adjusted to 0x%llx (%d bad blocks)\n", |
375 | (unsigned long long)*size, badblocks); | |
376 | } | |
377 | } | |
378 | ||
088f1b19 | 379 | static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
addb2e16 | 380 | { |
ea533c26 SW |
381 | int i, ret = 0; |
382 | ulong addr; | |
c39d6a0e | 383 | loff_t off, size, maxsize; |
addb2e16 | 384 | char *cmd, *s; |
151c06ec | 385 | struct mtd_info *mtd; |
6d0f6bcf JCPV |
386 | #ifdef CONFIG_SYS_NAND_QUIET |
387 | int quiet = CONFIG_SYS_NAND_QUIET; | |
c750d2e6 | 388 | #else |
2255b2d2 | 389 | int quiet = 0; |
c750d2e6 | 390 | #endif |
00caae6d | 391 | const char *quiet_str = env_get("quiet"); |
ea533c26 | 392 | int dev = nand_curr_device; |
8c5659a6 | 393 | int repeat = flag & CMD_FLAG_REPEAT; |
addb2e16 BS |
394 | |
395 | /* at least two arguments please */ | |
396 | if (argc < 2) | |
397 | goto usage; | |
398 | ||
2255b2d2 SR |
399 | if (quiet_str) |
400 | quiet = simple_strtoul(quiet_str, NULL, 0) != 0; | |
401 | ||
addb2e16 BS |
402 | cmd = argv[1]; |
403 | ||
8c5659a6 SW |
404 | /* Only "dump" is repeatable. */ |
405 | if (repeat && strcmp(cmd, "dump")) | |
406 | return 0; | |
407 | ||
addb2e16 BS |
408 | if (strcmp(cmd, "info") == 0) { |
409 | ||
410 | putc('\n'); | |
ad92dff2 M |
411 | for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) |
412 | nand_print_and_set_info(i); | |
addb2e16 BS |
413 | return 0; |
414 | } | |
415 | ||
416 | if (strcmp(cmd, "device") == 0) { | |
addb2e16 | 417 | if (argc < 3) { |
672ed2ae | 418 | putc('\n'); |
ea533c26 | 419 | if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE) |
672ed2ae | 420 | puts("no devices available\n"); |
addb2e16 | 421 | else |
ce80ddc1 | 422 | nand_print_and_set_info(dev); |
addb2e16 BS |
423 | return 0; |
424 | } | |
43a2b0e7 | 425 | |
ea533c26 SW |
426 | dev = (int)simple_strtoul(argv[2], NULL, 10); |
427 | set_dev(dev); | |
43a2b0e7 | 428 | |
addb2e16 BS |
429 | return 0; |
430 | } | |
431 | ||
c9f7351b BG |
432 | #ifdef CONFIG_ENV_OFFSET_OOB |
433 | /* this command operates only on the first nand device */ | |
ea533c26 SW |
434 | if (strcmp(cmd, "env.oob") == 0) |
435 | return do_nand_env_oob(cmdtp, argc - 1, argv + 1); | |
c9f7351b BG |
436 | #endif |
437 | ||
ea533c26 SW |
438 | /* The following commands operate on the current device, unless |
439 | * overridden by a partition specifier. Note that if somehow the | |
440 | * current device is invalid, it will have to be changed to a valid | |
441 | * one before these commands can run, even if a partition specifier | |
442 | * for another device is to be used. | |
443 | */ | |
ad92dff2 M |
444 | mtd = get_nand_dev_by_index(dev); |
445 | if (!mtd) { | |
addb2e16 BS |
446 | puts("\nno devices available\n"); |
447 | return 1; | |
448 | } | |
addb2e16 BS |
449 | |
450 | if (strcmp(cmd, "bad") == 0) { | |
ea533c26 | 451 | printf("\nDevice %d bad blocks:\n", dev); |
151c06ec SW |
452 | for (off = 0; off < mtd->size; off += mtd->erasesize) |
453 | if (nand_block_isbad(mtd, off)) | |
ea533c26 | 454 | printf(" %08llx\n", (unsigned long long)off); |
addb2e16 BS |
455 | return 0; |
456 | } | |
457 | ||
856f0544 SR |
458 | /* |
459 | * Syntax is: | |
460 | * 0 1 2 3 4 | |
461 | * nand erase [clean] [off size] | |
462 | */ | |
30486322 | 463 | if (strncmp(cmd, "erase", 5) == 0 || strncmp(cmd, "scrub", 5) == 0) { |
2255b2d2 | 464 | nand_erase_options_t opts; |
856f0544 | 465 | /* "clean" at index 2 means request to write cleanmarker */ |
3043c045 | 466 | int clean = argc > 2 && !strcmp("clean", argv[2]); |
60899816 MV |
467 | int scrub_yes = argc > 2 && !strcmp("-y", argv[2]); |
468 | int o = (clean || scrub_yes) ? 3 : 2; | |
30486322 | 469 | int scrub = !strncmp(cmd, "scrub", 5); |
30486322 SW |
470 | int spread = 0; |
471 | int args = 2; | |
60899816 MV |
472 | const char *scrub_warn = |
473 | "Warning: " | |
474 | "scrub option will erase all factory set bad blocks!\n" | |
475 | " " | |
476 | "There is no reliable way to recover them.\n" | |
477 | " " | |
478 | "Use this command only for testing purposes if you\n" | |
479 | " " | |
480 | "are sure of what you are doing!\n" | |
481 | "\nReally scrub this NAND flash? <y/N>\n"; | |
30486322 SW |
482 | |
483 | if (cmd[5] != 0) { | |
484 | if (!strcmp(&cmd[5], ".spread")) { | |
485 | spread = 1; | |
486 | } else if (!strcmp(&cmd[5], ".part")) { | |
30486322 SW |
487 | args = 1; |
488 | } else if (!strcmp(&cmd[5], ".chip")) { | |
30486322 SW |
489 | args = 0; |
490 | } else { | |
491 | goto usage; | |
492 | } | |
493 | } | |
494 | ||
495 | /* | |
496 | * Don't allow missing arguments to cause full chip/partition | |
497 | * erases -- easy to do accidentally, e.g. with a misspelled | |
498 | * variable name. | |
499 | */ | |
500 | if (argc != o + args) | |
501 | goto usage; | |
2255b2d2 | 502 | |
30486322 | 503 | printf("\nNAND %s: ", cmd); |
856f0544 | 504 | /* skip first two or three arguments, look for offset and size */ |
09c32807 HS |
505 | if (mtd_arg_off_size(argc - o, argv + o, &dev, &off, &size, |
506 | &maxsize, MTD_DEV_TYPE_NAND, | |
ad92dff2 | 507 | mtd->size) != 0) |
09c32807 HS |
508 | return 1; |
509 | ||
510 | if (set_dev(dev)) | |
856f0544 | 511 | return 1; |
2255b2d2 | 512 | |
ad92dff2 | 513 | mtd = get_nand_dev_by_index(dev); |
ea533c26 | 514 | |
2255b2d2 SR |
515 | memset(&opts, 0, sizeof(opts)); |
516 | opts.offset = off; | |
517 | opts.length = size; | |
518 | opts.jffs2 = clean; | |
519 | opts.quiet = quiet; | |
30486322 | 520 | opts.spread = spread; |
2255b2d2 SR |
521 | |
522 | if (scrub) { | |
a5dffa4b | 523 | if (scrub_yes) { |
60899816 | 524 | opts.scrub = 1; |
a5dffa4b PA |
525 | } else { |
526 | puts(scrub_warn); | |
527 | if (confirm_yesno()) { | |
6b94b496 | 528 | opts.scrub = 1; |
a5dffa4b | 529 | } else { |
6b94b496 | 530 | puts("scrub aborted\n"); |
46aabcc4 | 531 | return 1; |
6b94b496 | 532 | } |
2255b2d2 SR |
533 | } |
534 | } | |
151c06ec | 535 | ret = nand_erase_opts(mtd, &opts); |
addb2e16 BS |
536 | printf("%s\n", ret ? "ERROR" : "OK"); |
537 | ||
538 | return ret == 0 ? 0 : 1; | |
539 | } | |
540 | ||
541 | if (strncmp(cmd, "dump", 4) == 0) { | |
542 | if (argc < 3) | |
543 | goto usage; | |
544 | ||
addb2e16 | 545 | off = (int)simple_strtoul(argv[2], NULL, 16); |
151c06ec | 546 | ret = nand_dump(mtd, off, !strcmp(&cmd[4], ".oob"), repeat); |
addb2e16 BS |
547 | |
548 | return ret == 0 ? 1 : 0; | |
addb2e16 BS |
549 | } |
550 | ||
addb2e16 | 551 | if (strncmp(cmd, "read", 4) == 0 || strncmp(cmd, "write", 5) == 0) { |
ea533c26 | 552 | size_t rwsize; |
418396e2 | 553 | ulong pagecount = 1; |
2255b2d2 | 554 | int read; |
ced199dc | 555 | int raw = 0; |
2dc3c483 | 556 | int no_verify = 0; |
2255b2d2 | 557 | |
addb2e16 BS |
558 | if (argc < 4) |
559 | goto usage; | |
2255b2d2 | 560 | |
addb2e16 BS |
561 | addr = (ulong)simple_strtoul(argv[2], NULL, 16); |
562 | ||
2255b2d2 | 563 | read = strncmp(cmd, "read", 4) == 0; /* 1 = read, 0 = write */ |
856f0544 | 564 | printf("\nNAND %s: ", read ? "read" : "write"); |
4cbb651b | 565 | |
2255b2d2 | 566 | s = strchr(cmd, '.'); |
418396e2 | 567 | |
2dc3c483 | 568 | if (s && !strncmp(s, ".raw", 4)) { |
418396e2 SW |
569 | raw = 1; |
570 | ||
2dc3c483 BB |
571 | if (!strcmp(s, ".raw.noverify")) |
572 | no_verify = 1; | |
573 | ||
09c32807 HS |
574 | if (mtd_arg_off(argv[3], &dev, &off, &size, &maxsize, |
575 | MTD_DEV_TYPE_NAND, | |
ad92dff2 | 576 | mtd->size)) |
09c32807 HS |
577 | return 1; |
578 | ||
579 | if (set_dev(dev)) | |
418396e2 SW |
580 | return 1; |
581 | ||
ad92dff2 | 582 | mtd = get_nand_dev_by_index(dev); |
93d3232d | 583 | |
418396e2 SW |
584 | if (argc > 4 && !str2long(argv[4], &pagecount)) { |
585 | printf("'%s' is not a number\n", argv[4]); | |
586 | return 1; | |
587 | } | |
588 | ||
151c06ec | 589 | if (pagecount * mtd->writesize > size) { |
418396e2 SW |
590 | puts("Size exceeds partition or device limit\n"); |
591 | return -1; | |
592 | } | |
593 | ||
151c06ec | 594 | rwsize = pagecount * (mtd->writesize + mtd->oobsize); |
418396e2 | 595 | } else { |
09c32807 HS |
596 | if (mtd_arg_off_size(argc - 3, argv + 3, &dev, &off, |
597 | &size, &maxsize, | |
598 | MTD_DEV_TYPE_NAND, | |
ad92dff2 | 599 | mtd->size) != 0) |
09c32807 HS |
600 | return 1; |
601 | ||
602 | if (set_dev(dev)) | |
418396e2 SW |
603 | return 1; |
604 | ||
e834402f HC |
605 | /* size is unspecified */ |
606 | if (argc < 5) | |
607 | adjust_size_for_badblocks(&size, off, dev); | |
418396e2 SW |
608 | rwsize = size; |
609 | } | |
610 | ||
ad92dff2 | 611 | mtd = get_nand_dev_by_index(dev); |
93d3232d | 612 | |
984e03cd SW |
613 | if (!s || !strcmp(s, ".jffs2") || |
614 | !strcmp(s, ".e") || !strcmp(s, ".i")) { | |
dfbf617f | 615 | if (read) |
151c06ec | 616 | ret = nand_read_skip_bad(mtd, off, &rwsize, |
c39d6a0e | 617 | NULL, maxsize, |
4b070809 | 618 | (u_char *)addr); |
dfbf617f | 619 | else |
151c06ec | 620 | ret = nand_write_skip_bad(mtd, off, &rwsize, |
c39d6a0e | 621 | NULL, maxsize, |
6b94f118 PT |
622 | (u_char *)addr, |
623 | WITH_WR_VERIFY); | |
c9494866 BG |
624 | #ifdef CONFIG_CMD_NAND_TRIMFFS |
625 | } else if (!strcmp(s, ".trimffs")) { | |
626 | if (read) { | |
627 | printf("Unknown nand command suffix '%s'\n", s); | |
628 | return 1; | |
629 | } | |
151c06ec | 630 | ret = nand_write_skip_bad(mtd, off, &rwsize, NULL, |
c39d6a0e | 631 | maxsize, (u_char *)addr, |
6b94f118 | 632 | WITH_DROP_FFS | WITH_WR_VERIFY); |
47fc18f1 | 633 | #endif |
dfc99e14 | 634 | } else if (!strcmp(s, ".oob")) { |
cfa460ad WJ |
635 | /* out-of-band data */ |
636 | mtd_oob_ops_t ops = { | |
637 | .oobbuf = (u8 *)addr, | |
ea533c26 | 638 | .ooblen = rwsize, |
dfe64e2c | 639 | .mode = MTD_OPS_RAW |
cfa460ad WJ |
640 | }; |
641 | ||
fb3659ac | 642 | if (read) |
151c06ec | 643 | ret = mtd_read_oob(mtd, off, &ops); |
fb3659ac | 644 | else |
151c06ec | 645 | ret = mtd_write_oob(mtd, off, &ops); |
418396e2 | 646 | } else if (raw) { |
2dc3c483 BB |
647 | ret = raw_access(mtd, addr, off, pagecount, read, |
648 | no_verify); | |
856f0544 | 649 | } else { |
984e03cd SW |
650 | printf("Unknown nand command suffix '%s'.\n", s); |
651 | return 1; | |
2255b2d2 SR |
652 | } |
653 | ||
ea533c26 | 654 | printf(" %zu bytes %s: %s\n", rwsize, |
2255b2d2 | 655 | read ? "read" : "written", ret ? "ERROR" : "OK"); |
addb2e16 BS |
656 | |
657 | return ret == 0 ? 0 : 1; | |
658 | } | |
2255b2d2 | 659 | |
3287f6d3 BT |
660 | #ifdef CONFIG_CMD_NAND_TORTURE |
661 | if (strcmp(cmd, "torture") == 0) { | |
1866be7d MK |
662 | loff_t endoff; |
663 | unsigned int failed = 0, passed = 0; | |
664 | ||
3287f6d3 BT |
665 | if (argc < 3) |
666 | goto usage; | |
667 | ||
668 | if (!str2off(argv[2], &off)) { | |
669 | puts("Offset is not a valid number\n"); | |
670 | return 1; | |
671 | } | |
672 | ||
1866be7d MK |
673 | size = mtd->erasesize; |
674 | if (argc > 3) { | |
675 | if (!str2off(argv[3], &size)) { | |
676 | puts("Size is not a valid number\n"); | |
677 | return 1; | |
678 | } | |
679 | } | |
3287f6d3 | 680 | |
1866be7d MK |
681 | endoff = off + size; |
682 | if (endoff > mtd->size) { | |
683 | puts("Arguments beyond end of NAND\n"); | |
684 | return 1; | |
685 | } | |
686 | ||
687 | off = round_down(off, mtd->erasesize); | |
688 | endoff = round_up(endoff, mtd->erasesize); | |
689 | size = endoff - off; | |
690 | printf("\nNAND torture: device %d offset 0x%llx size 0x%llx (block size 0x%x)\n", | |
691 | dev, off, size, mtd->erasesize); | |
692 | while (off < endoff) { | |
693 | ret = nand_torture(mtd, off); | |
694 | if (ret) { | |
695 | failed++; | |
696 | printf(" block at 0x%llx failed\n", off); | |
697 | } else { | |
698 | passed++; | |
699 | } | |
700 | off += mtd->erasesize; | |
701 | } | |
702 | printf(" Passed: %u, failed: %u\n", passed, failed); | |
703 | return failed != 0; | |
3287f6d3 BT |
704 | } |
705 | #endif | |
706 | ||
2255b2d2 | 707 | if (strcmp(cmd, "markbad") == 0) { |
8360b66b WD |
708 | argc -= 2; |
709 | argv += 2; | |
2255b2d2 | 710 | |
8360b66b WD |
711 | if (argc <= 0) |
712 | goto usage; | |
713 | ||
714 | while (argc > 0) { | |
715 | addr = simple_strtoul(*argv, NULL, 16); | |
716 | ||
151c06ec | 717 | if (mtd_block_markbad(mtd, addr)) { |
8360b66b WD |
718 | printf("block 0x%08lx NOT marked " |
719 | "as bad! ERROR %d\n", | |
720 | addr, ret); | |
721 | ret = 1; | |
722 | } else { | |
723 | printf("block 0x%08lx successfully " | |
724 | "marked as bad\n", | |
725 | addr); | |
726 | } | |
727 | --argc; | |
728 | ++argv; | |
2255b2d2 | 729 | } |
8360b66b | 730 | return ret; |
2255b2d2 | 731 | } |
dfbf617f | 732 | |
2255b2d2 SR |
733 | if (strcmp(cmd, "biterr") == 0) { |
734 | /* todo */ | |
735 | return 1; | |
736 | } | |
737 | ||
50657c27 | 738 | #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK |
2255b2d2 | 739 | if (strcmp(cmd, "lock") == 0) { |
50657c27 | 740 | int tight = 0; |
2255b2d2 SR |
741 | int status = 0; |
742 | if (argc == 3) { | |
743 | if (!strcmp("tight", argv[2])) | |
744 | tight = 1; | |
745 | if (!strcmp("status", argv[2])) | |
746 | status = 1; | |
747 | } | |
2255b2d2 | 748 | if (status) { |
151c06ec | 749 | do_nand_status(mtd); |
cfa460ad | 750 | } else { |
151c06ec | 751 | if (!nand_lock(mtd, tight)) { |
5e1dae5c WJ |
752 | puts("NAND flash successfully locked\n"); |
753 | } else { | |
754 | puts("Error locking NAND flash\n"); | |
755 | return 1; | |
756 | } | |
2255b2d2 SR |
757 | } |
758 | return 0; | |
759 | } | |
760 | ||
eee623a5 JH |
761 | if (strncmp(cmd, "unlock", 5) == 0) { |
762 | int allexcept = 0; | |
763 | ||
764 | s = strchr(cmd, '.'); | |
765 | ||
766 | if (s && !strcmp(s, ".allexcept")) | |
767 | allexcept = 1; | |
768 | ||
09c32807 HS |
769 | if (mtd_arg_off_size(argc - 2, argv + 2, &dev, &off, &size, |
770 | &maxsize, MTD_DEV_TYPE_NAND, | |
ad92dff2 | 771 | mtd->size) < 0) |
09c32807 HS |
772 | return 1; |
773 | ||
774 | if (set_dev(dev)) | |
856f0544 | 775 | return 1; |
2255b2d2 | 776 | |
ad92dff2 M |
777 | mtd = get_nand_dev_by_index(dev); |
778 | ||
779 | if (!nand_unlock(mtd, off, size, allexcept)) { | |
5e1dae5c WJ |
780 | puts("NAND flash successfully unlocked\n"); |
781 | } else { | |
782 | puts("Error unlocking NAND flash, " | |
3043c045 | 783 | "write and erase will probably fail\n"); |
5e1dae5c WJ |
784 | return 1; |
785 | } | |
2255b2d2 SR |
786 | return 0; |
787 | } | |
50657c27 | 788 | #endif |
2255b2d2 | 789 | |
addb2e16 | 790 | usage: |
4c12eeb8 | 791 | return CMD_RET_USAGE; |
addb2e16 BS |
792 | } |
793 | ||
088f1b19 KP |
794 | #ifdef CONFIG_SYS_LONGHELP |
795 | static char nand_help_text[] = | |
a89c33db WD |
796 | "info - show available NAND devices\n" |
797 | "nand device [dev] - show or set current device\n" | |
798 | "nand read - addr off|partition size\n" | |
799 | "nand write - addr off|partition size\n" | |
800 | " read/write 'size' bytes starting at offset 'off'\n" | |
801 | " to/from memory address 'addr', skipping bad blocks.\n" | |
418396e2 | 802 | "nand read.raw - addr off|partition [count]\n" |
2dc3c483 | 803 | "nand write.raw[.noverify] - addr off|partition [count]\n" |
418396e2 | 804 | " Use read.raw/write.raw to avoid ECC and access the flash as-is.\n" |
c9494866 BG |
805 | #ifdef CONFIG_CMD_NAND_TRIMFFS |
806 | "nand write.trimffs - addr off|partition size\n" | |
807 | " write 'size' bytes starting at offset 'off' from memory address\n" | |
808 | " 'addr', skipping bad blocks and dropping any pages at the end\n" | |
809 | " of eraseblocks that contain only 0xFF\n" | |
47fc18f1 | 810 | #endif |
eb3abce8 | 811 | "nand erase[.spread] [clean] off size - erase 'size' bytes " |
30486322 SW |
812 | "from offset 'off'\n" |
813 | " With '.spread', erase enough for given file size, otherwise,\n" | |
814 | " 'size' includes skipped bad blocks.\n" | |
815 | "nand erase.part [clean] partition - erase entire mtd partition'\n" | |
816 | "nand erase.chip [clean] - erase entire chip'\n" | |
a89c33db WD |
817 | "nand bad - show bad blocks\n" |
818 | "nand dump[.oob] off - dump page\n" | |
3287f6d3 | 819 | #ifdef CONFIG_CMD_NAND_TORTURE |
1866be7d MK |
820 | "nand torture off - torture one block at offset\n" |
821 | "nand torture off [size] - torture blocks from off to off+size\n" | |
3287f6d3 | 822 | #endif |
60899816 | 823 | "nand scrub [-y] off size | scrub.part partition | scrub.chip\n" |
30486322 | 824 | " really clean NAND erasing bad blocks (UNSAFE)\n" |
a89c33db WD |
825 | "nand markbad off [...] - mark bad block(s) at offset (UNSAFE)\n" |
826 | "nand biterr off - make a bit error at offset (UNSAFE)" | |
50657c27 | 827 | #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK |
a89c33db WD |
828 | "\n" |
829 | "nand lock [tight] [status]\n" | |
830 | " bring nand to lock state or display locked pages\n" | |
eee623a5 | 831 | "nand unlock[.allexcept] [offset] [size] - unlock section" |
50657c27 | 832 | #endif |
c9f7351b BG |
833 | #ifdef CONFIG_ENV_OFFSET_OOB |
834 | "\n" | |
835 | "nand env.oob - environment offset in OOB of block 0 of" | |
836 | " first device.\n" | |
837 | "nand env.oob set off|partition - set enviromnent offset\n" | |
838 | "nand env.oob get - get environment offset" | |
839 | #endif | |
088f1b19 KP |
840 | ""; |
841 | #endif | |
842 | ||
843 | U_BOOT_CMD( | |
844 | nand, CONFIG_SYS_MAXARGS, 1, do_nand, | |
845 | "NAND sub-system", nand_help_text | |
50657c27 | 846 | ); |
addb2e16 | 847 | |
151c06ec | 848 | static int nand_load_image(cmd_tbl_t *cmdtp, struct mtd_info *mtd, |
4b070809 | 849 | ulong offset, ulong addr, char *cmd) |
addb2e16 | 850 | { |
addb2e16 | 851 | int r; |
67d668bf | 852 | char *s; |
4ca79f47 | 853 | size_t cnt; |
c76c93a3 | 854 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
addb2e16 | 855 | image_header_t *hdr; |
21d29f7f | 856 | #endif |
09475f75 | 857 | #if defined(CONFIG_FIT) |
3bab76a2 | 858 | const void *fit_hdr = NULL; |
09475f75 | 859 | #endif |
10e03893 TK |
860 | |
861 | s = strchr(cmd, '.'); | |
862 | if (s != NULL && | |
65d8bc94 | 863 | (strcmp(s, ".jffs2") && strcmp(s, ".e") && strcmp(s, ".i"))) { |
984e03cd | 864 | printf("Unknown nand load suffix '%s'\n", s); |
770605e4 | 865 | bootstage_error(BOOTSTAGE_ID_NAND_SUFFIX); |
984e03cd SW |
866 | return 1; |
867 | } | |
addb2e16 | 868 | |
151c06ec | 869 | printf("\nLoading from %s, offset 0x%lx\n", mtd->name, offset); |
addb2e16 | 870 | |
151c06ec SW |
871 | cnt = mtd->writesize; |
872 | r = nand_read_skip_bad(mtd, offset, &cnt, NULL, mtd->size, | |
873 | (u_char *)addr); | |
addb2e16 | 874 | if (r) { |
856f0544 | 875 | puts("** Read error\n"); |
770605e4 | 876 | bootstage_error(BOOTSTAGE_ID_NAND_HDR_READ); |
addb2e16 BS |
877 | return 1; |
878 | } | |
770605e4 | 879 | bootstage_mark(BOOTSTAGE_ID_NAND_HDR_READ); |
addb2e16 | 880 | |
9a4daad0 | 881 | switch (genimg_get_format ((void *)addr)) { |
c76c93a3 | 882 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
d5934ad7 MB |
883 | case IMAGE_FORMAT_LEGACY: |
884 | hdr = (image_header_t *)addr; | |
885 | ||
770605e4 | 886 | bootstage_mark(BOOTSTAGE_ID_NAND_TYPE); |
d5934ad7 | 887 | image_print_contents (hdr); |
addb2e16 | 888 | |
d5934ad7 MB |
889 | cnt = image_get_image_size (hdr); |
890 | break; | |
21d29f7f | 891 | #endif |
d5934ad7 MB |
892 | #if defined(CONFIG_FIT) |
893 | case IMAGE_FORMAT_FIT: | |
09475f75 | 894 | fit_hdr = (const void *)addr; |
09475f75 MB |
895 | puts ("Fit image detected...\n"); |
896 | ||
897 | cnt = fit_get_size (fit_hdr); | |
898 | break; | |
d5934ad7 MB |
899 | #endif |
900 | default: | |
770605e4 | 901 | bootstage_error(BOOTSTAGE_ID_NAND_TYPE); |
d5934ad7 | 902 | puts ("** Unknown image type\n"); |
addb2e16 BS |
903 | return 1; |
904 | } | |
770605e4 | 905 | bootstage_mark(BOOTSTAGE_ID_NAND_TYPE); |
addb2e16 | 906 | |
151c06ec SW |
907 | r = nand_read_skip_bad(mtd, offset, &cnt, NULL, mtd->size, |
908 | (u_char *)addr); | |
addb2e16 | 909 | if (r) { |
856f0544 | 910 | puts("** Read error\n"); |
770605e4 | 911 | bootstage_error(BOOTSTAGE_ID_NAND_READ); |
addb2e16 BS |
912 | return 1; |
913 | } | |
770605e4 | 914 | bootstage_mark(BOOTSTAGE_ID_NAND_READ); |
addb2e16 | 915 | |
09475f75 MB |
916 | #if defined(CONFIG_FIT) |
917 | /* This cannot be done earlier, we need complete FIT image in RAM first */ | |
3bab76a2 MB |
918 | if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) { |
919 | if (!fit_check_format (fit_hdr)) { | |
770605e4 | 920 | bootstage_error(BOOTSTAGE_ID_NAND_FIT_READ); |
3bab76a2 MB |
921 | puts ("** Bad FIT image format\n"); |
922 | return 1; | |
923 | } | |
770605e4 | 924 | bootstage_mark(BOOTSTAGE_ID_NAND_FIT_READ_OK); |
3bab76a2 MB |
925 | fit_print_contents (fit_hdr); |
926 | } | |
09475f75 MB |
927 | #endif |
928 | ||
addb2e16 BS |
929 | /* Loading ok, update default load address */ |
930 | ||
bb872dd9 | 931 | image_load_addr = addr; |
addb2e16 | 932 | |
67d668bf | 933 | return bootm_maybe_autostart(cmdtp, cmd); |
addb2e16 BS |
934 | } |
935 | ||
088f1b19 KP |
936 | static int do_nandboot(cmd_tbl_t *cmdtp, int flag, int argc, |
937 | char * const argv[]) | |
856f0544 SR |
938 | { |
939 | char *boot_device = NULL; | |
940 | int idx; | |
941 | ulong addr, offset = 0; | |
ad92dff2 | 942 | struct mtd_info *mtd; |
0c8a8491 | 943 | #if defined(CONFIG_CMD_MTDPARTS) |
856f0544 SR |
944 | struct mtd_device *dev; |
945 | struct part_info *part; | |
946 | u8 pnum; | |
947 | ||
948 | if (argc >= 2) { | |
949 | char *p = (argc == 2) ? argv[1] : argv[2]; | |
950 | if (!(str2long(p, &addr)) && (mtdparts_init() == 0) && | |
951 | (find_dev_and_part(p, &dev, &pnum, &part) == 0)) { | |
952 | if (dev->id->type != MTD_DEV_TYPE_NAND) { | |
953 | puts("Not a NAND device\n"); | |
954 | return 1; | |
955 | } | |
956 | if (argc > 3) | |
957 | goto usage; | |
958 | if (argc == 3) | |
10e03893 | 959 | addr = simple_strtoul(argv[1], NULL, 16); |
856f0544 | 960 | else |
6d0f6bcf | 961 | addr = CONFIG_SYS_LOAD_ADDR; |
ad92dff2 M |
962 | |
963 | mtd = get_nand_dev_by_index(dev->id->num); | |
964 | return nand_load_image(cmdtp, mtd, part->offset, | |
965 | addr, argv[0]); | |
856f0544 SR |
966 | } |
967 | } | |
968 | #endif | |
969 | ||
770605e4 | 970 | bootstage_mark(BOOTSTAGE_ID_NAND_PART); |
856f0544 SR |
971 | switch (argc) { |
972 | case 1: | |
6d0f6bcf | 973 | addr = CONFIG_SYS_LOAD_ADDR; |
00caae6d | 974 | boot_device = env_get("bootdevice"); |
856f0544 SR |
975 | break; |
976 | case 2: | |
977 | addr = simple_strtoul(argv[1], NULL, 16); | |
00caae6d | 978 | boot_device = env_get("bootdevice"); |
856f0544 SR |
979 | break; |
980 | case 3: | |
981 | addr = simple_strtoul(argv[1], NULL, 16); | |
982 | boot_device = argv[2]; | |
983 | break; | |
984 | case 4: | |
985 | addr = simple_strtoul(argv[1], NULL, 16); | |
986 | boot_device = argv[2]; | |
987 | offset = simple_strtoul(argv[3], NULL, 16); | |
988 | break; | |
989 | default: | |
0c8a8491 | 990 | #if defined(CONFIG_CMD_MTDPARTS) |
856f0544 SR |
991 | usage: |
992 | #endif | |
770605e4 | 993 | bootstage_error(BOOTSTAGE_ID_NAND_SUFFIX); |
4c12eeb8 | 994 | return CMD_RET_USAGE; |
856f0544 | 995 | } |
770605e4 | 996 | bootstage_mark(BOOTSTAGE_ID_NAND_SUFFIX); |
856f0544 SR |
997 | |
998 | if (!boot_device) { | |
999 | puts("\n** No boot device **\n"); | |
770605e4 | 1000 | bootstage_error(BOOTSTAGE_ID_NAND_BOOT_DEVICE); |
856f0544 SR |
1001 | return 1; |
1002 | } | |
770605e4 | 1003 | bootstage_mark(BOOTSTAGE_ID_NAND_BOOT_DEVICE); |
addb2e16 | 1004 | |
856f0544 SR |
1005 | idx = simple_strtoul(boot_device, NULL, 16); |
1006 | ||
ad92dff2 M |
1007 | mtd = get_nand_dev_by_index(idx); |
1008 | if (!mtd) { | |
856f0544 | 1009 | printf("\n** Device %d not available\n", idx); |
770605e4 | 1010 | bootstage_error(BOOTSTAGE_ID_NAND_AVAILABLE); |
856f0544 SR |
1011 | return 1; |
1012 | } | |
770605e4 | 1013 | bootstage_mark(BOOTSTAGE_ID_NAND_AVAILABLE); |
856f0544 | 1014 | |
ad92dff2 | 1015 | return nand_load_image(cmdtp, mtd, offset, addr, argv[0]); |
856f0544 SR |
1016 | } |
1017 | ||
1018 | U_BOOT_CMD(nboot, 4, 1, do_nandboot, | |
2fb2604d | 1019 | "boot from NAND device", |
a89c33db WD |
1020 | "[partition] | [[[loadAddr] dev] offset]" |
1021 | ); |