4 * Copyright (C) 2005 Waldemar Brodkorb
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 * mtd utility for the openwrt project
23 * it is mainly code from the linux-mtd project, which accepts the same
24 * command line arguments as the broadcom utility
37 #include <sys/ioctl.h>
38 #include <sys/types.h>
39 #include <sys/param.h>
40 #include <sys/mount.h>
44 #include <linux/mtd/mtd.h>
47 #define TRX_MAGIC 0x30524448 /* "HDR0" */
49 #define TRX_MAX_LEN 0x3A0000
50 #define TRX_NO_HEADER 1 /* Do not write TRX header */
53 uint32_t magic
; /* "HDR0" */
54 uint32_t len
; /* Length of file including header */
55 uint32_t crc32
; /* 32-bit CRC from flag_version to end of file */
56 uint32_t flag_version
; /* 0:15 flags, 16:31 version */
57 uint32_t offsets
[3]; /* Offsets of partitions from start of header */
60 #define BUFSIZE (10 * 1024)
62 extern int mtd_open(const char *mtd
, int flags
);
63 extern int mtd_erase(const char *mtd
);
64 extern int mtd_write(const char *trxfile
, const char *mtd
);
67 mtd_unlock(const char *mtd
)
70 struct mtd_info_user mtdInfo
;
71 struct erase_info_user mtdLockInfo
;
73 fd
= mtd_open(mtd
, O_RDWR
);
75 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
79 if(ioctl(fd
, MEMGETINFO
, &mtdInfo
)) {
80 fprintf(stderr
, "Could not get MTD device info from %s\n", mtd
);
85 mtdLockInfo
.start
= 0;
86 mtdLockInfo
.length
= mtdInfo
.size
;
87 if(ioctl(fd
, MEMUNLOCK
, &mtdLockInfo
)) {
88 fprintf(stderr
, "Could not unlock MTD device: %s\n", mtd
);
98 mtd_open(const char *mtd
, int flags
)
104 if ((fp
= fopen("/proc/mtd", "r"))) {
105 while (fgets(dev
, sizeof(dev
), fp
)) {
106 if (sscanf(dev
, "mtd%d:", &i
) && strstr(dev
, mtd
)) {
107 snprintf(dev
, sizeof(dev
), "/dev/mtd/%d", i
);
109 return open(dev
, flags
);
115 return open(mtd
, flags
);
119 mtd_erase(const char *mtd
)
122 struct mtd_info_user mtdInfo
;
123 struct erase_info_user mtdEraseInfo
;
125 fd
= mtd_open(mtd
, O_RDWR
);
127 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
131 if(ioctl(fd
, MEMGETINFO
, &mtdInfo
)) {
132 fprintf(stderr
, "Could not get MTD device info from %s\n", mtd
);
137 mtdEraseInfo
.length
= mtdInfo
.erasesize
;
139 for (mtdEraseInfo
.start
= 0;
140 mtdEraseInfo
.start
< mtdInfo
.size
;
141 mtdEraseInfo
.start
+= mtdInfo
.erasesize
) {
143 if(ioctl(fd
, MEMUNLOCK
, &mtdEraseInfo
)) {
144 fprintf(stderr
, "Could not unlock MTD device: %s\n", mtd
);
148 if(ioctl(fd
, MEMERASE
, &mtdEraseInfo
)) {
149 fprintf(stderr
, "Could not erase MTD device: %s\n", mtd
);
161 mtd_write(const char *trxfile
, const char *mtd
)
166 size_t result
,size
,written
;
167 struct mtd_info_user mtdInfo
;
168 struct erase_info_user mtdEraseInfo
;
170 unsigned char src
[BUFSIZE
],dest
[BUFSIZE
];
172 fd
= mtd_open(mtd
, O_RDWR
);
174 fprintf(stderr
, "Could not open mtd device: %s\n", mtd
);
178 if(ioctl(fd
, MEMGETINFO
, &mtdInfo
)) {
179 fprintf(stderr
, "Could not get MTD device info from %s\n", mtd
);
184 trxfd
= open(trxfile
,O_RDONLY
);
186 fprintf(stderr
, "Could not open trx image: %s\n", trxfile
);
190 if (fstat (trxfd
,&trxstat
) < 0) {
191 fprintf(stderr
, "Could not get trx image file status: %s\n", trxfile
);
196 if(mtdInfo
.size
< trxstat
.st_size
) {
197 fprintf(stderr
, "image to big for mtd partition: %s\n", mtd
);
202 mtdEraseInfo
.start
= 0;
203 mtdEraseInfo
.length
= trxstat
.st_size
& ~(mtdInfo
.erasesize
-1);
204 if(trxstat
.st_size
% mtdInfo
.erasesize
) mtdEraseInfo
.length
+= mtdInfo
.erasesize
;
206 /* erase the chunk */
207 if (ioctl (fd
,MEMERASE
,&mtdEraseInfo
) < 0) {
208 fprintf(stderr
, "erasing mtd failed: %s\n", mtd
);
212 size
= trxstat
.st_size
;
217 if (size
< BUFSIZE
) i
= size
;
219 result
= write(fd
,src
,i
);
222 fprintf(stderr
,"error while writing image");
225 fprintf(stderr
,"error writing image");
235 int main(int argc
, char **argv
) {
236 if(argc
== 3 && strcasecmp(argv
[1],"unlock")==0) {
237 printf("Unlocking %s\n",argv
[2]);
238 return mtd_unlock(argv
[2]);
240 if(argc
== 3 && strcasecmp(argv
[1],"erase")==0) {
241 printf("Erasing %s\n",argv
[2]);
242 return mtd_erase(argv
[2]);
244 if(argc
== 4 && strcasecmp(argv
[1],"write")==0) {
245 printf("Writing %s to %s\n",argv
[2],argv
[3]);
246 return mtd_write(argv
[2],argv
[3]);
249 printf("no valid command given\n");