1 /* vi: set sw=4 ts=4: */
3 * eraseall.c -- erase the whole of a MTD device
5 * Ported to busybox from mtd-utils.
7 * Copyright (C) 2000 Arcom Control System Ltd
9 * Renamed to flash_eraseall.c
11 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
13 //config:config FLASH_ERASEALL
14 //config: bool "flash_eraseall (5.9 kb)"
15 //config: default n # doesn't build on Ubuntu 8.04
17 //config: The flash_eraseall binary from mtd-utils as of git head c4c6a59eb.
18 //config: This utility is used to erase the whole MTD device.
20 //applet:IF_FLASH_ERASEALL(APPLET(flash_eraseall, BB_DIR_USR_SBIN, BB_SUID_DROP))
21 /* not NOEXEC: if flash operation stalls, use less memory in "hung" process */
23 //kbuild:lib-$(CONFIG_FLASH_ERASEALL) += flash_eraseall.o
25 //usage:#define flash_eraseall_trivial_usage
26 //usage: "[-jNq] MTD_DEVICE"
27 //usage:#define flash_eraseall_full_usage "\n\n"
28 //usage: "Erase an MTD device\n"
29 //usage: "\n -j Format the device for jffs2"
30 //usage: "\n -N Don't skip bad blocks"
31 //usage: "\n -q Don't display progress messages"
34 #include <mtd/mtd-user.h>
35 #include <linux/jffs2.h>
37 #define OPTION_J (1 << 0)
38 #define OPTION_N (1 << 1)
39 #define OPTION_Q (1 << 2)
40 #define IS_NAND (1 << 3)
42 /* mtd/jffs2-user.h used to have this atrocity:
43 extern int target_endian;
45 #define t16(x) ({ __u16 __b = (x); (target_endian==__BYTE_ORDER)?__b:bswap_16(__b); })
46 #define t32(x) ({ __u32 __b = (x); (target_endian==__BYTE_ORDER)?__b:bswap_32(__b); })
48 #define cpu_to_je16(x) ((jint16_t){t16(x)})
49 #define cpu_to_je32(x) ((jint32_t){t32(x)})
50 #define cpu_to_jemode(x) ((jmode_t){t32(x)})
52 #define je16_to_cpu(x) (t16((x).v16))
53 #define je32_to_cpu(x) (t32((x).v32))
54 #define jemode_to_cpu(x) (t32((x).m))
56 but mtd/jffs2-user.h is gone now (at least 2.6.31.6 does not have it anymore)
59 /* We always use native endianness */
62 #define cpu_to_je16(v) ((jint16_t){(v)})
63 #define cpu_to_je32(v) ((jint32_t){(v)})
65 static void show_progress(mtd_info_t
*meminfo
, erase_info_t
*erase
)
67 printf("\rErasing %u Kibyte @ %x - %2u%% complete.",
68 (unsigned)meminfo
->erasesize
/ 1024,
70 (unsigned) ((unsigned long long) erase
->start
* 100 / meminfo
->size
)
75 int flash_eraseall_main(int argc
, char **argv
) MAIN_EXTERNALLY_VISIBLE
;
76 int flash_eraseall_main(int argc UNUSED_PARAM
, char **argv
)
78 struct jffs2_unknown_node cleanmarker
;
80 int fd
, clmpos
, clmlen
;
86 flags
= getopt32(argv
, "^" "jNq" "\0" "=1");
88 mtd_name
= argv
[optind
];
89 fd
= xopen(mtd_name
, O_RDWR
);
91 if (!S_ISCHR(st
.st_mode
))
92 bb_error_msg_and_die("%s: not a char device", mtd_name
);
94 xioctl(fd
, MEMGETINFO
, &meminfo
);
95 erase
.length
= meminfo
.erasesize
;
96 if (meminfo
.type
== MTD_NANDFLASH
)
101 if (flags
& OPTION_J
) {
102 uint32_t *crc32_table
;
104 crc32_table
= crc32_new_table_le();
106 cleanmarker
.magic
= cpu_to_je16(JFFS2_MAGIC_BITMASK
);
107 cleanmarker
.nodetype
= cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER
);
108 if (!(flags
& IS_NAND
))
109 cleanmarker
.totlen
= cpu_to_je32(sizeof(struct jffs2_unknown_node
));
111 struct nand_oobinfo oobinfo
;
113 xioctl(fd
, MEMGETOOBSEL
, &oobinfo
);
115 /* Check for autoplacement */
116 if (oobinfo
.useecc
== MTD_NANDECC_AUTOPLACE
) {
117 /* Get the position of the free bytes */
118 clmpos
= oobinfo
.oobfree
[0][0];
119 clmlen
= oobinfo
.oobfree
[0][1];
123 bb_simple_error_msg_and_die("autoplacement selected and no empty space in oob");
126 switch (meminfo
.oobsize
) {
141 cleanmarker
.totlen
= cpu_to_je32(8);
144 cleanmarker
.hdr_crc
= cpu_to_je32(
145 crc32_block_endian0(0, &cleanmarker
, sizeof(struct jffs2_unknown_node
) - 4, crc32_table
)
149 /* Don't want to destroy progress indicator by bb_error_msg's */
150 applet_name
= xasprintf("\n%s: %s", applet_name
, mtd_name
);
152 for (erase
.start
= 0; erase
.start
< meminfo
.size
;
153 erase
.start
+= meminfo
.erasesize
) {
154 if (!(flags
& OPTION_N
)) {
156 loff_t offset
= erase
.start
;
158 ret
= ioctl(fd
, MEMGETBADBLOCK
, &offset
);
160 if (!(flags
& OPTION_Q
))
161 printf("\nSkipping bad block at 0x%08x\n", erase
.start
);
165 /* Black block table is not available on certain flash
168 if (errno
== EOPNOTSUPP
) {
171 bb_simple_error_msg_and_die("bad block check not available");
173 bb_simple_perror_msg_and_die("MEMGETBADBLOCK error");
178 if (!(flags
& OPTION_Q
))
179 show_progress(&meminfo
, &erase
);
181 xioctl(fd
, MEMERASE
, &erase
);
183 /* format for JFFS2 ? */
184 if (!(flags
& OPTION_J
))
187 /* write cleanmarker */
188 if (flags
& IS_NAND
) {
189 struct mtd_oob_buf oob
;
191 oob
.ptr
= (unsigned char *) &cleanmarker
;
192 oob
.start
= erase
.start
+ clmpos
;
194 xioctl(fd
, MEMWRITEOOB
, &oob
);
196 xlseek(fd
, erase
.start
, SEEK_SET
);
197 /* if (lseek(fd, erase.start, SEEK_SET) < 0) {
198 bb_perror_msg("MTD %s failure", "seek");
201 xwrite(fd
, &cleanmarker
, sizeof(cleanmarker
));
202 /* if (write(fd, &cleanmarker, sizeof(cleanmarker)) != sizeof(cleanmarker)) {
203 bb_perror_msg("MTD %s failure", "write");
207 if (!(flags
& OPTION_Q
))
208 printf(" Cleanmarker written at %x.", erase
.start
);
210 if (!(flags
& OPTION_Q
)) {
211 show_progress(&meminfo
, &erase
);
215 if (ENABLE_FEATURE_CLEAN_UP
)