3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de>
9 * Kai-Uwe Bloem, Auerswald GmbH & Co KG, <linux-development@auerswald.de>
12 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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
19 * Harald Welte, OpenMoko, Inc., Harald Welte <laforge@openmoko.org>
21 * $Id: cmdlinepart.c,v 1.17 2004/11/26 11:18:47 lavinen Exp $
22 * Copyright 2002 SYSGO Real-Time Solutions GmbH
24 * SPDX-License-Identifier: GPL-2.0+
28 * Three environment variables are used by the parsing routines:
30 * 'partition' - keeps current partition identifier
32 * partition := <part-id>
33 * <part-id> := <dev-id>,part_num
36 * 'mtdids' - linux kernel mtd device id <-> u-boot device id mapping
38 * mtdids=<idmap>[,<idmap>,...]
40 * <idmap> := <dev-id>=<mtd-id>
41 * <dev-id> := 'nand'|'nor'|'onenand'<dev-num>
42 * <dev-num> := mtd device number, 0...
43 * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
46 * 'mtdparts' - partition list
48 * mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]
50 * <mtd-def> := <mtd-id>:<part-def>[,<part-def>...]
51 * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
52 * <part-def> := <size>[@<offset>][<name>][<ro-flag>]
53 * <size> := standard linux memsize OR '-' to denote all remaining space
54 * <offset> := partition start offset within the device
55 * <name> := '(' NAME ')'
56 * <ro-flag> := when set to 'ro' makes partition read-only (not used, passed to kernel)
59 * - each <mtd-id> used in mtdparts must albo exist in 'mtddis' mapping
60 * - if the above variables are not set defaults for a given target are used
64 * 1 NOR Flash, with 1 single writable partition:
65 * mtdids=nor0=edb7312-nor
66 * mtdparts=mtdparts=edb7312-nor:-
68 * 1 NOR Flash with 2 partitions, 1 NAND with one
69 * mtdids=nor0=edb7312-nor,nand0=edb7312-nand
70 * mtdparts=mtdparts=edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home)
77 #include <jffs2/load_kernel.h>
78 #include <linux/list.h>
79 #include <linux/ctype.h>
80 #include <linux/err.h>
81 #include <linux/mtd/mtd.h>
83 #if defined(CONFIG_CMD_NAND)
84 #include <linux/mtd/rawnand.h>
88 #if defined(CONFIG_CMD_ONENAND)
89 #include <linux/mtd/onenand.h>
90 #include <onenand_uboot.h>
93 DECLARE_GLOBAL_DATA_PTR;
95 /* special size referring to all the remaining space in a partition */
96 #define SIZE_REMAINING (~0llu)
98 /* special offset value, it is used when not provided by user
100 * this value is used temporarily during parsing, later such offests
101 * are recalculated */
102 #define OFFSET_NOT_SPECIFIED (~0llu)
104 /* minimum partition size */
105 #define MIN_PART_SIZE 4096
107 /* this flag needs to be set in part_info struct mask_flags
108 * field for read-only partitions */
109 #define MTD_WRITEABLE_CMD 1
111 /* default values for mtdids and mtdparts variables */
112 #if !defined(MTDIDS_DEFAULT)
113 #ifdef CONFIG_MTDIDS_DEFAULT
114 #define MTDIDS_DEFAULT CONFIG_MTDIDS_DEFAULT
116 #define MTDIDS_DEFAULT NULL
119 #if !defined(MTDPARTS_DEFAULT)
120 #ifdef CONFIG_MTDPARTS_DEFAULT
121 #define MTDPARTS_DEFAULT CONFIG_MTDPARTS_DEFAULT
123 #define MTDPARTS_DEFAULT NULL
126 #if defined(CONFIG_SYS_MTDPARTS_RUNTIME)
127 extern void board_mtdparts_default(const char **mtdids, const char **mtdparts);
129 static const char *mtdids_default = MTDIDS_DEFAULT;
130 static const char *mtdparts_default = MTDPARTS_DEFAULT;
132 /* copies of last seen 'mtdids', 'mtdparts' and 'partition' env variables */
133 #define MTDIDS_MAXLEN 128
134 #define MTDPARTS_MAXLEN 512
135 #define PARTITION_MAXLEN 16
136 static char last_ids[MTDIDS_MAXLEN + 1];
137 static char last_parts[MTDPARTS_MAXLEN + 1];
138 static char last_partition[PARTITION_MAXLEN + 1];
140 /* low level jffs2 cache cleaning routine */
141 extern void jffs2_free_cache(struct part_info *part);
143 /* mtdids mapping list, filled by parse_ids() */
144 static struct list_head mtdids;
146 /* device/partition list, parse_cmdline() parses into here */
147 static struct list_head devices;
149 /* current active device and partition number */
150 struct mtd_device *current_mtd_dev = NULL;
151 u8 current_mtd_partnum = 0;
155 static struct part_info* mtd_part_info(struct mtd_device *dev, unsigned int part_num);
157 /* command line only routines */
158 static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_len);
159 static int device_del(struct mtd_device *dev);
162 * Parses a string into a number. The number stored at ptr is
163 * potentially suffixed with K (for kilobytes, or 1024 bytes),
164 * M (for megabytes, or 1048576 bytes), or G (for gigabytes, or
165 * 1073741824). If the number is suffixed with K, M, or G, then
166 * the return value is the number multiplied by one kilobyte, one
167 * megabyte, or one gigabyte, respectively.
169 * @param ptr where parse begins
170 * @param retptr output pointer to next char after parse completes (output)
171 * @return resulting unsigned int
173 static u64 memsize_parse (const char *const ptr, const char **retptr)
175 u64 ret = simple_strtoull(ptr, (char **)retptr, 0);
196 * Format string describing supplied size. This routine does the opposite job
197 * to memsize_parse(). Size in bytes is converted to string and if possible
198 * shortened by using k (kilobytes), m (megabytes) or g (gigabytes) suffix.
200 * Note, that this routine does not check for buffer overflow, it's the caller
201 * who must assure enough space.
203 * @param buf output buffer
204 * @param size size to be converted to string
206 static void memsize_format(char *buf, u64 size)
208 #define SIZE_GB ((u32)1024*1024*1024)
209 #define SIZE_MB ((u32)1024*1024)
210 #define SIZE_KB ((u32)1024)
212 if ((size % SIZE_GB) == 0)
213 sprintf(buf, "%llug", size/SIZE_GB);
214 else if ((size % SIZE_MB) == 0)
215 sprintf(buf, "%llum", size/SIZE_MB);
216 else if (size % SIZE_KB == 0)
217 sprintf(buf, "%lluk", size/SIZE_KB);
219 sprintf(buf, "%llu", size);
223 * This routine does global indexing of all partitions. Resulting index for
224 * current partition is saved in 'mtddevnum'. Current partition name in
227 static void index_partitions(void)
230 struct part_info *part;
231 struct list_head *dentry;
232 struct mtd_device *dev;
234 debug("--- index partitions ---\n");
236 if (current_mtd_dev) {
238 list_for_each(dentry, &devices) {
239 dev = list_entry(dentry, struct mtd_device, link);
240 if (dev == current_mtd_dev) {
241 mtddevnum += current_mtd_partnum;
242 env_set_ulong("mtddevnum", mtddevnum);
243 debug("=> mtddevnum %d,\n", mtddevnum);
246 mtddevnum += dev->num_parts;
249 part = mtd_part_info(current_mtd_dev, current_mtd_partnum);
251 env_set("mtddevname", part->name);
253 debug("=> mtddevname %s\n", part->name);
255 env_set("mtddevname", NULL);
257 debug("=> mtddevname NULL\n");
260 env_set("mtddevnum", NULL);
261 env_set("mtddevname", NULL);
263 debug("=> mtddevnum NULL\n=> mtddevname NULL\n");
268 * Save current device and partition in environment variable 'partition'.
270 static void current_save(void)
274 debug("--- current_save ---\n");
276 if (current_mtd_dev) {
277 sprintf(buf, "%s%d,%d", MTD_DEV_TYPE(current_mtd_dev->id->type),
278 current_mtd_dev->id->num, current_mtd_partnum);
280 env_set("partition", buf);
281 strncpy(last_partition, buf, 16);
283 debug("=> partition %s\n", buf);
285 env_set("partition", NULL);
286 last_partition[0] = '\0';
288 debug("=> partition NULL\n");
295 * Produce a mtd_info given a type and num.
297 * @param type mtd type
298 * @param num mtd number
299 * @param mtd a pointer to an mtd_info instance (output)
300 * @return 0 if device is valid, 1 otherwise
302 static int get_mtd_info(u8 type, u8 num, struct mtd_info **mtd)
306 sprintf(mtd_dev, "%s%d", MTD_DEV_TYPE(type), num);
307 *mtd = get_mtd_device_nm(mtd_dev);
309 printf("Device %s not found!\n", mtd_dev);
312 put_mtd_device(*mtd);
318 * Performs sanity check for supplied flash partition.
319 * Table of existing MTD flash devices is searched and partition device
320 * is located. Alignment with the granularity of nand erasesize is verified.
322 * @param id of the parent device
323 * @param part partition to validate
324 * @return 0 if partition is valid, 1 otherwise
326 static int part_validate_eraseblock(struct mtdids *id, struct part_info *part)
328 struct mtd_info *mtd = NULL;
333 if (get_mtd_info(id->type, id->num, &mtd))
336 part->sector_size = mtd->erasesize;
338 if (!mtd->numeraseregions) {
340 * Only one eraseregion (NAND, OneNAND or uniform NOR),
341 * checking for alignment is easy here
343 offset = part->offset;
344 if (do_div(offset, mtd->erasesize)) {
345 printf("%s%d: partition (%s) start offset"
346 "alignment incorrect\n",
347 MTD_DEV_TYPE(id->type), id->num, part->name);
352 if (do_div(size, mtd->erasesize)) {
353 printf("%s%d: partition (%s) size alignment incorrect\n",
354 MTD_DEV_TYPE(id->type), id->num, part->name);
359 * Multiple eraseregions (non-uniform NOR),
360 * checking for alignment is more complex here
363 /* Check start alignment */
364 for (i = 0; i < mtd->numeraseregions; i++) {
365 start = mtd->eraseregions[i].offset;
366 for (j = 0; j < mtd->eraseregions[i].numblocks; j++) {
367 if (part->offset == start)
369 start += mtd->eraseregions[i].erasesize;
373 printf("%s%d: partition (%s) start offset alignment incorrect\n",
374 MTD_DEV_TYPE(id->type), id->num, part->name);
379 /* Check end/size alignment */
380 for (i = 0; i < mtd->numeraseregions; i++) {
381 start = mtd->eraseregions[i].offset;
382 for (j = 0; j < mtd->eraseregions[i].numblocks; j++) {
383 if ((part->offset + part->size) == start)
385 start += mtd->eraseregions[i].erasesize;
388 /* Check last sector alignment */
389 if ((part->offset + part->size) == start)
392 printf("%s%d: partition (%s) size alignment incorrect\n",
393 MTD_DEV_TYPE(id->type), id->num, part->name);
405 * Performs sanity check for supplied partition. Offset and size are
406 * verified to be within valid range. Partition type is checked and
407 * part_validate_eraseblock() is called with the argument of part.
409 * @param id of the parent device
410 * @param part partition to validate
411 * @return 0 if partition is valid, 1 otherwise
413 static int part_validate(struct mtdids *id, struct part_info *part)
415 if (part->size == SIZE_REMAINING)
416 part->size = id->size - part->offset;
418 if (part->offset > id->size) {
419 printf("%s: offset %08llx beyond flash size %08llx\n",
420 id->mtd_id, part->offset, id->size);
424 if ((part->offset + part->size) <= part->offset) {
425 printf("%s%d: partition (%s) size too big\n",
426 MTD_DEV_TYPE(id->type), id->num, part->name);
430 if (part->offset + part->size > id->size) {
431 printf("%s: partitioning exceeds flash size\n", id->mtd_id);
436 * Now we need to check if the partition starts and ends on
437 * sector (eraseblock) regions
439 return part_validate_eraseblock(id, part);
443 * Delete selected partition from the partition list of the specified device.
445 * @param dev device to delete partition from
446 * @param part partition to delete
447 * @return 0 on success, 1 otherwise
449 static int part_del(struct mtd_device *dev, struct part_info *part)
451 u8 current_save_needed = 0;
453 /* if there is only one partition, remove whole device */
454 if (dev->num_parts == 1)
455 return device_del(dev);
457 /* otherwise just delete this partition */
459 if (dev == current_mtd_dev) {
460 /* we are modyfing partitions for the current device,
462 struct part_info *curr_pi;
463 curr_pi = mtd_part_info(current_mtd_dev, current_mtd_partnum);
466 if (curr_pi == part) {
467 printf("current partition deleted, resetting current to 0\n");
468 current_mtd_partnum = 0;
469 } else if (part->offset <= curr_pi->offset) {
470 current_mtd_partnum--;
472 current_save_needed = 1;
476 list_del(&part->link);
480 if (current_save_needed > 0)
489 * Delete all partitions from parts head list, free memory.
491 * @param head list of partitions to delete
493 static void part_delall(struct list_head *head)
495 struct list_head *entry, *n;
496 struct part_info *part_tmp;
498 /* clean tmp_list and free allocated memory */
499 list_for_each_safe(entry, n, head) {
500 part_tmp = list_entry(entry, struct part_info, link);
508 * Add new partition to the supplied partition list. Make sure partitions are
509 * sorted by offset in ascending order.
511 * @param head list this partition is to be added to
512 * @param new partition to be added
514 static int part_sort_add(struct mtd_device *dev, struct part_info *part)
516 struct list_head *entry;
517 struct part_info *new_pi, *curr_pi;
519 /* link partition to parrent dev */
522 if (list_empty(&dev->parts)) {
523 debug("part_sort_add: list empty\n");
524 list_add(&part->link, &dev->parts);
530 new_pi = list_entry(&part->link, struct part_info, link);
532 /* get current partition info if we are updating current device */
534 if (dev == current_mtd_dev)
535 curr_pi = mtd_part_info(current_mtd_dev, current_mtd_partnum);
537 list_for_each(entry, &dev->parts) {
538 struct part_info *pi;
540 pi = list_entry(entry, struct part_info, link);
542 /* be compliant with kernel cmdline, allow only one partition at offset zero */
543 if ((new_pi->offset == pi->offset) && (pi->offset == 0)) {
544 printf("cannot add second partition at offset 0\n");
548 if (new_pi->offset <= pi->offset) {
549 list_add_tail(&part->link, entry);
552 if (curr_pi && (pi->offset <= curr_pi->offset)) {
553 /* we are modyfing partitions for the current
554 * device, update current */
555 current_mtd_partnum++;
564 list_add_tail(&part->link, &dev->parts);
571 * Add provided partition to the partition list of a given device.
573 * @param dev device to which partition is added
574 * @param part partition to be added
575 * @return 0 on success, 1 otherwise
577 static int part_add(struct mtd_device *dev, struct part_info *part)
579 /* verify alignment and size */
580 if (part_validate(dev->id, part) != 0)
583 /* partition is ok, add it to the list */
584 if (part_sort_add(dev, part) != 0)
591 * Parse one partition definition, allocate memory and return pointer to this
592 * location in retpart.
594 * @param partdef pointer to the partition definition string i.e. <part-def>
595 * @param ret output pointer to next char after parse completes (output)
596 * @param retpart pointer to the allocated partition (output)
597 * @return 0 on success, 1 otherwise
599 static int part_parse(const char *const partdef, const char **ret, struct part_info **retpart)
601 struct part_info *part;
606 unsigned int mask_flags;
613 /* fetch the partition size */
615 /* assign all remaining space to this partition */
616 debug("'-': remaining size assigned\n");
617 size = SIZE_REMAINING;
620 size = memsize_parse(p, &p);
621 if (size < MIN_PART_SIZE) {
622 printf("partition size too small (%llx)\n", size);
627 /* check for offset */
628 offset = OFFSET_NOT_SPECIFIED;
631 offset = memsize_parse(p, &p);
634 /* now look for the name */
637 if ((p = strchr(name, ')')) == NULL) {
638 printf("no closing ) found in partition name\n");
641 name_len = p - name + 1;
642 if ((name_len - 1) == 0) {
643 printf("empty partition name\n");
648 /* 0x00000000@0x00000000 */
653 /* test for options */
655 if (strncmp(p, "ro", 2) == 0) {
656 mask_flags |= MTD_WRITEABLE_CMD;
660 /* check for next partition definition */
662 if (size == SIZE_REMAINING) {
664 printf("no partitions allowed after a fill-up partition\n");
668 } else if ((*p == ';') || (*p == '\0')) {
671 printf("unexpected character '%c' at the end of partition\n", *p);
676 /* allocate memory */
677 part = (struct part_info *)malloc(sizeof(struct part_info) + name_len);
679 printf("out of memory\n");
682 memset(part, 0, sizeof(struct part_info) + name_len);
684 part->offset = offset;
685 part->mask_flags = mask_flags;
686 part->name = (char *)(part + 1);
689 /* copy user provided name */
690 strncpy(part->name, name, name_len - 1);
693 /* auto generated name in form of size@offset */
694 sprintf(part->name, "0x%08llx@0x%08llx", size, offset);
698 part->name[name_len - 1] = '\0';
699 INIT_LIST_HEAD(&part->link);
701 debug("+ partition: name %-22s size 0x%08llx offset 0x%08llx mask flags %d\n",
702 part->name, part->size,
703 part->offset, part->mask_flags);
710 * Check device number to be within valid range for given device type.
712 * @param type mtd type
713 * @param num mtd number
714 * @param size a pointer to the size of the mtd device (output)
715 * @return 0 if device is valid, 1 otherwise
717 static int mtd_device_validate(u8 type, u8 num, u64 *size)
719 struct mtd_info *mtd = NULL;
721 if (get_mtd_info(type, num, &mtd))
730 * Delete all mtd devices from a supplied devices list, free memory allocated for
731 * each device and delete all device partitions.
733 * @return 0 on success, 1 otherwise
735 static int device_delall(struct list_head *head)
737 struct list_head *entry, *n;
738 struct mtd_device *dev_tmp;
740 /* clean devices list */
741 list_for_each_safe(entry, n, head) {
742 dev_tmp = list_entry(entry, struct mtd_device, link);
744 part_delall(&dev_tmp->parts);
747 INIT_LIST_HEAD(&devices);
753 * If provided device exists it's partitions are deleted, device is removed
754 * from device list and device memory is freed.
756 * @param dev device to be deleted
757 * @return 0 on success, 1 otherwise
759 static int device_del(struct mtd_device *dev)
761 part_delall(&dev->parts);
762 list_del(&dev->link);
765 if (dev == current_mtd_dev) {
766 /* we just deleted current device */
767 if (list_empty(&devices)) {
768 current_mtd_dev = NULL;
770 /* reset first partition from first dev from the
771 * devices list as current */
772 current_mtd_dev = list_entry(devices.next, struct mtd_device, link);
773 current_mtd_partnum = 0;
784 * Search global device list and return pointer to the device of type and num
787 * @param type device type
788 * @param num device number
789 * @return NULL if requested device does not exist
791 struct mtd_device *device_find(u8 type, u8 num)
793 struct list_head *entry;
794 struct mtd_device *dev_tmp;
796 list_for_each(entry, &devices) {
797 dev_tmp = list_entry(entry, struct mtd_device, link);
799 if ((dev_tmp->id->type == type) && (dev_tmp->id->num == num))
807 * Add specified device to the global device list.
809 * @param dev device to be added
811 static void device_add(struct mtd_device *dev)
813 u8 current_save_needed = 0;
815 if (list_empty(&devices)) {
816 current_mtd_dev = dev;
817 current_mtd_partnum = 0;
818 current_save_needed = 1;
821 list_add_tail(&dev->link, &devices);
823 if (current_save_needed > 0)
830 * Parse device type, name and mtd-id. If syntax is ok allocate memory and
831 * return pointer to the device structure.
833 * @param mtd_dev pointer to the device definition string i.e. <mtd-dev>
834 * @param ret output pointer to next char after parse completes (output)
835 * @param retdev pointer to the allocated device (output)
836 * @return 0 on success, 1 otherwise
838 static int device_parse(const char *const mtd_dev, const char **ret, struct mtd_device **retdev)
840 struct mtd_device *dev;
841 struct part_info *part;
844 unsigned int mtd_id_len;
848 struct list_head *entry, *n;
853 debug("===device_parse===\n");
862 mtd_id = p = mtd_dev;
863 if (!(p = strchr(mtd_id, ':'))) {
864 printf("no <mtd-id> identifier\n");
867 mtd_id_len = p - mtd_id + 1;
870 /* verify if we have a valid device specified */
871 if ((id = id_find_by_mtd_id(mtd_id, mtd_id_len - 1)) == NULL) {
872 printf("invalid mtd device '%.*s'\n", mtd_id_len - 1, mtd_id);
876 pend = strchr(p, ';');
877 debug("dev type = %d (%s), dev num = %d, mtd-id = %s\n",
878 id->type, MTD_DEV_TYPE(id->type),
879 id->num, id->mtd_id);
880 debug("parsing partitions %.*s\n", (int)(pend ? pend - p : strlen(p)), p);
882 /* parse partitions */
886 if ((dev = device_find(id->type, id->num)) != NULL) {
887 /* if device already exists start at the end of the last partition */
888 part = list_entry(dev->parts.prev, struct part_info, link);
889 offset = part->offset + part->size;
892 while (p && (*p != '\0') && (*p != ';')) {
894 if ((part_parse(p, &p, &part) != 0) || (!part))
897 /* calculate offset when not specified */
898 if (part->offset == OFFSET_NOT_SPECIFIED)
899 part->offset = offset;
901 offset = part->offset;
903 /* verify alignment and size */
904 if (part_validate(id, part) != 0)
907 offset += part->size;
909 /* partition is ok, add it to the list */
910 list_add_tail(&part->link, &tmp_list);
915 part_delall(&tmp_list);
919 debug("\ntotal partitions: %d\n", num_parts);
921 /* check for next device presence */
926 } else if (*p == '\0') {
930 printf("unexpected character '%c' at the end of device\n", *p);
937 /* allocate memory for mtd_device structure */
938 if ((dev = (struct mtd_device *)malloc(sizeof(struct mtd_device))) == NULL) {
939 printf("out of memory\n");
942 memset(dev, 0, sizeof(struct mtd_device));
944 dev->num_parts = 0; /* part_sort_add increments num_parts */
945 INIT_LIST_HEAD(&dev->parts);
946 INIT_LIST_HEAD(&dev->link);
948 /* move partitions from tmp_list to dev->parts */
949 list_for_each_safe(entry, n, &tmp_list) {
950 part = list_entry(entry, struct part_info, link);
952 if (part_sort_add(dev, part) != 0) {
965 * Initialize global device list.
967 * @return 0 on success, 1 otherwise
969 static int mtd_devices_init(void)
971 last_parts[0] = '\0';
972 current_mtd_dev = NULL;
975 return device_delall(&devices);
979 * Search global mtdids list and find id of requested type and number.
981 * @return pointer to the id if it exists, NULL otherwise
983 static struct mtdids* id_find(u8 type, u8 num)
985 struct list_head *entry;
988 list_for_each(entry, &mtdids) {
989 id = list_entry(entry, struct mtdids, link);
991 if ((id->type == type) && (id->num == num))
999 * Search global mtdids list and find id of a requested mtd_id.
1001 * Note: first argument is not null terminated.
1003 * @param mtd_id string containing requested mtd_id
1004 * @param mtd_id_len length of supplied mtd_id
1005 * @return pointer to the id if it exists, NULL otherwise
1007 static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_len)
1009 struct list_head *entry;
1012 debug("--- id_find_by_mtd_id: '%.*s' (len = %d)\n",
1013 mtd_id_len, mtd_id, mtd_id_len);
1015 list_for_each(entry, &mtdids) {
1016 id = list_entry(entry, struct mtdids, link);
1018 debug("entry: '%s' (len = %zu)\n",
1019 id->mtd_id, strlen(id->mtd_id));
1021 if (mtd_id_len != strlen(id->mtd_id))
1023 if (strncmp(id->mtd_id, mtd_id, mtd_id_len) == 0)
1031 * Parse device id string <dev-id> := 'nand'|'nor'|'onenand'<dev-num>,
1032 * return device type and number.
1034 * @param id string describing device id
1035 * @param ret_id output pointer to next char after parse completes (output)
1036 * @param dev_type parsed device type (output)
1037 * @param dev_num parsed device number (output)
1038 * @return 0 on success, 1 otherwise
1040 int mtd_id_parse(const char *id, const char **ret_id, u8 *dev_type,
1046 if (strncmp(p, "nand", 4) == 0) {
1047 *dev_type = MTD_DEV_TYPE_NAND;
1049 } else if (strncmp(p, "nor", 3) == 0) {
1050 *dev_type = MTD_DEV_TYPE_NOR;
1052 } else if (strncmp(p, "onenand", 7) == 0) {
1053 *dev_type = MTD_DEV_TYPE_ONENAND;
1056 printf("incorrect device type in %s\n", id);
1061 printf("incorrect device number in %s\n", id);
1065 *dev_num = simple_strtoul(p, (char **)&p, 0);
1072 * Process all devices and generate corresponding mtdparts string describing
1073 * all partitions on all devices.
1075 * @param buf output buffer holding generated mtdparts string (output)
1076 * @param buflen buffer size
1077 * @return 0 on success, 1 otherwise
1079 static int generate_mtdparts(char *buf, u32 buflen)
1081 struct list_head *pentry, *dentry;
1082 struct mtd_device *dev;
1083 struct part_info *part, *prev_part;
1088 u32 maxlen = buflen - 1;
1090 debug("--- generate_mtdparts ---\n");
1092 if (list_empty(&devices)) {
1097 strcpy(p, "mtdparts=");
1100 list_for_each(dentry, &devices) {
1101 dev = list_entry(dentry, struct mtd_device, link);
1104 len = strlen(dev->id->mtd_id) + 1;
1107 memcpy(p, dev->id->mtd_id, len - 1);
1112 /* format partitions */
1115 list_for_each(pentry, &dev->parts) {
1116 part = list_entry(pentry, struct part_info, link);
1118 offset = part->offset;
1121 /* partition size */
1122 memsize_format(tmpbuf, size);
1123 len = strlen(tmpbuf);
1126 memcpy(p, tmpbuf, len);
1131 /* add offset only when there is a gap between
1133 if ((!prev_part && (offset != 0)) ||
1134 (prev_part && ((prev_part->offset + prev_part->size) != part->offset))) {
1136 memsize_format(tmpbuf, offset);
1137 len = strlen(tmpbuf) + 1;
1141 memcpy(p, tmpbuf, len - 1);
1146 /* copy name only if user supplied */
1147 if(!part->auto_name) {
1148 len = strlen(part->name) + 2;
1153 memcpy(p, part->name, len - 2);
1160 if (part->mask_flags && MTD_WRITEABLE_CMD) {
1169 /* print ',' separator if there are other partitions
1171 if (dev->num_parts > part_cnt) {
1179 /* print ';' separator if there are other devices following */
1180 if (dentry->next != &devices) {
1188 /* we still have at least one char left, as we decremented maxlen at
1195 last_parts[0] = '\0';
1200 * Call generate_mtdparts to process all devices and generate corresponding
1201 * mtdparts string, save it in mtdparts environment variable.
1203 * @param buf output buffer holding generated mtdparts string (output)
1204 * @param buflen buffer size
1205 * @return 0 on success, 1 otherwise
1207 static int generate_mtdparts_save(char *buf, u32 buflen)
1211 ret = generate_mtdparts(buf, buflen);
1213 if ((buf[0] != '\0') && (ret == 0))
1214 env_set("mtdparts", buf);
1216 env_set("mtdparts", NULL);
1221 #if defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES)
1223 * Get the net size (w/o bad blocks) of the given partition.
1225 * @param mtd the mtd info
1226 * @param part the partition
1227 * @return the calculated net size of this partition
1229 static uint64_t net_part_size(struct mtd_info *mtd, struct part_info *part)
1231 uint64_t i, net_size = 0;
1233 if (!mtd->block_isbad)
1236 for (i = 0; i < part->size; i += mtd->erasesize) {
1237 if (!mtd->block_isbad(mtd, part->offset + i))
1238 net_size += mtd->erasesize;
1245 static void print_partition_table(void)
1247 struct list_head *dentry, *pentry;
1248 struct part_info *part;
1249 struct mtd_device *dev;
1252 list_for_each(dentry, &devices) {
1253 dev = list_entry(dentry, struct mtd_device, link);
1254 /* list partitions for given device */
1256 #if defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES)
1257 struct mtd_info *mtd;
1259 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
1262 printf("\ndevice %s%d <%s>, # parts = %d\n",
1263 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1264 dev->id->mtd_id, dev->num_parts);
1265 printf(" #: name\t\tsize\t\tnet size\toffset\t\tmask_flags\n");
1267 list_for_each(pentry, &dev->parts) {
1271 part = list_entry(pentry, struct part_info, link);
1272 net_size = net_part_size(mtd, part);
1273 size_note = part->size == net_size ? " " : " (!)";
1274 printf("%2d: %-20s0x%08x\t0x%08x%s\t0x%08x\t%d\n",
1275 part_num, part->name, part->size,
1276 net_size, size_note, part->offset,
1278 #else /* !defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES) */
1279 printf("\ndevice %s%d <%s>, # parts = %d\n",
1280 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1281 dev->id->mtd_id, dev->num_parts);
1282 printf(" #: name\t\tsize\t\toffset\t\tmask_flags\n");
1284 list_for_each(pentry, &dev->parts) {
1285 part = list_entry(pentry, struct part_info, link);
1286 printf("%2d: %-20s0x%08llx\t0x%08llx\t%d\n",
1287 part_num, part->name, part->size,
1288 part->offset, part->mask_flags);
1289 #endif /* defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES) */
1294 if (list_empty(&devices))
1295 printf("no partitions defined\n");
1299 * Format and print out a partition list for each device from global device
1302 static void list_partitions(void)
1304 struct part_info *part;
1306 debug("\n---list_partitions---\n");
1307 print_partition_table();
1309 /* current_mtd_dev is not NULL only when we have non empty device list */
1310 if (current_mtd_dev) {
1311 part = mtd_part_info(current_mtd_dev, current_mtd_partnum);
1313 printf("\nactive partition: %s%d,%d - (%s) 0x%08llx @ 0x%08llx\n",
1314 MTD_DEV_TYPE(current_mtd_dev->id->type),
1315 current_mtd_dev->id->num, current_mtd_partnum,
1316 part->name, part->size, part->offset);
1318 printf("could not get current partition info\n\n");
1322 printf("\ndefaults:\n");
1323 printf("mtdids : %s\n",
1324 mtdids_default ? mtdids_default : "none");
1326 * Using printf() here results in printbuffer overflow
1327 * if default mtdparts string is greater than console
1328 * printbuffer. Use puts() to prevent system crashes.
1331 puts(mtdparts_default ? mtdparts_default : "none");
1336 * Given partition identifier in form of <dev_type><dev_num>,<part_num> find
1337 * corresponding device and verify partition number.
1339 * @param id string describing device and partition or partition name
1340 * @param dev pointer to the requested device (output)
1341 * @param part_num verified partition number (output)
1342 * @param part pointer to requested partition (output)
1343 * @return 0 on success, 1 otherwise
1345 int find_dev_and_part(const char *id, struct mtd_device **dev,
1346 u8 *part_num, struct part_info **part)
1348 struct list_head *dentry, *pentry;
1349 u8 type, dnum, pnum;
1352 debug("--- find_dev_and_part ---\nid = %s\n", id);
1354 list_for_each(dentry, &devices) {
1356 *dev = list_entry(dentry, struct mtd_device, link);
1357 list_for_each(pentry, &(*dev)->parts) {
1358 *part = list_entry(pentry, struct part_info, link);
1359 if (strcmp((*part)->name, id) == 0)
1370 if (mtd_id_parse(p, &p, &type, &dnum) != 0)
1373 if ((*p++ != ',') || (*p == '\0')) {
1374 printf("no partition number specified\n");
1377 pnum = simple_strtoul(p, (char **)&p, 0);
1379 printf("unexpected trailing character '%c'\n", *p);
1383 if ((*dev = device_find(type, dnum)) == NULL) {
1384 printf("no such device %s%d\n", MTD_DEV_TYPE(type), dnum);
1388 if ((*part = mtd_part_info(*dev, pnum)) == NULL) {
1389 printf("no such partition\n");
1400 * Find and delete partition. For partition id format see find_dev_and_part().
1402 * @param id string describing device and partition
1403 * @return 0 on success, 1 otherwise
1405 static int delete_partition(const char *id)
1408 struct mtd_device *dev;
1409 struct part_info *part;
1411 if (find_dev_and_part(id, &dev, &pnum, &part) == 0) {
1413 debug("delete_partition: device = %s%d, partition %d = (%s) 0x%08llx@0x%08llx\n",
1414 MTD_DEV_TYPE(dev->id->type), dev->id->num, pnum,
1415 part->name, part->size, part->offset);
1417 if (part_del(dev, part) != 0)
1420 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
1421 printf("generated mtdparts too long, resetting to null\n");
1427 printf("partition %s not found\n", id);
1431 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
1433 * Increase the size of the given partition so that it's net size is at least
1434 * as large as the size member and such that the next partition would start on a
1435 * good block if it were adjacent to this partition.
1437 * @param mtd the mtd device
1438 * @param part the partition
1439 * @param next_offset pointer to the offset of the next partition after this
1440 * partition's size has been modified (output)
1442 static void spread_partition(struct mtd_info *mtd, struct part_info *part,
1443 uint64_t *next_offset)
1445 uint64_t net_size, padding_size = 0;
1448 mtd_get_len_incl_bad(mtd, part->offset, part->size, &net_size,
1452 * Absorb bad blocks immediately following this
1453 * partition also into the partition, such that
1454 * the next partition starts with a good block.
1457 mtd_get_len_incl_bad(mtd, part->offset + net_size,
1458 mtd->erasesize, &padding_size, &truncated);
1462 padding_size -= mtd->erasesize;
1466 printf("truncated partition %s to %lld bytes\n", part->name,
1467 (uint64_t) net_size + padding_size);
1470 part->size = net_size + padding_size;
1471 *next_offset = part->offset + part->size;
1475 * Adjust all of the partition sizes, such that all partitions are at least
1476 * as big as their mtdparts environment variable sizes and they each start
1479 * @return 0 on success, 1 otherwise
1481 static int spread_partitions(void)
1483 struct list_head *dentry, *pentry;
1484 struct mtd_device *dev;
1485 struct part_info *part;
1486 struct mtd_info *mtd;
1490 list_for_each(dentry, &devices) {
1491 dev = list_entry(dentry, struct mtd_device, link);
1493 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
1498 list_for_each(pentry, &dev->parts) {
1499 part = list_entry(pentry, struct part_info, link);
1501 debug("spread_partitions: device = %s%d, partition %d ="
1502 " (%s) 0x%08llx@0x%08llx\n",
1503 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1504 part_num, part->name, part->size,
1507 if (cur_offs > part->offset)
1508 part->offset = cur_offs;
1510 spread_partition(mtd, part, &cur_offs);
1518 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
1519 printf("generated mtdparts too long, resetting to null\n");
1524 #endif /* CONFIG_CMD_MTDPARTS_SPREAD */
1527 * The mtdparts variable tends to be long. If we need to access it
1528 * before the env is relocated, then we need to use our own stack
1529 * buffer. gd->env_buf will be too small.
1531 * @param buf temporary buffer pointer MTDPARTS_MAXLEN long
1532 * @return mtdparts variable string, NULL if not found
1534 static const char *env_get_mtdparts(char *buf)
1536 if (gd->flags & GD_FLG_ENV_READY)
1537 return env_get("mtdparts");
1538 if (env_get_f("mtdparts", buf, MTDPARTS_MAXLEN) != -1)
1544 * Accept character string describing mtd partitions and call device_parse()
1545 * for each entry. Add created devices to the global devices list.
1547 * @param mtdparts string specifing mtd partitions
1548 * @return 0 on success, 1 otherwise
1550 static int parse_mtdparts(const char *const mtdparts)
1553 struct mtd_device *dev;
1555 char tmp_parts[MTDPARTS_MAXLEN];
1557 debug("\n---parse_mtdparts---\nmtdparts = %s\n\n", mtdparts);
1559 /* delete all devices and partitions */
1560 if (mtd_devices_init() != 0) {
1561 printf("could not initialise device list\n");
1565 /* re-read 'mtdparts' variable, mtd_devices_init may be updating env */
1566 p = env_get_mtdparts(tmp_parts);
1570 if (strncmp(p, "mtdparts=", 9) != 0) {
1571 printf("mtdparts variable doesn't start with 'mtdparts='\n");
1576 while (*p != '\0') {
1578 if ((device_parse(p, &p, &dev) != 0) || (!dev))
1581 debug("+ device: %s\t%d\t%s\n", MTD_DEV_TYPE(dev->id->type),
1582 dev->id->num, dev->id->mtd_id);
1584 /* check if parsed device is already on the list */
1585 if (device_find(dev->id->type, dev->id->num) != NULL) {
1586 printf("device %s%d redefined, please correct mtdparts variable\n",
1587 MTD_DEV_TYPE(dev->id->type), dev->id->num);
1591 list_add_tail(&dev->link, &devices);
1596 device_delall(&devices);
1603 * Parse provided string describing mtdids mapping (see file header for mtdids
1604 * variable format). Allocate memory for each entry and add all found entries
1605 * to the global mtdids list.
1607 * @param ids mapping string
1608 * @return 0 on success, 1 otherwise
1610 static int parse_mtdids(const char *const ids)
1612 const char *p = ids;
1616 struct list_head *entry, *n;
1617 struct mtdids *id_tmp;
1622 debug("\n---parse_mtdids---\nmtdids = %s\n\n", ids);
1624 /* clean global mtdids list */
1625 list_for_each_safe(entry, n, &mtdids) {
1626 id_tmp = list_entry(entry, struct mtdids, link);
1627 debug("mtdids del: %d %d\n", id_tmp->type, id_tmp->num);
1632 INIT_LIST_HEAD(&mtdids);
1634 while(p && (*p != '\0')) {
1637 /* parse 'nor'|'nand'|'onenand'<dev-num> */
1638 if (mtd_id_parse(p, &p, &type, &num) != 0)
1642 printf("mtdids: incorrect <dev-num>\n");
1647 /* check if requested device exists */
1648 if (mtd_device_validate(type, num, &size) != 0)
1651 /* locate <mtd-id> */
1653 if ((p = strchr(mtd_id, ',')) != NULL) {
1654 mtd_id_len = p - mtd_id + 1;
1657 mtd_id_len = strlen(mtd_id) + 1;
1659 if (mtd_id_len == 0) {
1660 printf("mtdids: no <mtd-id> identifier\n");
1664 /* check if this id is already on the list */
1665 int double_entry = 0;
1666 list_for_each(entry, &mtdids) {
1667 id_tmp = list_entry(entry, struct mtdids, link);
1668 if ((id_tmp->type == type) && (id_tmp->num == num)) {
1674 printf("device id %s%d redefined, please correct mtdids variable\n",
1675 MTD_DEV_TYPE(type), num);
1679 /* allocate mtdids structure */
1680 if (!(id = (struct mtdids *)malloc(sizeof(struct mtdids) + mtd_id_len))) {
1681 printf("out of memory\n");
1684 memset(id, 0, sizeof(struct mtdids) + mtd_id_len);
1688 id->mtd_id = (char *)(id + 1);
1689 strncpy(id->mtd_id, mtd_id, mtd_id_len - 1);
1690 id->mtd_id[mtd_id_len - 1] = '\0';
1691 INIT_LIST_HEAD(&id->link);
1693 debug("+ id %s%d\t%16lld bytes\t%s\n",
1694 MTD_DEV_TYPE(id->type), id->num,
1695 id->size, id->mtd_id);
1697 list_add_tail(&id->link, &mtdids);
1701 /* clean mtdids list and free allocated memory */
1702 list_for_each_safe(entry, n, &mtdids) {
1703 id_tmp = list_entry(entry, struct mtdids, link);
1715 * Parse and initialize global mtdids mapping and create global
1716 * device/partition list.
1718 * @return 0 on success, 1 otherwise
1720 int mtdparts_init(void)
1722 static int initialized = 0;
1723 const char *ids, *parts;
1724 const char *current_partition;
1726 char tmp_ep[PARTITION_MAXLEN + 1];
1727 char tmp_parts[MTDPARTS_MAXLEN];
1729 debug("\n---mtdparts_init---\n");
1731 INIT_LIST_HEAD(&mtdids);
1732 INIT_LIST_HEAD(&devices);
1733 memset(last_ids, 0, sizeof(last_ids));
1734 memset(last_parts, 0, sizeof(last_parts));
1735 memset(last_partition, 0, sizeof(last_partition));
1736 #if defined(CONFIG_SYS_MTDPARTS_RUNTIME)
1737 board_mtdparts_default(&mtdids_default, &mtdparts_default);
1744 ids = env_get("mtdids");
1745 parts = env_get_mtdparts(tmp_parts);
1746 current_partition = env_get("partition");
1748 /* save it for later parsing, cannot rely on current partition pointer
1749 * as 'partition' variable may be updated during init */
1750 memset(tmp_parts, 0, sizeof(tmp_parts));
1751 memset(tmp_ep, 0, sizeof(tmp_ep));
1752 if (current_partition)
1753 strncpy(tmp_ep, current_partition, PARTITION_MAXLEN);
1755 debug("last_ids : %s\n", last_ids);
1756 debug("env_ids : %s\n", ids);
1757 debug("last_parts: %s\n", last_parts);
1758 debug("env_parts : %s\n\n", parts);
1760 debug("last_partition : %s\n", last_partition);
1761 debug("env_partition : %s\n", current_partition);
1763 /* if mtdids variable is empty try to use defaults */
1765 if (mtdids_default) {
1766 debug("mtdids variable not defined, using default\n");
1767 ids = mtdids_default;
1768 env_set("mtdids", (char *)ids);
1770 printf("mtdids not defined, no default present\n");
1774 if (strlen(ids) > MTDIDS_MAXLEN - 1) {
1775 printf("mtdids too long (> %d)\n", MTDIDS_MAXLEN);
1779 /* use defaults when mtdparts variable is not defined
1780 * once mtdparts is saved environment, drop use_defaults flag */
1782 if (mtdparts_default && use_defaults) {
1783 parts = mtdparts_default;
1784 if (env_set("mtdparts", (char *)parts) == 0)
1787 printf("mtdparts variable not set, see 'help mtdparts'\n");
1790 if (parts && (strlen(parts) > MTDPARTS_MAXLEN - 1)) {
1791 printf("mtdparts too long (> %d)\n", MTDPARTS_MAXLEN);
1795 /* check if we have already parsed those mtdids */
1796 if ((last_ids[0] != '\0') && (strcmp(last_ids, ids) == 0)) {
1801 if (parse_mtdids(ids) != 0) {
1806 /* ok it's good, save new ids */
1807 strncpy(last_ids, ids, MTDIDS_MAXLEN);
1810 /* parse partitions if either mtdparts or mtdids were updated */
1811 if (parts && ((last_parts[0] == '\0') || ((strcmp(last_parts, parts) != 0)) || ids_changed)) {
1812 if (parse_mtdparts(parts) != 0)
1815 if (list_empty(&devices)) {
1816 printf("mtdparts_init: no valid partitions\n");
1820 /* ok it's good, save new parts */
1821 strncpy(last_parts, parts, MTDPARTS_MAXLEN);
1823 /* reset first partition from first dev from the list as current */
1824 current_mtd_dev = list_entry(devices.next, struct mtd_device, link);
1825 current_mtd_partnum = 0;
1828 debug("mtdparts_init: current_mtd_dev = %s%d, current_mtd_partnum = %d\n",
1829 MTD_DEV_TYPE(current_mtd_dev->id->type),
1830 current_mtd_dev->id->num, current_mtd_partnum);
1833 /* mtdparts variable was reset to NULL, delete all devices/partitions */
1834 if (!parts && (last_parts[0] != '\0'))
1835 return mtd_devices_init();
1837 /* do not process current partition if mtdparts variable is null */
1841 /* is current partition set in environment? if so, use it */
1842 if ((tmp_ep[0] != '\0') && (strcmp(tmp_ep, last_partition) != 0)) {
1843 struct part_info *p;
1844 struct mtd_device *cdev;
1847 debug("--- getting current partition: %s\n", tmp_ep);
1849 if (find_dev_and_part(tmp_ep, &cdev, &pnum, &p) == 0) {
1850 current_mtd_dev = cdev;
1851 current_mtd_partnum = pnum;
1854 } else if (env_get("partition") == NULL) {
1855 debug("no partition variable set, setting...\n");
1863 * Return pointer to the partition of a requested number from a requested
1866 * @param dev device that is to be searched for a partition
1867 * @param part_num requested partition number
1868 * @return pointer to the part_info, NULL otherwise
1870 static struct part_info* mtd_part_info(struct mtd_device *dev, unsigned int part_num)
1872 struct list_head *entry;
1873 struct part_info *part;
1879 debug("\n--- mtd_part_info: partition number %d for device %s%d (%s)\n",
1880 part_num, MTD_DEV_TYPE(dev->id->type),
1881 dev->id->num, dev->id->mtd_id);
1883 if (part_num >= dev->num_parts) {
1884 printf("invalid partition number %d for device %s%d (%s)\n",
1885 part_num, MTD_DEV_TYPE(dev->id->type),
1886 dev->id->num, dev->id->mtd_id);
1890 /* locate partition number, return it */
1892 list_for_each(entry, &dev->parts) {
1893 part = list_entry(entry, struct part_info, link);
1895 if (part_num == num++) {
1903 /***************************************************/
1904 /* U-Boot commands */
1905 /***************************************************/
1906 /* command line only */
1908 * Routine implementing u-boot chpart command. Sets new current partition based
1909 * on the user supplied partition id. For partition id format see find_dev_and_part().
1911 * @param cmdtp command internal data
1912 * @param flag command flag
1913 * @param argc number of arguments supplied to the command
1914 * @param argv arguments list
1915 * @return 0 on success, 1 otherwise
1917 static int do_chpart(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1919 /* command line only */
1920 struct mtd_device *dev;
1921 struct part_info *part;
1924 if (mtdparts_init() !=0)
1928 printf("no partition id specified\n");
1932 if (find_dev_and_part(argv[1], &dev, &pnum, &part) != 0)
1935 current_mtd_dev = dev;
1936 current_mtd_partnum = pnum;
1939 printf("partition changed to %s%d,%d\n",
1940 MTD_DEV_TYPE(dev->id->type), dev->id->num, pnum);
1946 * Routine implementing u-boot mtdparts command. Initialize/update default global
1947 * partition list and process user partition request (list, add, del).
1949 * @param cmdtp command internal data
1950 * @param flag command flag
1951 * @param argc number of arguments supplied to the command
1952 * @param argv arguments list
1953 * @return 0 on success, 1 otherwise
1955 static int do_mtdparts(cmd_tbl_t *cmdtp, int flag, int argc,
1956 char * const argv[])
1959 if (strcmp(argv[1], "default") == 0) {
1960 env_set("mtdids", NULL);
1961 env_set("mtdparts", NULL);
1962 env_set("partition", NULL);
1967 } else if (strcmp(argv[1], "delall") == 0) {
1968 /* this may be the first run, initialize lists if needed */
1971 env_set("mtdparts", NULL);
1973 /* mtd_devices_init() calls current_save() */
1974 return mtd_devices_init();
1978 /* make sure we are in sync with env variables */
1979 if (mtdparts_init() != 0)
1987 /* mtdparts add <mtd-dev> <size>[@<offset>] <name> [ro] */
1988 if (((argc == 5) || (argc == 6)) && (strncmp(argv[1], "add", 3) == 0)) {
1989 #define PART_ADD_DESC_MAXLEN 64
1990 char tmpbuf[PART_ADD_DESC_MAXLEN];
1991 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
1992 struct mtd_info *mtd;
1993 uint64_t next_offset;
1996 struct mtd_device *dev;
1997 struct mtd_device *dev_tmp;
1999 struct part_info *p;
2001 if (mtd_id_parse(argv[2], NULL, &type, &num) != 0)
2004 if ((id = id_find(type, num)) == NULL) {
2005 printf("no such device %s defined in mtdids variable\n", argv[2]);
2009 len = strlen(id->mtd_id) + 1; /* 'mtd_id:' */
2010 len += strlen(argv[3]); /* size@offset */
2011 len += strlen(argv[4]) + 2; /* '(' name ')' */
2012 if (argv[5] && (strlen(argv[5]) == 2))
2013 len += 2; /* 'ro' */
2015 if (len >= PART_ADD_DESC_MAXLEN) {
2016 printf("too long partition description\n");
2019 sprintf(tmpbuf, "%s:%s(%s)%s",
2020 id->mtd_id, argv[3], argv[4], argv[5] ? argv[5] : "");
2021 debug("add tmpbuf: %s\n", tmpbuf);
2023 if ((device_parse(tmpbuf, NULL, &dev) != 0) || (!dev))
2026 debug("+ %s\t%d\t%s\n", MTD_DEV_TYPE(dev->id->type),
2027 dev->id->num, dev->id->mtd_id);
2029 p = list_entry(dev->parts.next, struct part_info, link);
2031 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2032 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
2035 if (!strcmp(&argv[1][3], ".spread")) {
2036 spread_partition(mtd, p, &next_offset);
2037 debug("increased %s to %llu bytes\n", p->name, p->size);
2041 dev_tmp = device_find(dev->id->type, dev->id->num);
2042 if (dev_tmp == NULL) {
2044 } else if (part_add(dev_tmp, p) != 0) {
2045 /* merge new partition with existing ones*/
2050 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
2051 printf("generated mtdparts too long, resetting to null\n");
2058 /* mtdparts del part-id */
2059 if ((argc == 3) && (strcmp(argv[1], "del") == 0)) {
2060 debug("del: part-id = %s\n", argv[2]);
2062 return delete_partition(argv[2]);
2065 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2066 if ((argc == 2) && (strcmp(argv[1], "spread") == 0))
2067 return spread_partitions();
2068 #endif /* CONFIG_CMD_MTDPARTS_SPREAD */
2070 return CMD_RET_USAGE;
2073 /***************************************************/
2075 chpart, 2, 0, do_chpart,
2076 "change active partition",
2078 " - change active partition (e.g. part-id = nand0,1)"
2081 #ifdef CONFIG_SYS_LONGHELP
2082 static char mtdparts_help_text[] =
2084 " - list partition table\n"
2086 " - delete all partitions\n"
2087 "mtdparts del part-id\n"
2088 " - delete partition (e.g. part-id = nand0,1)\n"
2089 "mtdparts add <mtd-dev> <size>[@<offset>] [<name>] [ro]\n"
2090 " - add partition\n"
2091 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2092 "mtdparts add.spread <mtd-dev> <size>[@<offset>] [<name>] [ro]\n"
2093 " - add partition, padding size by skipping bad blocks\n"
2095 "mtdparts default\n"
2096 " - reset partition table to defaults\n"
2097 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2099 " - adjust the sizes of the partitions so they are\n"
2100 " at least as big as the mtdparts variable specifies\n"
2101 " and they each start on a good block\n\n"
2104 #endif /* CONFIG_CMD_MTDPARTS_SPREAD */
2106 "this command uses three environment variables:\n\n"
2107 "'partition' - keeps current partition identifier\n\n"
2108 "partition := <part-id>\n"
2109 "<part-id> := <dev-id>,part_num\n\n"
2110 "'mtdids' - linux kernel mtd device id <-> u-boot device id mapping\n\n"
2111 "mtdids=<idmap>[,<idmap>,...]\n\n"
2112 "<idmap> := <dev-id>=<mtd-id>\n"
2113 "<dev-id> := 'nand'|'nor'|'onenand'<dev-num>\n"
2114 "<dev-num> := mtd device number, 0...\n"
2115 "<mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)\n\n"
2116 "'mtdparts' - partition list\n\n"
2117 "mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]\n\n"
2118 "<mtd-def> := <mtd-id>:<part-def>[,<part-def>...]\n"
2119 "<mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)\n"
2120 "<part-def> := <size>[@<offset>][<name>][<ro-flag>]\n"
2121 "<size> := standard linux memsize OR '-' to denote all remaining space\n"
2122 "<offset> := partition start offset within the device\n"
2123 "<name> := '(' NAME ')'\n"
2124 "<ro-flag> := when set to 'ro' makes partition read-only (not used, passed to kernel)";
2128 mtdparts, 6, 0, do_mtdparts,
2129 "define flash/nand partitions", mtdparts_help_text
2131 /***************************************************/