2 * Driver for NAND support, Rick Bronson
3 * borrowed heavily from:
4 * (c) 1999 Machine Vision Holdings, Inc.
5 * (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
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.
11 * Added 16-bit nand support
12 * (C) 2004 Texas Instruments
14 * Copyright 2010, 2012 Freescale Semiconductor
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.
23 #include <linux/mtd/mtd.h>
27 #include <asm/byteorder.h>
28 #include <jffs2/jffs2.h>
31 #if defined(CONFIG_CMD_MTDPARTS)
33 /* partition handling routines */
34 int mtdparts_init(void);
35 int id_parse(const char *id, const char **ret_id, u8 *dev_type, u8 *dev_num);
36 int find_dev_and_part(const char *id, struct mtd_device **dev,
37 u8 *part_num, struct part_info **part);
40 static int nand_dump(nand_info_t *nand, ulong off, int only_oob, int repeat)
43 u_char *datbuf, *oobbuf, *p;
48 off = last + nand->writesize;
52 datbuf = memalign(ARCH_DMA_MINALIGN, nand->writesize);
54 puts("No memory for page buffer\n");
58 oobbuf = memalign(ARCH_DMA_MINALIGN, nand->oobsize);
60 puts("No memory for page buffer\n");
64 off &= ~(nand->writesize - 1);
65 loff_t addr = (loff_t) off;
66 struct mtd_oob_ops ops;
67 memset(&ops, 0, sizeof(ops));
70 ops.len = nand->writesize;
71 ops.ooblen = nand->oobsize;
72 ops.mode = MTD_OPS_RAW;
73 i = mtd_read_oob(nand, addr, &ops);
75 printf("Error (%d) reading page %08lx\n", i, off);
79 printf("Page %08lx dump:\n", off);
82 i = nand->writesize >> 4;
86 printf("\t%02x %02x %02x %02x %02x %02x %02x %02x"
87 " %02x %02x %02x %02x %02x %02x %02x %02x\n",
88 p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7],
89 p[8], p[9], p[10], p[11], p[12], p[13], p[14],
96 i = nand->oobsize >> 3;
99 printf("\t%02x %02x %02x %02x %02x %02x %02x %02x\n",
100 p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]);
112 /* ------------------------------------------------------------------------- */
114 static int set_dev(int dev)
116 if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE ||
117 !nand_info[dev].name) {
118 puts("No such device\n");
122 if (nand_curr_device == dev)
125 printf("Device %d: %s", dev, nand_info[dev].name);
126 puts("... is now current device\n");
127 nand_curr_device = dev;
129 #ifdef CONFIG_SYS_NAND_SELECT_DEVICE
130 board_nand_select_device(nand_info[dev].priv, dev);
136 static inline int str2off(const char *p, loff_t *num)
140 *num = simple_strtoull(p, &endptr, 16);
141 return *p != '\0' && *endptr == '\0';
144 static inline int str2long(const char *p, ulong *num)
148 *num = simple_strtoul(p, &endptr, 16);
149 return *p != '\0' && *endptr == '\0';
152 static int get_part(const char *partname, int *idx, loff_t *off, loff_t *size,
155 #ifdef CONFIG_CMD_MTDPARTS
156 struct mtd_device *dev;
157 struct part_info *part;
161 ret = mtdparts_init();
165 ret = find_dev_and_part(partname, &dev, &pnum, &part);
169 if (dev->id->type != MTD_DEV_TYPE_NAND) {
170 puts("not a NAND device\n");
176 *maxsize = part->size;
185 puts("offset is not a number\n");
190 static int arg_off(const char *arg, int *idx, loff_t *off, loff_t *size,
193 if (!str2off(arg, off))
194 return get_part(arg, idx, off, size, maxsize);
196 if (*off >= nand_info[*idx].size) {
197 puts("Offset exceeds device limit\n");
201 *maxsize = nand_info[*idx].size - *off;
206 static int arg_off_size(int argc, char *const argv[], int *idx,
207 loff_t *off, loff_t *size, loff_t *maxsize)
213 *size = nand_info[*idx].size;
218 ret = arg_off(argv[0], idx, off, size, maxsize);
225 if (!str2off(argv[1], size)) {
226 printf("'%s' is not a number\n", argv[1]);
230 if (*size > *maxsize) {
231 puts("Size exceeds partition or device limit\n");
236 printf("device %d ", *idx);
237 if (*size == nand_info[*idx].size)
238 puts("whole chip\n");
240 printf("offset 0x%llx, size 0x%llx\n",
241 (unsigned long long)*off, (unsigned long long)*size);
245 #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
246 static void print_status(ulong start, ulong end, ulong erasesize, int status)
249 * Micron NAND flash (e.g. MT29F4G08ABADAH4) BLOCK LOCK READ STATUS is
250 * not the same as others. Instead of bit 1 being lock, it is
251 * #lock_tight. To make the driver support either format, ignore bit 1
252 * and use only bit 0 and bit 2.
254 printf("%08lx - %08lx: %08lx blocks %s%s%s\n",
257 (end - start) / erasesize,
258 ((status & NAND_LOCK_STATUS_TIGHT) ? "TIGHT " : ""),
259 (!(status & NAND_LOCK_STATUS_UNLOCK) ? "LOCK " : ""),
260 ((status & NAND_LOCK_STATUS_UNLOCK) ? "UNLOCK " : ""));
263 static void do_nand_status(nand_info_t *nand)
265 ulong block_start = 0;
267 int last_status = -1;
269 struct nand_chip *nand_chip = nand->priv;
270 /* check the WP bit */
271 nand_chip->cmdfunc(nand, NAND_CMD_STATUS, -1, -1);
272 printf("device is %swrite protected\n",
273 (nand_chip->read_byte(nand) & 0x80 ?
276 for (off = 0; off < nand->size; off += nand->erasesize) {
277 int s = nand_get_lock_status(nand, off);
279 /* print message only if status has changed */
280 if (s != last_status && off != 0) {
281 print_status(block_start, off, nand->erasesize,
287 /* Print the last block info */
288 print_status(block_start, off, nand->erasesize, last_status);
292 #ifdef CONFIG_ENV_OFFSET_OOB
293 unsigned long nand_env_oob_offset;
295 int do_nand_env_oob(cmd_tbl_t *cmdtp, int argc, char *const argv[])
298 uint32_t oob_buf[ENV_OFFSET_SIZE/sizeof(uint32_t)];
299 nand_info_t *nand = &nand_info[0];
302 if (CONFIG_SYS_MAX_NAND_DEVICE == 0 || !nand->name) {
303 puts("no devices available\n");
309 if (!strcmp(cmd, "get")) {
310 ret = get_nand_env_oob(nand, &nand_env_oob_offset);
314 printf("0x%08lx\n", nand_env_oob_offset);
315 } else if (!strcmp(cmd, "set")) {
318 struct mtd_oob_ops ops;
324 /* We don't care about size, or maxsize. */
325 if (arg_off(argv[2], &idx, &addr, &maxsize, &maxsize)) {
326 puts("Offset or partition name expected\n");
331 puts("Partition not on first NAND device\n");
335 if (nand->oobavail < ENV_OFFSET_SIZE) {
336 printf("Insufficient available OOB bytes:\n"
337 "%d OOB bytes available but %d required for "
339 nand->oobavail, ENV_OFFSET_SIZE);
343 if ((addr & (nand->erasesize - 1)) != 0) {
344 printf("Environment offset must be block-aligned\n");
349 ops.mode = MTD_OOB_AUTO;
351 ops.ooblen = ENV_OFFSET_SIZE;
352 ops.oobbuf = (void *) oob_buf;
354 oob_buf[0] = ENV_OOB_MARKER;
355 oob_buf[1] = addr / nand->erasesize;
357 ret = nand->write_oob(nand, ENV_OFFSET_SIZE, &ops);
359 printf("Error writing OOB block 0\n");
363 ret = get_nand_env_oob(nand, &nand_env_oob_offset);
365 printf("Error reading env offset in OOB\n");
369 if (addr != nand_env_oob_offset) {
370 printf("Verification of env offset in OOB failed: "
371 "0x%08llx expected but got 0x%08lx\n",
372 (unsigned long long)addr, nand_env_oob_offset);
382 return CMD_RET_USAGE;
387 static void nand_print_and_set_info(int idx)
389 nand_info_t *nand = &nand_info[idx];
390 struct nand_chip *chip = nand->priv;
392 printf("Device %d: ", idx);
393 if (chip->numchips > 1)
394 printf("%dx ", chip->numchips);
395 printf("%s, sector size %u KiB\n",
396 nand->name, nand->erasesize >> 10);
397 printf(" Page size %8d b\n", nand->writesize);
398 printf(" OOB size %8d b\n", nand->oobsize);
399 printf(" Erase size %8d b\n", nand->erasesize);
400 printf(" subpagesize %8d b\n", chip->subpagesize);
401 printf(" options 0x%8x\n", chip->options);
402 printf(" bbt options 0x%8x\n", chip->bbt_options);
404 /* Set geometry info */
405 setenv_hex("nand_writesize", nand->writesize);
406 setenv_hex("nand_oobsize", nand->oobsize);
407 setenv_hex("nand_erasesize", nand->erasesize);
410 static int raw_access(nand_info_t *nand, ulong addr, loff_t off, ulong count,
417 mtd_oob_ops_t ops = {
418 .datbuf = (u8 *)addr,
419 .oobbuf = ((u8 *)addr) + nand->writesize,
420 .len = nand->writesize,
421 .ooblen = nand->oobsize,
426 ret = mtd_read_oob(nand, off, &ops);
428 ret = mtd_write_oob(nand, off, &ops);
430 ret = nand_verify_page_oob(nand, &ops, off);
434 printf("%s: error at offset %llx, ret %d\n",
435 __func__, (long long)off, ret);
439 addr += nand->writesize + nand->oobsize;
440 off += nand->writesize;
446 /* Adjust a chip/partition size down for bad blocks so we don't
447 * read/write past the end of a chip/partition by accident.
449 static void adjust_size_for_badblocks(loff_t *size, loff_t offset, int dev)
451 /* We grab the nand info object here fresh because this is usually
452 * called after arg_off_size() which can change the value of dev.
454 nand_info_t *nand = &nand_info[dev];
455 loff_t maxoffset = offset + *size;
458 /* count badblocks in NAND from offset to offset + size */
459 for (; offset < maxoffset; offset += nand->erasesize) {
460 if (nand_block_isbad(nand, offset))
463 /* adjust size if any bad blocks found */
465 *size -= badblocks * nand->erasesize;
466 printf("size adjusted to 0x%llx (%d bad blocks)\n",
467 (unsigned long long)*size, badblocks);
471 static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
475 loff_t off, size, maxsize;
478 #ifdef CONFIG_SYS_NAND_QUIET
479 int quiet = CONFIG_SYS_NAND_QUIET;
483 const char *quiet_str = getenv("quiet");
484 int dev = nand_curr_device;
485 int repeat = flag & CMD_FLAG_REPEAT;
487 /* at least two arguments please */
492 quiet = simple_strtoul(quiet_str, NULL, 0) != 0;
496 /* Only "dump" is repeatable. */
497 if (repeat && strcmp(cmd, "dump"))
500 if (strcmp(cmd, "info") == 0) {
503 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) {
504 if (nand_info[i].name)
505 nand_print_and_set_info(i);
510 if (strcmp(cmd, "device") == 0) {
513 if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE)
514 puts("no devices available\n");
516 nand_print_and_set_info(dev);
520 dev = (int)simple_strtoul(argv[2], NULL, 10);
526 #ifdef CONFIG_ENV_OFFSET_OOB
527 /* this command operates only on the first nand device */
528 if (strcmp(cmd, "env.oob") == 0)
529 return do_nand_env_oob(cmdtp, argc - 1, argv + 1);
532 /* The following commands operate on the current device, unless
533 * overridden by a partition specifier. Note that if somehow the
534 * current device is invalid, it will have to be changed to a valid
535 * one before these commands can run, even if a partition specifier
536 * for another device is to be used.
538 if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE ||
539 !nand_info[dev].name) {
540 puts("\nno devices available\n");
543 nand = &nand_info[dev];
545 if (strcmp(cmd, "bad") == 0) {
546 printf("\nDevice %d bad blocks:\n", dev);
547 for (off = 0; off < nand->size; off += nand->erasesize)
548 if (nand_block_isbad(nand, off))
549 printf(" %08llx\n", (unsigned long long)off);
556 * nand erase [clean] [off size]
558 if (strncmp(cmd, "erase", 5) == 0 || strncmp(cmd, "scrub", 5) == 0) {
559 nand_erase_options_t opts;
560 /* "clean" at index 2 means request to write cleanmarker */
561 int clean = argc > 2 && !strcmp("clean", argv[2]);
562 int scrub_yes = argc > 2 && !strcmp("-y", argv[2]);
563 int o = (clean || scrub_yes) ? 3 : 2;
564 int scrub = !strncmp(cmd, "scrub", 5);
567 const char *scrub_warn =
569 "scrub option will erase all factory set bad blocks!\n"
571 "There is no reliable way to recover them.\n"
573 "Use this command only for testing purposes if you\n"
575 "are sure of what you are doing!\n"
576 "\nReally scrub this NAND flash? <y/N>\n";
579 if (!strcmp(&cmd[5], ".spread")) {
581 } else if (!strcmp(&cmd[5], ".part")) {
583 } else if (!strcmp(&cmd[5], ".chip")) {
591 * Don't allow missing arguments to cause full chip/partition
592 * erases -- easy to do accidentally, e.g. with a misspelled
595 if (argc != o + args)
598 printf("\nNAND %s: ", cmd);
599 /* skip first two or three arguments, look for offset and size */
600 if (arg_off_size(argc - o, argv + o, &dev, &off, &size,
604 nand = &nand_info[dev];
606 memset(&opts, 0, sizeof(opts));
611 opts.spread = spread;
618 if (confirm_yesno()) {
621 puts("scrub aborted\n");
626 ret = nand_erase_opts(nand, &opts);
627 printf("%s\n", ret ? "ERROR" : "OK");
629 return ret == 0 ? 0 : 1;
632 if (strncmp(cmd, "dump", 4) == 0) {
636 off = (int)simple_strtoul(argv[2], NULL, 16);
637 ret = nand_dump(nand, off, !strcmp(&cmd[4], ".oob"), repeat);
639 return ret == 0 ? 1 : 0;
642 if (strncmp(cmd, "read", 4) == 0 || strncmp(cmd, "write", 5) == 0) {
651 addr = (ulong)simple_strtoul(argv[2], NULL, 16);
653 read = strncmp(cmd, "read", 4) == 0; /* 1 = read, 0 = write */
654 printf("\nNAND %s: ", read ? "read" : "write");
656 s = strchr(cmd, '.');
658 if (s && !strcmp(s, ".raw")) {
661 if (arg_off(argv[3], &dev, &off, &size, &maxsize))
664 nand = &nand_info[dev];
666 if (argc > 4 && !str2long(argv[4], &pagecount)) {
667 printf("'%s' is not a number\n", argv[4]);
671 if (pagecount * nand->writesize > size) {
672 puts("Size exceeds partition or device limit\n");
676 rwsize = pagecount * (nand->writesize + nand->oobsize);
678 if (arg_off_size(argc - 3, argv + 3, &dev,
679 &off, &size, &maxsize) != 0)
682 /* size is unspecified */
684 adjust_size_for_badblocks(&size, off, dev);
688 nand = &nand_info[dev];
690 if (!s || !strcmp(s, ".jffs2") ||
691 !strcmp(s, ".e") || !strcmp(s, ".i")) {
693 ret = nand_read_skip_bad(nand, off, &rwsize,
697 ret = nand_write_skip_bad(nand, off, &rwsize,
701 #ifdef CONFIG_CMD_NAND_TRIMFFS
702 } else if (!strcmp(s, ".trimffs")) {
704 printf("Unknown nand command suffix '%s'\n", s);
707 ret = nand_write_skip_bad(nand, off, &rwsize, NULL,
708 maxsize, (u_char *)addr,
709 WITH_DROP_FFS | WITH_WR_VERIFY);
711 } else if (!strcmp(s, ".oob")) {
712 /* out-of-band data */
713 mtd_oob_ops_t ops = {
714 .oobbuf = (u8 *)addr,
720 ret = mtd_read_oob(nand, off, &ops);
722 ret = mtd_write_oob(nand, off, &ops);
724 ret = raw_access(nand, addr, off, pagecount, read);
726 printf("Unknown nand command suffix '%s'.\n", s);
730 printf(" %zu bytes %s: %s\n", rwsize,
731 read ? "read" : "written", ret ? "ERROR" : "OK");
733 return ret == 0 ? 0 : 1;
736 #ifdef CONFIG_CMD_NAND_TORTURE
737 if (strcmp(cmd, "torture") == 0) {
741 if (!str2off(argv[2], &off)) {
742 puts("Offset is not a valid number\n");
746 printf("\nNAND torture: device %d offset 0x%llx size 0x%x\n",
747 dev, off, nand->erasesize);
748 ret = nand_torture(nand, off);
749 printf(" %s\n", ret ? "Failed" : "Passed");
751 return ret == 0 ? 0 : 1;
755 if (strcmp(cmd, "markbad") == 0) {
763 addr = simple_strtoul(*argv, NULL, 16);
765 if (mtd_block_markbad(nand, addr)) {
766 printf("block 0x%08lx NOT marked "
767 "as bad! ERROR %d\n",
771 printf("block 0x%08lx successfully "
781 if (strcmp(cmd, "biterr") == 0) {
786 #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
787 if (strcmp(cmd, "lock") == 0) {
791 if (!strcmp("tight", argv[2]))
793 if (!strcmp("status", argv[2]))
797 do_nand_status(nand);
799 if (!nand_lock(nand, tight)) {
800 puts("NAND flash successfully locked\n");
802 puts("Error locking NAND flash\n");
809 if (strncmp(cmd, "unlock", 5) == 0) {
812 s = strchr(cmd, '.');
814 if (s && !strcmp(s, ".allexcept"))
817 if (arg_off_size(argc - 2, argv + 2, &dev, &off, &size,
821 if (!nand_unlock(&nand_info[dev], off, size, allexcept)) {
822 puts("NAND flash successfully unlocked\n");
824 puts("Error unlocking NAND flash, "
825 "write and erase will probably fail\n");
833 return CMD_RET_USAGE;
836 #ifdef CONFIG_SYS_LONGHELP
837 static char nand_help_text[] =
838 "info - show available NAND devices\n"
839 "nand device [dev] - show or set current device\n"
840 "nand read - addr off|partition size\n"
841 "nand write - addr off|partition size\n"
842 " read/write 'size' bytes starting at offset 'off'\n"
843 " to/from memory address 'addr', skipping bad blocks.\n"
844 "nand read.raw - addr off|partition [count]\n"
845 "nand write.raw - addr off|partition [count]\n"
846 " Use read.raw/write.raw to avoid ECC and access the flash as-is.\n"
847 #ifdef CONFIG_CMD_NAND_TRIMFFS
848 "nand write.trimffs - addr off|partition size\n"
849 " write 'size' bytes starting at offset 'off' from memory address\n"
850 " 'addr', skipping bad blocks and dropping any pages at the end\n"
851 " of eraseblocks that contain only 0xFF\n"
853 "nand erase[.spread] [clean] off size - erase 'size' bytes "
854 "from offset 'off'\n"
855 " With '.spread', erase enough for given file size, otherwise,\n"
856 " 'size' includes skipped bad blocks.\n"
857 "nand erase.part [clean] partition - erase entire mtd partition'\n"
858 "nand erase.chip [clean] - erase entire chip'\n"
859 "nand bad - show bad blocks\n"
860 "nand dump[.oob] off - dump page\n"
861 #ifdef CONFIG_CMD_NAND_TORTURE
862 "nand torture off - torture block at offset\n"
864 "nand scrub [-y] off size | scrub.part partition | scrub.chip\n"
865 " really clean NAND erasing bad blocks (UNSAFE)\n"
866 "nand markbad off [...] - mark bad block(s) at offset (UNSAFE)\n"
867 "nand biterr off - make a bit error at offset (UNSAFE)"
868 #ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
870 "nand lock [tight] [status]\n"
871 " bring nand to lock state or display locked pages\n"
872 "nand unlock[.allexcept] [offset] [size] - unlock section"
874 #ifdef CONFIG_ENV_OFFSET_OOB
876 "nand env.oob - environment offset in OOB of block 0 of"
878 "nand env.oob set off|partition - set enviromnent offset\n"
879 "nand env.oob get - get environment offset"
885 nand, CONFIG_SYS_MAXARGS, 1, do_nand,
886 "NAND sub-system", nand_help_text
889 static int nand_load_image(cmd_tbl_t *cmdtp, nand_info_t *nand,
890 ulong offset, ulong addr, char *cmd)
895 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
898 #if defined(CONFIG_FIT)
899 const void *fit_hdr = NULL;
902 s = strchr(cmd, '.');
904 (strcmp(s, ".jffs2") && strcmp(s, ".e") && strcmp(s, ".i"))) {
905 printf("Unknown nand load suffix '%s'\n", s);
906 bootstage_error(BOOTSTAGE_ID_NAND_SUFFIX);
910 printf("\nLoading from %s, offset 0x%lx\n", nand->name, offset);
912 cnt = nand->writesize;
913 r = nand_read_skip_bad(nand, offset, &cnt, NULL, nand->size,
916 puts("** Read error\n");
917 bootstage_error(BOOTSTAGE_ID_NAND_HDR_READ);
920 bootstage_mark(BOOTSTAGE_ID_NAND_HDR_READ);
922 switch (genimg_get_format ((void *)addr)) {
923 #if defined(CONFIG_IMAGE_FORMAT_LEGACY)
924 case IMAGE_FORMAT_LEGACY:
925 hdr = (image_header_t *)addr;
927 bootstage_mark(BOOTSTAGE_ID_NAND_TYPE);
928 image_print_contents (hdr);
930 cnt = image_get_image_size (hdr);
933 #if defined(CONFIG_FIT)
934 case IMAGE_FORMAT_FIT:
935 fit_hdr = (const void *)addr;
936 puts ("Fit image detected...\n");
938 cnt = fit_get_size (fit_hdr);
942 bootstage_error(BOOTSTAGE_ID_NAND_TYPE);
943 puts ("** Unknown image type\n");
946 bootstage_mark(BOOTSTAGE_ID_NAND_TYPE);
948 r = nand_read_skip_bad(nand, offset, &cnt, NULL, nand->size,
951 puts("** Read error\n");
952 bootstage_error(BOOTSTAGE_ID_NAND_READ);
955 bootstage_mark(BOOTSTAGE_ID_NAND_READ);
957 #if defined(CONFIG_FIT)
958 /* This cannot be done earlier, we need complete FIT image in RAM first */
959 if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) {
960 if (!fit_check_format (fit_hdr)) {
961 bootstage_error(BOOTSTAGE_ID_NAND_FIT_READ);
962 puts ("** Bad FIT image format\n");
965 bootstage_mark(BOOTSTAGE_ID_NAND_FIT_READ_OK);
966 fit_print_contents (fit_hdr);
970 /* Loading ok, update default load address */
974 return bootm_maybe_autostart(cmdtp, cmd);
977 static int do_nandboot(cmd_tbl_t *cmdtp, int flag, int argc,
980 char *boot_device = NULL;
982 ulong addr, offset = 0;
983 #if defined(CONFIG_CMD_MTDPARTS)
984 struct mtd_device *dev;
985 struct part_info *part;
989 char *p = (argc == 2) ? argv[1] : argv[2];
990 if (!(str2long(p, &addr)) && (mtdparts_init() == 0) &&
991 (find_dev_and_part(p, &dev, &pnum, &part) == 0)) {
992 if (dev->id->type != MTD_DEV_TYPE_NAND) {
993 puts("Not a NAND device\n");
999 addr = simple_strtoul(argv[1], NULL, 16);
1001 addr = CONFIG_SYS_LOAD_ADDR;
1002 return nand_load_image(cmdtp, &nand_info[dev->id->num],
1003 part->offset, addr, argv[0]);
1008 bootstage_mark(BOOTSTAGE_ID_NAND_PART);
1011 addr = CONFIG_SYS_LOAD_ADDR;
1012 boot_device = getenv("bootdevice");
1015 addr = simple_strtoul(argv[1], NULL, 16);
1016 boot_device = getenv("bootdevice");
1019 addr = simple_strtoul(argv[1], NULL, 16);
1020 boot_device = argv[2];
1023 addr = simple_strtoul(argv[1], NULL, 16);
1024 boot_device = argv[2];
1025 offset = simple_strtoul(argv[3], NULL, 16);
1028 #if defined(CONFIG_CMD_MTDPARTS)
1031 bootstage_error(BOOTSTAGE_ID_NAND_SUFFIX);
1032 return CMD_RET_USAGE;
1034 bootstage_mark(BOOTSTAGE_ID_NAND_SUFFIX);
1037 puts("\n** No boot device **\n");
1038 bootstage_error(BOOTSTAGE_ID_NAND_BOOT_DEVICE);
1041 bootstage_mark(BOOTSTAGE_ID_NAND_BOOT_DEVICE);
1043 idx = simple_strtoul(boot_device, NULL, 16);
1045 if (idx < 0 || idx >= CONFIG_SYS_MAX_NAND_DEVICE || !nand_info[idx].name) {
1046 printf("\n** Device %d not available\n", idx);
1047 bootstage_error(BOOTSTAGE_ID_NAND_AVAILABLE);
1050 bootstage_mark(BOOTSTAGE_ID_NAND_AVAILABLE);
1052 return nand_load_image(cmdtp, &nand_info[idx], offset, addr, argv[0]);
1055 U_BOOT_CMD(nboot, 4, 1, do_nandboot,
1056 "boot from NAND device",
1057 "[partition] | [[[loadAddr] dev] offset]"