]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_mtdparts.c
Merge remote branch 'remotes/kc/karo-tx6q' into karo-tx28-devel
[karo-tx-uboot.git] / common / cmd_mtdparts.c
1 /*
2  * (C) Copyright 2002
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * (C) Copyright 2002
6  * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de>
7  *
8  * (C) Copyright 2003
9  * Kai-Uwe Bloem, Auerswald GmbH & Co KG, <linux-development@auerswald.de>
10  *
11  * (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  * (C) Copyright 2008
19  * Harald Welte, OpenMoko, Inc., Harald Welte <laforge@openmoko.org>
20  *
21  *   $Id: cmdlinepart.c,v 1.17 2004/11/26 11:18:47 lavinen Exp $
22  *   Copyright 2002 SYSGO Real-Time Solutions GmbH
23  *
24  * See file CREDITS for list of people who contributed to this
25  * project.
26  *
27  * This program is free software; you can redistribute it and/or
28  * modify it under the terms of the GNU General Public License as
29  * published by the Free Software Foundation; either version 2 of
30  * the License, or (at your option) any later version.
31  *
32  * This program is distributed in the hope that it will be useful,
33  * but WITHOUT ANY WARRANTY; without even the implied warranty of
34  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
35  * GNU General Public License for more details.
36  *
37  * You should have received a copy of the GNU General Public License
38  * along with this program; if not, write to the Free Software
39  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
40  * MA 02111-1307 USA
41  */
42
43 /*
44  * Three environment variables are used by the parsing routines:
45  *
46  * 'partition' - keeps current partition identifier
47  *
48  * partition  := <part-id>
49  * <part-id>  := <dev-id>,part_num
50  *
51  *
52  * 'mtdids' - linux kernel mtd device id <-> u-boot device id mapping
53  *
54  * mtdids=<idmap>[,<idmap>,...]
55  *
56  * <idmap>    := <dev-id>=<mtd-id>
57  * <dev-id>   := 'nand'|'nor'|'onenand'<dev-num>
58  * <dev-num>  := mtd device number, 0...
59  * <mtd-id>   := unique device tag used by linux kernel to find mtd device (mtd->name)
60  *
61  *
62  * 'mtdparts' - partition list
63  *
64  * mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]
65  *
66  * <mtd-def>  := <mtd-id>:<part-def>[,<part-def>...]
67  * <mtd-id>   := unique device tag used by linux kernel to find mtd device (mtd->name)
68  * <part-def> := <size>[@<offset>][<name>][<ro-flag>]
69  * <size>     := standard linux memsize OR '-' to denote all remaining space
70  * <offset>   := partition start offset within the device
71  * <name>     := '(' NAME ')'
72  * <ro-flag>  := when set to 'ro' makes partition read-only (not used, passed to kernel)
73  *
74  * Notes:
75  * - each <mtd-id> used in mtdparts must albo exist in 'mtddis' mapping
76  * - if the above variables are not set defaults for a given target are used
77  *
78  * Examples:
79  *
80  * 1 NOR Flash, with 1 single writable partition:
81  * mtdids=nor0=edb7312-nor
82  * mtdparts=mtdparts=edb7312-nor:-
83  *
84  * 1 NOR Flash with 2 partitions, 1 NAND with one
85  * mtdids=nor0=edb7312-nor,nand0=edb7312-nand
86  * mtdparts=mtdparts=edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home)
87  *
88  */
89
90 #include <common.h>
91 #include <command.h>
92 #include <malloc.h>
93 #include <jffs2/load_kernel.h>
94 #include <linux/list.h>
95 #include <linux/ctype.h>
96 #include <linux/err.h>
97 #include <linux/mtd/mtd.h>
98
99 #if defined(CONFIG_CMD_NAND)
100 #include <linux/mtd/nand.h>
101 #include <nand.h>
102 #endif
103
104 #if defined(CONFIG_CMD_ONENAND)
105 #include <linux/mtd/onenand.h>
106 #include <onenand_uboot.h>
107 #endif
108
109 /* special size referring to all the remaining space in a partition */
110 #define SIZE_REMAINING          0xFFFFFFFF
111
112 /* special offset value, it is used when not provided by user
113  *
114  * this value is used temporarily during parsing, later such offests
115  * are recalculated */
116 #define OFFSET_NOT_SPECIFIED    0xFFFFFFFF
117
118 /* minimum partition size */
119 #define MIN_PART_SIZE           4096
120
121 /* this flag needs to be set in part_info struct mask_flags
122  * field for read-only partitions */
123 #define MTD_WRITEABLE_CMD               1
124
125 /* default values for mtdids and mtdparts variables */
126 #if defined(MTDIDS_DEFAULT)
127 static const char *const mtdids_default = MTDIDS_DEFAULT;
128 #else
129 static const char *const mtdids_default = NULL;
130 #endif
131
132 #if defined(MTDPARTS_DEFAULT)
133 static const char *const mtdparts_default = MTDPARTS_DEFAULT;
134 #else
135 static const char *const mtdparts_default = NULL;
136 #endif
137
138 /* copies of last seen 'mtdids', 'mtdparts' and 'partition' env variables */
139 #define MTDIDS_MAXLEN           128
140 #define MTDPARTS_MAXLEN         512
141 #define PARTITION_MAXLEN        16
142 static char last_ids[MTDIDS_MAXLEN];
143 static char last_parts[MTDPARTS_MAXLEN];
144 static char last_partition[PARTITION_MAXLEN];
145
146 /* low level jffs2 cache cleaning routine */
147 extern void jffs2_free_cache(struct part_info *part);
148
149 /* mtdids mapping list, filled by parse_ids() */
150 static struct list_head mtdids;
151
152 /* device/partition list, parse_cmdline() parses into here */
153 static struct list_head devices;
154
155 /* current active device and partition number */
156 struct mtd_device *current_mtd_dev = NULL;
157 u8 current_mtd_partnum = 0;
158
159 static struct part_info* mtd_part_info(struct mtd_device *dev, unsigned int part_num);
160
161 /* command line only routines */
162 static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_len);
163 static int device_del(struct mtd_device *dev);
164
165 /**
166  * Parses a string into a number.  The number stored at ptr is
167  * potentially suffixed with K (for kilobytes, or 1024 bytes),
168  * M (for megabytes, or 1048576 bytes), or G (for gigabytes, or
169  * 1073741824).  If the number is suffixed with K, M, or G, then
170  * the return value is the number multiplied by one kilobyte, one
171  * megabyte, or one gigabyte, respectively.
172  *
173  * @param ptr where parse begins
174  * @param retptr output pointer to next char after parse completes (output)
175  * @return resulting unsigned int
176  */
177 static unsigned long memsize_parse (const char *const ptr, const char **retptr)
178 {
179         unsigned long ret = simple_strtoul(ptr, (char **)retptr, 0);
180
181         switch (**retptr) {
182                 case 'G':
183                 case 'g':
184                         ret <<= 10;
185                 case 'M':
186                 case 'm':
187                         ret <<= 10;
188                 case 'K':
189                 case 'k':
190                         ret <<= 10;
191                         (*retptr)++;
192                 default:
193                         break;
194         }
195
196         return ret;
197 }
198
199 /**
200  * Format string describing supplied size. This routine does the opposite job
201  * to memsize_parse(). Size in bytes is converted to string and if possible
202  * shortened by using k (kilobytes), m (megabytes) or g (gigabytes) suffix.
203  *
204  * Note, that this routine does not check for buffer overflow, it's the caller
205  * who must assure enough space.
206  *
207  * @param buf output buffer
208  * @param size size to be converted to string
209  */
210 static void memsize_format(char *buf, u32 size)
211 {
212 #define SIZE_GB ((u32)1024*1024*1024)
213 #define SIZE_MB ((u32)1024*1024)
214 #define SIZE_KB ((u32)1024)
215
216         if ((size % SIZE_GB) == 0)
217                 sprintf(buf, "%ug", size/SIZE_GB);
218         else if ((size % SIZE_MB) == 0)
219                 sprintf(buf, "%um", size/SIZE_MB);
220         else if (size % SIZE_KB == 0)
221                 sprintf(buf, "%uk", size/SIZE_KB);
222         else
223                 sprintf(buf, "%u", size);
224 }
225
226 /**
227  * This routine does global indexing of all partitions. Resulting index for
228  * current partition is saved in 'mtddevnum'. Current partition name in
229  * 'mtddevname'.
230  */
231 static void index_partitions(void)
232 {
233         char buf[16];
234         u16 mtddevnum;
235         struct part_info *part;
236         struct list_head *dentry;
237         struct mtd_device *dev;
238
239         debug("--- index partitions ---\n");
240
241         if (current_mtd_dev) {
242                 mtddevnum = 0;
243                 list_for_each(dentry, &devices) {
244                         dev = list_entry(dentry, struct mtd_device, link);
245                         if (dev == current_mtd_dev) {
246                                 mtddevnum += current_mtd_partnum;
247                                 sprintf(buf, "%d", mtddevnum);
248                                 setenv("mtddevnum", buf);
249                                 break;
250                         }
251                         mtddevnum += dev->num_parts;
252                 }
253
254                 part = mtd_part_info(current_mtd_dev, current_mtd_partnum);
255                 setenv("mtddevname", part->name);
256
257                 debug("=> mtddevnum %d,\n=> mtddevname %s\n", mtddevnum, part->name);
258         } else {
259                 setenv("mtddevnum", NULL);
260                 setenv("mtddevname", NULL);
261
262                 debug("=> mtddevnum NULL\n=> mtddevname NULL\n");
263         }
264 }
265
266 /**
267  * Save current device and partition in environment variable 'partition'.
268  */
269 static void current_save(void)
270 {
271         char buf[16];
272
273         debug("--- current_save ---\n");
274
275         if (current_mtd_dev) {
276                 sprintf(buf, "%s%d,%d", MTD_DEV_TYPE(current_mtd_dev->id->type),
277                                         current_mtd_dev->id->num, current_mtd_partnum);
278
279                 setenv("partition", buf);
280                 strncpy(last_partition, buf, 16);
281
282                 debug("=> partition %s\n", buf);
283         } else {
284                 setenv("partition", NULL);
285                 last_partition[0] = '\0';
286
287                 debug("=> partition NULL\n");
288         }
289         index_partitions();
290 }
291
292
293 /**
294  * Produce a mtd_info given a type and num.
295  *
296  * @param type mtd type
297  * @param num mtd number
298  * @param mtd a pointer to an mtd_info instance (output)
299  * @return 0 if device is valid, 1 otherwise
300  */
301 static int get_mtd_info(u8 type, u8 num, struct mtd_info **mtd)
302 {
303         char mtd_dev[16];
304
305         sprintf(mtd_dev, "%s%d", MTD_DEV_TYPE(type), num);
306         *mtd = get_mtd_device_nm(mtd_dev);
307         if (IS_ERR(*mtd)) {
308                 printf("Device %s not found!\n", mtd_dev);
309                 return 1;
310         }
311
312         return 0;
313 }
314
315 /**
316  * Performs sanity check for supplied flash partition.
317  * Table of existing MTD flash devices is searched and partition device
318  * is located. Alignment with the granularity of nand erasesize is verified.
319  *
320  * @param id of the parent device
321  * @param part partition to validate
322  * @return 0 if partition is valid, 1 otherwise
323  */
324 static int part_validate_eraseblock(struct mtdids *id, struct part_info *part)
325 {
326         struct mtd_info *mtd = NULL;
327         int i, j;
328         ulong start;
329
330         if (get_mtd_info(id->type, id->num, &mtd))
331                 return 1;
332
333         part->sector_size = mtd->erasesize;
334
335         if (!mtd->numeraseregions) {
336                 /*
337                  * Only one eraseregion (NAND, OneNAND or uniform NOR),
338                  * checking for alignment is easy here
339                  */
340                 if ((unsigned long)part->offset % mtd->erasesize) {
341                         printf("%s%d: partition (%s) start offset alignment incorrect\n",
342                                MTD_DEV_TYPE(id->type), id->num, part->name);
343                         return 1;
344                 }
345
346                 if (part->size % mtd->erasesize) {
347                         printf("%s%d: partition (%s) size alignment incorrect\n",
348                                MTD_DEV_TYPE(id->type), id->num, part->name);
349                         return 1;
350                 }
351         } else {
352                 /*
353                  * Multiple eraseregions (non-uniform NOR),
354                  * checking for alignment is more complex here
355                  */
356
357                 /* Check start alignment */
358                 for (i = 0; i < mtd->numeraseregions; i++) {
359                         start = mtd->eraseregions[i].offset;
360                         for (j = 0; j < mtd->eraseregions[i].numblocks; j++) {
361                                 if (part->offset == start)
362                                         goto start_ok;
363                                 start += mtd->eraseregions[i].erasesize;
364                         }
365                 }
366
367                 printf("%s%d: partition (%s) start offset alignment incorrect\n",
368                        MTD_DEV_TYPE(id->type), id->num, part->name);
369                 return 1;
370
371         start_ok:
372
373                 /* Check end/size alignment */
374                 for (i = 0; i < mtd->numeraseregions; i++) {
375                         start = mtd->eraseregions[i].offset;
376                         for (j = 0; j < mtd->eraseregions[i].numblocks; j++) {
377                                 if ((part->offset + part->size) == start)
378                                         goto end_ok;
379                                 start += mtd->eraseregions[i].erasesize;
380                         }
381                 }
382                 /* Check last sector alignment */
383                 if ((part->offset + part->size) == start)
384                         goto end_ok;
385
386                 printf("%s%d: partition (%s) size alignment incorrect\n",
387                        MTD_DEV_TYPE(id->type), id->num, part->name);
388                 return 1;
389
390         end_ok:
391                 return 0;
392         }
393
394         return 0;
395 }
396
397
398 /**
399  * Performs sanity check for supplied partition. Offset and size are verified
400  * to be within valid range. Partition type is checked and either
401  * parts_validate_nor() or parts_validate_nand() is called with the argument
402  * of part.
403  *
404  * @param id of the parent device
405  * @param part partition to validate
406  * @return 0 if partition is valid, 1 otherwise
407  */
408 static int part_validate(struct mtdids *id, struct part_info *part)
409 {
410         if (part->size == SIZE_REMAINING)
411                 part->size = id->size - part->offset;
412
413         if (part->offset > id->size) {
414                 printf("%s: offset %08x beyond flash size %08x\n",
415                                 id->mtd_id, part->offset, id->size);
416                 return 1;
417         }
418
419         if ((part->offset + part->size) <= part->offset) {
420                 printf("%s%d: partition (%s) size too big\n",
421                                 MTD_DEV_TYPE(id->type), id->num, part->name);
422                 return 1;
423         }
424
425         if (part->offset + part->size > id->size) {
426                 printf("%s: partitioning exceeds flash size\n", id->mtd_id);
427                 return 1;
428         }
429
430         /*
431          * Now we need to check if the partition starts and ends on
432          * sector (eraseblock) regions
433          */
434         return part_validate_eraseblock(id, part);
435 }
436
437 /**
438  * Delete selected partition from the partion list of the specified device.
439  *
440  * @param dev device to delete partition from
441  * @param part partition to delete
442  * @return 0 on success, 1 otherwise
443  */
444 static int part_del(struct mtd_device *dev, struct part_info *part)
445 {
446         u8 current_save_needed = 0;
447
448         /* if there is only one partition, remove whole device */
449         if (dev->num_parts == 1)
450                 return device_del(dev);
451
452         /* otherwise just delete this partition */
453
454         if (dev == current_mtd_dev) {
455                 /* we are modyfing partitions for the current device,
456                  * update current */
457                 struct part_info *curr_pi;
458                 curr_pi = mtd_part_info(current_mtd_dev, current_mtd_partnum);
459
460                 if (curr_pi) {
461                         if (curr_pi == part) {
462                                 printf("current partition deleted, resetting current to 0\n");
463                                 current_mtd_partnum = 0;
464                         } else if (part->offset <= curr_pi->offset) {
465                                 current_mtd_partnum--;
466                         }
467                         current_save_needed = 1;
468                 }
469         }
470
471         list_del(&part->link);
472         free(part);
473         dev->num_parts--;
474
475         if (current_save_needed > 0)
476                 current_save();
477         else
478                 index_partitions();
479
480         return 0;
481 }
482
483 /**
484  * Delete all partitions from parts head list, free memory.
485  *
486  * @param head list of partitions to delete
487  */
488 static void part_delall(struct list_head *head)
489 {
490         struct list_head *entry, *n;
491         struct part_info *part_tmp;
492
493         /* clean tmp_list and free allocated memory */
494         list_for_each_safe(entry, n, head) {
495                 part_tmp = list_entry(entry, struct part_info, link);
496
497                 list_del(entry);
498                 free(part_tmp);
499         }
500 }
501
502 /**
503  * Add new partition to the supplied partition list. Make sure partitions are
504  * sorted by offset in ascending order.
505  *
506  * @param head list this partition is to be added to
507  * @param new partition to be added
508  */
509 static int part_sort_add(struct mtd_device *dev, struct part_info *part)
510 {
511         struct list_head *entry;
512         struct part_info *new_pi, *curr_pi;
513
514         /* link partition to parrent dev */
515         part->dev = dev;
516
517         if (list_empty(&dev->parts)) {
518                 debug("part_sort_add: list empty\n");
519                 list_add(&part->link, &dev->parts);
520                 dev->num_parts++;
521                 index_partitions();
522                 return 0;
523         }
524
525         new_pi = list_entry(&part->link, struct part_info, link);
526
527         /* get current partition info if we are updating current device */
528         curr_pi = NULL;
529         if (dev == current_mtd_dev)
530                 curr_pi = mtd_part_info(current_mtd_dev, current_mtd_partnum);
531
532         list_for_each(entry, &dev->parts) {
533                 struct part_info *pi;
534
535                 pi = list_entry(entry, struct part_info, link);
536
537                 /* be compliant with kernel cmdline, allow only one partition at offset zero */
538                 if ((new_pi->offset == pi->offset) && (pi->offset == 0)) {
539                         printf("cannot add second partition at offset 0\n");
540                         return 1;
541                 }
542
543                 if (new_pi->offset <= pi->offset) {
544                         list_add_tail(&part->link, entry);
545                         dev->num_parts++;
546
547                         if (curr_pi && (pi->offset <= curr_pi->offset)) {
548                                 /* we are modyfing partitions for the current
549                                  * device, update current */
550                                 current_mtd_partnum++;
551                                 current_save();
552                         } else {
553                                 index_partitions();
554                         }
555                         return 0;
556                 }
557         }
558
559         list_add_tail(&part->link, &dev->parts);
560         dev->num_parts++;
561         index_partitions();
562         return 0;
563 }
564
565 /**
566  * Add provided partition to the partition list of a given device.
567  *
568  * @param dev device to which partition is added
569  * @param part partition to be added
570  * @return 0 on success, 1 otherwise
571  */
572 static int part_add(struct mtd_device *dev, struct part_info *part)
573 {
574         /* verify alignment and size */
575         if (part_validate(dev->id, part) != 0)
576                 return 1;
577
578         /* partition is ok, add it to the list */
579         if (part_sort_add(dev, part) != 0)
580                 return 1;
581
582         return 0;
583 }
584
585 /**
586  * Parse one partition definition, allocate memory and return pointer to this
587  * location in retpart.
588  *
589  * @param partdef pointer to the partition definition string i.e. <part-def>
590  * @param ret output pointer to next char after parse completes (output)
591  * @param retpart pointer to the allocated partition (output)
592  * @return 0 on success, 1 otherwise
593  */
594 static int part_parse(const char *const partdef, const char **ret, struct part_info **retpart)
595 {
596         struct part_info *part;
597         unsigned long size;
598         unsigned long offset;
599         const char *name;
600         int name_len;
601         unsigned int mask_flags;
602         const char *p;
603
604         p = partdef;
605         *retpart = NULL;
606         *ret = NULL;
607
608         /* fetch the partition size */
609         if (*p == '-') {
610                 /* assign all remaining space to this partition */
611                 debug("'-': remaining size assigned\n");
612                 size = SIZE_REMAINING;
613                 p++;
614         } else {
615                 size = memsize_parse(p, &p);
616                 if (size < MIN_PART_SIZE) {
617                         printf("partition size too small (%lx)\n", size);
618                         return 1;
619                 }
620         }
621
622         /* check for offset */
623         offset = OFFSET_NOT_SPECIFIED;
624         if (*p == '@') {
625                 p++;
626                 offset = memsize_parse(p, &p);
627         }
628
629         /* now look for the name */
630         if (*p == '(') {
631                 name = ++p;
632                 if ((p = strchr(name, ')')) == NULL) {
633                         printf("no closing ) found in partition name\n");
634                         return 1;
635                 }
636                 name_len = p - name + 1;
637                 if ((name_len - 1) == 0) {
638                         printf("empty partition name\n");
639                         return 1;
640                 }
641                 p++;
642         } else {
643                 /* 0x00000000@0x00000000 */
644                 name_len = 22;
645                 name = NULL;
646         }
647
648         /* test for options */
649         mask_flags = 0;
650         if (strncmp(p, "ro", 2) == 0) {
651                 mask_flags |= MTD_WRITEABLE_CMD;
652                 p += 2;
653         }
654
655         /* check for next partition definition */
656         if (*p == ',') {
657                 if (size == SIZE_REMAINING) {
658                         *ret = NULL;
659                         printf("no partitions allowed after a fill-up partition\n");
660                         return 1;
661                 }
662                 *ret = ++p;
663         } else if ((*p == ';') || (*p == '\0')) {
664                 *ret = p;
665         } else {
666                 printf("unexpected character '%c' at the end of partition\n", *p);
667                 *ret = NULL;
668                 return 1;
669         }
670
671         /*  allocate memory */
672         part = (struct part_info *)malloc(sizeof(struct part_info) + name_len);
673         if (!part) {
674                 printf("out of memory\n");
675                 return 1;
676         }
677         memset(part, 0, sizeof(struct part_info) + name_len);
678         part->size = size;
679         part->offset = offset;
680         part->mask_flags = mask_flags;
681         part->name = (char *)(part + 1);
682
683         if (name) {
684                 /* copy user provided name */
685                 strncpy(part->name, name, name_len - 1);
686                 part->auto_name = 0;
687         } else {
688                 /* auto generated name in form of size@offset */
689                 sprintf(part->name, "0x%08lx@0x%08lx", size, offset);
690                 part->auto_name = 1;
691         }
692
693         part->name[name_len - 1] = '\0';
694         INIT_LIST_HEAD(&part->link);
695
696         debug("+ partition: name %-22s size 0x%08x offset 0x%08x mask flags %d\n",
697                         part->name, part->size,
698                         part->offset, part->mask_flags);
699
700         *retpart = part;
701         return 0;
702 }
703
704 /**
705  * Check device number to be within valid range for given device type.
706  *
707  * @param type mtd type
708  * @param num mtd number
709  * @param size a pointer to the size of the mtd device (output)
710  * @return 0 if device is valid, 1 otherwise
711  */
712 static int mtd_device_validate(u8 type, u8 num, u32 *size)
713 {
714         struct mtd_info *mtd = NULL;
715
716         if (get_mtd_info(type, num, &mtd))
717                 return 1;
718
719         *size = mtd->size;
720
721         return 0;
722 }
723
724 /**
725  * Delete all mtd devices from a supplied devices list, free memory allocated for
726  * each device and delete all device partitions.
727  *
728  * @return 0 on success, 1 otherwise
729  */
730 static int device_delall(struct list_head *head)
731 {
732         struct list_head *entry, *n;
733         struct mtd_device *dev_tmp;
734
735         /* clean devices list */
736         list_for_each_safe(entry, n, head) {
737                 dev_tmp = list_entry(entry, struct mtd_device, link);
738                 list_del(entry);
739                 part_delall(&dev_tmp->parts);
740                 free(dev_tmp);
741         }
742         INIT_LIST_HEAD(&devices);
743
744         return 0;
745 }
746
747 /**
748  * If provided device exists it's partitions are deleted, device is removed
749  * from device list and device memory is freed.
750  *
751  * @param dev device to be deleted
752  * @return 0 on success, 1 otherwise
753  */
754 static int device_del(struct mtd_device *dev)
755 {
756         part_delall(&dev->parts);
757         list_del(&dev->link);
758         free(dev);
759
760         if (dev == current_mtd_dev) {
761                 /* we just deleted current device */
762                 if (list_empty(&devices)) {
763                         current_mtd_dev = NULL;
764                 } else {
765                         /* reset first partition from first dev from the
766                          * devices list as current */
767                         current_mtd_dev = list_entry(devices.next, struct mtd_device, link);
768                         current_mtd_partnum = 0;
769                 }
770                 current_save();
771                 return 0;
772         }
773
774         index_partitions();
775         return 0;
776 }
777
778 /**
779  * Search global device list and return pointer to the device of type and num
780  * specified.
781  *
782  * @param type device type
783  * @param num device number
784  * @return NULL if requested device does not exist
785  */
786 struct mtd_device *device_find(u8 type, u8 num)
787 {
788         struct list_head *entry;
789         struct mtd_device *dev_tmp;
790
791         list_for_each(entry, &devices) {
792                 dev_tmp = list_entry(entry, struct mtd_device, link);
793
794                 if ((dev_tmp->id->type == type) && (dev_tmp->id->num == num))
795                         return dev_tmp;
796         }
797
798         return NULL;
799 }
800
801 /**
802  * Add specified device to the global device list.
803  *
804  * @param dev device to be added
805  */
806 static void device_add(struct mtd_device *dev)
807 {
808         u8 current_save_needed = 0;
809
810         if (list_empty(&devices)) {
811                 current_mtd_dev = dev;
812                 current_mtd_partnum = 0;
813                 current_save_needed = 1;
814         }
815
816         list_add_tail(&dev->link, &devices);
817
818         if (current_save_needed > 0)
819                 current_save();
820         else
821                 index_partitions();
822 }
823
824 /**
825  * Parse device type, name and mtd-id. If syntax is ok allocate memory and
826  * return pointer to the device structure.
827  *
828  * @param mtd_dev pointer to the device definition string i.e. <mtd-dev>
829  * @param ret output pointer to next char after parse completes (output)
830  * @param retdev pointer to the allocated device (output)
831  * @return 0 on success, 1 otherwise
832  */
833 static int device_parse(const char *const mtd_dev, const char **ret, struct mtd_device **retdev)
834 {
835         struct mtd_device *dev;
836         struct part_info *part;
837         struct mtdids *id;
838         const char *mtd_id;
839         unsigned int mtd_id_len;
840         const char *p;
841         const char *pend;
842         LIST_HEAD(tmp_list);
843         struct list_head *entry, *n;
844         u16 num_parts;
845         u32 offset;
846         int err = 1;
847
848         debug("===device_parse===\n");
849
850         assert(retdev);
851         *retdev = NULL;
852
853         if (ret)
854                 *ret = NULL;
855
856         /* fetch <mtd-id> */
857         mtd_id = p = mtd_dev;
858         if (!(p = strchr(mtd_id, ':'))) {
859                 printf("no <mtd-id> identifier\n");
860                 return 1;
861         }
862         mtd_id_len = p - mtd_id + 1;
863         p++;
864
865         /* verify if we have a valid device specified */
866         if ((id = id_find_by_mtd_id(mtd_id, mtd_id_len - 1)) == NULL) {
867                 printf("invalid mtd device '%.*s'\n", mtd_id_len - 1, mtd_id);
868                 return 1;
869         }
870
871 #ifdef DEBUG
872         pend = strchr(p, ';');
873 #endif
874         debug("dev type = %d (%s), dev num = %d, mtd-id = %s\n",
875                         id->type, MTD_DEV_TYPE(id->type),
876                         id->num, id->mtd_id);
877         debug("parsing partitions %.*s\n", (pend ? pend - p : strlen(p)), p);
878
879
880         /* parse partitions */
881         num_parts = 0;
882
883         offset = 0;
884         if ((dev = device_find(id->type, id->num)) != NULL) {
885                 /* if device already exists start at the end of the last partition */
886                 part = list_entry(dev->parts.prev, struct part_info, link);
887                 offset = part->offset + part->size;
888         }
889
890         while (p && (*p != '\0') && (*p != ';')) {
891                 err = 1;
892                 if ((part_parse(p, &p, &part) != 0) || (!part))
893                         break;
894
895                 /* calculate offset when not specified */
896                 if (part->offset == OFFSET_NOT_SPECIFIED)
897                         part->offset = offset;
898                 else
899                         offset = part->offset;
900
901                 /* verify alignment and size */
902                 if (part_validate(id, part) != 0)
903                         break;
904
905                 offset += part->size;
906
907                 /* partition is ok, add it to the list */
908                 list_add_tail(&part->link, &tmp_list);
909                 num_parts++;
910                 err = 0;
911         }
912         if (err == 1) {
913                 part_delall(&tmp_list);
914                 return 1;
915         }
916
917         if (num_parts == 0) {
918                 printf("no partitions for device %s%d (%s)\n",
919                                 MTD_DEV_TYPE(id->type), id->num, id->mtd_id);
920                 return 1;
921         }
922
923         debug("\ntotal partitions: %d\n", num_parts);
924
925         /* check for next device presence */
926         if (p) {
927                 if (*p == ';') {
928                         if (ret)
929                                 *ret = ++p;
930                 } else if (*p == '\0') {
931                         if (ret)
932                                 *ret = p;
933                 } else {
934                         printf("unexpected character '%c' at the end of device\n", *p);
935                         if (ret)
936                                 *ret = NULL;
937                         return 1;
938                 }
939         }
940
941         /* allocate memory for mtd_device structure */
942         if ((dev = (struct mtd_device *)malloc(sizeof(struct mtd_device))) == NULL) {
943                 printf("out of memory\n");
944                 return 1;
945         }
946         memset(dev, 0, sizeof(struct mtd_device));
947         dev->id = id;
948         dev->num_parts = 0; /* part_sort_add increments num_parts */
949         INIT_LIST_HEAD(&dev->parts);
950         INIT_LIST_HEAD(&dev->link);
951
952         /* move partitions from tmp_list to dev->parts */
953         list_for_each_safe(entry, n, &tmp_list) {
954                 part = list_entry(entry, struct part_info, link);
955                 list_del(entry);
956                 if (part_sort_add(dev, part) != 0) {
957                         device_del(dev);
958                         return 1;
959                 }
960         }
961
962         *retdev = dev;
963
964         debug("===\n\n");
965         return 0;
966 }
967
968 /**
969  * Initialize global device list.
970  *
971  * @return 0 on success, 1 otherwise
972  */
973 static int mtd_devices_init(void)
974 {
975         last_parts[0] = '\0';
976         current_mtd_dev = NULL;
977         current_save();
978
979         return device_delall(&devices);
980 }
981
982 /*
983  * Search global mtdids list and find id of requested type and number.
984  *
985  * @return pointer to the id if it exists, NULL otherwise
986  */
987 static struct mtdids* id_find(u8 type, u8 num)
988 {
989         struct list_head *entry;
990         struct mtdids *id;
991
992         list_for_each(entry, &mtdids) {
993                 id = list_entry(entry, struct mtdids, link);
994
995                 if ((id->type == type) && (id->num == num))
996                         return id;
997         }
998
999         return NULL;
1000 }
1001
1002 /**
1003  * Search global mtdids list and find id of a requested mtd_id.
1004  *
1005  * Note: first argument is not null terminated.
1006  *
1007  * @param mtd_id string containing requested mtd_id
1008  * @param mtd_id_len length of supplied mtd_id
1009  * @return pointer to the id if it exists, NULL otherwise
1010  */
1011 static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_len)
1012 {
1013         struct list_head *entry;
1014         struct mtdids *id;
1015
1016         debug("--- id_find_by_mtd_id: '%.*s' (len = %d)\n",
1017                         mtd_id_len, mtd_id, mtd_id_len);
1018
1019         list_for_each(entry, &mtdids) {
1020                 id = list_entry(entry, struct mtdids, link);
1021
1022                 debug("entry: '%s' (len = %d)\n",
1023                                 id->mtd_id, strlen(id->mtd_id));
1024
1025                 if (mtd_id_len != strlen(id->mtd_id))
1026                         continue;
1027                 if (strncmp(id->mtd_id, mtd_id, mtd_id_len) == 0)
1028                         return id;
1029         }
1030
1031         return NULL;
1032 }
1033
1034 /**
1035  * Parse device id string <dev-id> := 'nand'|'nor'|'onenand'<dev-num>,
1036  * return device type and number.
1037  *
1038  * @param id string describing device id
1039  * @param ret_id output pointer to next char after parse completes (output)
1040  * @param dev_type parsed device type (output)
1041  * @param dev_num parsed device number (output)
1042  * @return 0 on success, 1 otherwise
1043  */
1044 int mtd_id_parse(const char *id, const char **ret_id, u8 *dev_type,
1045                  u8 *dev_num)
1046 {
1047         const char *p = id;
1048
1049         *dev_type = 0;
1050         if (strncmp(p, "nand", 4) == 0) {
1051                 *dev_type = MTD_DEV_TYPE_NAND;
1052                 p += 4;
1053         } else if (strncmp(p, "nor", 3) == 0) {
1054                 *dev_type = MTD_DEV_TYPE_NOR;
1055                 p += 3;
1056         } else if (strncmp(p, "onenand", 7) == 0) {
1057                 *dev_type = MTD_DEV_TYPE_ONENAND;
1058                 p += 7;
1059         } else {
1060                 printf("incorrect device type in %s\n", id);
1061                 return 1;
1062         }
1063
1064         if (!isdigit(*p)) {
1065                 printf("incorrect device number in %s\n", id);
1066                 return 1;
1067         }
1068
1069         *dev_num = simple_strtoul(p, (char **)&p, 0);
1070         if (ret_id)
1071                 *ret_id = p;
1072         return 0;
1073 }
1074
1075 /**
1076  * Process all devices and generate corresponding mtdparts string describing
1077  * all partitions on all devices.
1078  *
1079  * @param buf output buffer holding generated mtdparts string (output)
1080  * @param buflen buffer size
1081  * @return 0 on success, 1 otherwise
1082  */
1083 static int generate_mtdparts(char *buf, u32 buflen)
1084 {
1085         struct list_head *pentry, *dentry;
1086         struct mtd_device *dev;
1087         struct part_info *part, *prev_part;
1088         char *p = buf;
1089         char tmpbuf[32];
1090         u32 size, offset, len, part_cnt;
1091         u32 maxlen = buflen - 1;
1092
1093         debug("--- generate_mtdparts ---\n");
1094
1095         if (list_empty(&devices)) {
1096                 buf[0] = '\0';
1097                 return 0;
1098         }
1099
1100         sprintf(p, "mtdparts=");
1101         p += 9;
1102
1103         list_for_each(dentry, &devices) {
1104                 dev = list_entry(dentry, struct mtd_device, link);
1105
1106                 /* copy mtd_id */
1107                 len = strlen(dev->id->mtd_id) + 1;
1108                 if (len > maxlen)
1109                         goto cleanup;
1110                 memcpy(p, dev->id->mtd_id, len - 1);
1111                 p += len - 1;
1112                 *(p++) = ':';
1113                 maxlen -= len;
1114
1115                 /* format partitions */
1116                 prev_part = NULL;
1117                 part_cnt = 0;
1118                 list_for_each(pentry, &dev->parts) {
1119                         part = list_entry(pentry, struct part_info, link);
1120                         size = part->size;
1121                         offset = part->offset;
1122                         part_cnt++;
1123
1124                         /* partition size */
1125                         memsize_format(tmpbuf, size);
1126                         len = strlen(tmpbuf);
1127                         if (len > maxlen)
1128                                 goto cleanup;
1129                         memcpy(p, tmpbuf, len);
1130                         p += len;
1131                         maxlen -= len;
1132
1133
1134                         /* add offset only when there is a gap between
1135                          * partitions */
1136                         if ((!prev_part && (offset != 0)) ||
1137                                         (prev_part && ((prev_part->offset + prev_part->size) != part->offset))) {
1138
1139                                 memsize_format(tmpbuf, offset);
1140                                 len = strlen(tmpbuf) + 1;
1141                                 if (len > maxlen)
1142                                         goto cleanup;
1143                                 *(p++) = '@';
1144                                 memcpy(p, tmpbuf, len - 1);
1145                                 p += len - 1;
1146                                 maxlen -= len;
1147                         }
1148
1149                         /* copy name only if user supplied */
1150                         if(!part->auto_name) {
1151                                 len = strlen(part->name) + 2;
1152                                 if (len > maxlen)
1153                                         goto cleanup;
1154
1155                                 *(p++) = '(';
1156                                 memcpy(p, part->name, len - 2);
1157                                 p += len - 2;
1158                                 *(p++) = ')';
1159                                 maxlen -= len;
1160                         }
1161
1162                         /* ro mask flag */
1163                         if (part->mask_flags && MTD_WRITEABLE_CMD) {
1164                                 len = 2;
1165                                 if (len > maxlen)
1166                                         goto cleanup;
1167                                 *(p++) = 'r';
1168                                 *(p++) = 'o';
1169                                 maxlen -= 2;
1170                         }
1171
1172                         /* print ',' separator if there are other partitions
1173                          * following */
1174                         if (dev->num_parts > part_cnt) {
1175                                 if (1 > maxlen)
1176                                         goto cleanup;
1177                                 *(p++) = ',';
1178                                 maxlen--;
1179                         }
1180                         prev_part = part;
1181                 }
1182                 /* print ';' separator if there are other devices following */
1183                 if (dentry->next != &devices) {
1184                         if (1 > maxlen)
1185                                 goto cleanup;
1186                         *(p++) = ';';
1187                         maxlen--;
1188                 }
1189         }
1190
1191         /* we still have at least one char left, as we decremented maxlen at
1192          * the begining */
1193         *p = '\0';
1194
1195         return 0;
1196
1197 cleanup:
1198         last_parts[0] = '\0';
1199         return 1;
1200 }
1201
1202 /**
1203  * Call generate_mtdparts to process all devices and generate corresponding
1204  * mtdparts string, save it in mtdparts environment variable.
1205  *
1206  * @param buf output buffer holding generated mtdparts string (output)
1207  * @param buflen buffer size
1208  * @return 0 on success, 1 otherwise
1209  */
1210 static int generate_mtdparts_save(char *buf, u32 buflen)
1211 {
1212         int ret;
1213
1214         ret = generate_mtdparts(buf, buflen);
1215
1216         if ((buf[0] != '\0') && (ret == 0))
1217                 setenv("mtdparts", buf);
1218         else
1219                 setenv("mtdparts", NULL);
1220
1221         return ret;
1222 }
1223
1224 #if defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES)
1225 /**
1226  * Get the net size (w/o bad blocks) of the given partition.
1227  *
1228  * @param mtd the mtd info
1229  * @param part the partition
1230  * @return the calculated net size of this partition
1231  */
1232 static uint64_t net_part_size(struct mtd_info *mtd, struct part_info *part)
1233 {
1234         uint64_t i, net_size = 0;
1235
1236         if (!mtd->block_isbad)
1237                 return part->size;
1238
1239         for (i = 0; i < part->size; i += mtd->erasesize) {
1240                 if (!mtd->block_isbad(mtd, part->offset + i))
1241                         net_size += mtd->erasesize;
1242         }
1243
1244         return net_size;
1245 }
1246 #endif
1247
1248 static void print_partition_table(void)
1249 {
1250         struct list_head *dentry, *pentry;
1251         struct part_info *part;
1252         struct mtd_device *dev;
1253         int part_num;
1254
1255         list_for_each(dentry, &devices) {
1256                 dev = list_entry(dentry, struct mtd_device, link);
1257                 /* list partitions for given device */
1258                 part_num = 0;
1259 #if defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES)
1260                 struct mtd_info *mtd;
1261
1262                 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
1263                         return;
1264
1265                 printf("\ndevice %s%d <%s>, # parts = %d\n",
1266                                 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1267                                 dev->id->mtd_id, dev->num_parts);
1268                 printf(" #: name\t\tsize\t\tnet size\toffset\t\tmask_flags\n");
1269
1270                 list_for_each(pentry, &dev->parts) {
1271                         u32 net_size;
1272                         char *size_note;
1273
1274                         part = list_entry(pentry, struct part_info, link);
1275                         net_size = net_part_size(mtd, part);
1276                         size_note = part->size == net_size ? " " : " (!)";
1277                         printf("%2d: %-20s0x%08x\t0x%08x%s\t0x%08x\t%d\n",
1278                                         part_num, part->name, part->size,
1279                                         net_size, size_note, part->offset,
1280                                         part->mask_flags);
1281 #else /* !defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES) */
1282                 printf("\ndevice %s%d <%s>, # parts = %d\n",
1283                                 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1284                                 dev->id->mtd_id, dev->num_parts);
1285                 printf(" #: name\t\tsize\t\toffset\t\tmask_flags\n");
1286
1287                 list_for_each(pentry, &dev->parts) {
1288                         part = list_entry(pentry, struct part_info, link);
1289                         printf("%2d: %-20s0x%08x\t0x%08x\t%d\n",
1290                                         part_num, part->name, part->size,
1291                                         part->offset, part->mask_flags);
1292 #endif /* defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES) */
1293                         part_num++;
1294                 }
1295         }
1296
1297         if (list_empty(&devices))
1298                 printf("no partitions defined\n");
1299 }
1300
1301 /**
1302  * Format and print out a partition list for each device from global device
1303  * list.
1304  */
1305 static void list_partitions(void)
1306 {
1307         struct part_info *part;
1308
1309         debug("\n---list_partitions---\n");
1310         print_partition_table();
1311
1312         /* current_mtd_dev is not NULL only when we have non empty device list */
1313         if (current_mtd_dev) {
1314                 part = mtd_part_info(current_mtd_dev, current_mtd_partnum);
1315                 if (part) {
1316                         printf("\nactive partition: %s%d,%d - (%s) 0x%08x @ 0x%08x\n",
1317                                         MTD_DEV_TYPE(current_mtd_dev->id->type),
1318                                         current_mtd_dev->id->num, current_mtd_partnum,
1319                                         part->name, part->size, part->offset);
1320                 } else {
1321                         printf("could not get current partition info\n\n");
1322                 }
1323         }
1324
1325         printf("\ndefaults:\n");
1326         printf("mtdids  : %s\n",
1327                 mtdids_default ? mtdids_default : "none");
1328         /*
1329          * Using printf() here results in printbuffer overflow
1330          * if default mtdparts string is greater than console
1331          * printbuffer. Use puts() to prevent system crashes.
1332          */
1333         puts("mtdparts: ");
1334         puts(mtdparts_default ? mtdparts_default : "none");
1335         puts("\n");
1336 }
1337
1338 /**
1339  * Given partition identifier in form of <dev_type><dev_num>,<part_num> find
1340  * corresponding device and verify partition number.
1341  *
1342  * @param id string describing device and partition or partition name
1343  * @param dev pointer to the requested device (output)
1344  * @param part_num verified partition number (output)
1345  * @param part pointer to requested partition (output)
1346  * @return 0 on success, 1 otherwise
1347  */
1348 int find_dev_and_part(const char *id, struct mtd_device **dev,
1349                 u8 *part_num, struct part_info **part)
1350 {
1351         struct list_head *dentry, *pentry;
1352         u8 type, dnum, pnum;
1353         const char *p;
1354
1355         debug("--- find_dev_and_part ---\nid = %s\n", id);
1356
1357         list_for_each(dentry, &devices) {
1358                 *part_num = 0;
1359                 *dev = list_entry(dentry, struct mtd_device, link);
1360                 list_for_each(pentry, &(*dev)->parts) {
1361                         *part = list_entry(pentry, struct part_info, link);
1362                         if (strcmp((*part)->name, id) == 0)
1363                                 return 0;
1364                         (*part_num)++;
1365                 }
1366         }
1367
1368         p = id;
1369         *dev = NULL;
1370         *part = NULL;
1371         *part_num = 0;
1372
1373         if (mtd_id_parse(p, &p, &type, &dnum) != 0)
1374                 return 1;
1375
1376         if ((*p++ != ',') || (*p == '\0')) {
1377                 printf("no partition number specified\n");
1378                 return 1;
1379         }
1380         pnum = simple_strtoul(p, (char **)&p, 0);
1381         if (*p != '\0') {
1382                 printf("unexpected trailing character '%c'\n", *p);
1383                 return 1;
1384         }
1385
1386         if ((*dev = device_find(type, dnum)) == NULL) {
1387                 printf("no such device %s%d\n", MTD_DEV_TYPE(type), dnum);
1388                 return 1;
1389         }
1390
1391         if ((*part = mtd_part_info(*dev, pnum)) == NULL) {
1392                 printf("no such partition\n");
1393                 *dev = NULL;
1394                 return 1;
1395         }
1396
1397         *part_num = pnum;
1398
1399         return 0;
1400 }
1401
1402 /**
1403  * Find and delete partition. For partition id format see find_dev_and_part().
1404  *
1405  * @param id string describing device and partition
1406  * @return 0 on success, 1 otherwise
1407  */
1408 static int delete_partition(const char *id)
1409 {
1410         u8 pnum;
1411         struct mtd_device *dev;
1412         struct part_info *part;
1413
1414         if (find_dev_and_part(id, &dev, &pnum, &part) == 0) {
1415
1416                 debug("delete_partition: device = %s%d, partition %d = (%s) 0x%08x@0x%08x\n",
1417                                 MTD_DEV_TYPE(dev->id->type), dev->id->num, pnum,
1418                                 part->name, part->size, part->offset);
1419
1420                 if (part_del(dev, part) != 0)
1421                         return 1;
1422
1423                 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
1424                         printf("generated mtdparts too long, reseting to null\n");
1425                         return 1;
1426                 }
1427                 return 0;
1428         }
1429
1430         printf("partition %s not found\n", id);
1431         return 1;
1432 }
1433
1434 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
1435 /**
1436  * Increase the size of the given partition so that it's net size is at least
1437  * as large as the size member and such that the next partition would start on a
1438  * good block if it were adjacent to this partition.
1439  *
1440  * @param mtd the mtd device
1441  * @param part the partition
1442  * @param next_offset pointer to the offset of the next partition after this
1443  *                    partition's size has been modified (output)
1444  */
1445 static void spread_partition(struct mtd_info *mtd, struct part_info *part,
1446                              uint64_t *next_offset)
1447 {
1448         uint64_t net_size, padding_size = 0;
1449         int truncated;
1450
1451         mtd_get_len_incl_bad(mtd, part->offset, part->size, &net_size,
1452                              &truncated);
1453
1454         /*
1455          * Absorb bad blocks immediately following this
1456          * partition also into the partition, such that
1457          * the next partition starts with a good block.
1458          */
1459         if (!truncated) {
1460                 mtd_get_len_incl_bad(mtd, part->offset + net_size,
1461                                      mtd->erasesize, &padding_size, &truncated);
1462                 if (truncated)
1463                         padding_size = 0;
1464                 else
1465                         padding_size -= mtd->erasesize;
1466         }
1467
1468         if (truncated) {
1469                 printf("truncated partition %s to %lld bytes\n", part->name,
1470                        (uint64_t) net_size + padding_size);
1471         }
1472
1473         part->size = net_size + padding_size;
1474         *next_offset = part->offset + part->size;
1475 }
1476
1477 /**
1478  * Adjust all of the partition sizes, such that all partitions are at least
1479  * as big as their mtdparts environment variable sizes and they each start
1480  * on a good block.
1481  *
1482  * @return 0 on success, 1 otherwise
1483  */
1484 static int spread_partitions(void)
1485 {
1486         struct list_head *dentry, *pentry;
1487         struct mtd_device *dev;
1488         struct part_info *part;
1489         struct mtd_info *mtd;
1490         int part_num;
1491         uint64_t cur_offs;
1492
1493         list_for_each(dentry, &devices) {
1494                 dev = list_entry(dentry, struct mtd_device, link);
1495
1496                 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
1497                         return 1;
1498
1499                 part_num = 0;
1500                 cur_offs = 0;
1501                 list_for_each(pentry, &dev->parts) {
1502                         part = list_entry(pentry, struct part_info, link);
1503
1504                         debug("spread_partitions: device = %s%d, partition %d ="
1505                                 " (%s) 0x%08x@0x%08x\n",
1506                                 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1507                                 part_num, part->name, part->size,
1508                                 part->offset);
1509
1510                         if (cur_offs > part->offset)
1511                                 part->offset = cur_offs;
1512
1513                         spread_partition(mtd, part, &cur_offs);
1514
1515                         part_num++;
1516                 }
1517         }
1518
1519         index_partitions();
1520
1521         if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
1522                 printf("generated mtdparts too long, reseting to null\n");
1523                 return 1;
1524         }
1525         return 0;
1526 }
1527 #endif /* CONFIG_CMD_MTDPARTS_SPREAD */
1528
1529 /**
1530  * Accept character string describing mtd partitions and call device_parse()
1531  * for each entry. Add created devices to the global devices list.
1532  *
1533  * @param mtdparts string specifing mtd partitions
1534  * @return 0 on success, 1 otherwise
1535  */
1536 static int parse_mtdparts(const char *const mtdparts)
1537 {
1538         const char *p = mtdparts;
1539         struct mtd_device *dev;
1540         int err = 1;
1541
1542         debug("\n---parse_mtdparts---\nmtdparts = %s\n\n", p);
1543
1544         /* delete all devices and partitions */
1545         if (mtd_devices_init() != 0) {
1546                 printf("could not initialise device list\n");
1547                 return err;
1548         }
1549
1550         /* re-read 'mtdparts' variable, mtd_devices_init may be updating env */
1551         p = getenv("mtdparts");
1552
1553         if (strncmp(p, "mtdparts=", 9) != 0) {
1554                 printf("mtdparts variable doesn't start with 'mtdparts='\n");
1555                 return err;
1556         }
1557         p += 9;
1558
1559         while (p && (*p != '\0')) {
1560                 err = 1;
1561                 if ((device_parse(p, &p, &dev) != 0) || (!dev))
1562                         break;
1563
1564                 debug("+ device: %s\t%d\t%s\n", MTD_DEV_TYPE(dev->id->type),
1565                                 dev->id->num, dev->id->mtd_id);
1566
1567                 /* check if parsed device is already on the list */
1568                 if (device_find(dev->id->type, dev->id->num) != NULL) {
1569                         printf("device %s%d redefined, please correct mtdparts variable\n",
1570                                         MTD_DEV_TYPE(dev->id->type), dev->id->num);
1571                         break;
1572                 }
1573
1574                 list_add_tail(&dev->link, &devices);
1575                 err = 0;
1576         }
1577         if (err == 1) {
1578                 device_delall(&devices);
1579                 return 1;
1580         }
1581
1582         return 0;
1583 }
1584
1585 /**
1586  * Parse provided string describing mtdids mapping (see file header for mtdids
1587  * variable format). Allocate memory for each entry and add all found entries
1588  * to the global mtdids list.
1589  *
1590  * @param ids mapping string
1591  * @return 0 on success, 1 otherwise
1592  */
1593 static int parse_mtdids(const char *const ids)
1594 {
1595         const char *p = ids;
1596         const char *mtd_id;
1597         int mtd_id_len;
1598         struct mtdids *id;
1599         struct list_head *entry, *n;
1600         struct mtdids *id_tmp;
1601         u8 type, num;
1602         u32 size;
1603         int ret = 1;
1604
1605         debug("\n---parse_mtdids---\nmtdids = %s\n\n", ids);
1606
1607         /* clean global mtdids list */
1608         list_for_each_safe(entry, n, &mtdids) {
1609                 id_tmp = list_entry(entry, struct mtdids, link);
1610                 debug("mtdids del: %d %d\n", id_tmp->type, id_tmp->num);
1611                 list_del(entry);
1612                 free(id_tmp);
1613         }
1614         last_ids[0] = '\0';
1615         INIT_LIST_HEAD(&mtdids);
1616
1617         while(p && (*p != '\0')) {
1618
1619                 ret = 1;
1620                 /* parse 'nor'|'nand'|'onenand'<dev-num> */
1621                 if (mtd_id_parse(p, &p, &type, &num) != 0)
1622                         break;
1623
1624                 if (*p != '=') {
1625                         printf("mtdids: incorrect <dev-num>\n");
1626                         break;
1627                 }
1628                 p++;
1629
1630                 /* check if requested device exists */
1631                 if (mtd_device_validate(type, num, &size) != 0)
1632                         return 1;
1633
1634                 /* locate <mtd-id> */
1635                 mtd_id = p;
1636                 if ((p = strchr(mtd_id, ',')) != NULL) {
1637                         mtd_id_len = p - mtd_id + 1;
1638                         p++;
1639                 } else {
1640                         mtd_id_len = strlen(mtd_id) + 1;
1641                 }
1642                 if (mtd_id_len == 0) {
1643                         printf("mtdids: no <mtd-id> identifier\n");
1644                         break;
1645                 }
1646
1647                 /* check if this id is already on the list */
1648                 int double_entry = 0;
1649                 list_for_each(entry, &mtdids) {
1650                         id_tmp = list_entry(entry, struct mtdids, link);
1651                         if ((id_tmp->type == type) && (id_tmp->num == num)) {
1652                                 double_entry = 1;
1653                                 break;
1654                         }
1655                 }
1656                 if (double_entry) {
1657                         printf("device id %s%d redefined, please correct mtdids variable\n",
1658                                         MTD_DEV_TYPE(type), num);
1659                         break;
1660                 }
1661
1662                 /* allocate mtdids structure */
1663                 if (!(id = (struct mtdids *)malloc(sizeof(struct mtdids) + mtd_id_len))) {
1664                         printf("out of memory\n");
1665                         break;
1666                 }
1667                 memset(id, 0, sizeof(struct mtdids) + mtd_id_len);
1668                 id->num = num;
1669                 id->type = type;
1670                 id->size = size;
1671                 id->mtd_id = (char *)(id + 1);
1672                 strncpy(id->mtd_id, mtd_id, mtd_id_len - 1);
1673                 id->mtd_id[mtd_id_len - 1] = '\0';
1674                 INIT_LIST_HEAD(&id->link);
1675
1676                 debug("+ id %s%d\t%16d bytes\t%s\n",
1677                                 MTD_DEV_TYPE(id->type), id->num,
1678                                 id->size, id->mtd_id);
1679
1680                 list_add_tail(&id->link, &mtdids);
1681                 ret = 0;
1682         }
1683         if (ret == 1) {
1684                 /* clean mtdids list and free allocated memory */
1685                 list_for_each_safe(entry, n, &mtdids) {
1686                         id_tmp = list_entry(entry, struct mtdids, link);
1687                         list_del(entry);
1688                         free(id_tmp);
1689                 }
1690                 return 1;
1691         }
1692
1693         return 0;
1694 }
1695
1696 /**
1697  * Parse and initialize global mtdids mapping and create global
1698  * device/partition list.
1699  *
1700  * @return 0 on success, 1 otherwise
1701  */
1702 int mtdparts_init(void)
1703 {
1704         static int initialized = 0;
1705         const char *ids, *parts;
1706         const char *current_partition;
1707         int ids_changed;
1708         char tmp_ep[PARTITION_MAXLEN];
1709
1710         debug("\n---mtdparts_init---\n");
1711         if (!initialized) {
1712                 INIT_LIST_HEAD(&mtdids);
1713                 INIT_LIST_HEAD(&devices);
1714                 memset(last_ids, 0, MTDIDS_MAXLEN);
1715                 memset(last_parts, 0, MTDPARTS_MAXLEN);
1716                 memset(last_partition, 0, PARTITION_MAXLEN);
1717                 initialized = 1;
1718         }
1719
1720         /* get variables */
1721         ids = getenv("mtdids");
1722         parts = getenv("mtdparts");
1723         current_partition = getenv("partition");
1724
1725         /* save it for later parsing, cannot rely on current partition pointer
1726          * as 'partition' variable may be updated during init */
1727         tmp_ep[0] = '\0';
1728         if (current_partition)
1729                 strncpy(tmp_ep, current_partition, PARTITION_MAXLEN);
1730
1731         debug("last_ids  : %s\n", last_ids);
1732         debug("env_ids   : %s\n", ids);
1733         debug("last_parts: %s\n", last_parts);
1734         debug("env_parts : %s\n\n", parts);
1735
1736         debug("last_partition : %s\n", last_partition);
1737         debug("env_partition  : %s\n", current_partition);
1738
1739         /* if mtdids varible is empty try to use defaults */
1740         if (!ids) {
1741                 if (mtdids_default) {
1742                         debug("mtdids variable not defined, using default\n");
1743                         ids = mtdids_default;
1744                         setenv("mtdids", (char *)ids);
1745                 } else {
1746                         printf("mtdids not defined, no default present\n");
1747                         return 1;
1748                 }
1749         }
1750         if (strlen(ids) > MTDIDS_MAXLEN - 1) {
1751                 printf("mtdids too long (> %d)\n", MTDIDS_MAXLEN);
1752                 return 1;
1753         }
1754
1755         /* do no try to use defaults when mtdparts variable is not defined,
1756          * just check the length */
1757         if (!parts)
1758                 printf("mtdparts variable not set, see 'help mtdparts'\n");
1759
1760         if (parts && (strlen(parts) > MTDPARTS_MAXLEN - 1)) {
1761                 printf("mtdparts too long (> %d)\n", MTDPARTS_MAXLEN);
1762                 return 1;
1763         }
1764
1765         /* check if we have already parsed those mtdids */
1766         if ((last_ids[0] != '\0') && (strcmp(last_ids, ids) == 0)) {
1767                 ids_changed = 0;
1768         } else {
1769                 ids_changed = 1;
1770
1771                 if (parse_mtdids(ids) != 0) {
1772                         mtd_devices_init();
1773                         return 1;
1774                 }
1775
1776                 /* ok it's good, save new ids */
1777                 strncpy(last_ids, ids, MTDIDS_MAXLEN);
1778         }
1779
1780         /* parse partitions if either mtdparts or mtdids were updated */
1781         if (parts && ((last_parts[0] == '\0') || ((strcmp(last_parts, parts) != 0)) || ids_changed)) {
1782                 if (parse_mtdparts(parts) != 0)
1783                         return 1;
1784
1785                 if (list_empty(&devices)) {
1786                         printf("mtdparts_init: no valid partitions\n");
1787                         return 1;
1788                 }
1789
1790                 /* ok it's good, save new parts */
1791                 strncpy(last_parts, parts, MTDPARTS_MAXLEN);
1792
1793                 /* reset first partition from first dev from the list as current */
1794                 current_mtd_dev = list_entry(devices.next, struct mtd_device, link);
1795                 current_mtd_partnum = 0;
1796                 current_save();
1797
1798                 debug("mtdparts_init: current_mtd_dev  = %s%d, current_mtd_partnum = %d\n",
1799                                 MTD_DEV_TYPE(current_mtd_dev->id->type),
1800                                 current_mtd_dev->id->num, current_mtd_partnum);
1801         }
1802
1803         /* mtdparts variable was reset to NULL, delete all devices/partitions */
1804         if (!parts && (last_parts[0] != '\0'))
1805                 return mtd_devices_init();
1806
1807         /* do not process current partition if mtdparts variable is null */
1808         if (!parts)
1809                 return 0;
1810
1811         /* is current partition set in environment? if so, use it */
1812         if ((tmp_ep[0] != '\0') && (strcmp(tmp_ep, last_partition) != 0)) {
1813                 struct part_info *p;
1814                 struct mtd_device *cdev;
1815                 u8 pnum;
1816
1817                 debug("--- getting current partition: %s\n", tmp_ep);
1818
1819                 if (find_dev_and_part(tmp_ep, &cdev, &pnum, &p) == 0) {
1820                         current_mtd_dev = cdev;
1821                         current_mtd_partnum = pnum;
1822                         current_save();
1823                 }
1824         } else if (getenv("partition") == NULL) {
1825                 debug("no partition variable set, setting...\n");
1826                 current_save();
1827         }
1828
1829         return 0;
1830 }
1831
1832 /**
1833  * Return pointer to the partition of a requested number from a requested
1834  * device.
1835  *
1836  * @param dev device that is to be searched for a partition
1837  * @param part_num requested partition number
1838  * @return pointer to the part_info, NULL otherwise
1839  */
1840 static struct part_info* mtd_part_info(struct mtd_device *dev, unsigned int part_num)
1841 {
1842         struct list_head *entry;
1843         struct part_info *part;
1844         int num;
1845
1846         if (!dev)
1847                 return NULL;
1848
1849         debug("\n--- mtd_part_info: partition number %d for device %s%d (%s)\n",
1850                         part_num, MTD_DEV_TYPE(dev->id->type),
1851                         dev->id->num, dev->id->mtd_id);
1852
1853         if (part_num >= dev->num_parts) {
1854                 printf("invalid partition number %d for device %s%d (%s)\n",
1855                                 part_num, MTD_DEV_TYPE(dev->id->type),
1856                                 dev->id->num, dev->id->mtd_id);
1857                 return NULL;
1858         }
1859
1860         /* locate partition number, return it */
1861         num = 0;
1862         list_for_each(entry, &dev->parts) {
1863                 part = list_entry(entry, struct part_info, link);
1864
1865                 if (part_num == num++) {
1866                         return part;
1867                 }
1868         }
1869
1870         return NULL;
1871 }
1872
1873 /***************************************************/
1874 /* U-boot commands                                 */
1875 /***************************************************/
1876 /* command line only */
1877 /**
1878  * Routine implementing u-boot chpart command. Sets new current partition based
1879  * on the user supplied partition id. For partition id format see find_dev_and_part().
1880  *
1881  * @param cmdtp command internal data
1882  * @param flag command flag
1883  * @param argc number of arguments supplied to the command
1884  * @param argv arguments list
1885  * @return 0 on success, 1 otherwise
1886  */
1887 static int do_chpart(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1888 {
1889 /* command line only */
1890         struct mtd_device *dev;
1891         struct part_info *part;
1892         u8 pnum;
1893
1894         if (mtdparts_init() !=0)
1895                 return 1;
1896
1897         if (argc < 2) {
1898                 printf("no partition id specified\n");
1899                 return 1;
1900         }
1901
1902         if (find_dev_and_part(argv[1], &dev, &pnum, &part) != 0)
1903                 return 1;
1904
1905         current_mtd_dev = dev;
1906         current_mtd_partnum = pnum;
1907         current_save();
1908
1909         printf("partition changed to %s%d,%d\n",
1910                         MTD_DEV_TYPE(dev->id->type), dev->id->num, pnum);
1911
1912         return 0;
1913 }
1914
1915 /**
1916  * Routine implementing u-boot mtdparts command. Initialize/update default global
1917  * partition list and process user partition request (list, add, del).
1918  *
1919  * @param cmdtp command internal data
1920  * @param flag command flag
1921  * @param argc number of arguments supplied to the command
1922  * @param argv arguments list
1923  * @return 0 on success, 1 otherwise
1924  */
1925 static int do_mtdparts(cmd_tbl_t *cmdtp, int flag, int argc,
1926                        char * const argv[])
1927 {
1928         if (argc == 2) {
1929                 if (strcmp(argv[1], "default") == 0) {
1930                         setenv("mtdids", (char *)mtdids_default);
1931                         setenv("mtdparts", (char *)mtdparts_default);
1932                         setenv("partition", NULL);
1933
1934                         mtdparts_init();
1935                         return 0;
1936                 } else if (strcmp(argv[1], "delall") == 0) {
1937                         /* this may be the first run, initialize lists if needed */
1938                         mtdparts_init();
1939
1940                         setenv("mtdparts", NULL);
1941
1942                         /* mtd_devices_init() calls current_save() */
1943                         return mtd_devices_init();
1944                 }
1945         }
1946
1947         /* make sure we are in sync with env variables */
1948         if (mtdparts_init() != 0)
1949                 return 1;
1950
1951         if (argc == 1) {
1952                 list_partitions();
1953                 return 0;
1954         }
1955
1956         /* mtdparts add <mtd-dev> <size>[@<offset>] <name> [ro] */
1957         if (((argc == 5) || (argc == 6)) && (strncmp(argv[1], "add", 3) == 0)) {
1958 #define PART_ADD_DESC_MAXLEN 64
1959                 char tmpbuf[PART_ADD_DESC_MAXLEN];
1960 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
1961                 struct mtd_info *mtd;
1962                 uint64_t next_offset;
1963 #endif
1964                 u8 type, num, len;
1965                 struct mtd_device *dev;
1966                 struct mtd_device *dev_tmp;
1967                 struct mtdids *id;
1968                 struct part_info *p;
1969
1970                 if (mtd_id_parse(argv[2], NULL, &type, &num) != 0)
1971                         return 1;
1972
1973                 if ((id = id_find(type, num)) == NULL) {
1974                         printf("no such device %s defined in mtdids variable\n", argv[2]);
1975                         return 1;
1976                 }
1977
1978                 len = strlen(id->mtd_id) + 1;   /* 'mtd_id:' */
1979                 len += strlen(argv[3]);         /* size@offset */
1980                 len += strlen(argv[4]) + 2;     /* '(' name ')' */
1981                 if (argv[5] && (strlen(argv[5]) == 2))
1982                         len += 2;               /* 'ro' */
1983
1984                 if (len >= PART_ADD_DESC_MAXLEN) {
1985                         printf("too long partition description\n");
1986                         return 1;
1987                 }
1988                 sprintf(tmpbuf, "%s:%s(%s)%s",
1989                                 id->mtd_id, argv[3], argv[4], argv[5] ? argv[5] : "");
1990                 debug("add tmpbuf: %s\n", tmpbuf);
1991
1992                 if ((device_parse(tmpbuf, NULL, &dev) != 0) || (!dev))
1993                         return 1;
1994
1995                 debug("+ %s\t%d\t%s\n", MTD_DEV_TYPE(dev->id->type),
1996                                 dev->id->num, dev->id->mtd_id);
1997
1998                 p = list_entry(dev->parts.next, struct part_info, link);
1999
2000 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2001                 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
2002                         return 1;
2003
2004                 if (!strcmp(&argv[1][3], ".spread")) {
2005                         spread_partition(mtd, p, &next_offset);
2006                         debug("increased %s to %d bytes\n", p->name, p->size);
2007                 }
2008 #endif
2009
2010                 dev_tmp = device_find(dev->id->type, dev->id->num);
2011                 if (dev_tmp == NULL) {
2012                         device_add(dev);
2013                 } else if (part_add(dev_tmp, p) != 0) {
2014                         /* merge new partition with existing ones*/
2015                         device_del(dev);
2016                         return 1;
2017                 }
2018
2019                 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
2020                         printf("generated mtdparts too long, reseting to null\n");
2021                         return 1;
2022                 }
2023
2024                 return 0;
2025         }
2026
2027         /* mtdparts del part-id */
2028         if ((argc == 3) && (strcmp(argv[1], "del") == 0)) {
2029                 debug("del: part-id = %s\n", argv[2]);
2030
2031                 return delete_partition(argv[2]);
2032         }
2033
2034 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2035         if ((argc == 2) && (strcmp(argv[1], "spread") == 0))
2036                 return spread_partitions();
2037 #endif /* CONFIG_CMD_MTDPARTS_SPREAD */
2038
2039         return CMD_RET_USAGE;
2040 }
2041
2042 /***************************************************/
2043 U_BOOT_CMD(
2044         chpart, 2,      0,      do_chpart,
2045         "change active partition",
2046         "part-id\n"
2047         "    - change active partition (e.g. part-id = nand0,1)"
2048 );
2049
2050 #ifdef CONFIG_SYS_LONGHELP
2051 static char mtdparts_help_text[] =
2052         "\n"
2053         "    - list partition table\n"
2054         "mtdparts delall\n"
2055         "    - delete all partitions\n"
2056         "mtdparts del part-id\n"
2057         "    - delete partition (e.g. part-id = nand0,1)\n"
2058         "mtdparts add <mtd-dev> <size>[@<offset>] [<name>] [ro]\n"
2059         "    - add partition\n"
2060 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2061         "mtdparts add.spread <mtd-dev> <size>[@<offset>] [<name>] [ro]\n"
2062         "    - add partition, padding size by skipping bad blocks\n"
2063 #endif
2064         "mtdparts default\n"
2065         "    - reset partition table to defaults\n"
2066 #if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2067         "mtdparts spread\n"
2068         "    - adjust the sizes of the partitions so they are\n"
2069         "      at least as big as the mtdparts variable specifies\n"
2070         "      and they each start on a good block\n\n"
2071 #else
2072         "\n"
2073 #endif /* CONFIG_CMD_MTDPARTS_SPREAD */
2074         "-----\n\n"
2075         "this command uses three environment variables:\n\n"
2076         "'partition' - keeps current partition identifier\n\n"
2077         "partition  := <part-id>\n"
2078         "<part-id>  := <dev-id>,part_num\n\n"
2079         "'mtdids' - linux kernel mtd device id <-> u-boot device id mapping\n\n"
2080         "mtdids=<idmap>[,<idmap>,...]\n\n"
2081         "<idmap>    := <dev-id>=<mtd-id>\n"
2082         "<dev-id>   := 'nand'|'nor'|'onenand'<dev-num>\n"
2083         "<dev-num>  := mtd device number, 0...\n"
2084         "<mtd-id>   := unique device tag used by linux kernel to find mtd device (mtd->name)\n\n"
2085         "'mtdparts' - partition list\n\n"
2086         "mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]\n\n"
2087         "<mtd-def>  := <mtd-id>:<part-def>[,<part-def>...]\n"
2088         "<mtd-id>   := unique device tag used by linux kernel to find mtd device (mtd->name)\n"
2089         "<part-def> := <size>[@<offset>][<name>][<ro-flag>]\n"
2090         "<size>     := standard linux memsize OR '-' to denote all remaining space\n"
2091         "<offset>   := partition start offset within the device\n"
2092         "<name>     := '(' NAME ')'\n"
2093         "<ro-flag>  := when set to 'ro' makes partition read-only (not used, passed to kernel)";
2094 #endif
2095
2096 U_BOOT_CMD(
2097         mtdparts,       6,      0,      do_mtdparts,
2098         "define flash/nand partitions", mtdparts_help_text
2099 );
2100 /***************************************************/