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