]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
c609719b WD |
2 | /* |
3 | * (C) Copyright 2002 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
700a0c64 | 5 | * |
dd875c76 WD |
6 | * (C) Copyright 2002 |
7 | * Robert Schwebel, Pengutronix, <[email protected]> | |
700a0c64 | 8 | * |
dd875c76 WD |
9 | * (C) Copyright 2003 |
10 | * Kai-Uwe Bloem, Auerswald GmbH & Co KG, <[email protected]> | |
c609719b | 11 | * |
700a0c64 WD |
12 | * (C) Copyright 2005 |
13 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
14 | * | |
15 | * Added support for reading flash partition table from environment. | |
16 | * Parsing routines are based on driver/mtd/cmdline.c from the linux 2.4 | |
17 | * kernel tree. | |
18 | * | |
19 | * $Id: cmdlinepart.c,v 1.17 2004/11/26 11:18:47 lavinen Exp $ | |
20 | * Copyright 2002 SYSGO Real-Time Solutions GmbH | |
700a0c64 WD |
21 | */ |
22 | ||
23 | /* | |
24 | * Three environment variables are used by the parsing routines: | |
25 | * | |
26 | * 'partition' - keeps current partition identifier | |
27 | * | |
28 | * partition := <part-id> | |
29 | * <part-id> := <dev-id>,part_num | |
30 | * | |
8f79e4c2 | 31 | * |
700a0c64 WD |
32 | * 'mtdids' - linux kernel mtd device id <-> u-boot device id mapping |
33 | * | |
34 | * mtdids=<idmap>[,<idmap>,...] | |
35 | * | |
36 | * <idmap> := <dev-id>=<mtd-id> | |
1a7f8cce | 37 | * <dev-id> := 'nand'|'nor'|'onenand'<dev-num> |
700a0c64 WD |
38 | * <dev-num> := mtd device number, 0... |
39 | * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name) | |
40 | * | |
41 | * | |
42 | * 'mtdparts' - partition list | |
43 | * | |
44 | * mtdparts=mtdparts=<mtd-def>[;<mtd-def>...] | |
45 | * | |
46 | * <mtd-def> := <mtd-id>:<part-def>[,<part-def>...] | |
47 | * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name) | |
48 | * <part-def> := <size>[@<offset>][<name>][<ro-flag>] | |
49 | * <size> := standard linux memsize OR '-' to denote all remaining space | |
50 | * <offset> := partition start offset within the device | |
51 | * <name> := '(' NAME ')' | |
52 | * <ro-flag> := when set to 'ro' makes partition read-only (not used, passed to kernel) | |
53 | * | |
54 | * Notes: | |
55 | * - each <mtd-id> used in mtdparts must albo exist in 'mtddis' mapping | |
56 | * - if the above variables are not set defaults for a given target are used | |
57 | * | |
58 | * Examples: | |
59 | * | |
60 | * 1 NOR Flash, with 1 single writable partition: | |
61 | * mtdids=nor0=edb7312-nor | |
62 | * mtdparts=mtdparts=edb7312-nor:- | |
63 | * | |
64 | * 1 NOR Flash with 2 partitions, 1 NAND with one | |
65 | * mtdids=nor0=edb7312-nor,nand0=edb7312-nand | |
66 | * mtdparts=mtdparts=edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home) | |
67 | * | |
68 | */ | |
69 | ||
70 | /* | |
991b089d | 71 | * JFFS2/CRAMFS support |
700a0c64 WD |
72 | */ |
73 | #include <common.h> | |
74 | #include <command.h> | |
c7694dd4 | 75 | #include <env.h> |
17ead040 | 76 | #if defined(CONFIG_CMD_FLASH) |
b79fdc76 | 77 | #include <flash.h> |
17ead040 | 78 | #endif |
8e8ccfe1 | 79 | #include <image.h> |
700a0c64 WD |
80 | #include <malloc.h> |
81 | #include <jffs2/jffs2.h> | |
eb41d8a1 | 82 | #include <linux/bug.h> |
700a0c64 WD |
83 | #include <linux/list.h> |
84 | #include <linux/ctype.h> | |
700a0c64 WD |
85 | #include <cramfs/cramfs_fs.h> |
86 | ||
c76fe474 | 87 | #if defined(CONFIG_CMD_NAND) |
6ae3900a | 88 | #include <linux/mtd/rawnand.h> |
ac7eb8a3 | 89 | #include <nand.h> |
c76fe474 | 90 | #endif |
1a7f8cce KP |
91 | |
92 | #if defined(CONFIG_CMD_ONENAND) | |
93 | #include <linux/mtd/mtd.h> | |
94 | #include <linux/mtd/onenand.h> | |
95 | #include <onenand_uboot.h> | |
96 | #endif | |
97 | ||
700a0c64 | 98 | /* enable/disable debugging messages */ |
038ccac5 BS |
99 | #define DEBUG_JFFS |
100 | #undef DEBUG_JFFS | |
700a0c64 | 101 | |
ab4b956d | 102 | #ifdef DEBUG_JFFS |
700a0c64 WD |
103 | # define DEBUGF(fmt, args...) printf(fmt ,##args) |
104 | #else | |
105 | # define DEBUGF(fmt, args...) | |
106 | #endif | |
107 | ||
108 | /* special size referring to all the remaining space in a partition */ | |
109 | #define SIZE_REMAINING 0xFFFFFFFF | |
110 | ||
111 | /* special offset value, it is used when not provided by user | |
112 | * | |
113 | * this value is used temporarily during parsing, later such offests | |
114 | * are recalculated */ | |
115 | #define OFFSET_NOT_SPECIFIED 0xFFFFFFFF | |
116 | ||
117 | /* minimum partition size */ | |
118 | #define MIN_PART_SIZE 4096 | |
119 | ||
120 | /* this flag needs to be set in part_info struct mask_flags | |
121 | * field for read-only partitions */ | |
038ccac5 | 122 | #define MTD_WRITEABLE_CMD 1 |
700a0c64 | 123 | |
68d7d651 | 124 | /* current active device and partition number */ |
76b5883d SR |
125 | #ifdef CONFIG_CMD_MTDPARTS |
126 | /* Use the ones declared in cmd_mtdparts.c */ | |
127 | extern struct mtd_device *current_mtd_dev; | |
128 | extern u8 current_mtd_partnum; | |
129 | #else | |
130 | /* Use local ones */ | |
131 | struct mtd_device *current_mtd_dev = NULL; | |
132 | u8 current_mtd_partnum = 0; | |
133 | #endif | |
700a0c64 | 134 | |
68d7d651 SR |
135 | #if defined(CONFIG_CMD_CRAMFS) |
136 | extern int cramfs_check (struct part_info *info); | |
137 | extern int cramfs_load (char *loadoffset, struct part_info *info, char *filename); | |
138 | extern int cramfs_ls (struct part_info *info, char *filename); | |
139 | extern int cramfs_info (struct part_info *info); | |
140 | #else | |
141 | /* defining empty macros for function names is ugly but avoids ifdef clutter | |
142 | * all over the code */ | |
143 | #define cramfs_check(x) (0) | |
144 | #define cramfs_load(x,y,z) (-1) | |
145 | #define cramfs_ls(x,y) (0) | |
146 | #define cramfs_info(x) (0) | |
147 | #endif | |
700a0c64 | 148 | |
68d7d651 | 149 | #ifndef CONFIG_CMD_MTDPARTS |
700a0c64 | 150 | /** |
68d7d651 | 151 | * Check device number to be within valid range for given device type. |
700a0c64 | 152 | * |
68d7d651 | 153 | * @param dev device to validate |
185f812c | 154 | * Return: 0 if device is valid, 1 otherwise |
c609719b | 155 | */ |
68d7d651 | 156 | static int mtd_device_validate(u8 type, u8 num, u32 *size) |
700a0c64 | 157 | { |
68d7d651 SR |
158 | if (type == MTD_DEV_TYPE_NOR) { |
159 | #if defined(CONFIG_CMD_FLASH) | |
160 | if (num < CONFIG_SYS_MAX_FLASH_BANKS) { | |
68d7d651 | 161 | *size = flash_info[num].size; |
180d3f74 | 162 | |
68d7d651 | 163 | return 0; |
700a0c64 | 164 | } |
c609719b | 165 | |
68d7d651 SR |
166 | printf("no such FLASH device: %s%d (valid range 0 ... %d\n", |
167 | MTD_DEV_TYPE(type), num, CONFIG_SYS_MAX_FLASH_BANKS - 1); | |
168 | #else | |
169 | printf("support for FLASH devices not present\n"); | |
170 | #endif | |
171 | } else if (type == MTD_DEV_TYPE_NAND) { | |
172 | #if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND) | |
bfdba68e GS |
173 | struct mtd_info *mtd = get_nand_dev_by_index(num); |
174 | if (mtd) { | |
175 | *size = mtd->size; | |
68d7d651 | 176 | return 0; |
700a0c64 | 177 | } |
6705d81e | 178 | |
68d7d651 SR |
179 | printf("no such NAND device: %s%d (valid range 0 ... %d)\n", |
180 | MTD_DEV_TYPE(type), num, CONFIG_SYS_MAX_NAND_DEVICE - 1); | |
181 | #else | |
182 | printf("support for NAND devices not present\n"); | |
183 | #endif | |
184 | } else if (type == MTD_DEV_TYPE_ONENAND) { | |
185 | #if defined(CONFIG_CMD_ONENAND) | |
186 | *size = onenand_mtd.size; | |
187 | return 0; | |
188 | #else | |
189 | printf("support for OneNAND devices not present\n"); | |
190 | #endif | |
191 | } else | |
192 | printf("Unknown defice type %d\n", type); | |
c609719b | 193 | |
68d7d651 | 194 | return 1; |
700a0c64 | 195 | } |
998eaaec | 196 | |
700a0c64 | 197 | /** |
68d7d651 SR |
198 | * Parse device id string <dev-id> := 'nand'|'nor'|'onenand'<dev-num>, |
199 | * return device type and number. | |
700a0c64 | 200 | * |
68d7d651 SR |
201 | * @param id string describing device id |
202 | * @param ret_id output pointer to next char after parse completes (output) | |
203 | * @param dev_type parsed device type (output) | |
204 | * @param dev_num parsed device number (output) | |
185f812c | 205 | * Return: 0 on success, 1 otherwise |
700a0c64 | 206 | */ |
68d7d651 | 207 | static int mtd_id_parse(const char *id, const char **ret_id, u8 *dev_type, u8 *dev_num) |
c609719b | 208 | { |
68d7d651 | 209 | const char *p = id; |
700a0c64 | 210 | |
68d7d651 SR |
211 | *dev_type = 0; |
212 | if (strncmp(p, "nand", 4) == 0) { | |
213 | *dev_type = MTD_DEV_TYPE_NAND; | |
214 | p += 4; | |
215 | } else if (strncmp(p, "nor", 3) == 0) { | |
216 | *dev_type = MTD_DEV_TYPE_NOR; | |
217 | p += 3; | |
218 | } else if (strncmp(p, "onenand", 7) == 0) { | |
219 | *dev_type = MTD_DEV_TYPE_ONENAND; | |
220 | p += 7; | |
221 | } else { | |
222 | printf("incorrect device type in %s\n", id); | |
700a0c64 WD |
223 | return 1; |
224 | } | |
c609719b | 225 | |
68d7d651 SR |
226 | if (!isdigit(*p)) { |
227 | printf("incorrect device number in %s\n", id); | |
700a0c64 WD |
228 | return 1; |
229 | } | |
230 | ||
68d7d651 SR |
231 | *dev_num = simple_strtoul(p, (char **)&p, 0); |
232 | if (ret_id) | |
233 | *ret_id = p; | |
700a0c64 WD |
234 | return 0; |
235 | } | |
68d7d651 | 236 | |
700a0c64 WD |
237 | /* |
238 | * 'Static' version of command line mtdparts_init() routine. Single partition on | |
239 | * a single device configuration. | |
240 | */ | |
241 | ||
b5b004ad TF |
242 | /** |
243 | * Calculate sector size. | |
244 | * | |
185f812c | 245 | * Return: sector size |
b5b004ad TF |
246 | */ |
247 | static inline u32 get_part_sector_size_nand(struct mtdids *id) | |
248 | { | |
249 | #if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND) | |
151c06ec | 250 | struct mtd_info *mtd; |
b5b004ad | 251 | |
bfdba68e | 252 | mtd = get_nand_dev_by_index(id->num); |
b5b004ad | 253 | |
151c06ec | 254 | return mtd->erasesize; |
b5b004ad TF |
255 | #else |
256 | BUG(); | |
257 | return 0; | |
258 | #endif | |
259 | } | |
260 | ||
261 | static inline u32 get_part_sector_size_nor(struct mtdids *id, struct part_info *part) | |
262 | { | |
263 | #if defined(CONFIG_CMD_FLASH) | |
b5b004ad TF |
264 | u32 end_phys, start_phys, sector_size = 0, size = 0; |
265 | int i; | |
266 | flash_info_t *flash; | |
267 | ||
268 | flash = &flash_info[id->num]; | |
269 | ||
270 | start_phys = flash->start[0] + part->offset; | |
141053d6 | 271 | end_phys = start_phys + part->size - 1; |
b5b004ad TF |
272 | |
273 | for (i = 0; i < flash->sector_count; i++) { | |
274 | if (flash->start[i] >= end_phys) | |
275 | break; | |
276 | ||
277 | if (flash->start[i] >= start_phys) { | |
278 | if (i == flash->sector_count - 1) { | |
279 | size = flash->start[0] + flash->size - flash->start[i]; | |
280 | } else { | |
281 | size = flash->start[i+1] - flash->start[i]; | |
282 | } | |
283 | ||
284 | if (sector_size < size) | |
285 | sector_size = size; | |
286 | } | |
287 | } | |
288 | ||
289 | return sector_size; | |
290 | #else | |
291 | BUG(); | |
292 | return 0; | |
293 | #endif | |
294 | } | |
295 | ||
296 | static inline u32 get_part_sector_size_onenand(void) | |
297 | { | |
298 | #if defined(CONFIG_CMD_ONENAND) | |
299 | struct mtd_info *mtd; | |
300 | ||
301 | mtd = &onenand_mtd; | |
302 | ||
303 | return mtd->erasesize; | |
304 | #else | |
305 | BUG(); | |
306 | return 0; | |
307 | #endif | |
308 | } | |
309 | ||
310 | static inline u32 get_part_sector_size(struct mtdids *id, struct part_info *part) | |
311 | { | |
312 | if (id->type == MTD_DEV_TYPE_NAND) | |
313 | return get_part_sector_size_nand(id); | |
314 | else if (id->type == MTD_DEV_TYPE_NOR) | |
315 | return get_part_sector_size_nor(id, part); | |
316 | else if (id->type == MTD_DEV_TYPE_ONENAND) | |
317 | return get_part_sector_size_onenand(); | |
318 | else | |
319 | DEBUGF("Error: Unknown device type.\n"); | |
320 | ||
321 | return 0; | |
322 | } | |
323 | ||
700a0c64 WD |
324 | /** |
325 | * Parse and initialize global mtdids mapping and create global | |
8f79e4c2 | 326 | * device/partition list. |
700a0c64 | 327 | * |
76b5883d SR |
328 | * 'Static' version of command line mtdparts_init() routine. Single partition on |
329 | * a single device configuration. | |
330 | * | |
185f812c | 331 | * Return: 0 on success, 1 otherwise |
700a0c64 WD |
332 | */ |
333 | int mtdparts_init(void) | |
334 | { | |
335 | static int initialized = 0; | |
336 | u32 size; | |
337 | char *dev_name; | |
338 | ||
339 | DEBUGF("\n---mtdparts_init---\n"); | |
340 | if (!initialized) { | |
c4e0e686 WD |
341 | struct mtdids *id; |
342 | struct part_info *part; | |
343 | ||
700a0c64 | 344 | initialized = 1; |
76b5883d | 345 | current_mtd_dev = (struct mtd_device *) |
700a0c64 WD |
346 | malloc(sizeof(struct mtd_device) + |
347 | sizeof(struct part_info) + | |
348 | sizeof(struct mtdids)); | |
76b5883d | 349 | if (!current_mtd_dev) { |
700a0c64 WD |
350 | printf("out of memory\n"); |
351 | return 1; | |
352 | } | |
76b5883d SR |
353 | memset(current_mtd_dev, 0, sizeof(struct mtd_device) + |
354 | sizeof(struct part_info) + sizeof(struct mtdids)); | |
700a0c64 | 355 | |
76b5883d | 356 | id = (struct mtdids *)(current_mtd_dev + 1); |
c4e0e686 | 357 | part = (struct part_info *)(id + 1); |
c609719b | 358 | |
700a0c64 WD |
359 | /* id */ |
360 | id->mtd_id = "single part"; | |
c609719b | 361 | |
700a0c64 | 362 | dev_name = CONFIG_JFFS2_DEV; |
c609719b | 363 | |
68d7d651 SR |
364 | if ((mtd_id_parse(dev_name, NULL, &id->type, &id->num) != 0) || |
365 | (mtd_device_validate(id->type, id->num, &size) != 0)) { | |
700a0c64 | 366 | printf("incorrect device: %s%d\n", MTD_DEV_TYPE(id->type), id->num); |
76b5883d | 367 | free(current_mtd_dev); |
700a0c64 WD |
368 | return 1; |
369 | } | |
370 | id->size = size; | |
371 | INIT_LIST_HEAD(&id->link); | |
372 | ||
373 | DEBUGF("dev id: type = %d, num = %d, size = 0x%08lx, mtd_id = %s\n", | |
374 | id->type, id->num, id->size, id->mtd_id); | |
375 | ||
376 | /* partition */ | |
377 | part->name = "static"; | |
378 | part->auto_name = 0; | |
379 | ||
700a0c64 | 380 | part->size = CONFIG_JFFS2_PART_SIZE; |
c609719b | 381 | |
700a0c64 | 382 | part->offset = CONFIG_JFFS2_PART_OFFSET; |
c609719b | 383 | |
76b5883d | 384 | part->dev = current_mtd_dev; |
700a0c64 WD |
385 | INIT_LIST_HEAD(&part->link); |
386 | ||
387 | /* recalculate size if needed */ | |
388 | if (part->size == SIZE_REMAINING) | |
389 | part->size = id->size - part->offset; | |
c609719b | 390 | |
2903ad33 MF |
391 | part->sector_size = get_part_sector_size(id, part); |
392 | ||
700a0c64 WD |
393 | DEBUGF("part : name = %s, size = 0x%08lx, offset = 0x%08lx\n", |
394 | part->name, part->size, part->offset); | |
395 | ||
396 | /* device */ | |
76b5883d SR |
397 | current_mtd_dev->id = id; |
398 | INIT_LIST_HEAD(¤t_mtd_dev->link); | |
399 | current_mtd_dev->num_parts = 1; | |
400 | INIT_LIST_HEAD(¤t_mtd_dev->parts); | |
401 | list_add(&part->link, ¤t_mtd_dev->parts); | |
c609719b | 402 | } |
700a0c64 | 403 | |
c609719b WD |
404 | return 0; |
405 | } | |
68d7d651 | 406 | #endif /* #ifndef CONFIG_CMD_MTDPARTS */ |
998eaaec | 407 | |
700a0c64 WD |
408 | /** |
409 | * Return pointer to the partition of a requested number from a requested | |
410 | * device. | |
411 | * | |
412 | * @param dev device that is to be searched for a partition | |
413 | * @param part_num requested partition number | |
185f812c | 414 | * Return: pointer to the part_info, NULL otherwise |
700a0c64 WD |
415 | */ |
416 | static struct part_info* jffs2_part_info(struct mtd_device *dev, unsigned int part_num) | |
998eaaec | 417 | { |
700a0c64 WD |
418 | struct list_head *entry; |
419 | struct part_info *part; | |
420 | int num; | |
998eaaec | 421 | |
700a0c64 WD |
422 | if (!dev) |
423 | return NULL; | |
998eaaec | 424 | |
700a0c64 WD |
425 | DEBUGF("\n--- jffs2_part_info: partition number %d for device %s%d (%s)\n", |
426 | part_num, MTD_DEV_TYPE(dev->id->type), | |
427 | dev->id->num, dev->id->mtd_id); | |
998eaaec | 428 | |
700a0c64 WD |
429 | if (part_num >= dev->num_parts) { |
430 | printf("invalid partition number %d for device %s%d (%s)\n", | |
431 | part_num, MTD_DEV_TYPE(dev->id->type), | |
432 | dev->id->num, dev->id->mtd_id); | |
433 | return NULL; | |
434 | } | |
998eaaec | 435 | |
700a0c64 WD |
436 | /* locate partition number, return it */ |
437 | num = 0; | |
438 | list_for_each(entry, &dev->parts) { | |
439 | part = list_entry(entry, struct part_info, link); | |
440 | ||
441 | if (part_num == num++) { | |
442 | return part; | |
443 | } | |
998eaaec | 444 | } |
700a0c64 WD |
445 | |
446 | return NULL; | |
998eaaec WD |
447 | } |
448 | ||
ab4b956d | 449 | /***************************************************/ |
a187559e | 450 | /* U-Boot commands */ |
ab4b956d | 451 | /***************************************************/ |
dd875c76 | 452 | |
700a0c64 WD |
453 | /** |
454 | * Routine implementing fsload u-boot command. This routine tries to load | |
455 | * a requested file from jffs2/cramfs filesystem on a current partition. | |
456 | * | |
457 | * @param cmdtp command internal data | |
458 | * @param flag command flag | |
459 | * @param argc number of arguments supplied to the command | |
460 | * @param argv arguments list | |
185f812c | 461 | * Return: 0 on success, 1 otherwise |
700a0c64 | 462 | */ |
09140113 SG |
463 | int do_jffs2_fsload(struct cmd_tbl *cmdtp, int flag, int argc, |
464 | char *const argv[]) | |
c609719b | 465 | { |
39539887 | 466 | char *fsname; |
f39748ae | 467 | char *filename; |
39539887 WD |
468 | int size; |
469 | struct part_info *part; | |
bb872dd9 | 470 | ulong offset = image_load_addr; |
f39748ae WD |
471 | |
472 | /* pre-set Boot file name */ | |
00caae6d SG |
473 | filename = env_get("bootfile"); |
474 | if (!filename) | |
f39748ae | 475 | filename = "uImage"; |
f39748ae | 476 | |
c609719b WD |
477 | if (argc == 2) { |
478 | filename = argv[1]; | |
479 | } | |
480 | if (argc == 3) { | |
7e5f460e | 481 | offset = hextoul(argv[1], NULL); |
bb872dd9 | 482 | image_load_addr = offset; |
c609719b WD |
483 | filename = argv[2]; |
484 | } | |
485 | ||
700a0c64 WD |
486 | /* make sure we are in sync with env variables */ |
487 | if (mtdparts_init() !=0) | |
488 | return 1; | |
489 | ||
76b5883d | 490 | if ((part = jffs2_part_info(current_mtd_dev, current_mtd_partnum))){ |
c609719b | 491 | |
991b089d MS |
492 | /* check partition type for cramfs */ |
493 | fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2"); | |
dd875c76 WD |
494 | printf("### %s loading '%s' to 0x%lx\n", fsname, filename, offset); |
495 | ||
496 | if (cramfs_check(part)) { | |
497 | size = cramfs_load ((char *) offset, part, filename); | |
498 | } else { | |
991b089d | 499 | /* if this is not cramfs assume jffs2 */ |
dd875c76 WD |
500 | size = jffs2_1pass_load((char *)offset, part, filename); |
501 | } | |
c609719b WD |
502 | |
503 | if (size > 0) { | |
dd875c76 WD |
504 | printf("### %s load complete: %d bytes loaded to 0x%lx\n", |
505 | fsname, size, offset); | |
018f5303 | 506 | env_set_hex("filesize", size); |
c609719b | 507 | } else { |
dd875c76 | 508 | printf("### %s LOAD ERROR<%x> for %s!\n", fsname, size, filename); |
c609719b WD |
509 | } |
510 | ||
511 | return !(size > 0); | |
512 | } | |
87b8bd5a | 513 | return 1; |
c609719b WD |
514 | } |
515 | ||
700a0c64 WD |
516 | /** |
517 | * Routine implementing u-boot ls command which lists content of a given | |
518 | * directory on a current partition. | |
519 | * | |
520 | * @param cmdtp command internal data | |
521 | * @param flag command flag | |
522 | * @param argc number of arguments supplied to the command | |
523 | * @param argv arguments list | |
185f812c | 524 | * Return: 0 on success, 1 otherwise |
700a0c64 | 525 | */ |
09140113 | 526 | int do_jffs2_ls(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
c609719b | 527 | { |
a87589da | 528 | char *filename = "/"; |
c609719b WD |
529 | int ret; |
530 | struct part_info *part; | |
531 | ||
532 | if (argc == 2) | |
533 | filename = argv[1]; | |
534 | ||
700a0c64 WD |
535 | /* make sure we are in sync with env variables */ |
536 | if (mtdparts_init() !=0) | |
537 | return 1; | |
538 | ||
76b5883d | 539 | if ((part = jffs2_part_info(current_mtd_dev, current_mtd_partnum))){ |
c609719b | 540 | |
dd875c76 WD |
541 | /* check partition type for cramfs */ |
542 | if (cramfs_check(part)) { | |
543 | ret = cramfs_ls (part, filename); | |
544 | } else { | |
991b089d | 545 | /* if this is not cramfs assume jffs2 */ |
dd875c76 WD |
546 | ret = jffs2_1pass_ls(part, filename); |
547 | } | |
c609719b | 548 | |
87b8bd5a | 549 | return ret ? 0 : 1; |
c609719b | 550 | } |
87b8bd5a | 551 | return 1; |
c609719b WD |
552 | } |
553 | ||
700a0c64 WD |
554 | /** |
555 | * Routine implementing u-boot fsinfo command. This routine prints out | |
556 | * miscellaneous filesystem informations/statistics. | |
557 | * | |
558 | * @param cmdtp command internal data | |
559 | * @param flag command flag | |
560 | * @param argc number of arguments supplied to the command | |
561 | * @param argv arguments list | |
185f812c | 562 | * Return: 0 on success, 1 otherwise |
700a0c64 | 563 | */ |
09140113 SG |
564 | int do_jffs2_fsinfo(struct cmd_tbl *cmdtp, int flag, int argc, |
565 | char *const argv[]) | |
c609719b | 566 | { |
c609719b | 567 | struct part_info *part; |
991b089d | 568 | char *fsname; |
dd875c76 | 569 | int ret; |
c609719b | 570 | |
700a0c64 WD |
571 | /* make sure we are in sync with env variables */ |
572 | if (mtdparts_init() !=0) | |
573 | return 1; | |
8f79e4c2 | 574 | |
76b5883d | 575 | if ((part = jffs2_part_info(current_mtd_dev, current_mtd_partnum))){ |
dd875c76 WD |
576 | |
577 | /* check partition type for cramfs */ | |
991b089d MS |
578 | fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2"); |
579 | printf("### filesystem type is %s\n", fsname); | |
c609719b | 580 | |
dd875c76 WD |
581 | if (cramfs_check(part)) { |
582 | ret = cramfs_info (part); | |
583 | } else { | |
991b089d | 584 | /* if this is not cramfs assume jffs2 */ |
dd875c76 WD |
585 | ret = jffs2_1pass_info(part); |
586 | } | |
c609719b | 587 | |
87b8bd5a | 588 | return ret ? 0 : 1; |
c609719b | 589 | } |
87b8bd5a | 590 | return 1; |
c609719b WD |
591 | } |
592 | ||
700a0c64 | 593 | /***************************************************/ |
0d498393 WD |
594 | U_BOOT_CMD( |
595 | fsload, 3, 0, do_jffs2_fsload, | |
2fb2604d | 596 | "load binary file from a filesystem image", |
8bde7f77 WD |
597 | "[ off ] [ filename ]\n" |
598 | " - load binary file from flash bank\n" | |
a89c33db | 599 | " with offset 'off'" |
8bde7f77 | 600 | ); |
700a0c64 | 601 | U_BOOT_CMD( |
314f6362 | 602 | fsls, 2, 1, do_jffs2_ls, |
2fb2604d | 603 | "list files in a directory (default /)", |
a89c33db | 604 | "[ directory ]" |
700a0c64 | 605 | ); |
8bde7f77 | 606 | |
0d498393 WD |
607 | U_BOOT_CMD( |
608 | fsinfo, 1, 1, do_jffs2_fsinfo, | |
2fb2604d | 609 | "print information about filesystems", |
a89c33db | 610 | "" |
8bde7f77 | 611 | ); |
700a0c64 | 612 | /***************************************************/ |