2009-02-18 18:56:29 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2009-02-18 18:53:46 +05:30
|
|
|
/* eraseall.c -- erase the whole of a MTD device
|
2009-02-18 18:56:29 +05:30
|
|
|
*
|
|
|
|
* Ported to busybox from mtd-utils.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 Arcom Control System Ltd
|
|
|
|
*
|
|
|
|
* Renamed to flash_eraseall.c
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2009-02-18 18:53:46 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
#include <mtd/mtd-user.h>
|
|
|
|
#include <mtd/jffs2-user.h>
|
|
|
|
|
|
|
|
#define OPTION_J (1 << 0)
|
|
|
|
#define OPTION_Q (1 << 1)
|
2009-02-19 06:47:12 +05:30
|
|
|
#define IS_NAND (1 << 2)
|
|
|
|
#define BBTEST (1 << 3)
|
2009-02-18 18:53:46 +05:30
|
|
|
|
2009-02-18 19:12:51 +05:30
|
|
|
struct globals {
|
|
|
|
/* This is used in the cpu_to_je/je_to_cpu macros in jffs2_user.h */
|
|
|
|
int tgt_endian;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#define target_endian (G.tgt_endian)
|
|
|
|
#define INIT_G() do { \
|
|
|
|
target_endian = __BYTE_ORDER; \
|
|
|
|
} while (0)
|
2009-02-18 18:53:46 +05:30
|
|
|
|
|
|
|
static uint32_t crc32(uint32_t val, const void *ss, int len,
|
|
|
|
uint32_t *crc32_table)
|
|
|
|
{
|
|
|
|
const unsigned char *s = ss;
|
|
|
|
while (--len >= 0)
|
|
|
|
val = crc32_table[(val ^ *s++) & 0xff] ^ (val >> 8);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void show_progress(mtd_info_t *meminfo, erase_info_t *erase)
|
|
|
|
{
|
|
|
|
printf("\rErasing %d Kibyte @ %x -- %2llu %% complete.",
|
2009-02-19 06:47:12 +05:30
|
|
|
(unsigned)meminfo->erasesize / 1024, erase->start,
|
2009-02-18 18:53:46 +05:30
|
|
|
(unsigned long long) erase->start * 100 / meminfo->size);
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
int flash_eraseall_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-02-18 18:56:29 +05:30
|
|
|
int flash_eraseall_main(int argc UNUSED_PARAM, char **argv)
|
2009-02-18 18:53:46 +05:30
|
|
|
{
|
|
|
|
struct jffs2_unknown_node cleanmarker;
|
|
|
|
mtd_info_t meminfo;
|
2009-02-19 06:47:12 +05:30
|
|
|
int fd, clmpos, clmlen;
|
2009-02-18 18:53:46 +05:30
|
|
|
erase_info_t erase;
|
|
|
|
struct stat st;
|
|
|
|
unsigned int flags;
|
|
|
|
char *mtd_name;
|
|
|
|
|
2009-02-18 19:12:51 +05:30
|
|
|
INIT_G();
|
2009-02-18 18:53:46 +05:30
|
|
|
opt_complementary = "=1";
|
2009-02-19 06:47:12 +05:30
|
|
|
flags = BBTEST | getopt32(argv, "jq");
|
2009-02-18 18:53:46 +05:30
|
|
|
|
2009-02-19 06:47:12 +05:30
|
|
|
mtd_name = argv[optind];
|
2009-02-18 18:53:46 +05:30
|
|
|
xstat(mtd_name, &st);
|
|
|
|
if (!S_ISCHR(st.st_mode))
|
|
|
|
bb_error_msg_and_die("%s: not a char device", mtd_name);
|
|
|
|
|
|
|
|
fd = xopen(mtd_name, O_RDWR);
|
|
|
|
|
|
|
|
xioctl(fd, MEMGETINFO, &meminfo);
|
|
|
|
erase.length = meminfo.erasesize;
|
2009-02-19 06:47:12 +05:30
|
|
|
if (meminfo.type == MTD_NANDFLASH)
|
|
|
|
flags |= IS_NAND;
|
2009-02-18 18:53:46 +05:30
|
|
|
|
2009-02-19 06:47:12 +05:30
|
|
|
clmpos = 0;
|
|
|
|
clmlen = 8;
|
2009-02-18 18:53:46 +05:30
|
|
|
if (flags & OPTION_J) {
|
|
|
|
uint32_t *crc32_table;
|
|
|
|
|
|
|
|
crc32_table = crc32_filltable(NULL, 0);
|
|
|
|
|
2009-02-19 06:47:12 +05:30
|
|
|
cleanmarker.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
|
|
|
|
cleanmarker.nodetype = cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER);
|
|
|
|
if (!(flags & IS_NAND))
|
|
|
|
cleanmarker.totlen = cpu_to_je32(sizeof(struct jffs2_unknown_node));
|
2009-02-18 18:53:46 +05:30
|
|
|
else {
|
|
|
|
struct nand_oobinfo oobinfo;
|
|
|
|
|
|
|
|
xioctl(fd, MEMGETOOBSEL, &oobinfo);
|
|
|
|
|
|
|
|
/* Check for autoplacement */
|
|
|
|
if (oobinfo.useecc == MTD_NANDECC_AUTOPLACE) {
|
|
|
|
/* Get the position of the free bytes */
|
|
|
|
clmpos = oobinfo.oobfree[0][0];
|
|
|
|
clmlen = oobinfo.oobfree[0][1];
|
|
|
|
if (clmlen > 8)
|
|
|
|
clmlen = 8;
|
2009-02-19 06:47:12 +05:30
|
|
|
if (clmlen == 0)
|
2009-04-29 17:32:57 +05:30
|
|
|
bb_error_msg_and_die("autoplacement selected and no empty space in oob");
|
2009-02-18 18:53:46 +05:30
|
|
|
} else {
|
|
|
|
/* Legacy mode */
|
|
|
|
switch (meminfo.oobsize) {
|
|
|
|
case 8:
|
|
|
|
clmpos = 6;
|
|
|
|
clmlen = 2;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
clmpos = 8;
|
2009-02-19 06:47:12 +05:30
|
|
|
/*clmlen = 8;*/
|
2009-02-18 18:53:46 +05:30
|
|
|
break;
|
|
|
|
case 64:
|
|
|
|
clmpos = 16;
|
2009-02-19 06:47:12 +05:30
|
|
|
/*clmlen = 8;*/
|
2009-02-18 18:53:46 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cleanmarker.totlen = cpu_to_je32(8);
|
|
|
|
}
|
|
|
|
|
2009-02-19 06:47:12 +05:30
|
|
|
cleanmarker.hdr_crc = cpu_to_je32(crc32(0, &cleanmarker, sizeof(struct jffs2_unknown_node) - 4,
|
2009-02-18 18:53:46 +05:30
|
|
|
crc32_table));
|
|
|
|
}
|
|
|
|
|
2009-02-19 06:47:12 +05:30
|
|
|
/* Don't want to destroy progress indicator by bb_error_msg's */
|
|
|
|
applet_name = xasprintf("\n%s: %s", applet_name, mtd_name);
|
|
|
|
|
2009-02-18 18:53:46 +05:30
|
|
|
for (erase.start = 0; erase.start < meminfo.size;
|
|
|
|
erase.start += meminfo.erasesize) {
|
2009-02-19 06:47:12 +05:30
|
|
|
if (flags & BBTEST) {
|
2009-02-18 18:53:46 +05:30
|
|
|
int ret;
|
|
|
|
loff_t offset = erase.start;
|
2009-02-18 18:56:29 +05:30
|
|
|
|
2009-02-18 18:53:46 +05:30
|
|
|
ret = ioctl(fd, MEMGETBADBLOCK, &offset);
|
|
|
|
if (ret > 0) {
|
|
|
|
if (!(flags & OPTION_Q))
|
|
|
|
bb_info_msg("\nSkipping bad block at 0x%08x", erase.start);
|
|
|
|
continue;
|
2009-02-19 06:47:12 +05:30
|
|
|
}
|
|
|
|
if (ret < 0) {
|
2009-02-18 18:53:46 +05:30
|
|
|
/* Black block table is not available on certain flash
|
|
|
|
* types e.g. NOR
|
|
|
|
*/
|
|
|
|
if (errno == EOPNOTSUPP) {
|
2009-02-24 22:17:03 +05:30
|
|
|
flags &= ~BBTEST;
|
2009-02-19 06:47:12 +05:30
|
|
|
if (flags & IS_NAND)
|
|
|
|
bb_error_msg_and_die("bad block check not available");
|
2009-02-18 18:53:46 +05:30
|
|
|
} else {
|
2009-02-19 06:47:12 +05:30
|
|
|
bb_perror_msg_and_die("MEMGETBADBLOCK error");
|
2009-02-18 18:53:46 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & OPTION_Q))
|
|
|
|
show_progress(&meminfo, &erase);
|
|
|
|
|
|
|
|
xioctl(fd, MEMERASE, &erase);
|
|
|
|
|
|
|
|
/* format for JFFS2 ? */
|
|
|
|
if (!(flags & OPTION_J))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* write cleanmarker */
|
2009-02-19 06:47:12 +05:30
|
|
|
if (flags & IS_NAND) {
|
2009-02-18 18:53:46 +05:30
|
|
|
struct mtd_oob_buf oob;
|
2009-02-18 18:56:29 +05:30
|
|
|
|
2009-02-18 18:53:46 +05:30
|
|
|
oob.ptr = (unsigned char *) &cleanmarker;
|
|
|
|
oob.start = erase.start + clmpos;
|
|
|
|
oob.length = clmlen;
|
2009-02-19 06:47:12 +05:30
|
|
|
xioctl(fd, MEMWRITEOOB, &oob);
|
2009-02-18 18:53:46 +05:30
|
|
|
} else {
|
2009-02-19 06:47:12 +05:30
|
|
|
xlseek(fd, erase.start, SEEK_SET);
|
|
|
|
/* if (lseek(fd, erase.start, SEEK_SET) < 0) {
|
|
|
|
bb_perror_msg("MTD %s failure", "seek");
|
2009-02-18 18:53:46 +05:30
|
|
|
continue;
|
2009-02-19 06:47:12 +05:30
|
|
|
} */
|
|
|
|
xwrite(fd, &cleanmarker, sizeof(cleanmarker));
|
|
|
|
/* if (write(fd, &cleanmarker, sizeof(cleanmarker)) != sizeof(cleanmarker)) {
|
|
|
|
bb_perror_msg("MTD %s failure", "write");
|
2009-02-18 18:53:46 +05:30
|
|
|
continue;
|
2009-02-19 06:47:12 +05:30
|
|
|
} */
|
2009-02-18 18:53:46 +05:30
|
|
|
}
|
|
|
|
if (!(flags & OPTION_Q))
|
|
|
|
printf(" Cleanmarker written at %x.", erase.start);
|
|
|
|
}
|
|
|
|
if (!(flags & OPTION_Q)) {
|
|
|
|
show_progress(&meminfo, &erase);
|
2009-02-18 18:56:29 +05:30
|
|
|
bb_putchar('\n');
|
2009-02-18 18:53:46 +05:30
|
|
|
}
|
|
|
|
|
2009-02-18 18:56:29 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close(fd);
|
2009-02-18 18:53:46 +05:30
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|