2003-03-26 06:55:25 +00:00
|
|
|
/*
|
|
|
|
* Driver for NAND support, Rick Bronson
|
|
|
|
* borrowed heavily from:
|
|
|
|
* (c) 1999 Machine Vision Holdings, Inc.
|
|
|
|
* (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
|
2005-04-03 22:35:21 +00:00
|
|
|
*
|
2010-07-05 17:27:07 +00:00
|
|
|
* Ported 'dynenv' to 'nand env.oob' command
|
|
|
|
* (C) 2010 Nanometrics, Inc.
|
|
|
|
* 'dynenv' -- Dynamic environment offset in NAND OOB
|
|
|
|
* (C) Copyright 2006-2007 OpenMoko, Inc.
|
2005-04-03 22:35:21 +00:00
|
|
|
* Added 16-bit nand support
|
|
|
|
* (C) 2004 Texas Instruments
|
2010-08-02 18:04:24 +00:00
|
|
|
*
|
2012-03-02 20:01:57 +00:00
|
|
|
* Copyright 2010, 2012 Freescale Semiconductor
|
2010-08-02 18:04:24 +00:00
|
|
|
* The portions of this file whose copyright is held by Freescale and which
|
|
|
|
* are not considered a derived work of GPL v2-only code may be distributed
|
|
|
|
* and/or modified under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
2003-03-26 06:55:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2007-10-31 12:53:06 +00:00
|
|
|
#include <linux/mtd/mtd.h>
|
2006-03-05 17:57:33 +00:00
|
|
|
#include <command.h>
|
2015-11-09 06:47:45 +00:00
|
|
|
#include <console.h>
|
2006-03-05 17:57:33 +00:00
|
|
|
#include <watchdog.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
#include <jffs2/jffs2.h>
|
|
|
|
#include <nand.h>
|
|
|
|
|
2009-04-21 00:26:31 +00:00
|
|
|
#if defined(CONFIG_CMD_MTDPARTS)
|
2006-10-28 13:55:52 +00:00
|
|
|
|
2009-11-17 20:27:39 +00:00
|
|
|
/* partition handling routines */
|
2006-10-28 13:55:52 +00:00
|
|
|
int mtdparts_init(void);
|
|
|
|
int id_parse(const char *id, const char **ret_id, u8 *dev_type, u8 *dev_num);
|
|
|
|
int find_dev_and_part(const char *id, struct mtd_device **dev,
|
2008-08-14 12:41:06 +00:00
|
|
|
u8 *part_num, struct part_info **part);
|
2006-10-28 13:55:52 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
static int nand_dump(struct mtd_info *mtd, ulong off, int only_oob,
|
|
|
|
int repeat)
|
2006-03-05 17:57:33 +00:00
|
|
|
{
|
|
|
|
int i;
|
2007-12-14 15:33:45 +00:00
|
|
|
u_char *datbuf, *oobbuf, *p;
|
2010-08-25 20:24:01 +00:00
|
|
|
static loff_t last;
|
2013-07-11 08:27:12 +00:00
|
|
|
int ret = 0;
|
2010-08-25 20:24:01 +00:00
|
|
|
|
|
|
|
if (repeat)
|
2016-05-30 18:57:54 +00:00
|
|
|
off = last + mtd->writesize;
|
2010-08-25 20:24:01 +00:00
|
|
|
|
|
|
|
last = off;
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
datbuf = memalign(ARCH_DMA_MINALIGN, mtd->writesize);
|
2013-07-11 08:27:12 +00:00
|
|
|
if (!datbuf) {
|
2006-03-05 17:57:33 +00:00
|
|
|
puts("No memory for page buffer\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2013-07-11 08:27:12 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
oobbuf = memalign(ARCH_DMA_MINALIGN, mtd->oobsize);
|
2013-07-11 08:27:12 +00:00
|
|
|
if (!oobbuf) {
|
|
|
|
puts("No memory for page buffer\n");
|
|
|
|
ret = 1;
|
|
|
|
goto free_dat;
|
|
|
|
}
|
2016-05-30 18:57:54 +00:00
|
|
|
off &= ~(mtd->writesize - 1);
|
2007-10-31 12:53:06 +00:00
|
|
|
loff_t addr = (loff_t) off;
|
2007-12-14 15:33:45 +00:00
|
|
|
struct mtd_oob_ops ops;
|
|
|
|
memset(&ops, 0, sizeof(ops));
|
|
|
|
ops.datbuf = datbuf;
|
2012-02-23 22:47:46 +00:00
|
|
|
ops.oobbuf = oobbuf;
|
2016-05-30 18:57:54 +00:00
|
|
|
ops.len = mtd->writesize;
|
|
|
|
ops.ooblen = mtd->oobsize;
|
2013-01-14 03:46:50 +00:00
|
|
|
ops.mode = MTD_OPS_RAW;
|
2016-05-30 18:57:54 +00:00
|
|
|
i = mtd_read_oob(mtd, addr, &ops);
|
2006-03-05 17:57:33 +00:00
|
|
|
if (i < 0) {
|
2008-07-10 08:10:54 +00:00
|
|
|
printf("Error (%d) reading page %08lx\n", i, off);
|
2013-07-11 08:27:12 +00:00
|
|
|
ret = 1;
|
|
|
|
goto free_all;
|
2006-03-05 17:57:33 +00:00
|
|
|
}
|
2008-07-10 08:10:54 +00:00
|
|
|
printf("Page %08lx dump:\n", off);
|
2008-08-14 12:41:06 +00:00
|
|
|
|
2013-07-11 08:27:13 +00:00
|
|
|
if (!only_oob) {
|
2016-05-30 18:57:54 +00:00
|
|
|
i = mtd->writesize >> 4;
|
2013-07-11 08:27:13 +00:00
|
|
|
p = datbuf;
|
|
|
|
|
|
|
|
while (i--) {
|
2007-12-14 15:33:45 +00:00
|
|
|
printf("\t%02x %02x %02x %02x %02x %02x %02x %02x"
|
|
|
|
" %02x %02x %02x %02x %02x %02x %02x %02x\n",
|
|
|
|
p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7],
|
2008-06-12 18:20:16 +00:00
|
|
|
p[8], p[9], p[10], p[11], p[12], p[13], p[14],
|
|
|
|
p[15]);
|
2013-07-11 08:27:13 +00:00
|
|
|
p += 16;
|
|
|
|
}
|
2006-03-05 17:57:33 +00:00
|
|
|
}
|
2013-07-11 08:27:13 +00:00
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
puts("OOB:\n");
|
2016-05-30 18:57:54 +00:00
|
|
|
i = mtd->oobsize >> 3;
|
2012-02-23 22:47:46 +00:00
|
|
|
p = oobbuf;
|
2006-03-05 17:57:33 +00:00
|
|
|
while (i--) {
|
2007-10-31 12:53:06 +00:00
|
|
|
printf("\t%02x %02x %02x %02x %02x %02x %02x %02x\n",
|
|
|
|
p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]);
|
2006-03-05 17:57:33 +00:00
|
|
|
p += 8;
|
|
|
|
}
|
2013-07-11 08:27:12 +00:00
|
|
|
|
|
|
|
free_all:
|
2007-12-14 15:33:45 +00:00
|
|
|
free(oobbuf);
|
2013-07-11 08:27:12 +00:00
|
|
|
free_dat:
|
|
|
|
free(datbuf);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2013-07-11 08:27:12 +00:00
|
|
|
return ret;
|
2006-03-05 17:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2010-08-02 18:04:24 +00:00
|
|
|
static int set_dev(int dev)
|
|
|
|
{
|
2016-08-24 16:46:32 +00:00
|
|
|
if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE || !nand_info[dev]) {
|
2010-08-02 18:04:24 +00:00
|
|
|
puts("No such device\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nand_curr_device == dev)
|
|
|
|
return 0;
|
|
|
|
|
2016-05-30 18:57:55 +00:00
|
|
|
printf("Device %d: %s", dev, nand_info[dev]->name);
|
2010-08-02 18:04:24 +00:00
|
|
|
puts("... is now current device\n");
|
|
|
|
nand_curr_device = dev;
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_NAND_SELECT_DEVICE
|
2016-05-30 18:57:55 +00:00
|
|
|
board_nand_select_device(nand_info[dev]->priv, dev);
|
2010-08-02 18:04:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-13 15:43:06 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
|
|
|
|
static void print_status(ulong start, ulong end, ulong erasesize, int status)
|
|
|
|
{
|
2012-08-22 21:49:45 +00:00
|
|
|
/*
|
|
|
|
* Micron NAND flash (e.g. MT29F4G08ABADAH4) BLOCK LOCK READ STATUS is
|
|
|
|
* not the same as others. Instead of bit 1 being lock, it is
|
|
|
|
* #lock_tight. To make the driver support either format, ignore bit 1
|
|
|
|
* and use only bit 0 and bit 2.
|
|
|
|
*/
|
2008-12-13 15:43:06 +00:00
|
|
|
printf("%08lx - %08lx: %08lx blocks %s%s%s\n",
|
|
|
|
start,
|
|
|
|
end - 1,
|
|
|
|
(end - start) / erasesize,
|
|
|
|
((status & NAND_LOCK_STATUS_TIGHT) ? "TIGHT " : ""),
|
2012-08-22 21:49:45 +00:00
|
|
|
(!(status & NAND_LOCK_STATUS_UNLOCK) ? "LOCK " : ""),
|
2008-12-13 15:43:06 +00:00
|
|
|
((status & NAND_LOCK_STATUS_UNLOCK) ? "UNLOCK " : ""));
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
static void do_nand_status(struct mtd_info *mtd)
|
2008-12-13 15:43:06 +00:00
|
|
|
{
|
|
|
|
ulong block_start = 0;
|
|
|
|
ulong off;
|
|
|
|
int last_status = -1;
|
|
|
|
|
2016-05-30 18:57:56 +00:00
|
|
|
struct nand_chip *nand_chip = mtd_to_nand(mtd);
|
2008-12-13 15:43:06 +00:00
|
|
|
/* check the WP bit */
|
2016-05-30 18:57:54 +00:00
|
|
|
nand_chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1);
|
2008-12-13 15:43:06 +00:00
|
|
|
printf("device is %swrite protected\n",
|
2016-05-30 18:57:54 +00:00
|
|
|
(nand_chip->read_byte(mtd) & 0x80 ?
|
|
|
|
"NOT " : ""));
|
2008-12-13 15:43:06 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
for (off = 0; off < mtd->size; off += mtd->erasesize) {
|
|
|
|
int s = nand_get_lock_status(mtd, off);
|
2008-12-13 15:43:06 +00:00
|
|
|
|
|
|
|
/* print message only if status has changed */
|
|
|
|
if (s != last_status && off != 0) {
|
2016-05-30 18:57:54 +00:00
|
|
|
print_status(block_start, off, mtd->erasesize,
|
2008-12-13 15:43:06 +00:00
|
|
|
last_status);
|
|
|
|
block_start = off;
|
|
|
|
}
|
|
|
|
last_status = s;
|
|
|
|
}
|
|
|
|
/* Print the last block info */
|
2016-05-30 18:57:54 +00:00
|
|
|
print_status(block_start, off, mtd->erasesize, last_status);
|
2008-12-13 15:43:06 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-07-05 17:27:07 +00:00
|
|
|
#ifdef CONFIG_ENV_OFFSET_OOB
|
|
|
|
unsigned long nand_env_oob_offset;
|
|
|
|
|
2010-08-02 18:04:24 +00:00
|
|
|
int do_nand_env_oob(cmd_tbl_t *cmdtp, int argc, char *const argv[])
|
2010-07-05 17:27:07 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
uint32_t oob_buf[ENV_OFFSET_SIZE/sizeof(uint32_t)];
|
2016-05-30 18:57:55 +00:00
|
|
|
struct mtd_info *mtd = nand_info[0];
|
2010-07-05 17:27:07 +00:00
|
|
|
char *cmd = argv[1];
|
|
|
|
|
2016-09-01 22:31:31 +00:00
|
|
|
if (CONFIG_SYS_MAX_NAND_DEVICE == 0 || !mtd) {
|
2010-08-02 18:04:24 +00:00
|
|
|
puts("no devices available\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_dev(0);
|
|
|
|
|
2010-07-05 17:27:07 +00:00
|
|
|
if (!strcmp(cmd, "get")) {
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = get_nand_env_oob(mtd, &nand_env_oob_offset);
|
2010-07-12 23:17:40 +00:00
|
|
|
if (ret)
|
2010-07-05 17:27:07 +00:00
|
|
|
return 1;
|
2010-07-12 23:17:40 +00:00
|
|
|
|
|
|
|
printf("0x%08lx\n", nand_env_oob_offset);
|
2010-07-05 17:27:07 +00:00
|
|
|
} else if (!strcmp(cmd, "set")) {
|
2010-08-02 18:04:24 +00:00
|
|
|
loff_t addr;
|
|
|
|
loff_t maxsize;
|
2010-07-05 17:27:07 +00:00
|
|
|
struct mtd_oob_ops ops;
|
2010-08-02 18:04:24 +00:00
|
|
|
int idx = 0;
|
2010-07-05 17:27:07 +00:00
|
|
|
|
|
|
|
if (argc < 3)
|
|
|
|
goto usage;
|
|
|
|
|
2013-03-14 05:32:50 +00:00
|
|
|
/* We don't care about size, or maxsize. */
|
2015-04-27 05:42:05 +00:00
|
|
|
if (mtd_arg_off(argv[2], &idx, &addr, &maxsize, &maxsize,
|
2016-05-30 18:57:55 +00:00
|
|
|
MTD_DEV_TYPE_NAND, nand_info[idx]->size)) {
|
2015-04-27 05:42:05 +00:00
|
|
|
puts("Offset or partition name expected\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (set_dev(idx)) {
|
2010-08-02 18:04:24 +00:00
|
|
|
puts("Offset or partition name expected\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (idx != 0) {
|
|
|
|
puts("Partition not on first NAND device\n");
|
2010-07-05 17:27:07 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
if (mtd->oobavail < ENV_OFFSET_SIZE) {
|
2010-07-12 23:17:40 +00:00
|
|
|
printf("Insufficient available OOB bytes:\n"
|
|
|
|
"%d OOB bytes available but %d required for "
|
|
|
|
"env.oob support\n",
|
2016-05-30 18:57:54 +00:00
|
|
|
mtd->oobavail, ENV_OFFSET_SIZE);
|
2010-07-05 17:27:07 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
if ((addr & (mtd->erasesize - 1)) != 0) {
|
2010-07-05 17:27:07 +00:00
|
|
|
printf("Environment offset must be block-aligned\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ops.datbuf = NULL;
|
|
|
|
ops.mode = MTD_OOB_AUTO;
|
|
|
|
ops.ooboffs = 0;
|
|
|
|
ops.ooblen = ENV_OFFSET_SIZE;
|
|
|
|
ops.oobbuf = (void *) oob_buf;
|
|
|
|
|
|
|
|
oob_buf[0] = ENV_OOB_MARKER;
|
2016-05-30 18:57:54 +00:00
|
|
|
oob_buf[1] = addr / mtd->erasesize;
|
2010-07-05 17:27:07 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = mtd->write_oob(mtd, ENV_OFFSET_SIZE, &ops);
|
2010-07-12 23:17:40 +00:00
|
|
|
if (ret) {
|
2010-07-05 17:27:07 +00:00
|
|
|
printf("Error writing OOB block 0\n");
|
|
|
|
return ret;
|
|
|
|
}
|
2010-07-12 23:17:40 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = get_nand_env_oob(mtd, &nand_env_oob_offset);
|
2010-07-12 23:17:40 +00:00
|
|
|
if (ret) {
|
|
|
|
printf("Error reading env offset in OOB\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addr != nand_env_oob_offset) {
|
|
|
|
printf("Verification of env offset in OOB failed: "
|
2010-08-02 18:04:24 +00:00
|
|
|
"0x%08llx expected but got 0x%08lx\n",
|
|
|
|
(unsigned long long)addr, nand_env_oob_offset);
|
2010-07-12 23:17:40 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2010-07-05 17:27:07 +00:00
|
|
|
} else {
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
usage:
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2010-07-05 17:27:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-09-22 01:57:26 +00:00
|
|
|
static void nand_print_and_set_info(int idx)
|
2009-02-11 17:38:20 +00:00
|
|
|
{
|
2016-05-30 18:57:55 +00:00
|
|
|
struct mtd_info *mtd = nand_info[idx];
|
2016-05-30 18:57:56 +00:00
|
|
|
struct nand_chip *chip = mtd_to_nand(mtd);
|
2011-09-22 01:57:26 +00:00
|
|
|
|
2009-02-11 17:38:20 +00:00
|
|
|
printf("Device %d: ", idx);
|
|
|
|
if (chip->numchips > 1)
|
|
|
|
printf("%dx ", chip->numchips);
|
|
|
|
printf("%s, sector size %u KiB\n",
|
2016-05-30 18:57:54 +00:00
|
|
|
mtd->name, mtd->erasesize >> 10);
|
|
|
|
printf(" Page size %8d b\n", mtd->writesize);
|
|
|
|
printf(" OOB size %8d b\n", mtd->oobsize);
|
|
|
|
printf(" Erase size %8d b\n", mtd->erasesize);
|
2015-04-12 08:18:09 +00:00
|
|
|
printf(" subpagesize %8d b\n", chip->subpagesize);
|
|
|
|
printf(" options 0x%8x\n", chip->options);
|
|
|
|
printf(" bbt options 0x%8x\n", chip->bbt_options);
|
2011-09-22 01:57:26 +00:00
|
|
|
|
|
|
|
/* Set geometry info */
|
2016-05-30 18:57:54 +00:00
|
|
|
setenv_hex("nand_writesize", mtd->writesize);
|
|
|
|
setenv_hex("nand_oobsize", mtd->oobsize);
|
|
|
|
setenv_hex("nand_erasesize", mtd->erasesize);
|
2009-02-11 17:38:20 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
static int raw_access(struct mtd_info *mtd, ulong addr, loff_t off,
|
2016-06-15 08:42:18 +00:00
|
|
|
ulong count, int read, int no_verify)
|
2012-03-02 20:01:57 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
while (count--) {
|
|
|
|
/* Raw access */
|
|
|
|
mtd_oob_ops_t ops = {
|
|
|
|
.datbuf = (u8 *)addr,
|
2016-05-30 18:57:54 +00:00
|
|
|
.oobbuf = ((u8 *)addr) + mtd->writesize,
|
|
|
|
.len = mtd->writesize,
|
|
|
|
.ooblen = mtd->oobsize,
|
2013-01-14 03:46:50 +00:00
|
|
|
.mode = MTD_OPS_RAW
|
2012-03-02 20:01:57 +00:00
|
|
|
};
|
|
|
|
|
2015-02-03 17:58:13 +00:00
|
|
|
if (read) {
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = mtd_read_oob(mtd, off, &ops);
|
2015-02-03 17:58:13 +00:00
|
|
|
} else {
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = mtd_write_oob(mtd, off, &ops);
|
2016-06-15 08:42:18 +00:00
|
|
|
if (!ret && !no_verify)
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = nand_verify_page_oob(mtd, &ops, off);
|
2015-02-03 17:58:13 +00:00
|
|
|
}
|
2012-03-02 20:01:57 +00:00
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
printf("%s: error at offset %llx, ret %d\n",
|
|
|
|
__func__, (long long)off, ret);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
addr += mtd->writesize + mtd->oobsize;
|
|
|
|
off += mtd->writesize;
|
2012-03-02 20:01:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-02-26 17:57:14 +00:00
|
|
|
/* Adjust a chip/partition size down for bad blocks so we don't
|
2013-06-20 17:45:31 +00:00
|
|
|
* read/write past the end of a chip/partition by accident.
|
2013-02-26 17:57:14 +00:00
|
|
|
*/
|
|
|
|
static void adjust_size_for_badblocks(loff_t *size, loff_t offset, int dev)
|
|
|
|
{
|
|
|
|
/* We grab the nand info object here fresh because this is usually
|
|
|
|
* called after arg_off_size() which can change the value of dev.
|
|
|
|
*/
|
2016-05-30 18:57:55 +00:00
|
|
|
struct mtd_info *mtd = nand_info[dev];
|
2013-02-26 17:57:14 +00:00
|
|
|
loff_t maxoffset = offset + *size;
|
|
|
|
int badblocks = 0;
|
|
|
|
|
|
|
|
/* count badblocks in NAND from offset to offset + size */
|
2016-05-30 18:57:54 +00:00
|
|
|
for (; offset < maxoffset; offset += mtd->erasesize) {
|
|
|
|
if (nand_block_isbad(mtd, offset))
|
2013-02-26 17:57:14 +00:00
|
|
|
badblocks++;
|
|
|
|
}
|
|
|
|
/* adjust size if any bad blocks found */
|
|
|
|
if (badblocks) {
|
2016-05-30 18:57:54 +00:00
|
|
|
*size -= badblocks * mtd->erasesize;
|
2013-02-26 17:57:14 +00:00
|
|
|
printf("size adjusted to 0x%llx (%d bad blocks)\n",
|
|
|
|
(unsigned long long)*size, badblocks);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-29 13:34:31 +00:00
|
|
|
static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2006-03-05 17:57:33 +00:00
|
|
|
{
|
2010-08-02 18:04:24 +00:00
|
|
|
int i, ret = 0;
|
|
|
|
ulong addr;
|
2013-03-14 05:32:50 +00:00
|
|
|
loff_t off, size, maxsize;
|
2006-03-05 17:57:33 +00:00
|
|
|
char *cmd, *s;
|
2016-05-30 18:57:54 +00:00
|
|
|
struct mtd_info *mtd;
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_NAND_QUIET
|
|
|
|
int quiet = CONFIG_SYS_NAND_QUIET;
|
2007-09-12 10:36:53 +00:00
|
|
|
#else
|
2006-10-10 10:36:02 +00:00
|
|
|
int quiet = 0;
|
2007-09-12 10:36:53 +00:00
|
|
|
#endif
|
2006-10-10 10:36:02 +00:00
|
|
|
const char *quiet_str = getenv("quiet");
|
2010-08-02 18:04:24 +00:00
|
|
|
int dev = nand_curr_device;
|
2010-08-25 20:24:01 +00:00
|
|
|
int repeat = flag & CMD_FLAG_REPEAT;
|
2006-03-05 17:57:33 +00:00
|
|
|
|
|
|
|
/* at least two arguments please */
|
|
|
|
if (argc < 2)
|
|
|
|
goto usage;
|
|
|
|
|
2006-10-10 10:36:02 +00:00
|
|
|
if (quiet_str)
|
|
|
|
quiet = simple_strtoul(quiet_str, NULL, 0) != 0;
|
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
cmd = argv[1];
|
|
|
|
|
2010-08-25 20:24:01 +00:00
|
|
|
/* Only "dump" is repeatable. */
|
|
|
|
if (repeat && strcmp(cmd, "dump"))
|
|
|
|
return 0;
|
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
if (strcmp(cmd, "info") == 0) {
|
|
|
|
|
|
|
|
putc('\n');
|
2008-10-16 13:01:15 +00:00
|
|
|
for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) {
|
2016-08-29 16:11:43 +00:00
|
|
|
if (nand_info[i])
|
2011-09-22 01:57:26 +00:00
|
|
|
nand_print_and_set_info(i);
|
2006-03-05 17:57:33 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(cmd, "device") == 0) {
|
|
|
|
if (argc < 3) {
|
2009-02-11 17:38:20 +00:00
|
|
|
putc('\n');
|
2010-08-02 18:04:24 +00:00
|
|
|
if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE)
|
2009-02-11 17:38:20 +00:00
|
|
|
puts("no devices available\n");
|
2006-03-05 17:57:33 +00:00
|
|
|
else
|
2011-09-22 01:57:26 +00:00
|
|
|
nand_print_and_set_info(dev);
|
2006-03-05 17:57:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-10-20 12:28:52 +00:00
|
|
|
|
2010-08-02 18:04:24 +00:00
|
|
|
dev = (int)simple_strtoul(argv[2], NULL, 10);
|
|
|
|
set_dev(dev);
|
2006-10-20 12:28:52 +00:00
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-05 17:27:07 +00:00
|
|
|
#ifdef CONFIG_ENV_OFFSET_OOB
|
|
|
|
/* this command operates only on the first nand device */
|
2010-08-02 18:04:24 +00:00
|
|
|
if (strcmp(cmd, "env.oob") == 0)
|
|
|
|
return do_nand_env_oob(cmdtp, argc - 1, argv + 1);
|
2010-07-05 17:27:07 +00:00
|
|
|
#endif
|
|
|
|
|
2010-08-02 18:04:24 +00:00
|
|
|
/* The following commands operate on the current device, unless
|
|
|
|
* overridden by a partition specifier. Note that if somehow the
|
|
|
|
* current device is invalid, it will have to be changed to a valid
|
|
|
|
* one before these commands can run, even if a partition specifier
|
|
|
|
* for another device is to be used.
|
|
|
|
*/
|
|
|
|
if (dev < 0 || dev >= CONFIG_SYS_MAX_NAND_DEVICE ||
|
2016-08-29 16:11:43 +00:00
|
|
|
!nand_info[dev]) {
|
2006-03-05 17:57:33 +00:00
|
|
|
puts("\nno devices available\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2016-05-30 18:57:55 +00:00
|
|
|
mtd = nand_info[dev];
|
2006-03-05 17:57:33 +00:00
|
|
|
|
|
|
|
if (strcmp(cmd, "bad") == 0) {
|
2010-08-02 18:04:24 +00:00
|
|
|
printf("\nDevice %d bad blocks:\n", dev);
|
2016-05-30 18:57:54 +00:00
|
|
|
for (off = 0; off < mtd->size; off += mtd->erasesize)
|
|
|
|
if (nand_block_isbad(mtd, off))
|
2010-08-02 18:04:24 +00:00
|
|
|
printf(" %08llx\n", (unsigned long long)off);
|
2006-03-05 17:57:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-28 13:55:52 +00:00
|
|
|
/*
|
|
|
|
* Syntax is:
|
|
|
|
* 0 1 2 3 4
|
|
|
|
* nand erase [clean] [off size]
|
|
|
|
*/
|
nand erase: .spread, .part, .chip subcommands
A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.
Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.
While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.
While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>
2010-08-25 19:43:29 +00:00
|
|
|
if (strncmp(cmd, "erase", 5) == 0 || strncmp(cmd, "scrub", 5) == 0) {
|
2006-10-10 10:36:02 +00:00
|
|
|
nand_erase_options_t opts;
|
2006-10-28 13:55:52 +00:00
|
|
|
/* "clean" at index 2 means request to write cleanmarker */
|
2007-11-14 13:28:11 +00:00
|
|
|
int clean = argc > 2 && !strcmp("clean", argv[2]);
|
2011-09-13 22:20:35 +00:00
|
|
|
int scrub_yes = argc > 2 && !strcmp("-y", argv[2]);
|
|
|
|
int o = (clean || scrub_yes) ? 3 : 2;
|
nand erase: .spread, .part, .chip subcommands
A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.
Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.
While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.
While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>
2010-08-25 19:43:29 +00:00
|
|
|
int scrub = !strncmp(cmd, "scrub", 5);
|
|
|
|
int spread = 0;
|
|
|
|
int args = 2;
|
2011-09-13 22:20:35 +00:00
|
|
|
const char *scrub_warn =
|
|
|
|
"Warning: "
|
|
|
|
"scrub option will erase all factory set bad blocks!\n"
|
|
|
|
" "
|
|
|
|
"There is no reliable way to recover them.\n"
|
|
|
|
" "
|
|
|
|
"Use this command only for testing purposes if you\n"
|
|
|
|
" "
|
|
|
|
"are sure of what you are doing!\n"
|
|
|
|
"\nReally scrub this NAND flash? <y/N>\n";
|
nand erase: .spread, .part, .chip subcommands
A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.
Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.
While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.
While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>
2010-08-25 19:43:29 +00:00
|
|
|
|
|
|
|
if (cmd[5] != 0) {
|
|
|
|
if (!strcmp(&cmd[5], ".spread")) {
|
|
|
|
spread = 1;
|
|
|
|
} else if (!strcmp(&cmd[5], ".part")) {
|
|
|
|
args = 1;
|
|
|
|
} else if (!strcmp(&cmd[5], ".chip")) {
|
|
|
|
args = 0;
|
|
|
|
} else {
|
|
|
|
goto usage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't allow missing arguments to cause full chip/partition
|
|
|
|
* erases -- easy to do accidentally, e.g. with a misspelled
|
|
|
|
* variable name.
|
|
|
|
*/
|
|
|
|
if (argc != o + args)
|
|
|
|
goto usage;
|
2006-10-10 10:36:02 +00:00
|
|
|
|
nand erase: .spread, .part, .chip subcommands
A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.
Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.
While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.
While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>
2010-08-25 19:43:29 +00:00
|
|
|
printf("\nNAND %s: ", cmd);
|
2006-10-28 13:55:52 +00:00
|
|
|
/* skip first two or three arguments, look for offset and size */
|
2015-04-27 05:42:05 +00:00
|
|
|
if (mtd_arg_off_size(argc - o, argv + o, &dev, &off, &size,
|
|
|
|
&maxsize, MTD_DEV_TYPE_NAND,
|
2016-05-30 18:57:55 +00:00
|
|
|
nand_info[dev]->size) != 0)
|
2015-04-27 05:42:05 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (set_dev(dev))
|
2006-10-28 13:55:52 +00:00
|
|
|
return 1;
|
2006-10-10 10:36:02 +00:00
|
|
|
|
2016-05-30 18:57:55 +00:00
|
|
|
mtd = nand_info[dev];
|
2010-08-02 18:04:24 +00:00
|
|
|
|
2006-10-10 10:36:02 +00:00
|
|
|
memset(&opts, 0, sizeof(opts));
|
|
|
|
opts.offset = off;
|
|
|
|
opts.length = size;
|
|
|
|
opts.jffs2 = clean;
|
|
|
|
opts.quiet = quiet;
|
nand erase: .spread, .part, .chip subcommands
A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.
Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.
While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.
While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>
2010-08-25 19:43:29 +00:00
|
|
|
opts.spread = spread;
|
2006-10-10 10:36:02 +00:00
|
|
|
|
|
|
|
if (scrub) {
|
2014-04-24 08:30:07 +00:00
|
|
|
if (scrub_yes) {
|
2011-09-13 22:20:35 +00:00
|
|
|
opts.scrub = 1;
|
2014-04-24 08:30:07 +00:00
|
|
|
} else {
|
|
|
|
puts(scrub_warn);
|
|
|
|
if (confirm_yesno()) {
|
2010-03-20 18:02:58 +00:00
|
|
|
opts.scrub = 1;
|
2014-04-24 08:30:07 +00:00
|
|
|
} else {
|
2010-03-20 18:02:58 +00:00
|
|
|
puts("scrub aborted\n");
|
2013-07-11 08:29:57 +00:00
|
|
|
return 1;
|
2010-03-20 18:02:58 +00:00
|
|
|
}
|
2006-10-10 10:36:02 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = nand_erase_opts(mtd, &opts);
|
2006-03-05 17:57:33 +00:00
|
|
|
printf("%s\n", ret ? "ERROR" : "OK");
|
|
|
|
|
|
|
|
return ret == 0 ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strncmp(cmd, "dump", 4) == 0) {
|
|
|
|
if (argc < 3)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
off = (int)simple_strtoul(argv[2], NULL, 16);
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = nand_dump(mtd, off, !strcmp(&cmd[4], ".oob"), repeat);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
|
|
|
return ret == 0 ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strncmp(cmd, "read", 4) == 0 || strncmp(cmd, "write", 5) == 0) {
|
2010-08-02 18:04:24 +00:00
|
|
|
size_t rwsize;
|
2012-03-02 20:01:57 +00:00
|
|
|
ulong pagecount = 1;
|
2006-10-10 10:36:02 +00:00
|
|
|
int read;
|
2013-02-07 11:34:44 +00:00
|
|
|
int raw = 0;
|
2016-06-15 08:42:18 +00:00
|
|
|
int no_verify = 0;
|
2006-10-10 10:36:02 +00:00
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
if (argc < 4)
|
|
|
|
goto usage;
|
2006-10-10 10:36:02 +00:00
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
addr = (ulong)simple_strtoul(argv[2], NULL, 16);
|
|
|
|
|
2006-10-10 10:36:02 +00:00
|
|
|
read = strncmp(cmd, "read", 4) == 0; /* 1 = read, 0 = write */
|
2006-10-28 13:55:52 +00:00
|
|
|
printf("\nNAND %s: ", read ? "read" : "write");
|
2007-11-08 09:39:53 +00:00
|
|
|
|
2006-10-10 10:36:02 +00:00
|
|
|
s = strchr(cmd, '.');
|
2012-03-02 20:01:57 +00:00
|
|
|
|
2016-06-15 08:42:18 +00:00
|
|
|
if (s && !strncmp(s, ".raw", 4)) {
|
2012-03-02 20:01:57 +00:00
|
|
|
raw = 1;
|
|
|
|
|
2016-06-15 08:42:18 +00:00
|
|
|
if (!strcmp(s, ".raw.noverify"))
|
|
|
|
no_verify = 1;
|
|
|
|
|
2015-04-27 05:42:05 +00:00
|
|
|
if (mtd_arg_off(argv[3], &dev, &off, &size, &maxsize,
|
|
|
|
MTD_DEV_TYPE_NAND,
|
2016-05-30 18:57:55 +00:00
|
|
|
nand_info[dev]->size))
|
2015-04-27 05:42:05 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (set_dev(dev))
|
2012-03-02 20:01:57 +00:00
|
|
|
return 1;
|
|
|
|
|
2016-05-30 18:57:55 +00:00
|
|
|
mtd = nand_info[dev];
|
2014-09-16 12:38:52 +00:00
|
|
|
|
2012-03-02 20:01:57 +00:00
|
|
|
if (argc > 4 && !str2long(argv[4], &pagecount)) {
|
|
|
|
printf("'%s' is not a number\n", argv[4]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
if (pagecount * mtd->writesize > size) {
|
2012-03-02 20:01:57 +00:00
|
|
|
puts("Size exceeds partition or device limit\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
rwsize = pagecount * (mtd->writesize + mtd->oobsize);
|
2012-03-02 20:01:57 +00:00
|
|
|
} else {
|
2015-04-27 05:42:05 +00:00
|
|
|
if (mtd_arg_off_size(argc - 3, argv + 3, &dev, &off,
|
|
|
|
&size, &maxsize,
|
|
|
|
MTD_DEV_TYPE_NAND,
|
2016-05-30 18:57:55 +00:00
|
|
|
nand_info[dev]->size) != 0)
|
2015-04-27 05:42:05 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (set_dev(dev))
|
2012-03-02 20:01:57 +00:00
|
|
|
return 1;
|
|
|
|
|
2013-02-26 17:57:14 +00:00
|
|
|
/* size is unspecified */
|
|
|
|
if (argc < 5)
|
|
|
|
adjust_size_for_badblocks(&size, off, dev);
|
2012-03-02 20:01:57 +00:00
|
|
|
rwsize = size;
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:55 +00:00
|
|
|
mtd = nand_info[dev];
|
2014-09-16 12:38:52 +00:00
|
|
|
|
2008-06-12 18:13:23 +00:00
|
|
|
if (!s || !strcmp(s, ".jffs2") ||
|
|
|
|
!strcmp(s, ".e") || !strcmp(s, ".i")) {
|
2008-06-12 18:20:16 +00:00
|
|
|
if (read)
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = nand_read_skip_bad(mtd, off, &rwsize,
|
2013-03-14 05:32:50 +00:00
|
|
|
NULL, maxsize,
|
2008-08-14 12:41:06 +00:00
|
|
|
(u_char *)addr);
|
2008-06-12 18:20:16 +00:00
|
|
|
else
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = nand_write_skip_bad(mtd, off, &rwsize,
|
2013-03-14 05:32:50 +00:00
|
|
|
NULL, maxsize,
|
2015-02-03 17:58:13 +00:00
|
|
|
(u_char *)addr,
|
|
|
|
WITH_WR_VERIFY);
|
2011-06-14 20:35:07 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND_TRIMFFS
|
|
|
|
} else if (!strcmp(s, ".trimffs")) {
|
|
|
|
if (read) {
|
|
|
|
printf("Unknown nand command suffix '%s'\n", s);
|
|
|
|
return 1;
|
|
|
|
}
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = nand_write_skip_bad(mtd, off, &rwsize, NULL,
|
2013-03-14 05:32:50 +00:00
|
|
|
maxsize, (u_char *)addr,
|
2015-02-03 17:58:13 +00:00
|
|
|
WITH_DROP_FFS | WITH_WR_VERIFY);
|
2011-01-06 03:11:58 +00:00
|
|
|
#endif
|
2009-04-13 02:29:20 +00:00
|
|
|
} else if (!strcmp(s, ".oob")) {
|
2007-10-31 12:53:06 +00:00
|
|
|
/* out-of-band data */
|
|
|
|
mtd_oob_ops_t ops = {
|
|
|
|
.oobbuf = (u8 *)addr,
|
2010-08-02 18:04:24 +00:00
|
|
|
.ooblen = rwsize,
|
2013-01-14 03:46:50 +00:00
|
|
|
.mode = MTD_OPS_RAW
|
2007-10-31 12:53:06 +00:00
|
|
|
};
|
|
|
|
|
2011-09-23 13:43:10 +00:00
|
|
|
if (read)
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = mtd_read_oob(mtd, off, &ops);
|
2011-09-23 13:43:10 +00:00
|
|
|
else
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = mtd_write_oob(mtd, off, &ops);
|
2012-03-02 20:01:57 +00:00
|
|
|
} else if (raw) {
|
2016-06-15 08:42:18 +00:00
|
|
|
ret = raw_access(mtd, addr, off, pagecount, read,
|
|
|
|
no_verify);
|
2006-10-28 13:55:52 +00:00
|
|
|
} else {
|
2008-06-12 18:13:23 +00:00
|
|
|
printf("Unknown nand command suffix '%s'.\n", s);
|
|
|
|
return 1;
|
2006-10-10 10:36:02 +00:00
|
|
|
}
|
|
|
|
|
2010-08-02 18:04:24 +00:00
|
|
|
printf(" %zu bytes %s: %s\n", rwsize,
|
2006-10-10 10:36:02 +00:00
|
|
|
read ? "read" : "written", ret ? "ERROR" : "OK");
|
2006-03-05 17:57:33 +00:00
|
|
|
|
|
|
|
return ret == 0 ? 0 : 1;
|
|
|
|
}
|
2006-10-10 10:36:02 +00:00
|
|
|
|
2012-11-16 19:20:54 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND_TORTURE
|
|
|
|
if (strcmp(cmd, "torture") == 0) {
|
2016-06-13 08:15:48 +00:00
|
|
|
loff_t endoff;
|
|
|
|
unsigned int failed = 0, passed = 0;
|
|
|
|
|
2012-11-16 19:20:54 +00:00
|
|
|
if (argc < 3)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
if (!str2off(argv[2], &off)) {
|
|
|
|
puts("Offset is not a valid number\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-06-13 08:15:48 +00:00
|
|
|
size = mtd->erasesize;
|
|
|
|
if (argc > 3) {
|
|
|
|
if (!str2off(argv[3], &size)) {
|
|
|
|
puts("Size is not a valid number\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2012-11-16 19:20:54 +00:00
|
|
|
|
2016-06-13 08:15:48 +00:00
|
|
|
endoff = off + size;
|
|
|
|
if (endoff > mtd->size) {
|
|
|
|
puts("Arguments beyond end of NAND\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
off = round_down(off, mtd->erasesize);
|
|
|
|
endoff = round_up(endoff, mtd->erasesize);
|
|
|
|
size = endoff - off;
|
|
|
|
printf("\nNAND torture: device %d offset 0x%llx size 0x%llx (block size 0x%x)\n",
|
|
|
|
dev, off, size, mtd->erasesize);
|
|
|
|
while (off < endoff) {
|
|
|
|
ret = nand_torture(mtd, off);
|
|
|
|
if (ret) {
|
|
|
|
failed++;
|
|
|
|
printf(" block at 0x%llx failed\n", off);
|
|
|
|
} else {
|
|
|
|
passed++;
|
|
|
|
}
|
|
|
|
off += mtd->erasesize;
|
|
|
|
}
|
|
|
|
printf(" Passed: %u, failed: %u\n", passed, failed);
|
|
|
|
return failed != 0;
|
2012-11-16 19:20:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-10 10:36:02 +00:00
|
|
|
if (strcmp(cmd, "markbad") == 0) {
|
2009-05-24 15:34:33 +00:00
|
|
|
argc -= 2;
|
|
|
|
argv += 2;
|
2006-10-10 10:36:02 +00:00
|
|
|
|
2009-05-24 15:34:33 +00:00
|
|
|
if (argc <= 0)
|
|
|
|
goto usage;
|
|
|
|
|
|
|
|
while (argc > 0) {
|
|
|
|
addr = simple_strtoul(*argv, NULL, 16);
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
if (mtd_block_markbad(mtd, addr)) {
|
2009-05-24 15:34:33 +00:00
|
|
|
printf("block 0x%08lx NOT marked "
|
|
|
|
"as bad! ERROR %d\n",
|
|
|
|
addr, ret);
|
|
|
|
ret = 1;
|
|
|
|
} else {
|
|
|
|
printf("block 0x%08lx successfully "
|
|
|
|
"marked as bad\n",
|
|
|
|
addr);
|
|
|
|
}
|
|
|
|
--argc;
|
|
|
|
++argv;
|
2006-10-10 10:36:02 +00:00
|
|
|
}
|
2009-05-24 15:34:33 +00:00
|
|
|
return ret;
|
2006-10-10 10:36:02 +00:00
|
|
|
}
|
2008-06-12 18:20:16 +00:00
|
|
|
|
2006-10-10 10:36:02 +00:00
|
|
|
if (strcmp(cmd, "biterr") == 0) {
|
|
|
|
/* todo */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-12-13 15:43:06 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
|
2006-10-10 10:36:02 +00:00
|
|
|
if (strcmp(cmd, "lock") == 0) {
|
2008-12-13 15:43:06 +00:00
|
|
|
int tight = 0;
|
2006-10-10 10:36:02 +00:00
|
|
|
int status = 0;
|
|
|
|
if (argc == 3) {
|
|
|
|
if (!strcmp("tight", argv[2]))
|
|
|
|
tight = 1;
|
|
|
|
if (!strcmp("status", argv[2]))
|
|
|
|
status = 1;
|
|
|
|
}
|
|
|
|
if (status) {
|
2016-05-30 18:57:54 +00:00
|
|
|
do_nand_status(mtd);
|
2007-10-31 12:53:06 +00:00
|
|
|
} else {
|
2016-05-30 18:57:54 +00:00
|
|
|
if (!nand_lock(mtd, tight)) {
|
2007-11-09 12:32:30 +00:00
|
|
|
puts("NAND flash successfully locked\n");
|
|
|
|
} else {
|
|
|
|
puts("Error locking NAND flash\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2006-10-10 10:36:02 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-22 21:49:42 +00:00
|
|
|
if (strncmp(cmd, "unlock", 5) == 0) {
|
|
|
|
int allexcept = 0;
|
|
|
|
|
|
|
|
s = strchr(cmd, '.');
|
|
|
|
|
|
|
|
if (s && !strcmp(s, ".allexcept"))
|
|
|
|
allexcept = 1;
|
|
|
|
|
2015-04-27 05:42:05 +00:00
|
|
|
if (mtd_arg_off_size(argc - 2, argv + 2, &dev, &off, &size,
|
|
|
|
&maxsize, MTD_DEV_TYPE_NAND,
|
2016-05-30 18:57:55 +00:00
|
|
|
nand_info[dev]->size) < 0)
|
2015-04-27 05:42:05 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (set_dev(dev))
|
2006-10-28 13:55:52 +00:00
|
|
|
return 1;
|
2006-10-10 10:36:02 +00:00
|
|
|
|
2016-05-30 18:57:55 +00:00
|
|
|
if (!nand_unlock(nand_info[dev], off, size, allexcept)) {
|
2007-11-09 12:32:30 +00:00
|
|
|
puts("NAND flash successfully unlocked\n");
|
|
|
|
} else {
|
|
|
|
puts("Error unlocking NAND flash, "
|
2007-11-14 13:28:11 +00:00
|
|
|
"write and erase will probably fail\n");
|
2007-11-09 12:32:30 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2006-10-10 10:36:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-12-13 15:43:06 +00:00
|
|
|
#endif
|
2006-10-10 10:36:02 +00:00
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
usage:
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2006-03-05 17:57:33 +00:00
|
|
|
}
|
|
|
|
|
2012-10-29 13:34:31 +00:00
|
|
|
#ifdef CONFIG_SYS_LONGHELP
|
|
|
|
static char nand_help_text[] =
|
2009-05-24 15:06:54 +00:00
|
|
|
"info - show available NAND devices\n"
|
|
|
|
"nand device [dev] - show or set current device\n"
|
|
|
|
"nand read - addr off|partition size\n"
|
|
|
|
"nand write - addr off|partition size\n"
|
|
|
|
" read/write 'size' bytes starting at offset 'off'\n"
|
|
|
|
" to/from memory address 'addr', skipping bad blocks.\n"
|
2012-03-02 20:01:57 +00:00
|
|
|
"nand read.raw - addr off|partition [count]\n"
|
2016-06-15 08:42:18 +00:00
|
|
|
"nand write.raw[.noverify] - addr off|partition [count]\n"
|
2012-03-02 20:01:57 +00:00
|
|
|
" Use read.raw/write.raw to avoid ECC and access the flash as-is.\n"
|
2011-06-14 20:35:07 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND_TRIMFFS
|
|
|
|
"nand write.trimffs - addr off|partition size\n"
|
|
|
|
" write 'size' bytes starting at offset 'off' from memory address\n"
|
|
|
|
" 'addr', skipping bad blocks and dropping any pages at the end\n"
|
|
|
|
" of eraseblocks that contain only 0xFF\n"
|
2011-01-06 03:11:58 +00:00
|
|
|
#endif
|
2011-05-19 17:28:54 +00:00
|
|
|
"nand erase[.spread] [clean] off size - erase 'size' bytes "
|
nand erase: .spread, .part, .chip subcommands
A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.
Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.
While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.
While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>
2010-08-25 19:43:29 +00:00
|
|
|
"from offset 'off'\n"
|
|
|
|
" With '.spread', erase enough for given file size, otherwise,\n"
|
|
|
|
" 'size' includes skipped bad blocks.\n"
|
|
|
|
"nand erase.part [clean] partition - erase entire mtd partition'\n"
|
|
|
|
"nand erase.chip [clean] - erase entire chip'\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
"nand bad - show bad blocks\n"
|
|
|
|
"nand dump[.oob] off - dump page\n"
|
2012-11-16 19:20:54 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND_TORTURE
|
2016-06-13 08:15:48 +00:00
|
|
|
"nand torture off - torture one block at offset\n"
|
|
|
|
"nand torture off [size] - torture blocks from off to off+size\n"
|
2012-11-16 19:20:54 +00:00
|
|
|
#endif
|
2011-09-13 22:20:35 +00:00
|
|
|
"nand scrub [-y] off size | scrub.part partition | scrub.chip\n"
|
nand erase: .spread, .part, .chip subcommands
A while back, in http://lists.denx.de/pipermail/u-boot/2009-June/054428.html,
Michele De Candia posted a patch to not count bad blocks toward the
requested size to be erased. This is desireable when you're passing in
something like $filesize, but not when you're trying to erase a partition.
Thus, a .spread subcommand (named for consistency with
http://lists.denx.de/pipermail/u-boot/2010-August/075163.html) is introduced
to make explicit the user's desire to erase for a given amount of data,
rather than to erase a specific region of the chip.
While passing $filesize to "nand erase" is useful, accidentally passing
something like $fliesize currently produces quite unpleasant results, as the
variable evaluates to nothing and U-Boot assumes that you want to erase
the entire rest of the chip/partition. To improve the safety of the
erase command, require the user to make explicit their intentions by
using a .part or .chip subcommand. This is an incompatible user interface
change, but keeping compatibility would eliminate the safety gain, and IMHO
it's worth it.
While touching nand_erase_opts(), make it accept 64-bit offsets and sizes,
fix the percentage display when erase length is rounded up, eliminate
an inconsistent warning about rounding up the erase length which only
happened when the length was less than one block (rounding up for $filesize
is normal operation), and add a diagnostic if there's an attempt to erase
beginning at a non-block boundary.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Tested-by: Ben Gardiner <bengardiner@nanometrics.ca>
2010-08-25 19:43:29 +00:00
|
|
|
" really clean NAND erasing bad blocks (UNSAFE)\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
"nand markbad off [...] - mark bad block(s) at offset (UNSAFE)\n"
|
|
|
|
"nand biterr off - make a bit error at offset (UNSAFE)"
|
2008-12-13 15:43:06 +00:00
|
|
|
#ifdef CONFIG_CMD_NAND_LOCK_UNLOCK
|
2009-05-24 15:06:54 +00:00
|
|
|
"\n"
|
|
|
|
"nand lock [tight] [status]\n"
|
|
|
|
" bring nand to lock state or display locked pages\n"
|
2012-08-22 21:49:42 +00:00
|
|
|
"nand unlock[.allexcept] [offset] [size] - unlock section"
|
2008-12-13 15:43:06 +00:00
|
|
|
#endif
|
2010-07-05 17:27:07 +00:00
|
|
|
#ifdef CONFIG_ENV_OFFSET_OOB
|
|
|
|
"\n"
|
|
|
|
"nand env.oob - environment offset in OOB of block 0 of"
|
|
|
|
" first device.\n"
|
|
|
|
"nand env.oob set off|partition - set enviromnent offset\n"
|
|
|
|
"nand env.oob get - get environment offset"
|
|
|
|
#endif
|
2012-10-29 13:34:31 +00:00
|
|
|
"";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
U_BOOT_CMD(
|
|
|
|
nand, CONFIG_SYS_MAXARGS, 1, do_nand,
|
|
|
|
"NAND sub-system", nand_help_text
|
2008-12-13 15:43:06 +00:00
|
|
|
);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
static int nand_load_image(cmd_tbl_t *cmdtp, struct mtd_info *mtd,
|
2008-08-14 12:41:06 +00:00
|
|
|
ulong offset, ulong addr, char *cmd)
|
2006-03-05 17:57:33 +00:00
|
|
|
{
|
|
|
|
int r;
|
2011-06-05 13:43:02 +00:00
|
|
|
char *s;
|
2008-04-28 10:08:18 +00:00
|
|
|
size_t cnt;
|
2014-05-28 09:33:33 +00:00
|
|
|
#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
|
2006-03-05 17:57:33 +00:00
|
|
|
image_header_t *hdr;
|
2014-05-28 09:33:33 +00:00
|
|
|
#endif
|
2008-03-12 09:33:01 +00:00
|
|
|
#if defined(CONFIG_FIT)
|
2008-06-06 21:07:40 +00:00
|
|
|
const void *fit_hdr = NULL;
|
2008-03-12 09:33:01 +00:00
|
|
|
#endif
|
2007-07-06 12:58:39 +00:00
|
|
|
|
|
|
|
s = strchr(cmd, '.');
|
|
|
|
if (s != NULL &&
|
2009-03-17 17:06:04 +00:00
|
|
|
(strcmp(s, ".jffs2") && strcmp(s, ".e") && strcmp(s, ".i"))) {
|
2008-06-12 18:13:23 +00:00
|
|
|
printf("Unknown nand load suffix '%s'\n", s);
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_SUFFIX);
|
2008-06-12 18:13:23 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
printf("\nLoading from %s, offset 0x%lx\n", mtd->name, offset);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
cnt = mtd->writesize;
|
|
|
|
r = nand_read_skip_bad(mtd, offset, &cnt, NULL, mtd->size,
|
|
|
|
(u_char *)addr);
|
2006-03-05 17:57:33 +00:00
|
|
|
if (r) {
|
2006-10-28 13:55:52 +00:00
|
|
|
puts("** Read error\n");
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_HDR_READ);
|
2006-03-05 17:57:33 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_HDR_READ);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2008-02-29 13:58:34 +00:00
|
|
|
switch (genimg_get_format ((void *)addr)) {
|
2014-05-28 09:33:33 +00:00
|
|
|
#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
|
2008-02-04 07:28:09 +00:00
|
|
|
case IMAGE_FORMAT_LEGACY:
|
|
|
|
hdr = (image_header_t *)addr;
|
|
|
|
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_TYPE);
|
2008-02-04 07:28:09 +00:00
|
|
|
image_print_contents (hdr);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2008-02-04 07:28:09 +00:00
|
|
|
cnt = image_get_image_size (hdr);
|
|
|
|
break;
|
2014-05-28 09:33:33 +00:00
|
|
|
#endif
|
2008-02-04 07:28:09 +00:00
|
|
|
#if defined(CONFIG_FIT)
|
|
|
|
case IMAGE_FORMAT_FIT:
|
2008-03-12 09:33:01 +00:00
|
|
|
fit_hdr = (const void *)addr;
|
|
|
|
puts ("Fit image detected...\n");
|
|
|
|
|
|
|
|
cnt = fit_get_size (fit_hdr);
|
|
|
|
break;
|
2008-02-04 07:28:09 +00:00
|
|
|
#endif
|
|
|
|
default:
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_TYPE);
|
2008-02-04 07:28:09 +00:00
|
|
|
puts ("** Unknown image type\n");
|
2006-03-05 17:57:33 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_TYPE);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
r = nand_read_skip_bad(mtd, offset, &cnt, NULL, mtd->size,
|
|
|
|
(u_char *)addr);
|
2006-03-05 17:57:33 +00:00
|
|
|
if (r) {
|
2006-10-28 13:55:52 +00:00
|
|
|
puts("** Read error\n");
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_READ);
|
2006-03-05 17:57:33 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_READ);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2008-03-12 09:33:01 +00:00
|
|
|
#if defined(CONFIG_FIT)
|
|
|
|
/* This cannot be done earlier, we need complete FIT image in RAM first */
|
2008-06-06 21:07:40 +00:00
|
|
|
if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) {
|
|
|
|
if (!fit_check_format (fit_hdr)) {
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_FIT_READ);
|
2008-06-06 21:07:40 +00:00
|
|
|
puts ("** Bad FIT image format\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_FIT_READ_OK);
|
2008-06-06 21:07:40 +00:00
|
|
|
fit_print_contents (fit_hdr);
|
|
|
|
}
|
2008-03-12 09:33:01 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-05 17:57:33 +00:00
|
|
|
/* Loading ok, update default load address */
|
|
|
|
|
|
|
|
load_addr = addr;
|
|
|
|
|
2011-06-05 13:43:02 +00:00
|
|
|
return bootm_maybe_autostart(cmdtp, cmd);
|
2006-03-05 17:57:33 +00:00
|
|
|
}
|
|
|
|
|
2012-10-29 13:34:31 +00:00
|
|
|
static int do_nandboot(cmd_tbl_t *cmdtp, int flag, int argc,
|
|
|
|
char * const argv[])
|
2006-10-28 13:55:52 +00:00
|
|
|
{
|
|
|
|
char *boot_device = NULL;
|
|
|
|
int idx;
|
|
|
|
ulong addr, offset = 0;
|
2009-04-21 00:26:31 +00:00
|
|
|
#if defined(CONFIG_CMD_MTDPARTS)
|
2006-10-28 13:55:52 +00:00
|
|
|
struct mtd_device *dev;
|
|
|
|
struct part_info *part;
|
|
|
|
u8 pnum;
|
|
|
|
|
|
|
|
if (argc >= 2) {
|
|
|
|
char *p = (argc == 2) ? argv[1] : argv[2];
|
|
|
|
if (!(str2long(p, &addr)) && (mtdparts_init() == 0) &&
|
|
|
|
(find_dev_and_part(p, &dev, &pnum, &part) == 0)) {
|
|
|
|
if (dev->id->type != MTD_DEV_TYPE_NAND) {
|
|
|
|
puts("Not a NAND device\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (argc > 3)
|
|
|
|
goto usage;
|
|
|
|
if (argc == 3)
|
2007-07-06 12:58:39 +00:00
|
|
|
addr = simple_strtoul(argv[1], NULL, 16);
|
2006-10-28 13:55:52 +00:00
|
|
|
else
|
2008-10-16 13:01:15 +00:00
|
|
|
addr = CONFIG_SYS_LOAD_ADDR;
|
2016-05-30 18:57:55 +00:00
|
|
|
return nand_load_image(cmdtp, nand_info[dev->id->num],
|
2008-08-14 12:41:06 +00:00
|
|
|
part->offset, addr, argv[0]);
|
2006-10-28 13:55:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_PART);
|
2006-10-28 13:55:52 +00:00
|
|
|
switch (argc) {
|
|
|
|
case 1:
|
2008-10-16 13:01:15 +00:00
|
|
|
addr = CONFIG_SYS_LOAD_ADDR;
|
2006-10-28 13:55:52 +00:00
|
|
|
boot_device = getenv("bootdevice");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
addr = simple_strtoul(argv[1], NULL, 16);
|
|
|
|
boot_device = getenv("bootdevice");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
addr = simple_strtoul(argv[1], NULL, 16);
|
|
|
|
boot_device = argv[2];
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
addr = simple_strtoul(argv[1], NULL, 16);
|
|
|
|
boot_device = argv[2];
|
|
|
|
offset = simple_strtoul(argv[3], NULL, 16);
|
|
|
|
break;
|
|
|
|
default:
|
2009-04-21 00:26:31 +00:00
|
|
|
#if defined(CONFIG_CMD_MTDPARTS)
|
2006-10-28 13:55:52 +00:00
|
|
|
usage:
|
|
|
|
#endif
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_SUFFIX);
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2006-10-28 13:55:52 +00:00
|
|
|
}
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_SUFFIX);
|
2006-10-28 13:55:52 +00:00
|
|
|
|
|
|
|
if (!boot_device) {
|
|
|
|
puts("\n** No boot device **\n");
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_BOOT_DEVICE);
|
2006-10-28 13:55:52 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_BOOT_DEVICE);
|
2006-03-05 17:57:33 +00:00
|
|
|
|
2006-10-28 13:55:52 +00:00
|
|
|
idx = simple_strtoul(boot_device, NULL, 16);
|
|
|
|
|
2016-08-29 16:11:43 +00:00
|
|
|
if (idx < 0 || idx >= CONFIG_SYS_MAX_NAND_DEVICE || !nand_info[idx]) {
|
2006-10-28 13:55:52 +00:00
|
|
|
printf("\n** Device %d not available\n", idx);
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_error(BOOTSTAGE_ID_NAND_AVAILABLE);
|
2006-10-28 13:55:52 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2012-02-13 13:51:18 +00:00
|
|
|
bootstage_mark(BOOTSTAGE_ID_NAND_AVAILABLE);
|
2006-10-28 13:55:52 +00:00
|
|
|
|
2016-05-30 18:57:55 +00:00
|
|
|
return nand_load_image(cmdtp, nand_info[idx], offset, addr, argv[0]);
|
2006-10-28 13:55:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
U_BOOT_CMD(nboot, 4, 1, do_nandboot,
|
2009-01-28 00:03:12 +00:00
|
|
|
"boot from NAND device",
|
2009-05-24 15:06:54 +00:00
|
|
|
"[partition] | [[[loadAddr] dev] offset]"
|
|
|
|
);
|