2 * mtd - simple memory technology device manipulation tool
4 * Copyright (C) 2005 Waldemar Brodkorb <wbx@dass-it.de>,
5 * Felix Fietkau <nbd@openwrt.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * The code is based on the linux-mtd examples.
32 #include <sys/ioctl.h>
33 #include <sys/syscall.h>
39 #include <sys/ioctl.h>
40 #include <sys/types.h>
41 #include <sys/param.h>
42 #include <sys/mount.h>
44 #include <sys/reboot.h>
45 #include <linux/reboot.h>
49 #define TRX_MAGIC 0x30524448 /* "HDR0" */
50 #define BUFSIZE (16 * 1024)
55 #define JFFS2_DEFAULT_DIR "" /* directory name without /, empty means root dir */
57 #define SYSTYPE_UNKNOWN 0
58 #define SYSTYPE_BROADCOM 1
62 uint32_t magic
; /* "HDR0" */
63 uint32_t len
; /* Length of file including header */
64 uint32_t crc32
; /* 32-bit CRC from flag_version to end of file */
65 uint32_t flag_version
; /* 0:15 flags, 16:31 version */
66 uint32_t offsets
[3]; /* Offsets of partitions from start of header */
69 static char buf
[BUFSIZE
];
70 static char *imagefile
;
76 int mtd_open(const char *mtd
)
82 int flags
= O_RDWR
| O_SYNC
;
84 if ((fp
= fopen("/proc/mtd", "r"))) {
85 while (fgets(dev
, sizeof(dev
), fp
)) {
86 if (sscanf(dev
, "mtd%d:", &i
) && strstr(dev
, mtd
)) {
87 snprintf(dev
, sizeof(dev
), "/dev/mtd/%d", i
);
88 if ((ret
=open(dev
, flags
))<0) {
89 snprintf(dev
, sizeof(dev
), "/dev/mtd%d", i
);
99 return open(mtd
, flags
);
102 int mtd_check_open(const char *mtd
)
104 struct mtd_info_user mtdInfo
;
109 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
113 if(ioctl(fd
, MEMGETINFO
, &mtdInfo
)) {
114 fprintf(stderr
, "Could not get MTD device info from %s\n", mtd
);
118 mtdsize
= mtdInfo
.size
;
119 erasesize
= mtdInfo
.erasesize
;
124 int mtd_erase_block(int fd
, int offset
)
126 struct erase_info_user mtdEraseInfo
;
128 mtdEraseInfo
.start
= offset
;
129 mtdEraseInfo
.length
= erasesize
;
130 ioctl(fd
, MEMUNLOCK
, &mtdEraseInfo
);
131 if (ioctl (fd
, MEMERASE
, &mtdEraseInfo
) < 0) {
132 fprintf(stderr
, "Erasing mtd failed.\n");
137 int mtd_write_buffer(int fd
, char *buf
, int offset
, int length
)
139 lseek(fd
, offset
, SEEK_SET
);
140 write(fd
, buf
, length
);
146 image_check_brcm(int imagefd
, const char *mtd
)
148 struct trx_header
*trx
= (struct trx_header
*) buf
;
151 if (strcmp(mtd
, "linux") != 0)
154 buflen
= read(imagefd
, buf
, 32);
156 fprintf(stdout
, "Could not get image header, file too small (%ld bytes)\n", buflen
);
160 if (trx
->magic
!= TRX_MAGIC
|| trx
->len
< sizeof(struct trx_header
)) {
162 fprintf(stderr
, "Bad trx header\n");
163 fprintf(stderr
, "This is not the correct file format; refusing to flash.\n"
164 "Please specify the correct file or use -f to force.\n");
169 /* check if image fits to mtd device */
170 fd
= mtd_check_open(mtd
);
172 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
176 if(mtdsize
< trx
->len
) {
177 fprintf(stderr
, "Image too big for partition: %s\n", mtd
);
185 #endif /* target_brcm */
188 image_check(int imagefd
, const char *mtd
)
196 return image_check_brcm(imagefd
, mtd
);
200 static int mtd_check(const char *mtd
)
204 fd
= mtd_check_open(mtd
);
213 mtd_unlock(const char *mtd
)
216 struct erase_info_user mtdLockInfo
;
218 fd
= mtd_check_open(mtd
);
220 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
225 fprintf(stderr
, "Unlocking %s ...\n", mtd
);
227 mtdLockInfo
.start
= 0;
228 mtdLockInfo
.length
= mtdsize
;
229 if(ioctl(fd
, MEMUNLOCK
, &mtdLockInfo
)) {
239 mtd_erase(const char *mtd
)
242 struct erase_info_user mtdEraseInfo
;
245 fprintf(stderr
, "Erasing %s ...\n", mtd
);
247 fd
= mtd_check_open(mtd
);
249 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
253 mtdEraseInfo
.length
= erasesize
;
255 for (mtdEraseInfo
.start
= 0;
256 mtdEraseInfo
.start
< mtdsize
;
257 mtdEraseInfo
.start
+= erasesize
) {
259 ioctl(fd
, MEMUNLOCK
, &mtdEraseInfo
);
260 if(ioctl(fd
, MEMERASE
, &mtdEraseInfo
))
261 fprintf(stderr
, "Failed to erase block on %s at 0x%x\n", mtd
, mtdEraseInfo
.start
);
270 mtd_refresh(const char *mtd
)
275 fprintf(stderr
, "Refreshing mtd partition %s ... ", mtd
);
277 fd
= mtd_check_open(mtd
);
279 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
283 if (ioctl(fd
, MTDREFRESH
, NULL
)) {
284 fprintf(stderr
, "Failed to refresh the MTD device\n");
291 fprintf(stderr
, "\n");
297 mtd_write(int imagefd
, const char *mtd
)
301 struct erase_info_user mtdEraseInfo
;
304 fd
= mtd_check_open(mtd
);
306 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
311 fprintf(stderr
, "Writing from %s to %s ... ", imagefile
, mtd
);
315 fprintf(stderr
, " [ ]");
318 /* buffer may contain data already (from trx check) */
320 r
+= read(imagefd
, buf
+ buflen
, BUFSIZE
- buflen
);
326 /* need to erase the next block before writing data to it */
329 fprintf(stderr
, "\b\b\b[e]");
331 mtd_erase_block(fd
, e
);
333 /* erase the chunk */
338 fprintf(stderr
, "\b\b\b[w]");
340 if ((result
= write(fd
, buf
, r
)) < r
) {
342 fprintf(stderr
, "Error writing image.\n");
345 fprintf(stderr
, "Insufficient space.\n");
353 fprintf(stderr
, "\b\b\b\b");
356 fprintf(stderr
, "\n");
362 static void usage(void)
364 fprintf(stderr
, "Usage: mtd [<options> ...] <command> [<arguments> ...] <device>\n\n"
365 "The device is in the format of mtdX (eg: mtd4) or its label.\n"
366 "mtd recognizes these commands:\n"
367 " unlock unlock the device\n"
368 " refresh refresh mtd partition\n"
369 " erase erase all data on device\n"
370 " write <imagefile>|- write <imagefile> (use - for stdin) to device\n"
371 " jffs2write <file> append <file> to the jffs2 partition on the device\n"
372 "Following options are available:\n"
373 " -q quiet mode (once: no [w] on writing,\n"
374 " twice: no status messages)\n"
375 " -r reboot after successful command\n"
376 " -f force write without trx checks\n"
377 " -e <device> erase <device> before executing the command\n"
378 " -d <name> directory for jffs2write, defaults to \"tmp\"\n"
380 "Example: To write linux.trx to mtd4 labeled as linux and reboot afterwards\n"
381 " mtd -r write linux.trx linux\n\n");
385 static void do_reboot(void)
387 fprintf(stderr
, "Rebooting ...\n");
390 /* try regular reboot method first */
391 system("/sbin/reboot");
394 /* if we're still alive at this point, force the kernel to reboot */
395 syscall(SYS_reboot
,LINUX_REBOOT_MAGIC1
,LINUX_REBOOT_MAGIC2
,LINUX_REBOOT_CMD_RESTART
,NULL
);
398 int main (int argc
, char **argv
)
400 int ch
, i
, boot
, unlock
, imagefd
, force
, unlocked
;
401 char *erase
[MAX_ARGS
], *device
;
402 char *jffs2dir
= JFFS2_DEFAULT_DIR
;
417 while ((ch
= getopt(argc
, argv
, "frqe:d:")) != -1)
430 while ((erase
[i
] != NULL
) && ((i
+ 1) < MAX_ARGS
))
449 if ((strcmp(argv
[0], "unlock") == 0) && (argc
== 2)) {
452 } else if ((strcmp(argv
[0], "refresh") == 0) && (argc
== 2)) {
455 } else if ((strcmp(argv
[0], "erase") == 0) && (argc
== 2)) {
458 } else if ((strcmp(argv
[0], "write") == 0) && (argc
== 3)) {
462 if (strcmp(argv
[1], "-") == 0) {
463 imagefile
= "<stdin>";
467 if ((imagefd
= open(argv
[1], O_RDONLY
)) < 0) {
468 fprintf(stderr
, "Couldn't open image file: %s!\n", imagefile
);
473 /* check trx file before erasing or writing anything */
474 if (!image_check(imagefd
, device
)) {
476 fprintf(stderr
, "Image check failed.\n");
480 if (!mtd_check(device
)) {
481 fprintf(stderr
, "Can't open device for writing!\n");
485 } else if ((strcmp(argv
[0], "jffs2write") == 0) && (argc
== 3)) {
486 cmd
= CMD_JFFS2WRITE
;
490 if (!mtd_check(device
)) {
491 fprintf(stderr
, "Can't open device for writing!\n");
502 while (erase
[i
] != NULL
) {
503 mtd_unlock(erase
[i
]);
505 if (strcmp(erase
[i
], device
) == 0)
524 mtd_write(imagefd
, device
);
529 mtd_write_jffs2(device
, imagefile
, jffs2dir
);