blob: 27296ddd7d6c02d3369b7948c2f916eaf1580fd7 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denk700a0c62005-08-08 01:03:24 +02004 *
wdenkdd875c72004-01-03 21:24:46 +00005 * (C) Copyright 2002
6 * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de>
Wolfgang Denk700a0c62005-08-08 01:03:24 +02007 *
wdenkdd875c72004-01-03 21:24:46 +00008 * (C) Copyright 2003
9 * Kai-Uwe Bloem, Auerswald GmbH & Co KG, <linux-development@auerswald.de>
wdenkc6097192002-11-03 00:24:07 +000010 *
Wolfgang Denk700a0c62005-08-08 01:03:24 +020011 * (C) Copyright 2005
12 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
13 *
14 * Added support for reading flash partition table from environment.
15 * Parsing routines are based on driver/mtd/cmdline.c from the linux 2.4
16 * kernel tree.
17 *
18 * $Id: cmdlinepart.c,v 1.17 2004/11/26 11:18:47 lavinen Exp $
19 * Copyright 2002 SYSGO Real-Time Solutions GmbH
20 *
wdenkc6097192002-11-03 00:24:07 +000021 * See file CREDITS for list of people who contributed to this
22 * project.
23 *
24 * This program is free software; you can redistribute it and/or
25 * modify it under the terms of the GNU General Public License as
26 * published by the Free Software Foundation; either version 2 of
27 * the License, or (at your option) any later version.
28 *
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Michal Simekab4b9562007-08-06 23:31:49 +020031 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkc6097192002-11-03 00:24:07 +000032 * GNU General Public License for more details.
33 *
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
37 * MA 02111-1307 USA
38 */
39
40/*
Wolfgang Denk700a0c62005-08-08 01:03:24 +020041 * Three environment variables are used by the parsing routines:
42 *
43 * 'partition' - keeps current partition identifier
44 *
45 * partition := <part-id>
46 * <part-id> := <dev-id>,part_num
47 *
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +020048 *
Wolfgang Denk700a0c62005-08-08 01:03:24 +020049 * 'mtdids' - linux kernel mtd device id <-> u-boot device id mapping
50 *
51 * mtdids=<idmap>[,<idmap>,...]
52 *
53 * <idmap> := <dev-id>=<mtd-id>
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +090054 * <dev-id> := 'nand'|'nor'|'onenand'<dev-num>
Wolfgang Denk700a0c62005-08-08 01:03:24 +020055 * <dev-num> := mtd device number, 0...
56 * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
57 *
58 *
59 * 'mtdparts' - partition list
60 *
61 * mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]
62 *
63 * <mtd-def> := <mtd-id>:<part-def>[,<part-def>...]
64 * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
65 * <part-def> := <size>[@<offset>][<name>][<ro-flag>]
66 * <size> := standard linux memsize OR '-' to denote all remaining space
67 * <offset> := partition start offset within the device
68 * <name> := '(' NAME ')'
69 * <ro-flag> := when set to 'ro' makes partition read-only (not used, passed to kernel)
70 *
71 * Notes:
72 * - each <mtd-id> used in mtdparts must albo exist in 'mtddis' mapping
73 * - if the above variables are not set defaults for a given target are used
74 *
75 * Examples:
76 *
77 * 1 NOR Flash, with 1 single writable partition:
78 * mtdids=nor0=edb7312-nor
79 * mtdparts=mtdparts=edb7312-nor:-
80 *
81 * 1 NOR Flash with 2 partitions, 1 NAND with one
82 * mtdids=nor0=edb7312-nor,nand0=edb7312-nand
83 * mtdparts=mtdparts=edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home)
84 *
85 */
86
87/*
Michal Simek991b0892007-09-15 00:03:35 +020088 * JFFS2/CRAMFS support
wdenkc6097192002-11-03 00:24:07 +000089 */
90#include <common.h>
91#include <command.h>
Wolfgang Denk700a0c62005-08-08 01:03:24 +020092#include <malloc.h>
93#include <jffs2/jffs2.h>
Wolfgang Denk700a0c62005-08-08 01:03:24 +020094#include <linux/list.h>
95#include <linux/ctype.h>
wdenkdd875c72004-01-03 21:24:46 +000096#include <cramfs/cramfs_fs.h>
97
Jon Loeligerc76fe472007-07-08 18:02:23 -050098#if defined(CONFIG_CMD_NAND)
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +010099#include <linux/mtd/nand.h>
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200100#include <nand.h>
Jon Loeligerc76fe472007-07-08 18:02:23 -0500101#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900102
103#if defined(CONFIG_CMD_ONENAND)
104#include <linux/mtd/mtd.h>
105#include <linux/mtd/onenand.h>
106#include <onenand_uboot.h>
107#endif
108
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200109/* enable/disable debugging messages */
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100110#define DEBUG_JFFS
111#undef DEBUG_JFFS
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200112
Michal Simekab4b9562007-08-06 23:31:49 +0200113#ifdef DEBUG_JFFS
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200114# define DEBUGF(fmt, args...) printf(fmt ,##args)
115#else
116# define DEBUGF(fmt, args...)
117#endif
118
119/* special size referring to all the remaining space in a partition */
120#define SIZE_REMAINING 0xFFFFFFFF
121
122/* special offset value, it is used when not provided by user
123 *
124 * this value is used temporarily during parsing, later such offests
125 * are recalculated */
126#define OFFSET_NOT_SPECIFIED 0xFFFFFFFF
127
128/* minimum partition size */
129#define MIN_PART_SIZE 4096
130
131/* this flag needs to be set in part_info struct mask_flags
132 * field for read-only partitions */
Bartlomiej Sieka038ccac2006-02-24 09:37:22 +0100133#define MTD_WRITEABLE_CMD 1
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200134
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200135/* current active device and partition number */
Stefan Roese76b58832009-05-16 12:04:22 +0200136#ifdef CONFIG_CMD_MTDPARTS
137/* Use the ones declared in cmd_mtdparts.c */
138extern struct mtd_device *current_mtd_dev;
139extern u8 current_mtd_partnum;
140#else
141/* Use local ones */
142struct mtd_device *current_mtd_dev = NULL;
143u8 current_mtd_partnum = 0;
144#endif
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200145
Harald Weltef540c422007-12-19 14:09:58 +0100146#if defined(CONFIG_CMD_CRAMFS)
wdenk180d3f72004-01-04 16:28:35 +0000147extern int cramfs_check (struct part_info *info);
148extern int cramfs_load (char *loadoffset, struct part_info *info, char *filename);
149extern int cramfs_ls (struct part_info *info, char *filename);
150extern int cramfs_info (struct part_info *info);
Harald Weltef540c422007-12-19 14:09:58 +0100151#else
152/* defining empty macros for function names is ugly but avoids ifdef clutter
153 * all over the code */
154#define cramfs_check(x) (0)
155#define cramfs_load(x,y,z) (-1)
156#define cramfs_ls(x,y) (0)
157#define cramfs_info(x) (0)
158#endif
wdenk180d3f72004-01-04 16:28:35 +0000159
Stefan Roese68d7d652009-03-19 13:30:36 +0100160#ifndef CONFIG_CMD_MTDPARTS
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200161/**
162 * Check device number to be within valid range for given device type.
163 *
164 * @param dev device to validate
165 * @return 0 if device is valid, 1 otherwise
166 */
Stefan Roese68d7d652009-03-19 13:30:36 +0100167static int mtd_device_validate(u8 type, u8 num, u32 *size)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200168{
169 if (type == MTD_DEV_TYPE_NOR) {
Jon Loeligerc76fe472007-07-08 18:02:23 -0500170#if defined(CONFIG_CMD_FLASH)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200171 if (num < CONFIG_SYS_MAX_FLASH_BANKS) {
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200172 extern flash_info_t flash_info[];
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200173 *size = flash_info[num].size;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200174
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200175 return 0;
176 }
177
178 printf("no such FLASH device: %s%d (valid range 0 ... %d\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200179 MTD_DEV_TYPE(type), num, CONFIG_SYS_MAX_FLASH_BANKS - 1);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200180#else
181 printf("support for FLASH devices not present\n");
182#endif
183 } else if (type == MTD_DEV_TYPE_NAND) {
Jon Loeligerc76fe472007-07-08 18:02:23 -0500184#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185 if (num < CONFIG_SYS_MAX_NAND_DEVICE) {
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +0200186 *size = nand_info[num].size;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200187 return 0;
188 }
189
190 printf("no such NAND device: %s%d (valid range 0 ... %d)\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191 MTD_DEV_TYPE(type), num, CONFIG_SYS_MAX_NAND_DEVICE - 1);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200192#else
193 printf("support for NAND devices not present\n");
194#endif
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900195 } else if (type == MTD_DEV_TYPE_ONENAND) {
196#if defined(CONFIG_CMD_ONENAND)
197 *size = onenand_mtd.size;
198 return 0;
199#else
200 printf("support for OneNAND devices not present\n");
201#endif
202 } else
203 printf("Unknown defice type %d\n", type);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200204
205 return 1;
206}
207
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200208/**
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900209 * Parse device id string <dev-id> := 'nand'|'nor'|'onenand'<dev-num>,
210 * return device type and number.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200211 *
212 * @param id string describing device id
213 * @param ret_id output pointer to next char after parse completes (output)
214 * @param dev_type parsed device type (output)
215 * @param dev_num parsed device number (output)
216 * @return 0 on success, 1 otherwise
217 */
Stefan Roese68d7d652009-03-19 13:30:36 +0100218static int mtd_id_parse(const char *id, const char **ret_id, u8 *dev_type, u8 *dev_num)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200219{
220 const char *p = id;
221
222 *dev_type = 0;
223 if (strncmp(p, "nand", 4) == 0) {
224 *dev_type = MTD_DEV_TYPE_NAND;
225 p += 4;
226 } else if (strncmp(p, "nor", 3) == 0) {
227 *dev_type = MTD_DEV_TYPE_NOR;
228 p += 3;
Kyungmin Park1a7f8cc2008-08-27 14:45:20 +0900229 } else if (strncmp(p, "onenand", 7) == 0) {
230 *dev_type = MTD_DEV_TYPE_ONENAND;
231 p += 7;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200232 } else {
233 printf("incorrect device type in %s\n", id);
234 return 1;
235 }
236
237 if (!isdigit(*p)) {
238 printf("incorrect device number in %s\n", id);
239 return 1;
240 }
241
242 *dev_num = simple_strtoul(p, (char **)&p, 0);
243 if (ret_id)
244 *ret_id = p;
245 return 0;
246}
247
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200248/*
249 * 'Static' version of command line mtdparts_init() routine. Single partition on
250 * a single device configuration.
251 */
252
253/**
Tomasz Figab5b004a2008-12-30 18:35:57 +0100254 * Calculate sector size.
255 *
256 * @return sector size
257 */
258static inline u32 get_part_sector_size_nand(struct mtdids *id)
259{
260#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
Tomasz Figab5b004a2008-12-30 18:35:57 +0100261 nand_info_t *nand;
262
263 nand = &nand_info[id->num];
264
265 return nand->erasesize;
Tomasz Figab5b004a2008-12-30 18:35:57 +0100266#else
267 BUG();
268 return 0;
269#endif
270}
271
272static inline u32 get_part_sector_size_nor(struct mtdids *id, struct part_info *part)
273{
274#if defined(CONFIG_CMD_FLASH)
275 extern flash_info_t flash_info[];
276
277 u32 end_phys, start_phys, sector_size = 0, size = 0;
278 int i;
279 flash_info_t *flash;
280
281 flash = &flash_info[id->num];
282
283 start_phys = flash->start[0] + part->offset;
Peter Tyser141053d2010-12-30 15:47:56 -0600284 end_phys = start_phys + part->size - 1;
Tomasz Figab5b004a2008-12-30 18:35:57 +0100285
286 for (i = 0; i < flash->sector_count; i++) {
287 if (flash->start[i] >= end_phys)
288 break;
289
290 if (flash->start[i] >= start_phys) {
291 if (i == flash->sector_count - 1) {
292 size = flash->start[0] + flash->size - flash->start[i];
293 } else {
294 size = flash->start[i+1] - flash->start[i];
295 }
296
297 if (sector_size < size)
298 sector_size = size;
299 }
300 }
301
302 return sector_size;
303#else
304 BUG();
305 return 0;
306#endif
307}
308
309static inline u32 get_part_sector_size_onenand(void)
310{
311#if defined(CONFIG_CMD_ONENAND)
312 struct mtd_info *mtd;
313
314 mtd = &onenand_mtd;
315
316 return mtd->erasesize;
317#else
318 BUG();
319 return 0;
320#endif
321}
322
323static inline u32 get_part_sector_size(struct mtdids *id, struct part_info *part)
324{
325 if (id->type == MTD_DEV_TYPE_NAND)
326 return get_part_sector_size_nand(id);
327 else if (id->type == MTD_DEV_TYPE_NOR)
328 return get_part_sector_size_nor(id, part);
329 else if (id->type == MTD_DEV_TYPE_ONENAND)
330 return get_part_sector_size_onenand();
331 else
332 DEBUGF("Error: Unknown device type.\n");
333
334 return 0;
335}
336
337/**
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200338 * Parse and initialize global mtdids mapping and create global
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200339 * device/partition list.
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200340 *
Stefan Roese76b58832009-05-16 12:04:22 +0200341 * 'Static' version of command line mtdparts_init() routine. Single partition on
342 * a single device configuration.
343 *
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200344 * @return 0 on success, 1 otherwise
345 */
346int mtdparts_init(void)
347{
348 static int initialized = 0;
349 u32 size;
350 char *dev_name;
351
352 DEBUGF("\n---mtdparts_init---\n");
353 if (!initialized) {
Wolfgang Denkc4e0e682005-08-09 21:41:20 +0200354 struct mtdids *id;
355 struct part_info *part;
356
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200357 initialized = 1;
Stefan Roese76b58832009-05-16 12:04:22 +0200358 current_mtd_dev = (struct mtd_device *)
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200359 malloc(sizeof(struct mtd_device) +
360 sizeof(struct part_info) +
361 sizeof(struct mtdids));
Stefan Roese76b58832009-05-16 12:04:22 +0200362 if (!current_mtd_dev) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200363 printf("out of memory\n");
364 return 1;
365 }
Stefan Roese76b58832009-05-16 12:04:22 +0200366 memset(current_mtd_dev, 0, sizeof(struct mtd_device) +
367 sizeof(struct part_info) + sizeof(struct mtdids));
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200368
Stefan Roese76b58832009-05-16 12:04:22 +0200369 id = (struct mtdids *)(current_mtd_dev + 1);
Wolfgang Denkc4e0e682005-08-09 21:41:20 +0200370 part = (struct part_info *)(id + 1);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200371
372 /* id */
373 id->mtd_id = "single part";
374
375#if defined(CONFIG_JFFS2_DEV)
376 dev_name = CONFIG_JFFS2_DEV;
377#else
378 dev_name = "nor0";
379#endif
380
Stefan Roese68d7d652009-03-19 13:30:36 +0100381 if ((mtd_id_parse(dev_name, NULL, &id->type, &id->num) != 0) ||
382 (mtd_device_validate(id->type, id->num, &size) != 0)) {
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200383 printf("incorrect device: %s%d\n", MTD_DEV_TYPE(id->type), id->num);
Stefan Roese76b58832009-05-16 12:04:22 +0200384 free(current_mtd_dev);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200385 return 1;
386 }
387 id->size = size;
388 INIT_LIST_HEAD(&id->link);
389
390 DEBUGF("dev id: type = %d, num = %d, size = 0x%08lx, mtd_id = %s\n",
391 id->type, id->num, id->size, id->mtd_id);
392
393 /* partition */
394 part->name = "static";
395 part->auto_name = 0;
396
397#if defined(CONFIG_JFFS2_PART_SIZE)
398 part->size = CONFIG_JFFS2_PART_SIZE;
399#else
400 part->size = SIZE_REMAINING;
401#endif
402
403#if defined(CONFIG_JFFS2_PART_OFFSET)
404 part->offset = CONFIG_JFFS2_PART_OFFSET;
405#else
406 part->offset = 0x00000000;
407#endif
408
Stefan Roese76b58832009-05-16 12:04:22 +0200409 part->dev = current_mtd_dev;
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200410 INIT_LIST_HEAD(&part->link);
411
412 /* recalculate size if needed */
413 if (part->size == SIZE_REMAINING)
414 part->size = id->size - part->offset;
415
Mike Frysinger2903ad32010-01-08 08:03:06 -0500416 part->sector_size = get_part_sector_size(id, part);
417
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200418 DEBUGF("part : name = %s, size = 0x%08lx, offset = 0x%08lx\n",
419 part->name, part->size, part->offset);
420
421 /* device */
Stefan Roese76b58832009-05-16 12:04:22 +0200422 current_mtd_dev->id = id;
423 INIT_LIST_HEAD(&current_mtd_dev->link);
424 current_mtd_dev->num_parts = 1;
425 INIT_LIST_HEAD(&current_mtd_dev->parts);
426 list_add(&part->link, &current_mtd_dev->parts);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200427 }
428
429 return 0;
430}
Stefan Roese68d7d652009-03-19 13:30:36 +0100431#endif /* #ifndef CONFIG_CMD_MTDPARTS */
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200432
433/**
434 * Return pointer to the partition of a requested number from a requested
435 * device.
436 *
437 * @param dev device that is to be searched for a partition
438 * @param part_num requested partition number
439 * @return pointer to the part_info, NULL otherwise
440 */
441static struct part_info* jffs2_part_info(struct mtd_device *dev, unsigned int part_num)
442{
443 struct list_head *entry;
444 struct part_info *part;
445 int num;
446
447 if (!dev)
448 return NULL;
449
450 DEBUGF("\n--- jffs2_part_info: partition number %d for device %s%d (%s)\n",
451 part_num, MTD_DEV_TYPE(dev->id->type),
452 dev->id->num, dev->id->mtd_id);
453
454 if (part_num >= dev->num_parts) {
455 printf("invalid partition number %d for device %s%d (%s)\n",
456 part_num, MTD_DEV_TYPE(dev->id->type),
457 dev->id->num, dev->id->mtd_id);
458 return NULL;
459 }
460
461 /* locate partition number, return it */
462 num = 0;
463 list_for_each(entry, &dev->parts) {
464 part = list_entry(entry, struct part_info, link);
465
466 if (part_num == num++) {
467 return part;
468 }
469 }
470
471 return NULL;
472}
473
Michal Simekab4b9562007-08-06 23:31:49 +0200474/***************************************************/
475/* U-boot commands */
476/***************************************************/
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200477
478/**
479 * Routine implementing fsload u-boot command. This routine tries to load
480 * a requested file from jffs2/cramfs filesystem on a current partition.
481 *
482 * @param cmdtp command internal data
483 * @param flag command flag
484 * @param argc number of arguments supplied to the command
485 * @param argv arguments list
486 * @return 0 on success, 1 otherwise
487 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200488int do_jffs2_fsload(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200489{
wdenk39539882004-07-01 16:30:44 +0000490 char *fsname;
wdenkf39748a2004-06-09 13:37:52 +0000491 char *filename;
wdenk39539882004-07-01 16:30:44 +0000492 int size;
493 struct part_info *part;
494 ulong offset = load_addr;
wdenkf39748a2004-06-09 13:37:52 +0000495
496 /* pre-set Boot file name */
497 if ((filename = getenv("bootfile")) == NULL) {
498 filename = "uImage";
499 }
500
wdenkc6097192002-11-03 00:24:07 +0000501 if (argc == 2) {
502 filename = argv[1];
503 }
504 if (argc == 3) {
505 offset = simple_strtoul(argv[1], NULL, 16);
wdenk4b9206e2004-03-23 22:14:11 +0000506 load_addr = offset;
wdenkc6097192002-11-03 00:24:07 +0000507 filename = argv[2];
508 }
509
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200510 /* make sure we are in sync with env variables */
511 if (mtdparts_init() !=0)
512 return 1;
513
Stefan Roese76b58832009-05-16 12:04:22 +0200514 if ((part = jffs2_part_info(current_mtd_dev, current_mtd_partnum))){
wdenkc6097192002-11-03 00:24:07 +0000515
Michal Simek991b0892007-09-15 00:03:35 +0200516 /* check partition type for cramfs */
517 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2");
wdenkdd875c72004-01-03 21:24:46 +0000518 printf("### %s loading '%s' to 0x%lx\n", fsname, filename, offset);
519
520 if (cramfs_check(part)) {
521 size = cramfs_load ((char *) offset, part, filename);
522 } else {
Michal Simek991b0892007-09-15 00:03:35 +0200523 /* if this is not cramfs assume jffs2 */
wdenkdd875c72004-01-03 21:24:46 +0000524 size = jffs2_1pass_load((char *)offset, part, filename);
525 }
wdenkc6097192002-11-03 00:24:07 +0000526
527 if (size > 0) {
528 char buf[10];
wdenkdd875c72004-01-03 21:24:46 +0000529 printf("### %s load complete: %d bytes loaded to 0x%lx\n",
530 fsname, size, offset);
wdenkc6097192002-11-03 00:24:07 +0000531 sprintf(buf, "%x", size);
532 setenv("filesize", buf);
533 } else {
wdenkdd875c72004-01-03 21:24:46 +0000534 printf("### %s LOAD ERROR<%x> for %s!\n", fsname, size, filename);
wdenkc6097192002-11-03 00:24:07 +0000535 }
536
537 return !(size > 0);
538 }
Wolfgang Denk87b8bd52005-08-16 09:32:45 +0200539 return 1;
wdenkc6097192002-11-03 00:24:07 +0000540}
541
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200542/**
543 * Routine implementing u-boot ls command which lists content of a given
544 * directory on a current partition.
545 *
546 * @param cmdtp command internal data
547 * @param flag command flag
548 * @param argc number of arguments supplied to the command
549 * @param argv arguments list
550 * @return 0 on success, 1 otherwise
551 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200552int do_jffs2_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkc6097192002-11-03 00:24:07 +0000553{
wdenka87589d2005-06-10 10:00:19 +0000554 char *filename = "/";
wdenkc6097192002-11-03 00:24:07 +0000555 int ret;
556 struct part_info *part;
557
558 if (argc == 2)
559 filename = argv[1];
560
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200561 /* make sure we are in sync with env variables */
562 if (mtdparts_init() !=0)
563 return 1;
564
Stefan Roese76b58832009-05-16 12:04:22 +0200565 if ((part = jffs2_part_info(current_mtd_dev, current_mtd_partnum))){
wdenkc6097192002-11-03 00:24:07 +0000566
wdenkdd875c72004-01-03 21:24:46 +0000567 /* check partition type for cramfs */
568 if (cramfs_check(part)) {
569 ret = cramfs_ls (part, filename);
570 } else {
Michal Simek991b0892007-09-15 00:03:35 +0200571 /* if this is not cramfs assume jffs2 */
wdenkdd875c72004-01-03 21:24:46 +0000572 ret = jffs2_1pass_ls(part, filename);
573 }
wdenkc6097192002-11-03 00:24:07 +0000574
Wolfgang Denk87b8bd52005-08-16 09:32:45 +0200575 return ret ? 0 : 1;
wdenkc6097192002-11-03 00:24:07 +0000576 }
Wolfgang Denk87b8bd52005-08-16 09:32:45 +0200577 return 1;
wdenkc6097192002-11-03 00:24:07 +0000578}
579
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200580/**
581 * Routine implementing u-boot fsinfo command. This routine prints out
582 * miscellaneous filesystem informations/statistics.
583 *
584 * @param cmdtp command internal data
585 * @param flag command flag
586 * @param argc number of arguments supplied to the command
587 * @param argv arguments list
588 * @return 0 on success, 1 otherwise
589 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200590int do_jffs2_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkc6097192002-11-03 00:24:07 +0000591{
wdenkc6097192002-11-03 00:24:07 +0000592 struct part_info *part;
Michal Simek991b0892007-09-15 00:03:35 +0200593 char *fsname;
wdenkdd875c72004-01-03 21:24:46 +0000594 int ret;
wdenkc6097192002-11-03 00:24:07 +0000595
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200596 /* make sure we are in sync with env variables */
597 if (mtdparts_init() !=0)
598 return 1;
Wolfgang Denk8f79e4c2005-08-10 15:14:32 +0200599
Stefan Roese76b58832009-05-16 12:04:22 +0200600 if ((part = jffs2_part_info(current_mtd_dev, current_mtd_partnum))){
wdenkc6097192002-11-03 00:24:07 +0000601
wdenkdd875c72004-01-03 21:24:46 +0000602 /* check partition type for cramfs */
Michal Simek991b0892007-09-15 00:03:35 +0200603 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2");
604 printf("### filesystem type is %s\n", fsname);
wdenkdd875c72004-01-03 21:24:46 +0000605
606 if (cramfs_check(part)) {
607 ret = cramfs_info (part);
608 } else {
Michal Simek991b0892007-09-15 00:03:35 +0200609 /* if this is not cramfs assume jffs2 */
wdenkdd875c72004-01-03 21:24:46 +0000610 ret = jffs2_1pass_info(part);
611 }
wdenkc6097192002-11-03 00:24:07 +0000612
Wolfgang Denk87b8bd52005-08-16 09:32:45 +0200613 return ret ? 0 : 1;
wdenkc6097192002-11-03 00:24:07 +0000614 }
Wolfgang Denk87b8bd52005-08-16 09:32:45 +0200615 return 1;
wdenkc6097192002-11-03 00:24:07 +0000616}
617
wdenk8bde7f72003-06-27 21:31:46 +0000618/***************************************************/
wdenk0d498392003-07-01 21:06:45 +0000619U_BOOT_CMD(
620 fsload, 3, 0, do_jffs2_fsload,
Peter Tyser2fb26042009-01-27 18:03:12 -0600621 "load binary file from a filesystem image",
wdenk8bde7f72003-06-27 21:31:46 +0000622 "[ off ] [ filename ]\n"
623 " - load binary file from flash bank\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200624 " with offset 'off'"
wdenk8bde7f72003-06-27 21:31:46 +0000625);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200626U_BOOT_CMD(
627 ls, 2, 1, do_jffs2_ls,
Peter Tyser2fb26042009-01-27 18:03:12 -0600628 "list files in a directory (default /)",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200629 "[ directory ]"
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200630);
wdenk8bde7f72003-06-27 21:31:46 +0000631
wdenk0d498392003-07-01 21:06:45 +0000632U_BOOT_CMD(
633 fsinfo, 1, 1, do_jffs2_fsinfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600634 "print information about filesystems",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200635 ""
wdenk8bde7f72003-06-27 21:31:46 +0000636);
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200637/***************************************************/