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