blob: 8e93060ca9678940afc1b6c6ace4da1fbe1984fe [file] [log] [blame]
Bernhard Reutner-Fischer7d9d2512009-02-18 13:26:29 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko2ab94032017-10-05 15:33:28 +02002/*
3 * eraseall.c -- erase the whole of a MTD device
Bernhard Reutner-Fischer7d9d2512009-02-18 13:26:29 +00004 *
5 * Ported to busybox from mtd-utils.
6 *
7 * Copyright (C) 2000 Arcom Control System Ltd
8 *
9 * Renamed to flash_eraseall.c
10 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020011 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000012 */
Denys Vlasenkofb4da162016-11-22 23:14:24 +010013//config:config FLASH_ERASEALL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020014//config: bool "flash_eraseall (5.5 kb)"
Denys Vlasenkofb4da162016-11-22 23:14:24 +010015//config: default n # doesn't build on Ubuntu 8.04
16//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020017//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.
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000019
Denys Vlasenkof88e3bf2016-11-22 23:54:17 +010020//applet:IF_FLASH_ERASEALL(APPLET(flash_eraseall, BB_DIR_USR_SBIN, BB_SUID_DROP))
Denys Vlasenko798b9452017-08-07 16:00:25 +020021/* not NOEXEC: if flash operation stalls, use less memory in "hung" process */
Denys Vlasenkof88e3bf2016-11-22 23:54:17 +010022
23//kbuild:lib-$(CONFIG_FLASH_ERASEALL) += flash_eraseall.o
24
Pere Orga5bc8c002011-04-11 03:29:49 +020025//usage:#define flash_eraseall_trivial_usage
Alexander Shiyan45dc96c2013-03-15 00:42:39 +010026//usage: "[-jNq] MTD_DEVICE"
Pere Orga5bc8c002011-04-11 03:29:49 +020027//usage:#define flash_eraseall_full_usage "\n\n"
28//usage: "Erase an MTD device\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020029//usage: "\n -j Format the device for jffs2"
Alexander Shiyan45dc96c2013-03-15 00:42:39 +010030//usage: "\n -N Don't skip bad blocks"
Pere Orga5bc8c002011-04-11 03:29:49 +020031//usage: "\n -q Don't display progress messages"
32
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000033#include "libbb.h"
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000034#include <mtd/mtd-user.h>
Denys Vlasenko86cfb702009-11-27 13:26:17 +010035#include <linux/jffs2.h>
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000036
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020037#define OPTION_J (1 << 0)
Alexander Shiyan45dc96c2013-03-15 00:42:39 +010038#define OPTION_N (1 << 1)
39#define OPTION_Q (1 << 2)
40#define IS_NAND (1 << 3)
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000041
Denys Vlasenko86cfb702009-11-27 13:26:17 +010042/* mtd/jffs2-user.h used to have this atrocity:
43extern int target_endian;
44
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); })
47
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)})
51
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))
55
56but mtd/jffs2-user.h is gone now (at least 2.6.31.6 does not have it anymore)
57*/
58
59/* We always use native endianness */
60#undef cpu_to_je16
61#undef cpu_to_je32
62#define cpu_to_je16(v) ((jint16_t){(v)})
63#define cpu_to_je32(v) ((jint32_t){(v)})
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000064
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000065static void show_progress(mtd_info_t *meminfo, erase_info_t *erase)
66{
Denys Vlasenko86cfb702009-11-27 13:26:17 +010067 printf("\rErasing %u Kibyte @ %x - %2u%% complete.",
68 (unsigned)meminfo->erasesize / 1024,
69 erase->start,
70 (unsigned) ((unsigned long long) erase->start * 100 / meminfo->size)
71 );
Denys Vlasenko8131eea2009-11-02 14:19:51 +010072 fflush_all();
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000073}
74
75int flash_eraseall_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischer7d9d2512009-02-18 13:26:29 +000076int flash_eraseall_main(int argc UNUSED_PARAM, char **argv)
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000077{
78 struct jffs2_unknown_node cleanmarker;
79 mtd_info_t meminfo;
Denis Vlasenko962e3652009-02-19 01:17:12 +000080 int fd, clmpos, clmlen;
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000081 erase_info_t erase;
82 struct stat st;
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000083 unsigned int flags;
84 char *mtd_name;
85
Denys Vlasenko22542ec2017-08-08 21:55:02 +020086 flags = getopt32(argv, "^" "jNq" "\0" "=1");
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000087
Denis Vlasenko962e3652009-02-19 01:17:12 +000088 mtd_name = argv[optind];
Denys Vlasenko86cfb702009-11-27 13:26:17 +010089 fd = xopen(mtd_name, O_RDWR);
90 fstat(fd, &st);
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000091 if (!S_ISCHR(st.st_mode))
92 bb_error_msg_and_die("%s: not a char device", mtd_name);
93
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000094 xioctl(fd, MEMGETINFO, &meminfo);
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000095 erase.length = meminfo.erasesize;
Denis Vlasenko962e3652009-02-19 01:17:12 +000096 if (meminfo.type == MTD_NANDFLASH)
97 flags |= IS_NAND;
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +000098
Denis Vlasenko962e3652009-02-19 01:17:12 +000099 clmpos = 0;
100 clmlen = 8;
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000101 if (flags & OPTION_J) {
102 uint32_t *crc32_table;
103
Denys Vlasenkoddacb032018-02-01 10:56:19 +0100104 crc32_table = crc32_new_table_le();
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000105
Denis Vlasenko962e3652009-02-19 01:17:12 +0000106 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));
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000110 else {
111 struct nand_oobinfo oobinfo;
112
113 xioctl(fd, MEMGETOOBSEL, &oobinfo);
114
115 /* Check for autoplacement */
116 if (oobinfo.useecc == MTD_NANDECC_AUTOPLACE) {
117 /* Get the position of the free bytes */
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000118 clmpos = oobinfo.oobfree[0][0];
119 clmlen = oobinfo.oobfree[0][1];
120 if (clmlen > 8)
121 clmlen = 8;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000122 if (clmlen == 0)
Denis Vlasenko1fd3b382009-04-29 12:02:57 +0000123 bb_error_msg_and_die("autoplacement selected and no empty space in oob");
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000124 } else {
125 /* Legacy mode */
126 switch (meminfo.oobsize) {
127 case 8:
128 clmpos = 6;
129 clmlen = 2;
130 break;
131 case 16:
132 clmpos = 8;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000133 /*clmlen = 8;*/
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000134 break;
135 case 64:
136 clmpos = 16;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000137 /*clmlen = 8;*/
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000138 break;
139 }
140 }
141 cleanmarker.totlen = cpu_to_je32(8);
142 }
143
Denys Vlasenko9ce642f2010-10-27 15:26:45 +0200144 cleanmarker.hdr_crc = cpu_to_je32(
145 crc32_block_endian0(0, &cleanmarker, sizeof(struct jffs2_unknown_node) - 4, crc32_table)
146 );
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000147 }
148
Denis Vlasenko962e3652009-02-19 01:17:12 +0000149 /* Don't want to destroy progress indicator by bb_error_msg's */
150 applet_name = xasprintf("\n%s: %s", applet_name, mtd_name);
151
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000152 for (erase.start = 0; erase.start < meminfo.size;
153 erase.start += meminfo.erasesize) {
Alexander Shiyan45dc96c2013-03-15 00:42:39 +0100154 if (!(flags & OPTION_N)) {
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000155 int ret;
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000156 loff_t offset = erase.start;
Bernhard Reutner-Fischer7d9d2512009-02-18 13:26:29 +0000157
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000158 ret = ioctl(fd, MEMGETBADBLOCK, &offset);
159 if (ret > 0) {
160 if (!(flags & OPTION_Q))
Denys Vlasenko066e76b2016-03-30 16:20:28 +0200161 printf("\nSkipping bad block at 0x%08x\n", erase.start);
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000162 continue;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000163 }
164 if (ret < 0) {
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000165 /* Black block table is not available on certain flash
166 * types e.g. NOR
167 */
168 if (errno == EOPNOTSUPP) {
Alexander Shiyan45dc96c2013-03-15 00:42:39 +0100169 flags |= OPTION_N;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000170 if (flags & IS_NAND)
171 bb_error_msg_and_die("bad block check not available");
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000172 } else {
Denis Vlasenko962e3652009-02-19 01:17:12 +0000173 bb_perror_msg_and_die("MEMGETBADBLOCK error");
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000174 }
175 }
176 }
177
178 if (!(flags & OPTION_Q))
179 show_progress(&meminfo, &erase);
180
181 xioctl(fd, MEMERASE, &erase);
182
183 /* format for JFFS2 ? */
184 if (!(flags & OPTION_J))
185 continue;
186
187 /* write cleanmarker */
Denis Vlasenko962e3652009-02-19 01:17:12 +0000188 if (flags & IS_NAND) {
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000189 struct mtd_oob_buf oob;
Bernhard Reutner-Fischer7d9d2512009-02-18 13:26:29 +0000190
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000191 oob.ptr = (unsigned char *) &cleanmarker;
192 oob.start = erase.start + clmpos;
193 oob.length = clmlen;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000194 xioctl(fd, MEMWRITEOOB, &oob);
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000195 } else {
Denis Vlasenko962e3652009-02-19 01:17:12 +0000196 xlseek(fd, erase.start, SEEK_SET);
197 /* if (lseek(fd, erase.start, SEEK_SET) < 0) {
198 bb_perror_msg("MTD %s failure", "seek");
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000199 continue;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000200 } */
201 xwrite(fd, &cleanmarker, sizeof(cleanmarker));
202 /* if (write(fd, &cleanmarker, sizeof(cleanmarker)) != sizeof(cleanmarker)) {
203 bb_perror_msg("MTD %s failure", "write");
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000204 continue;
Denis Vlasenko962e3652009-02-19 01:17:12 +0000205 } */
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000206 }
207 if (!(flags & OPTION_Q))
208 printf(" Cleanmarker written at %x.", erase.start);
209 }
210 if (!(flags & OPTION_Q)) {
211 show_progress(&meminfo, &erase);
Bernhard Reutner-Fischer7d9d2512009-02-18 13:26:29 +0000212 bb_putchar('\n');
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000213 }
214
Bernhard Reutner-Fischer7d9d2512009-02-18 13:26:29 +0000215 if (ENABLE_FEATURE_CLEAN_UP)
216 close(fd);
Bernhard Reutner-Fischer0d22d172009-02-18 13:23:46 +0000217 return EXIT_SUCCESS;
218}