blob: 2e547894c608bf05530c1417bcc933fc31c10eb3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese68d7d652009-03-19 13:30:36 +01002/*
3 * (C) Copyright 2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * (C) Copyright 2002
7 * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de>
8 *
9 * (C) Copyright 2003
10 * Kai-Uwe Bloem, Auerswald GmbH & Co KG, <linux-development@auerswald.de>
11 *
12 * (C) Copyright 2005
13 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
14 *
15 * Added support for reading flash partition table from environment.
16 * Parsing routines are based on driver/mtd/cmdline.c from the linux 2.4
17 * kernel tree.
18 *
Ben Gardinerca75b202010-08-31 17:48:03 -040019 * (C) Copyright 2008
20 * Harald Welte, OpenMoko, Inc., Harald Welte <laforge@openmoko.org>
21 *
Stefan Roese68d7d652009-03-19 13:30:36 +010022 * $Id: cmdlinepart.c,v 1.17 2004/11/26 11:18:47 lavinen Exp $
23 * Copyright 2002 SYSGO Real-Time Solutions GmbH
Stefan Roese68d7d652009-03-19 13:30:36 +010024 */
25
26/*
27 * Three environment variables are used by the parsing routines:
28 *
29 * 'partition' - keeps current partition identifier
30 *
31 * partition := <part-id>
32 * <part-id> := <dev-id>,part_num
33 *
34 *
35 * 'mtdids' - linux kernel mtd device id <-> u-boot device id mapping
36 *
37 * mtdids=<idmap>[,<idmap>,...]
38 *
39 * <idmap> := <dev-id>=<mtd-id>
Miquel Raynal00ac9222018-09-06 09:08:45 +020040 * <dev-id> := 'nand'|'nor'|'onenand'|'spi-nand'<dev-num>
Stefan Roese68d7d652009-03-19 13:30:36 +010041 * <dev-num> := mtd device number, 0...
42 * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
43 *
44 *
45 * 'mtdparts' - partition list
46 *
47 * mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]
48 *
49 * <mtd-def> := <mtd-id>:<part-def>[,<part-def>...]
50 * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
51 * <part-def> := <size>[@<offset>][<name>][<ro-flag>]
52 * <size> := standard linux memsize OR '-' to denote all remaining space
53 * <offset> := partition start offset within the device
54 * <name> := '(' NAME ')'
55 * <ro-flag> := when set to 'ro' makes partition read-only (not used, passed to kernel)
56 *
57 * Notes:
58 * - each <mtd-id> used in mtdparts must albo exist in 'mtddis' mapping
59 * - if the above variables are not set defaults for a given target are used
60 *
61 * Examples:
62 *
63 * 1 NOR Flash, with 1 single writable partition:
64 * mtdids=nor0=edb7312-nor
65 * mtdparts=mtdparts=edb7312-nor:-
66 *
67 * 1 NOR Flash with 2 partitions, 1 NAND with one
68 * mtdids=nor0=edb7312-nor,nand0=edb7312-nand
69 * mtdparts=mtdparts=edb7312-nor:256k(ARMboot)ro,-(root);edb7312-nand:-(home)
70 *
71 */
72
Stefan Roese68d7d652009-03-19 13:30:36 +010073#include <common.h>
74#include <command.h>
75#include <malloc.h>
Ladislav Michlb93b24b2009-03-23 12:06:07 +010076#include <jffs2/load_kernel.h>
Stefan Roese68d7d652009-03-19 13:30:36 +010077#include <linux/list.h>
78#include <linux/ctype.h>
Stefan Roese864aa032009-05-12 14:31:56 +020079#include <linux/err.h>
80#include <linux/mtd/mtd.h>
Stefan Roese68d7d652009-03-19 13:30:36 +010081
82#if defined(CONFIG_CMD_NAND)
Masahiro Yamada6ae39002017-11-30 13:45:24 +090083#include <linux/mtd/rawnand.h>
Stefan Roese68d7d652009-03-19 13:30:36 +010084#include <nand.h>
Stefan Roese68d7d652009-03-19 13:30:36 +010085#endif
86
87#if defined(CONFIG_CMD_ONENAND)
Stefan Roese68d7d652009-03-19 13:30:36 +010088#include <linux/mtd/onenand.h>
89#include <onenand_uboot.h>
90#endif
91
Joe Hershbergera7eb1d62013-04-08 10:32:50 +000092DECLARE_GLOBAL_DATA_PTR;
93
Stefan Roese68d7d652009-03-19 13:30:36 +010094/* special size referring to all the remaining space in a partition */
Paul Burton39ac3442013-09-04 15:16:57 +010095#define SIZE_REMAINING (~0llu)
Stefan Roese68d7d652009-03-19 13:30:36 +010096
97/* special offset value, it is used when not provided by user
98 *
99 * this value is used temporarily during parsing, later such offests
100 * are recalculated */
Paul Burton39ac3442013-09-04 15:16:57 +0100101#define OFFSET_NOT_SPECIFIED (~0llu)
Stefan Roese68d7d652009-03-19 13:30:36 +0100102
103/* minimum partition size */
104#define MIN_PART_SIZE 4096
105
106/* this flag needs to be set in part_info struct mask_flags
107 * field for read-only partitions */
108#define MTD_WRITEABLE_CMD 1
109
110/* default values for mtdids and mtdparts variables */
Ladislav Michlaf324432016-07-12 20:28:26 +0200111#if !defined(MTDIDS_DEFAULT)
Maxime Ripard0269dfa2017-02-27 18:22:04 +0100112#ifdef CONFIG_MTDIDS_DEFAULT
113#define MTDIDS_DEFAULT CONFIG_MTDIDS_DEFAULT
114#else
Ladislav Michlaf324432016-07-12 20:28:26 +0200115#define MTDIDS_DEFAULT NULL
Stefan Roese68d7d652009-03-19 13:30:36 +0100116#endif
Maxime Ripard0269dfa2017-02-27 18:22:04 +0100117#endif
Ladislav Michlaf324432016-07-12 20:28:26 +0200118#if !defined(MTDPARTS_DEFAULT)
Maxime Ripard0269dfa2017-02-27 18:22:04 +0100119#ifdef CONFIG_MTDPARTS_DEFAULT
120#define MTDPARTS_DEFAULT CONFIG_MTDPARTS_DEFAULT
121#else
Ladislav Michlaf324432016-07-12 20:28:26 +0200122#define MTDPARTS_DEFAULT NULL
Stefan Roese68d7d652009-03-19 13:30:36 +0100123#endif
Maxime Ripard0269dfa2017-02-27 18:22:04 +0100124#endif
Ladislav Michlaf324432016-07-12 20:28:26 +0200125#if defined(CONFIG_SYS_MTDPARTS_RUNTIME)
126extern void board_mtdparts_default(const char **mtdids, const char **mtdparts);
127#endif
128static const char *mtdids_default = MTDIDS_DEFAULT;
129static const char *mtdparts_default = MTDPARTS_DEFAULT;
Stefan Roese68d7d652009-03-19 13:30:36 +0100130
131/* copies of last seen 'mtdids', 'mtdparts' and 'partition' env variables */
132#define MTDIDS_MAXLEN 128
133#define MTDPARTS_MAXLEN 512
134#define PARTITION_MAXLEN 16
Tom Rini54f17922017-08-14 20:42:27 -0400135static char last_ids[MTDIDS_MAXLEN + 1];
136static char last_parts[MTDPARTS_MAXLEN + 1];
137static char last_partition[PARTITION_MAXLEN + 1];
Stefan Roese68d7d652009-03-19 13:30:36 +0100138
139/* low level jffs2 cache cleaning routine */
140extern void jffs2_free_cache(struct part_info *part);
141
142/* mtdids mapping list, filled by parse_ids() */
Kim Phillips088f1b12012-10-29 13:34:31 +0000143static struct list_head mtdids;
Stefan Roese68d7d652009-03-19 13:30:36 +0100144
145/* device/partition list, parse_cmdline() parses into here */
Kim Phillips088f1b12012-10-29 13:34:31 +0000146static struct list_head devices;
Stefan Roese68d7d652009-03-19 13:30:36 +0100147
148/* current active device and partition number */
Stefan Roese76b58832009-05-16 12:04:22 +0200149struct mtd_device *current_mtd_dev = NULL;
150u8 current_mtd_partnum = 0;
Stefan Roese68d7d652009-03-19 13:30:36 +0100151
Ladislav Michlf8f744a2016-07-12 20:28:25 +0200152u8 use_defaults;
153
Stefan Roese68d7d652009-03-19 13:30:36 +0100154static struct part_info* mtd_part_info(struct mtd_device *dev, unsigned int part_num);
155
156/* command line only routines */
157static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_len);
158static int device_del(struct mtd_device *dev);
159
160/**
161 * Parses a string into a number. The number stored at ptr is
162 * potentially suffixed with K (for kilobytes, or 1024 bytes),
163 * M (for megabytes, or 1048576 bytes), or G (for gigabytes, or
164 * 1073741824). If the number is suffixed with K, M, or G, then
165 * the return value is the number multiplied by one kilobyte, one
166 * megabyte, or one gigabyte, respectively.
167 *
168 * @param ptr where parse begins
169 * @param retptr output pointer to next char after parse completes (output)
170 * @return resulting unsigned int
171 */
Paul Burton39ac3442013-09-04 15:16:57 +0100172static u64 memsize_parse (const char *const ptr, const char **retptr)
Stefan Roese68d7d652009-03-19 13:30:36 +0100173{
Paul Burton39ac3442013-09-04 15:16:57 +0100174 u64 ret = simple_strtoull(ptr, (char **)retptr, 0);
Stefan Roese68d7d652009-03-19 13:30:36 +0100175
176 switch (**retptr) {
177 case 'G':
178 case 'g':
179 ret <<= 10;
Miquel Raynal2b9ace52018-08-16 17:30:21 +0200180 /* Fallthrough */
Stefan Roese68d7d652009-03-19 13:30:36 +0100181 case 'M':
182 case 'm':
183 ret <<= 10;
Miquel Raynal2b9ace52018-08-16 17:30:21 +0200184 /* Fallthrough */
Stefan Roese68d7d652009-03-19 13:30:36 +0100185 case 'K':
186 case 'k':
187 ret <<= 10;
188 (*retptr)++;
Miquel Raynal2b9ace52018-08-16 17:30:21 +0200189 /* Fallthrough */
Stefan Roese68d7d652009-03-19 13:30:36 +0100190 default:
191 break;
192 }
193
194 return ret;
195}
196
197/**
198 * Format string describing supplied size. This routine does the opposite job
199 * to memsize_parse(). Size in bytes is converted to string and if possible
200 * shortened by using k (kilobytes), m (megabytes) or g (gigabytes) suffix.
201 *
202 * Note, that this routine does not check for buffer overflow, it's the caller
203 * who must assure enough space.
204 *
205 * @param buf output buffer
206 * @param size size to be converted to string
207 */
Paul Burton39ac3442013-09-04 15:16:57 +0100208static void memsize_format(char *buf, u64 size)
Stefan Roese68d7d652009-03-19 13:30:36 +0100209{
210#define SIZE_GB ((u32)1024*1024*1024)
211#define SIZE_MB ((u32)1024*1024)
212#define SIZE_KB ((u32)1024)
213
214 if ((size % SIZE_GB) == 0)
Paul Burton39ac3442013-09-04 15:16:57 +0100215 sprintf(buf, "%llug", size/SIZE_GB);
Stefan Roese68d7d652009-03-19 13:30:36 +0100216 else if ((size % SIZE_MB) == 0)
Paul Burton39ac3442013-09-04 15:16:57 +0100217 sprintf(buf, "%llum", size/SIZE_MB);
Stefan Roese68d7d652009-03-19 13:30:36 +0100218 else if (size % SIZE_KB == 0)
Paul Burton39ac3442013-09-04 15:16:57 +0100219 sprintf(buf, "%lluk", size/SIZE_KB);
Stefan Roese68d7d652009-03-19 13:30:36 +0100220 else
Paul Burton39ac3442013-09-04 15:16:57 +0100221 sprintf(buf, "%llu", size);
Stefan Roese68d7d652009-03-19 13:30:36 +0100222}
223
224/**
225 * This routine does global indexing of all partitions. Resulting index for
226 * current partition is saved in 'mtddevnum'. Current partition name in
227 * 'mtddevname'.
228 */
229static void index_partitions(void)
230{
Stefan Roese68d7d652009-03-19 13:30:36 +0100231 u16 mtddevnum;
232 struct part_info *part;
233 struct list_head *dentry;
234 struct mtd_device *dev;
235
Wolfgang Denke1d29502010-04-28 10:58:10 +0200236 debug("--- index partitions ---\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100237
Stefan Roese76b58832009-05-16 12:04:22 +0200238 if (current_mtd_dev) {
Stefan Roese68d7d652009-03-19 13:30:36 +0100239 mtddevnum = 0;
240 list_for_each(dentry, &devices) {
241 dev = list_entry(dentry, struct mtd_device, link);
Stefan Roese76b58832009-05-16 12:04:22 +0200242 if (dev == current_mtd_dev) {
243 mtddevnum += current_mtd_partnum;
Simon Glass018f5302017-08-03 12:22:10 -0600244 env_set_ulong("mtddevnum", mtddevnum);
Tom Rini54f17922017-08-14 20:42:27 -0400245 debug("=> mtddevnum %d,\n", mtddevnum);
Stefan Roese68d7d652009-03-19 13:30:36 +0100246 break;
247 }
248 mtddevnum += dev->num_parts;
249 }
250
Stefan Roese76b58832009-05-16 12:04:22 +0200251 part = mtd_part_info(current_mtd_dev, current_mtd_partnum);
Tom Rini54f17922017-08-14 20:42:27 -0400252 if (part) {
253 env_set("mtddevname", part->name);
Stefan Roese68d7d652009-03-19 13:30:36 +0100254
Tom Rini54f17922017-08-14 20:42:27 -0400255 debug("=> mtddevname %s\n", part->name);
256 } else {
257 env_set("mtddevname", NULL);
258
259 debug("=> mtddevname NULL\n");
260 }
Stefan Roese68d7d652009-03-19 13:30:36 +0100261 } else {
Simon Glass382bee52017-08-03 12:22:09 -0600262 env_set("mtddevnum", NULL);
263 env_set("mtddevname", NULL);
Stefan Roese68d7d652009-03-19 13:30:36 +0100264
Wolfgang Denke1d29502010-04-28 10:58:10 +0200265 debug("=> mtddevnum NULL\n=> mtddevname NULL\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100266 }
267}
268
269/**
270 * Save current device and partition in environment variable 'partition'.
271 */
272static void current_save(void)
273{
274 char buf[16];
275
Wolfgang Denke1d29502010-04-28 10:58:10 +0200276 debug("--- current_save ---\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100277
Stefan Roese76b58832009-05-16 12:04:22 +0200278 if (current_mtd_dev) {
279 sprintf(buf, "%s%d,%d", MTD_DEV_TYPE(current_mtd_dev->id->type),
280 current_mtd_dev->id->num, current_mtd_partnum);
Stefan Roese68d7d652009-03-19 13:30:36 +0100281
Simon Glass382bee52017-08-03 12:22:09 -0600282 env_set("partition", buf);
Stefan Roese68d7d652009-03-19 13:30:36 +0100283 strncpy(last_partition, buf, 16);
284
Wolfgang Denke1d29502010-04-28 10:58:10 +0200285 debug("=> partition %s\n", buf);
Stefan Roese68d7d652009-03-19 13:30:36 +0100286 } else {
Simon Glass382bee52017-08-03 12:22:09 -0600287 env_set("partition", NULL);
Stefan Roese68d7d652009-03-19 13:30:36 +0100288 last_partition[0] = '\0';
289
Wolfgang Denke1d29502010-04-28 10:58:10 +0200290 debug("=> partition NULL\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100291 }
292 index_partitions();
293}
294
Ben Gardiner0a026d32010-08-31 17:48:00 -0400295
296/**
297 * Produce a mtd_info given a type and num.
298 *
299 * @param type mtd type
300 * @param num mtd number
301 * @param mtd a pointer to an mtd_info instance (output)
302 * @return 0 if device is valid, 1 otherwise
303 */
304static int get_mtd_info(u8 type, u8 num, struct mtd_info **mtd)
305{
306 char mtd_dev[16];
307
308 sprintf(mtd_dev, "%s%d", MTD_DEV_TYPE(type), num);
309 *mtd = get_mtd_device_nm(mtd_dev);
310 if (IS_ERR(*mtd)) {
311 printf("Device %s not found!\n", mtd_dev);
312 return 1;
313 }
Heiko Schocher1668d642014-07-14 09:17:11 +0200314 put_mtd_device(*mtd);
Ben Gardiner0a026d32010-08-31 17:48:00 -0400315
316 return 0;
317}
318
Stefan Roese68d7d652009-03-19 13:30:36 +0100319/**
Stefan Roese864aa032009-05-12 14:31:56 +0200320 * Performs sanity check for supplied flash partition.
321 * Table of existing MTD flash devices is searched and partition device
Stefan Roese68d7d652009-03-19 13:30:36 +0100322 * is located. Alignment with the granularity of nand erasesize is verified.
323 *
324 * @param id of the parent device
325 * @param part partition to validate
326 * @return 0 if partition is valid, 1 otherwise
327 */
Stefan Roese864aa032009-05-12 14:31:56 +0200328static int part_validate_eraseblock(struct mtdids *id, struct part_info *part)
Stefan Roese68d7d652009-03-19 13:30:36 +0100329{
Ben Gardiner0a026d32010-08-31 17:48:00 -0400330 struct mtd_info *mtd = NULL;
Stefan Roese864aa032009-05-12 14:31:56 +0200331 int i, j;
332 ulong start;
Paul Burton39ac3442013-09-04 15:16:57 +0100333 u64 offset, size;
Stefan Roese68d7d652009-03-19 13:30:36 +0100334
Ben Gardiner0a026d32010-08-31 17:48:00 -0400335 if (get_mtd_info(id->type, id->num, &mtd))
Stefan Roese864aa032009-05-12 14:31:56 +0200336 return 1;
Stefan Roese68d7d652009-03-19 13:30:36 +0100337
338 part->sector_size = mtd->erasesize;
339
Stefan Roese864aa032009-05-12 14:31:56 +0200340 if (!mtd->numeraseregions) {
341 /*
Miquel Raynal00ac9222018-09-06 09:08:45 +0200342 * Only one eraseregion (NAND, SPI-NAND, OneNAND or uniform NOR),
Stefan Roese864aa032009-05-12 14:31:56 +0200343 * checking for alignment is easy here
344 */
Paul Burton39ac3442013-09-04 15:16:57 +0100345 offset = part->offset;
346 if (do_div(offset, mtd->erasesize)) {
Stefan Roese864aa032009-05-12 14:31:56 +0200347 printf("%s%d: partition (%s) start offset"
348 "alignment incorrect\n",
349 MTD_DEV_TYPE(id->type), id->num, part->name);
350 return 1;
351 }
Stefan Roese68d7d652009-03-19 13:30:36 +0100352
Paul Burton39ac3442013-09-04 15:16:57 +0100353 size = part->size;
354 if (do_div(size, mtd->erasesize)) {
Stefan Roese864aa032009-05-12 14:31:56 +0200355 printf("%s%d: partition (%s) size alignment incorrect\n",
356 MTD_DEV_TYPE(id->type), id->num, part->name);
357 return 1;
358 }
359 } else {
360 /*
361 * Multiple eraseregions (non-uniform NOR),
362 * checking for alignment is more complex here
363 */
364
365 /* Check start alignment */
366 for (i = 0; i < mtd->numeraseregions; i++) {
367 start = mtd->eraseregions[i].offset;
368 for (j = 0; j < mtd->eraseregions[i].numblocks; j++) {
369 if (part->offset == start)
370 goto start_ok;
371 start += mtd->eraseregions[i].erasesize;
372 }
373 }
374
375 printf("%s%d: partition (%s) start offset alignment incorrect\n",
376 MTD_DEV_TYPE(id->type), id->num, part->name);
Stefan Roese68d7d652009-03-19 13:30:36 +0100377 return 1;
Stefan Roese864aa032009-05-12 14:31:56 +0200378
379 start_ok:
380
381 /* Check end/size alignment */
382 for (i = 0; i < mtd->numeraseregions; i++) {
383 start = mtd->eraseregions[i].offset;
384 for (j = 0; j < mtd->eraseregions[i].numblocks; j++) {
385 if ((part->offset + part->size) == start)
386 goto end_ok;
387 start += mtd->eraseregions[i].erasesize;
388 }
389 }
390 /* Check last sector alignment */
391 if ((part->offset + part->size) == start)
392 goto end_ok;
393
394 printf("%s%d: partition (%s) size alignment incorrect\n",
395 MTD_DEV_TYPE(id->type), id->num, part->name);
396 return 1;
397
398 end_ok:
399 return 0;
Stefan Roese68d7d652009-03-19 13:30:36 +0100400 }
401
402 return 0;
Stefan Roese68d7d652009-03-19 13:30:36 +0100403}
404
405
406/**
Otavio Salvadorf5019912013-10-03 08:04:38 -0300407 * Performs sanity check for supplied partition. Offset and size are
408 * verified to be within valid range. Partition type is checked and
409 * part_validate_eraseblock() is called with the argument of part.
Stefan Roese68d7d652009-03-19 13:30:36 +0100410 *
411 * @param id of the parent device
412 * @param part partition to validate
413 * @return 0 if partition is valid, 1 otherwise
414 */
415static int part_validate(struct mtdids *id, struct part_info *part)
416{
417 if (part->size == SIZE_REMAINING)
418 part->size = id->size - part->offset;
419
420 if (part->offset > id->size) {
Paul Burton39ac3442013-09-04 15:16:57 +0100421 printf("%s: offset %08llx beyond flash size %08llx\n",
Stefan Roese68d7d652009-03-19 13:30:36 +0100422 id->mtd_id, part->offset, id->size);
423 return 1;
424 }
425
426 if ((part->offset + part->size) <= part->offset) {
427 printf("%s%d: partition (%s) size too big\n",
428 MTD_DEV_TYPE(id->type), id->num, part->name);
429 return 1;
430 }
431
432 if (part->offset + part->size > id->size) {
433 printf("%s: partitioning exceeds flash size\n", id->mtd_id);
434 return 1;
435 }
436
Stefan Roese864aa032009-05-12 14:31:56 +0200437 /*
438 * Now we need to check if the partition starts and ends on
439 * sector (eraseblock) regions
440 */
441 return part_validate_eraseblock(id, part);
Stefan Roese68d7d652009-03-19 13:30:36 +0100442}
443
444/**
Robert P. J. Day1f8b5462013-08-21 11:39:19 -0400445 * Delete selected partition from the partition list of the specified device.
Stefan Roese68d7d652009-03-19 13:30:36 +0100446 *
447 * @param dev device to delete partition from
448 * @param part partition to delete
449 * @return 0 on success, 1 otherwise
450 */
451static int part_del(struct mtd_device *dev, struct part_info *part)
452{
453 u8 current_save_needed = 0;
454
455 /* if there is only one partition, remove whole device */
456 if (dev->num_parts == 1)
457 return device_del(dev);
458
459 /* otherwise just delete this partition */
460
Stefan Roese76b58832009-05-16 12:04:22 +0200461 if (dev == current_mtd_dev) {
Stefan Roese68d7d652009-03-19 13:30:36 +0100462 /* we are modyfing partitions for the current device,
463 * update current */
464 struct part_info *curr_pi;
Stefan Roese76b58832009-05-16 12:04:22 +0200465 curr_pi = mtd_part_info(current_mtd_dev, current_mtd_partnum);
Stefan Roese68d7d652009-03-19 13:30:36 +0100466
467 if (curr_pi) {
468 if (curr_pi == part) {
469 printf("current partition deleted, resetting current to 0\n");
Stefan Roese76b58832009-05-16 12:04:22 +0200470 current_mtd_partnum = 0;
Stefan Roese68d7d652009-03-19 13:30:36 +0100471 } else if (part->offset <= curr_pi->offset) {
Stefan Roese76b58832009-05-16 12:04:22 +0200472 current_mtd_partnum--;
Stefan Roese68d7d652009-03-19 13:30:36 +0100473 }
474 current_save_needed = 1;
475 }
476 }
477
Stefan Roese68d7d652009-03-19 13:30:36 +0100478 list_del(&part->link);
479 free(part);
480 dev->num_parts--;
481
482 if (current_save_needed > 0)
483 current_save();
484 else
485 index_partitions();
486
487 return 0;
488}
489
490/**
491 * Delete all partitions from parts head list, free memory.
492 *
493 * @param head list of partitions to delete
494 */
495static void part_delall(struct list_head *head)
496{
497 struct list_head *entry, *n;
498 struct part_info *part_tmp;
499
500 /* clean tmp_list and free allocated memory */
501 list_for_each_safe(entry, n, head) {
502 part_tmp = list_entry(entry, struct part_info, link);
503
Stefan Roese68d7d652009-03-19 13:30:36 +0100504 list_del(entry);
505 free(part_tmp);
506 }
507}
508
509/**
510 * Add new partition to the supplied partition list. Make sure partitions are
511 * sorted by offset in ascending order.
512 *
513 * @param head list this partition is to be added to
514 * @param new partition to be added
515 */
516static int part_sort_add(struct mtd_device *dev, struct part_info *part)
517{
518 struct list_head *entry;
519 struct part_info *new_pi, *curr_pi;
520
521 /* link partition to parrent dev */
522 part->dev = dev;
523
524 if (list_empty(&dev->parts)) {
Wolfgang Denke1d29502010-04-28 10:58:10 +0200525 debug("part_sort_add: list empty\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100526 list_add(&part->link, &dev->parts);
527 dev->num_parts++;
528 index_partitions();
529 return 0;
530 }
531
532 new_pi = list_entry(&part->link, struct part_info, link);
533
534 /* get current partition info if we are updating current device */
535 curr_pi = NULL;
Stefan Roese76b58832009-05-16 12:04:22 +0200536 if (dev == current_mtd_dev)
537 curr_pi = mtd_part_info(current_mtd_dev, current_mtd_partnum);
Stefan Roese68d7d652009-03-19 13:30:36 +0100538
539 list_for_each(entry, &dev->parts) {
540 struct part_info *pi;
541
542 pi = list_entry(entry, struct part_info, link);
543
544 /* be compliant with kernel cmdline, allow only one partition at offset zero */
545 if ((new_pi->offset == pi->offset) && (pi->offset == 0)) {
546 printf("cannot add second partition at offset 0\n");
547 return 1;
548 }
549
550 if (new_pi->offset <= pi->offset) {
551 list_add_tail(&part->link, entry);
552 dev->num_parts++;
553
554 if (curr_pi && (pi->offset <= curr_pi->offset)) {
555 /* we are modyfing partitions for the current
556 * device, update current */
Stefan Roese76b58832009-05-16 12:04:22 +0200557 current_mtd_partnum++;
Stefan Roese68d7d652009-03-19 13:30:36 +0100558 current_save();
559 } else {
560 index_partitions();
561 }
562 return 0;
563 }
564 }
565
566 list_add_tail(&part->link, &dev->parts);
567 dev->num_parts++;
568 index_partitions();
569 return 0;
570}
571
572/**
573 * Add provided partition to the partition list of a given device.
574 *
575 * @param dev device to which partition is added
576 * @param part partition to be added
577 * @return 0 on success, 1 otherwise
578 */
579static int part_add(struct mtd_device *dev, struct part_info *part)
580{
581 /* verify alignment and size */
582 if (part_validate(dev->id, part) != 0)
583 return 1;
584
585 /* partition is ok, add it to the list */
586 if (part_sort_add(dev, part) != 0)
587 return 1;
588
589 return 0;
590}
591
592/**
593 * Parse one partition definition, allocate memory and return pointer to this
594 * location in retpart.
595 *
596 * @param partdef pointer to the partition definition string i.e. <part-def>
597 * @param ret output pointer to next char after parse completes (output)
598 * @param retpart pointer to the allocated partition (output)
599 * @return 0 on success, 1 otherwise
600 */
601static int part_parse(const char *const partdef, const char **ret, struct part_info **retpart)
602{
603 struct part_info *part;
Paul Burton39ac3442013-09-04 15:16:57 +0100604 u64 size;
605 u64 offset;
Stefan Roese68d7d652009-03-19 13:30:36 +0100606 const char *name;
607 int name_len;
608 unsigned int mask_flags;
609 const char *p;
610
611 p = partdef;
612 *retpart = NULL;
613 *ret = NULL;
614
615 /* fetch the partition size */
616 if (*p == '-') {
617 /* assign all remaining space to this partition */
Wolfgang Denke1d29502010-04-28 10:58:10 +0200618 debug("'-': remaining size assigned\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100619 size = SIZE_REMAINING;
620 p++;
621 } else {
622 size = memsize_parse(p, &p);
623 if (size < MIN_PART_SIZE) {
Paul Burton39ac3442013-09-04 15:16:57 +0100624 printf("partition size too small (%llx)\n", size);
Stefan Roese68d7d652009-03-19 13:30:36 +0100625 return 1;
626 }
627 }
628
629 /* check for offset */
630 offset = OFFSET_NOT_SPECIFIED;
631 if (*p == '@') {
632 p++;
633 offset = memsize_parse(p, &p);
634 }
635
636 /* now look for the name */
637 if (*p == '(') {
638 name = ++p;
639 if ((p = strchr(name, ')')) == NULL) {
640 printf("no closing ) found in partition name\n");
641 return 1;
642 }
643 name_len = p - name + 1;
644 if ((name_len - 1) == 0) {
645 printf("empty partition name\n");
646 return 1;
647 }
648 p++;
649 } else {
650 /* 0x00000000@0x00000000 */
651 name_len = 22;
652 name = NULL;
653 }
654
655 /* test for options */
656 mask_flags = 0;
657 if (strncmp(p, "ro", 2) == 0) {
658 mask_flags |= MTD_WRITEABLE_CMD;
659 p += 2;
660 }
661
662 /* check for next partition definition */
663 if (*p == ',') {
664 if (size == SIZE_REMAINING) {
665 *ret = NULL;
666 printf("no partitions allowed after a fill-up partition\n");
667 return 1;
668 }
669 *ret = ++p;
670 } else if ((*p == ';') || (*p == '\0')) {
671 *ret = p;
672 } else {
673 printf("unexpected character '%c' at the end of partition\n", *p);
674 *ret = NULL;
675 return 1;
676 }
677
678 /* allocate memory */
679 part = (struct part_info *)malloc(sizeof(struct part_info) + name_len);
680 if (!part) {
681 printf("out of memory\n");
682 return 1;
683 }
684 memset(part, 0, sizeof(struct part_info) + name_len);
685 part->size = size;
686 part->offset = offset;
687 part->mask_flags = mask_flags;
688 part->name = (char *)(part + 1);
689
690 if (name) {
691 /* copy user provided name */
692 strncpy(part->name, name, name_len - 1);
693 part->auto_name = 0;
694 } else {
695 /* auto generated name in form of size@offset */
Kay Potthoff149c21b2018-07-17 08:19:39 +0200696 snprintf(part->name, name_len, "0x%08llx@0x%08llx", size, offset);
Stefan Roese68d7d652009-03-19 13:30:36 +0100697 part->auto_name = 1;
698 }
699
700 part->name[name_len - 1] = '\0';
701 INIT_LIST_HEAD(&part->link);
702
Paul Burton39ac3442013-09-04 15:16:57 +0100703 debug("+ partition: name %-22s size 0x%08llx offset 0x%08llx mask flags %d\n",
Stefan Roese68d7d652009-03-19 13:30:36 +0100704 part->name, part->size,
705 part->offset, part->mask_flags);
706
707 *retpart = part;
708 return 0;
709}
710
711/**
712 * Check device number to be within valid range for given device type.
713 *
Ben Gardiner0a026d32010-08-31 17:48:00 -0400714 * @param type mtd type
715 * @param num mtd number
716 * @param size a pointer to the size of the mtd device (output)
Stefan Roese68d7d652009-03-19 13:30:36 +0100717 * @return 0 if device is valid, 1 otherwise
718 */
Paul Burton39ac3442013-09-04 15:16:57 +0100719static int mtd_device_validate(u8 type, u8 num, u64 *size)
Stefan Roese68d7d652009-03-19 13:30:36 +0100720{
Ben Gardiner0a026d32010-08-31 17:48:00 -0400721 struct mtd_info *mtd = NULL;
Stefan Roese68d7d652009-03-19 13:30:36 +0100722
Ben Gardiner0a026d32010-08-31 17:48:00 -0400723 if (get_mtd_info(type, num, &mtd))
Stefan Roese864aa032009-05-12 14:31:56 +0200724 return 1;
Stefan Roese68d7d652009-03-19 13:30:36 +0100725
Stefan Roese864aa032009-05-12 14:31:56 +0200726 *size = mtd->size;
Stefan Roese68d7d652009-03-19 13:30:36 +0100727
Stefan Roese864aa032009-05-12 14:31:56 +0200728 return 0;
Stefan Roese68d7d652009-03-19 13:30:36 +0100729}
730
731/**
732 * Delete all mtd devices from a supplied devices list, free memory allocated for
733 * each device and delete all device partitions.
734 *
735 * @return 0 on success, 1 otherwise
736 */
737static int device_delall(struct list_head *head)
738{
739 struct list_head *entry, *n;
740 struct mtd_device *dev_tmp;
741
742 /* clean devices list */
743 list_for_each_safe(entry, n, head) {
744 dev_tmp = list_entry(entry, struct mtd_device, link);
745 list_del(entry);
746 part_delall(&dev_tmp->parts);
747 free(dev_tmp);
748 }
749 INIT_LIST_HEAD(&devices);
750
751 return 0;
752}
753
754/**
755 * If provided device exists it's partitions are deleted, device is removed
756 * from device list and device memory is freed.
757 *
758 * @param dev device to be deleted
759 * @return 0 on success, 1 otherwise
760 */
761static int device_del(struct mtd_device *dev)
762{
763 part_delall(&dev->parts);
764 list_del(&dev->link);
765 free(dev);
766
Stefan Roese76b58832009-05-16 12:04:22 +0200767 if (dev == current_mtd_dev) {
Stefan Roese68d7d652009-03-19 13:30:36 +0100768 /* we just deleted current device */
769 if (list_empty(&devices)) {
Stefan Roese76b58832009-05-16 12:04:22 +0200770 current_mtd_dev = NULL;
Stefan Roese68d7d652009-03-19 13:30:36 +0100771 } else {
772 /* reset first partition from first dev from the
773 * devices list as current */
Stefan Roese76b58832009-05-16 12:04:22 +0200774 current_mtd_dev = list_entry(devices.next, struct mtd_device, link);
775 current_mtd_partnum = 0;
Stefan Roese68d7d652009-03-19 13:30:36 +0100776 }
777 current_save();
778 return 0;
779 }
780
781 index_partitions();
782 return 0;
783}
784
785/**
786 * Search global device list and return pointer to the device of type and num
787 * specified.
788 *
789 * @param type device type
790 * @param num device number
791 * @return NULL if requested device does not exist
792 */
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100793struct mtd_device *device_find(u8 type, u8 num)
Stefan Roese68d7d652009-03-19 13:30:36 +0100794{
795 struct list_head *entry;
796 struct mtd_device *dev_tmp;
797
798 list_for_each(entry, &devices) {
799 dev_tmp = list_entry(entry, struct mtd_device, link);
800
801 if ((dev_tmp->id->type == type) && (dev_tmp->id->num == num))
802 return dev_tmp;
803 }
804
805 return NULL;
806}
807
808/**
809 * Add specified device to the global device list.
810 *
811 * @param dev device to be added
812 */
813static void device_add(struct mtd_device *dev)
814{
815 u8 current_save_needed = 0;
816
817 if (list_empty(&devices)) {
Stefan Roese76b58832009-05-16 12:04:22 +0200818 current_mtd_dev = dev;
819 current_mtd_partnum = 0;
Stefan Roese68d7d652009-03-19 13:30:36 +0100820 current_save_needed = 1;
821 }
822
823 list_add_tail(&dev->link, &devices);
824
825 if (current_save_needed > 0)
826 current_save();
827 else
828 index_partitions();
829}
830
831/**
832 * Parse device type, name and mtd-id. If syntax is ok allocate memory and
833 * return pointer to the device structure.
834 *
835 * @param mtd_dev pointer to the device definition string i.e. <mtd-dev>
836 * @param ret output pointer to next char after parse completes (output)
837 * @param retdev pointer to the allocated device (output)
838 * @return 0 on success, 1 otherwise
839 */
840static int device_parse(const char *const mtd_dev, const char **ret, struct mtd_device **retdev)
841{
842 struct mtd_device *dev;
843 struct part_info *part;
844 struct mtdids *id;
845 const char *mtd_id;
846 unsigned int mtd_id_len;
Wolfgang Denk419a1fe2011-10-05 22:48:12 +0200847 const char *p;
Wolfgang Denk419a1fe2011-10-05 22:48:12 +0200848 const char *pend;
Stefan Roese68d7d652009-03-19 13:30:36 +0100849 LIST_HEAD(tmp_list);
850 struct list_head *entry, *n;
851 u16 num_parts;
Paul Burton39ac3442013-09-04 15:16:57 +0100852 u64 offset;
Stefan Roese68d7d652009-03-19 13:30:36 +0100853 int err = 1;
854
Wolfgang Denke1d29502010-04-28 10:58:10 +0200855 debug("===device_parse===\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100856
Wolfgang Denk2697eff2010-04-28 10:53:47 +0200857 assert(retdev);
858 *retdev = NULL;
859
860 if (ret)
861 *ret = NULL;
862
Stefan Roese68d7d652009-03-19 13:30:36 +0100863 /* fetch <mtd-id> */
Wolfgang Denk2697eff2010-04-28 10:53:47 +0200864 mtd_id = p = mtd_dev;
Stefan Roese68d7d652009-03-19 13:30:36 +0100865 if (!(p = strchr(mtd_id, ':'))) {
866 printf("no <mtd-id> identifier\n");
867 return 1;
868 }
869 mtd_id_len = p - mtd_id + 1;
870 p++;
871
872 /* verify if we have a valid device specified */
873 if ((id = id_find_by_mtd_id(mtd_id, mtd_id_len - 1)) == NULL) {
874 printf("invalid mtd device '%.*s'\n", mtd_id_len - 1, mtd_id);
875 return 1;
876 }
877
Wolfgang Denk419a1fe2011-10-05 22:48:12 +0200878 pend = strchr(p, ';');
Wolfgang Denke1d29502010-04-28 10:58:10 +0200879 debug("dev type = %d (%s), dev num = %d, mtd-id = %s\n",
Stefan Roese68d7d652009-03-19 13:30:36 +0100880 id->type, MTD_DEV_TYPE(id->type),
881 id->num, id->mtd_id);
Vasili Galka5d69a5d2014-08-26 13:45:48 +0300882 debug("parsing partitions %.*s\n", (int)(pend ? pend - p : strlen(p)), p);
Stefan Roese68d7d652009-03-19 13:30:36 +0100883
Stefan Roese68d7d652009-03-19 13:30:36 +0100884 /* parse partitions */
885 num_parts = 0;
886
887 offset = 0;
888 if ((dev = device_find(id->type, id->num)) != NULL) {
889 /* if device already exists start at the end of the last partition */
890 part = list_entry(dev->parts.prev, struct part_info, link);
891 offset = part->offset + part->size;
892 }
893
894 while (p && (*p != '\0') && (*p != ';')) {
895 err = 1;
896 if ((part_parse(p, &p, &part) != 0) || (!part))
897 break;
898
899 /* calculate offset when not specified */
900 if (part->offset == OFFSET_NOT_SPECIFIED)
901 part->offset = offset;
902 else
903 offset = part->offset;
904
905 /* verify alignment and size */
906 if (part_validate(id, part) != 0)
907 break;
908
909 offset += part->size;
910
911 /* partition is ok, add it to the list */
912 list_add_tail(&part->link, &tmp_list);
913 num_parts++;
914 err = 0;
915 }
916 if (err == 1) {
917 part_delall(&tmp_list);
918 return 1;
919 }
920
Wolfgang Denke1d29502010-04-28 10:58:10 +0200921 debug("\ntotal partitions: %d\n", num_parts);
Stefan Roese68d7d652009-03-19 13:30:36 +0100922
923 /* check for next device presence */
924 if (p) {
925 if (*p == ';') {
Wolfgang Denk2697eff2010-04-28 10:53:47 +0200926 if (ret)
927 *ret = ++p;
Stefan Roese68d7d652009-03-19 13:30:36 +0100928 } else if (*p == '\0') {
Wolfgang Denk2697eff2010-04-28 10:53:47 +0200929 if (ret)
930 *ret = p;
Stefan Roese68d7d652009-03-19 13:30:36 +0100931 } else {
932 printf("unexpected character '%c' at the end of device\n", *p);
Wolfgang Denk2697eff2010-04-28 10:53:47 +0200933 if (ret)
934 *ret = NULL;
Stefan Roese68d7d652009-03-19 13:30:36 +0100935 return 1;
936 }
937 }
938
939 /* allocate memory for mtd_device structure */
940 if ((dev = (struct mtd_device *)malloc(sizeof(struct mtd_device))) == NULL) {
941 printf("out of memory\n");
942 return 1;
943 }
944 memset(dev, 0, sizeof(struct mtd_device));
945 dev->id = id;
946 dev->num_parts = 0; /* part_sort_add increments num_parts */
947 INIT_LIST_HEAD(&dev->parts);
948 INIT_LIST_HEAD(&dev->link);
949
950 /* move partitions from tmp_list to dev->parts */
951 list_for_each_safe(entry, n, &tmp_list) {
952 part = list_entry(entry, struct part_info, link);
953 list_del(entry);
954 if (part_sort_add(dev, part) != 0) {
955 device_del(dev);
956 return 1;
957 }
958 }
959
960 *retdev = dev;
961
Wolfgang Denke1d29502010-04-28 10:58:10 +0200962 debug("===\n\n");
Stefan Roese68d7d652009-03-19 13:30:36 +0100963 return 0;
964}
965
966/**
967 * Initialize global device list.
968 *
969 * @return 0 on success, 1 otherwise
970 */
971static int mtd_devices_init(void)
972{
973 last_parts[0] = '\0';
Stefan Roese76b58832009-05-16 12:04:22 +0200974 current_mtd_dev = NULL;
Stefan Roese68d7d652009-03-19 13:30:36 +0100975 current_save();
976
977 return device_delall(&devices);
978}
979
980/*
981 * Search global mtdids list and find id of requested type and number.
982 *
983 * @return pointer to the id if it exists, NULL otherwise
984 */
985static struct mtdids* id_find(u8 type, u8 num)
986{
987 struct list_head *entry;
988 struct mtdids *id;
989
990 list_for_each(entry, &mtdids) {
991 id = list_entry(entry, struct mtdids, link);
992
993 if ((id->type == type) && (id->num == num))
994 return id;
995 }
996
997 return NULL;
998}
999
1000/**
1001 * Search global mtdids list and find id of a requested mtd_id.
1002 *
1003 * Note: first argument is not null terminated.
1004 *
1005 * @param mtd_id string containing requested mtd_id
1006 * @param mtd_id_len length of supplied mtd_id
1007 * @return pointer to the id if it exists, NULL otherwise
1008 */
1009static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_len)
1010{
1011 struct list_head *entry;
1012 struct mtdids *id;
1013
Wolfgang Denke1d29502010-04-28 10:58:10 +02001014 debug("--- id_find_by_mtd_id: '%.*s' (len = %d)\n",
Stefan Roese68d7d652009-03-19 13:30:36 +01001015 mtd_id_len, mtd_id, mtd_id_len);
1016
1017 list_for_each(entry, &mtdids) {
1018 id = list_entry(entry, struct mtdids, link);
1019
Vasili Galka5d69a5d2014-08-26 13:45:48 +03001020 debug("entry: '%s' (len = %zu)\n",
Stefan Roese68d7d652009-03-19 13:30:36 +01001021 id->mtd_id, strlen(id->mtd_id));
1022
1023 if (mtd_id_len != strlen(id->mtd_id))
1024 continue;
1025 if (strncmp(id->mtd_id, mtd_id, mtd_id_len) == 0)
1026 return id;
1027 }
1028
1029 return NULL;
1030}
1031
1032/**
Miquel Raynal00ac9222018-09-06 09:08:45 +02001033 * Parse device id string <dev-id> := 'nand'|'nor'|'onenand'|'spi-nand'<dev-num>,
Stefan Roese68d7d652009-03-19 13:30:36 +01001034 * return device type and number.
1035 *
1036 * @param id string describing device id
1037 * @param ret_id output pointer to next char after parse completes (output)
1038 * @param dev_type parsed device type (output)
1039 * @param dev_num parsed device number (output)
1040 * @return 0 on success, 1 otherwise
1041 */
Kim Phillips088f1b12012-10-29 13:34:31 +00001042int mtd_id_parse(const char *id, const char **ret_id, u8 *dev_type,
1043 u8 *dev_num)
Stefan Roese68d7d652009-03-19 13:30:36 +01001044{
1045 const char *p = id;
1046
1047 *dev_type = 0;
1048 if (strncmp(p, "nand", 4) == 0) {
1049 *dev_type = MTD_DEV_TYPE_NAND;
1050 p += 4;
1051 } else if (strncmp(p, "nor", 3) == 0) {
1052 *dev_type = MTD_DEV_TYPE_NOR;
1053 p += 3;
1054 } else if (strncmp(p, "onenand", 7) == 0) {
1055 *dev_type = MTD_DEV_TYPE_ONENAND;
1056 p += 7;
Miquel Raynal00ac9222018-09-06 09:08:45 +02001057 } else if (strncmp(p, "spi-nand", 8) == 0) {
1058 *dev_type = MTD_DEV_TYPE_SPINAND;
1059 p += 8;
Stefan Roese68d7d652009-03-19 13:30:36 +01001060 } else {
1061 printf("incorrect device type in %s\n", id);
1062 return 1;
1063 }
1064
1065 if (!isdigit(*p)) {
1066 printf("incorrect device number in %s\n", id);
1067 return 1;
1068 }
1069
1070 *dev_num = simple_strtoul(p, (char **)&p, 0);
1071 if (ret_id)
1072 *ret_id = p;
1073 return 0;
1074}
1075
1076/**
1077 * Process all devices and generate corresponding mtdparts string describing
1078 * all partitions on all devices.
1079 *
1080 * @param buf output buffer holding generated mtdparts string (output)
1081 * @param buflen buffer size
1082 * @return 0 on success, 1 otherwise
1083 */
1084static int generate_mtdparts(char *buf, u32 buflen)
1085{
1086 struct list_head *pentry, *dentry;
1087 struct mtd_device *dev;
1088 struct part_info *part, *prev_part;
1089 char *p = buf;
1090 char tmpbuf[32];
Paul Burton39ac3442013-09-04 15:16:57 +01001091 u64 size, offset;
1092 u32 len, part_cnt;
Stefan Roese68d7d652009-03-19 13:30:36 +01001093 u32 maxlen = buflen - 1;
1094
Wolfgang Denke1d29502010-04-28 10:58:10 +02001095 debug("--- generate_mtdparts ---\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01001096
1097 if (list_empty(&devices)) {
1098 buf[0] = '\0';
1099 return 0;
1100 }
1101
Ben Whitten192bc692015-12-30 13:05:58 +00001102 strcpy(p, "mtdparts=");
Stefan Roese68d7d652009-03-19 13:30:36 +01001103 p += 9;
1104
1105 list_for_each(dentry, &devices) {
1106 dev = list_entry(dentry, struct mtd_device, link);
1107
1108 /* copy mtd_id */
1109 len = strlen(dev->id->mtd_id) + 1;
1110 if (len > maxlen)
1111 goto cleanup;
1112 memcpy(p, dev->id->mtd_id, len - 1);
1113 p += len - 1;
1114 *(p++) = ':';
1115 maxlen -= len;
1116
1117 /* format partitions */
1118 prev_part = NULL;
1119 part_cnt = 0;
1120 list_for_each(pentry, &dev->parts) {
1121 part = list_entry(pentry, struct part_info, link);
1122 size = part->size;
1123 offset = part->offset;
1124 part_cnt++;
1125
1126 /* partition size */
1127 memsize_format(tmpbuf, size);
1128 len = strlen(tmpbuf);
1129 if (len > maxlen)
1130 goto cleanup;
1131 memcpy(p, tmpbuf, len);
1132 p += len;
1133 maxlen -= len;
1134
1135
1136 /* add offset only when there is a gap between
1137 * partitions */
1138 if ((!prev_part && (offset != 0)) ||
1139 (prev_part && ((prev_part->offset + prev_part->size) != part->offset))) {
1140
1141 memsize_format(tmpbuf, offset);
1142 len = strlen(tmpbuf) + 1;
1143 if (len > maxlen)
1144 goto cleanup;
1145 *(p++) = '@';
1146 memcpy(p, tmpbuf, len - 1);
1147 p += len - 1;
1148 maxlen -= len;
1149 }
1150
1151 /* copy name only if user supplied */
1152 if(!part->auto_name) {
1153 len = strlen(part->name) + 2;
1154 if (len > maxlen)
1155 goto cleanup;
1156
1157 *(p++) = '(';
1158 memcpy(p, part->name, len - 2);
1159 p += len - 2;
1160 *(p++) = ')';
1161 maxlen -= len;
1162 }
1163
1164 /* ro mask flag */
1165 if (part->mask_flags && MTD_WRITEABLE_CMD) {
1166 len = 2;
1167 if (len > maxlen)
1168 goto cleanup;
1169 *(p++) = 'r';
1170 *(p++) = 'o';
1171 maxlen -= 2;
1172 }
1173
1174 /* print ',' separator if there are other partitions
1175 * following */
1176 if (dev->num_parts > part_cnt) {
1177 if (1 > maxlen)
1178 goto cleanup;
1179 *(p++) = ',';
1180 maxlen--;
1181 }
1182 prev_part = part;
1183 }
1184 /* print ';' separator if there are other devices following */
1185 if (dentry->next != &devices) {
1186 if (1 > maxlen)
1187 goto cleanup;
1188 *(p++) = ';';
1189 maxlen--;
1190 }
1191 }
1192
1193 /* we still have at least one char left, as we decremented maxlen at
1194 * the begining */
1195 *p = '\0';
1196
1197 return 0;
1198
1199cleanup:
1200 last_parts[0] = '\0';
1201 return 1;
1202}
1203
1204/**
1205 * Call generate_mtdparts to process all devices and generate corresponding
1206 * mtdparts string, save it in mtdparts environment variable.
1207 *
1208 * @param buf output buffer holding generated mtdparts string (output)
1209 * @param buflen buffer size
1210 * @return 0 on success, 1 otherwise
1211 */
1212static int generate_mtdparts_save(char *buf, u32 buflen)
1213{
1214 int ret;
1215
1216 ret = generate_mtdparts(buf, buflen);
1217
1218 if ((buf[0] != '\0') && (ret == 0))
Simon Glass382bee52017-08-03 12:22:09 -06001219 env_set("mtdparts", buf);
Stefan Roese68d7d652009-03-19 13:30:36 +01001220 else
Simon Glass382bee52017-08-03 12:22:09 -06001221 env_set("mtdparts", NULL);
Stefan Roese68d7d652009-03-19 13:30:36 +01001222
1223 return ret;
1224}
1225
Ben Gardiner04ac3802010-08-31 17:48:02 -04001226#if defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES)
Stefan Roese68d7d652009-03-19 13:30:36 +01001227/**
Ben Gardiner04ac3802010-08-31 17:48:02 -04001228 * Get the net size (w/o bad blocks) of the given partition.
1229 *
1230 * @param mtd the mtd info
1231 * @param part the partition
1232 * @return the calculated net size of this partition
Stefan Roese68d7d652009-03-19 13:30:36 +01001233 */
Ben Gardiner04ac3802010-08-31 17:48:02 -04001234static uint64_t net_part_size(struct mtd_info *mtd, struct part_info *part)
1235{
Scott Wood36650ca2010-09-09 15:40:03 -05001236 uint64_t i, net_size = 0;
1237
Ben Gardiner04ac3802010-08-31 17:48:02 -04001238 if (!mtd->block_isbad)
1239 return part->size;
1240
Ben Gardiner04ac3802010-08-31 17:48:02 -04001241 for (i = 0; i < part->size; i += mtd->erasesize) {
1242 if (!mtd->block_isbad(mtd, part->offset + i))
1243 net_size += mtd->erasesize;
1244 }
Scott Wood36650ca2010-09-09 15:40:03 -05001245
Ben Gardiner04ac3802010-08-31 17:48:02 -04001246 return net_size;
1247}
1248#endif
1249
1250static void print_partition_table(void)
Stefan Roese68d7d652009-03-19 13:30:36 +01001251{
1252 struct list_head *dentry, *pentry;
1253 struct part_info *part;
1254 struct mtd_device *dev;
1255 int part_num;
1256
Stefan Roese68d7d652009-03-19 13:30:36 +01001257 list_for_each(dentry, &devices) {
1258 dev = list_entry(dentry, struct mtd_device, link);
Ben Gardiner04ac3802010-08-31 17:48:02 -04001259 /* list partitions for given device */
1260 part_num = 0;
1261#if defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES)
1262 struct mtd_info *mtd;
1263
1264 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
1265 return;
1266
1267 printf("\ndevice %s%d <%s>, # parts = %d\n",
1268 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1269 dev->id->mtd_id, dev->num_parts);
1270 printf(" #: name\t\tsize\t\tnet size\toffset\t\tmask_flags\n");
1271
1272 list_for_each(pentry, &dev->parts) {
1273 u32 net_size;
1274 char *size_note;
1275
1276 part = list_entry(pentry, struct part_info, link);
1277 net_size = net_part_size(mtd, part);
1278 size_note = part->size == net_size ? " " : " (!)";
1279 printf("%2d: %-20s0x%08x\t0x%08x%s\t0x%08x\t%d\n",
1280 part_num, part->name, part->size,
1281 net_size, size_note, part->offset,
1282 part->mask_flags);
1283#else /* !defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES) */
Stefan Roese68d7d652009-03-19 13:30:36 +01001284 printf("\ndevice %s%d <%s>, # parts = %d\n",
1285 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1286 dev->id->mtd_id, dev->num_parts);
David Brownell08f077d2009-04-16 19:55:48 -07001287 printf(" #: name\t\tsize\t\toffset\t\tmask_flags\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01001288
Stefan Roese68d7d652009-03-19 13:30:36 +01001289 list_for_each(pentry, &dev->parts) {
1290 part = list_entry(pentry, struct part_info, link);
Paul Burton39ac3442013-09-04 15:16:57 +01001291 printf("%2d: %-20s0x%08llx\t0x%08llx\t%d\n",
Stefan Roese68d7d652009-03-19 13:30:36 +01001292 part_num, part->name, part->size,
1293 part->offset, part->mask_flags);
Ben Gardiner04ac3802010-08-31 17:48:02 -04001294#endif /* defined(CONFIG_CMD_MTDPARTS_SHOW_NET_SIZES) */
Stefan Roese68d7d652009-03-19 13:30:36 +01001295 part_num++;
1296 }
1297 }
Ben Gardiner04ac3802010-08-31 17:48:02 -04001298
Stefan Roese68d7d652009-03-19 13:30:36 +01001299 if (list_empty(&devices))
1300 printf("no partitions defined\n");
Ben Gardiner04ac3802010-08-31 17:48:02 -04001301}
1302
1303/**
1304 * Format and print out a partition list for each device from global device
1305 * list.
1306 */
1307static void list_partitions(void)
1308{
1309 struct part_info *part;
1310
1311 debug("\n---list_partitions---\n");
1312 print_partition_table();
Stefan Roese68d7d652009-03-19 13:30:36 +01001313
Stefan Roese76b58832009-05-16 12:04:22 +02001314 /* current_mtd_dev is not NULL only when we have non empty device list */
1315 if (current_mtd_dev) {
1316 part = mtd_part_info(current_mtd_dev, current_mtd_partnum);
Stefan Roese68d7d652009-03-19 13:30:36 +01001317 if (part) {
Paul Burton39ac3442013-09-04 15:16:57 +01001318 printf("\nactive partition: %s%d,%d - (%s) 0x%08llx @ 0x%08llx\n",
Stefan Roese76b58832009-05-16 12:04:22 +02001319 MTD_DEV_TYPE(current_mtd_dev->id->type),
1320 current_mtd_dev->id->num, current_mtd_partnum,
Stefan Roese68d7d652009-03-19 13:30:36 +01001321 part->name, part->size, part->offset);
1322 } else {
1323 printf("could not get current partition info\n\n");
1324 }
1325 }
1326
1327 printf("\ndefaults:\n");
Wolfgang Denk36c91692009-05-17 16:01:54 +02001328 printf("mtdids : %s\n",
1329 mtdids_default ? mtdids_default : "none");
Anatolij Gustschina6934472010-02-24 00:29:44 +01001330 /*
1331 * Using printf() here results in printbuffer overflow
1332 * if default mtdparts string is greater than console
1333 * printbuffer. Use puts() to prevent system crashes.
1334 */
1335 puts("mtdparts: ");
1336 puts(mtdparts_default ? mtdparts_default : "none");
1337 puts("\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01001338}
1339
1340/**
1341 * Given partition identifier in form of <dev_type><dev_num>,<part_num> find
1342 * corresponding device and verify partition number.
1343 *
1344 * @param id string describing device and partition or partition name
1345 * @param dev pointer to the requested device (output)
1346 * @param part_num verified partition number (output)
1347 * @param part pointer to requested partition (output)
1348 * @return 0 on success, 1 otherwise
1349 */
1350int find_dev_and_part(const char *id, struct mtd_device **dev,
1351 u8 *part_num, struct part_info **part)
1352{
1353 struct list_head *dentry, *pentry;
1354 u8 type, dnum, pnum;
1355 const char *p;
1356
Wolfgang Denke1d29502010-04-28 10:58:10 +02001357 debug("--- find_dev_and_part ---\nid = %s\n", id);
Stefan Roese68d7d652009-03-19 13:30:36 +01001358
1359 list_for_each(dentry, &devices) {
1360 *part_num = 0;
1361 *dev = list_entry(dentry, struct mtd_device, link);
1362 list_for_each(pentry, &(*dev)->parts) {
1363 *part = list_entry(pentry, struct part_info, link);
1364 if (strcmp((*part)->name, id) == 0)
1365 return 0;
1366 (*part_num)++;
1367 }
1368 }
1369
1370 p = id;
1371 *dev = NULL;
1372 *part = NULL;
1373 *part_num = 0;
1374
1375 if (mtd_id_parse(p, &p, &type, &dnum) != 0)
1376 return 1;
1377
1378 if ((*p++ != ',') || (*p == '\0')) {
1379 printf("no partition number specified\n");
1380 return 1;
1381 }
1382 pnum = simple_strtoul(p, (char **)&p, 0);
1383 if (*p != '\0') {
1384 printf("unexpected trailing character '%c'\n", *p);
1385 return 1;
1386 }
1387
1388 if ((*dev = device_find(type, dnum)) == NULL) {
1389 printf("no such device %s%d\n", MTD_DEV_TYPE(type), dnum);
1390 return 1;
1391 }
1392
1393 if ((*part = mtd_part_info(*dev, pnum)) == NULL) {
1394 printf("no such partition\n");
1395 *dev = NULL;
1396 return 1;
1397 }
1398
1399 *part_num = pnum;
1400
1401 return 0;
1402}
1403
1404/**
1405 * Find and delete partition. For partition id format see find_dev_and_part().
1406 *
1407 * @param id string describing device and partition
1408 * @return 0 on success, 1 otherwise
1409 */
1410static int delete_partition(const char *id)
1411{
1412 u8 pnum;
1413 struct mtd_device *dev;
1414 struct part_info *part;
1415
1416 if (find_dev_and_part(id, &dev, &pnum, &part) == 0) {
1417
Paul Burton39ac3442013-09-04 15:16:57 +01001418 debug("delete_partition: device = %s%d, partition %d = (%s) 0x%08llx@0x%08llx\n",
Stefan Roese68d7d652009-03-19 13:30:36 +01001419 MTD_DEV_TYPE(dev->id->type), dev->id->num, pnum,
1420 part->name, part->size, part->offset);
1421
1422 if (part_del(dev, part) != 0)
1423 return 1;
1424
1425 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
Robert P. J. Daya22bf162013-02-04 13:51:10 +00001426 printf("generated mtdparts too long, resetting to null\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01001427 return 1;
1428 }
1429 return 0;
1430 }
1431
1432 printf("partition %s not found\n", id);
1433 return 1;
1434}
1435
Ben Gardinerca75b202010-08-31 17:48:03 -04001436#if defined(CONFIG_CMD_MTDPARTS_SPREAD)
1437/**
1438 * Increase the size of the given partition so that it's net size is at least
1439 * as large as the size member and such that the next partition would start on a
1440 * good block if it were adjacent to this partition.
1441 *
1442 * @param mtd the mtd device
1443 * @param part the partition
1444 * @param next_offset pointer to the offset of the next partition after this
1445 * partition's size has been modified (output)
1446 */
1447static void spread_partition(struct mtd_info *mtd, struct part_info *part,
1448 uint64_t *next_offset)
1449{
1450 uint64_t net_size, padding_size = 0;
1451 int truncated;
1452
1453 mtd_get_len_incl_bad(mtd, part->offset, part->size, &net_size,
1454 &truncated);
1455
1456 /*
1457 * Absorb bad blocks immediately following this
1458 * partition also into the partition, such that
1459 * the next partition starts with a good block.
1460 */
1461 if (!truncated) {
1462 mtd_get_len_incl_bad(mtd, part->offset + net_size,
1463 mtd->erasesize, &padding_size, &truncated);
1464 if (truncated)
1465 padding_size = 0;
1466 else
1467 padding_size -= mtd->erasesize;
1468 }
1469
1470 if (truncated) {
1471 printf("truncated partition %s to %lld bytes\n", part->name,
1472 (uint64_t) net_size + padding_size);
1473 }
1474
1475 part->size = net_size + padding_size;
1476 *next_offset = part->offset + part->size;
1477}
1478
1479/**
1480 * Adjust all of the partition sizes, such that all partitions are at least
1481 * as big as their mtdparts environment variable sizes and they each start
1482 * on a good block.
1483 *
1484 * @return 0 on success, 1 otherwise
1485 */
1486static int spread_partitions(void)
1487{
1488 struct list_head *dentry, *pentry;
1489 struct mtd_device *dev;
1490 struct part_info *part;
1491 struct mtd_info *mtd;
1492 int part_num;
1493 uint64_t cur_offs;
1494
1495 list_for_each(dentry, &devices) {
1496 dev = list_entry(dentry, struct mtd_device, link);
1497
1498 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
1499 return 1;
1500
1501 part_num = 0;
1502 cur_offs = 0;
1503 list_for_each(pentry, &dev->parts) {
1504 part = list_entry(pentry, struct part_info, link);
1505
1506 debug("spread_partitions: device = %s%d, partition %d ="
Steve Rae59441ac2016-06-29 13:50:59 -07001507 " (%s) 0x%08llx@0x%08llx\n",
Ben Gardinerca75b202010-08-31 17:48:03 -04001508 MTD_DEV_TYPE(dev->id->type), dev->id->num,
1509 part_num, part->name, part->size,
1510 part->offset);
1511
1512 if (cur_offs > part->offset)
1513 part->offset = cur_offs;
1514
1515 spread_partition(mtd, part, &cur_offs);
1516
1517 part_num++;
1518 }
1519 }
1520
1521 index_partitions();
1522
1523 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
Robert P. J. Daya22bf162013-02-04 13:51:10 +00001524 printf("generated mtdparts too long, resetting to null\n");
Ben Gardinerca75b202010-08-31 17:48:03 -04001525 return 1;
1526 }
1527 return 0;
1528}
1529#endif /* CONFIG_CMD_MTDPARTS_SPREAD */
1530
Stefan Roese68d7d652009-03-19 13:30:36 +01001531/**
Ladislav Michl1c2a2622016-07-12 20:28:24 +02001532 * The mtdparts variable tends to be long. If we need to access it
1533 * before the env is relocated, then we need to use our own stack
1534 * buffer. gd->env_buf will be too small.
1535 *
1536 * @param buf temporary buffer pointer MTDPARTS_MAXLEN long
1537 * @return mtdparts variable string, NULL if not found
1538 */
Simon Glass723806c2017-08-03 12:22:15 -06001539static const char *env_get_mtdparts(char *buf)
Ladislav Michl1c2a2622016-07-12 20:28:24 +02001540{
1541 if (gd->flags & GD_FLG_ENV_READY)
Simon Glass00caae62017-08-03 12:22:12 -06001542 return env_get("mtdparts");
1543 if (env_get_f("mtdparts", buf, MTDPARTS_MAXLEN) != -1)
Ladislav Michl1c2a2622016-07-12 20:28:24 +02001544 return buf;
1545 return NULL;
1546}
1547
1548/**
Stefan Roese68d7d652009-03-19 13:30:36 +01001549 * Accept character string describing mtd partitions and call device_parse()
1550 * for each entry. Add created devices to the global devices list.
1551 *
1552 * @param mtdparts string specifing mtd partitions
1553 * @return 0 on success, 1 otherwise
1554 */
1555static int parse_mtdparts(const char *const mtdparts)
1556{
Ladislav Michl06a040a2016-07-12 20:28:23 +02001557 const char *p;
Stefan Roese68d7d652009-03-19 13:30:36 +01001558 struct mtd_device *dev;
1559 int err = 1;
Joe Hershbergera7eb1d62013-04-08 10:32:50 +00001560 char tmp_parts[MTDPARTS_MAXLEN];
Stefan Roese68d7d652009-03-19 13:30:36 +01001561
Lothar Waßmann1aca4d52017-06-08 14:04:03 +02001562 debug("\n---parse_mtdparts---\nmtdparts = %s\n\n", mtdparts);
Stefan Roese68d7d652009-03-19 13:30:36 +01001563
1564 /* delete all devices and partitions */
1565 if (mtd_devices_init() != 0) {
1566 printf("could not initialise device list\n");
1567 return err;
1568 }
1569
1570 /* re-read 'mtdparts' variable, mtd_devices_init may be updating env */
Simon Glass723806c2017-08-03 12:22:15 -06001571 p = env_get_mtdparts(tmp_parts);
Ladislav Michl06a040a2016-07-12 20:28:23 +02001572 if (!p)
1573 p = mtdparts;
1574
Stefan Roese68d7d652009-03-19 13:30:36 +01001575 if (strncmp(p, "mtdparts=", 9) != 0) {
1576 printf("mtdparts variable doesn't start with 'mtdparts='\n");
1577 return err;
1578 }
1579 p += 9;
1580
Ladislav Michl06a040a2016-07-12 20:28:23 +02001581 while (*p != '\0') {
Stefan Roese68d7d652009-03-19 13:30:36 +01001582 err = 1;
1583 if ((device_parse(p, &p, &dev) != 0) || (!dev))
1584 break;
1585
Wolfgang Denke1d29502010-04-28 10:58:10 +02001586 debug("+ device: %s\t%d\t%s\n", MTD_DEV_TYPE(dev->id->type),
Stefan Roese68d7d652009-03-19 13:30:36 +01001587 dev->id->num, dev->id->mtd_id);
1588
1589 /* check if parsed device is already on the list */
1590 if (device_find(dev->id->type, dev->id->num) != NULL) {
1591 printf("device %s%d redefined, please correct mtdparts variable\n",
1592 MTD_DEV_TYPE(dev->id->type), dev->id->num);
1593 break;
1594 }
1595
1596 list_add_tail(&dev->link, &devices);
1597 err = 0;
1598 }
Tom Rini54f17922017-08-14 20:42:27 -04001599 if (err == 1) {
1600 free(dev);
Stefan Roese68d7d652009-03-19 13:30:36 +01001601 device_delall(&devices);
Tom Rini54f17922017-08-14 20:42:27 -04001602 }
Stefan Roese68d7d652009-03-19 13:30:36 +01001603
Ladislav Michl06a040a2016-07-12 20:28:23 +02001604 return err;
Stefan Roese68d7d652009-03-19 13:30:36 +01001605}
1606
1607/**
1608 * Parse provided string describing mtdids mapping (see file header for mtdids
1609 * variable format). Allocate memory for each entry and add all found entries
1610 * to the global mtdids list.
1611 *
1612 * @param ids mapping string
1613 * @return 0 on success, 1 otherwise
1614 */
1615static int parse_mtdids(const char *const ids)
1616{
1617 const char *p = ids;
1618 const char *mtd_id;
1619 int mtd_id_len;
1620 struct mtdids *id;
1621 struct list_head *entry, *n;
1622 struct mtdids *id_tmp;
1623 u8 type, num;
Paul Burton39ac3442013-09-04 15:16:57 +01001624 u64 size;
Stefan Roese68d7d652009-03-19 13:30:36 +01001625 int ret = 1;
1626
Wolfgang Denke1d29502010-04-28 10:58:10 +02001627 debug("\n---parse_mtdids---\nmtdids = %s\n\n", ids);
Stefan Roese68d7d652009-03-19 13:30:36 +01001628
1629 /* clean global mtdids list */
1630 list_for_each_safe(entry, n, &mtdids) {
1631 id_tmp = list_entry(entry, struct mtdids, link);
Wolfgang Denke1d29502010-04-28 10:58:10 +02001632 debug("mtdids del: %d %d\n", id_tmp->type, id_tmp->num);
Stefan Roese68d7d652009-03-19 13:30:36 +01001633 list_del(entry);
1634 free(id_tmp);
1635 }
1636 last_ids[0] = '\0';
1637 INIT_LIST_HEAD(&mtdids);
1638
1639 while(p && (*p != '\0')) {
1640
1641 ret = 1;
Miquel Raynal00ac9222018-09-06 09:08:45 +02001642 /* parse 'nor'|'nand'|'onenand'|'spi-nand'<dev-num> */
Stefan Roese68d7d652009-03-19 13:30:36 +01001643 if (mtd_id_parse(p, &p, &type, &num) != 0)
1644 break;
1645
1646 if (*p != '=') {
1647 printf("mtdids: incorrect <dev-num>\n");
1648 break;
1649 }
1650 p++;
1651
1652 /* check if requested device exists */
1653 if (mtd_device_validate(type, num, &size) != 0)
1654 return 1;
1655
1656 /* locate <mtd-id> */
1657 mtd_id = p;
1658 if ((p = strchr(mtd_id, ',')) != NULL) {
1659 mtd_id_len = p - mtd_id + 1;
1660 p++;
1661 } else {
1662 mtd_id_len = strlen(mtd_id) + 1;
1663 }
1664 if (mtd_id_len == 0) {
1665 printf("mtdids: no <mtd-id> identifier\n");
1666 break;
1667 }
1668
1669 /* check if this id is already on the list */
1670 int double_entry = 0;
1671 list_for_each(entry, &mtdids) {
1672 id_tmp = list_entry(entry, struct mtdids, link);
1673 if ((id_tmp->type == type) && (id_tmp->num == num)) {
1674 double_entry = 1;
1675 break;
1676 }
1677 }
1678 if (double_entry) {
1679 printf("device id %s%d redefined, please correct mtdids variable\n",
1680 MTD_DEV_TYPE(type), num);
1681 break;
1682 }
1683
1684 /* allocate mtdids structure */
1685 if (!(id = (struct mtdids *)malloc(sizeof(struct mtdids) + mtd_id_len))) {
1686 printf("out of memory\n");
1687 break;
1688 }
1689 memset(id, 0, sizeof(struct mtdids) + mtd_id_len);
1690 id->num = num;
1691 id->type = type;
1692 id->size = size;
1693 id->mtd_id = (char *)(id + 1);
1694 strncpy(id->mtd_id, mtd_id, mtd_id_len - 1);
1695 id->mtd_id[mtd_id_len - 1] = '\0';
1696 INIT_LIST_HEAD(&id->link);
1697
Paul Burton39ac3442013-09-04 15:16:57 +01001698 debug("+ id %s%d\t%16lld bytes\t%s\n",
Stefan Roese68d7d652009-03-19 13:30:36 +01001699 MTD_DEV_TYPE(id->type), id->num,
1700 id->size, id->mtd_id);
1701
1702 list_add_tail(&id->link, &mtdids);
1703 ret = 0;
1704 }
1705 if (ret == 1) {
1706 /* clean mtdids list and free allocated memory */
1707 list_for_each_safe(entry, n, &mtdids) {
1708 id_tmp = list_entry(entry, struct mtdids, link);
1709 list_del(entry);
1710 free(id_tmp);
1711 }
1712 return 1;
1713 }
1714
1715 return 0;
1716}
1717
Ladislav Michl1c2a2622016-07-12 20:28:24 +02001718
Stefan Roese68d7d652009-03-19 13:30:36 +01001719/**
1720 * Parse and initialize global mtdids mapping and create global
1721 * device/partition list.
1722 *
1723 * @return 0 on success, 1 otherwise
1724 */
1725int mtdparts_init(void)
1726{
1727 static int initialized = 0;
1728 const char *ids, *parts;
1729 const char *current_partition;
1730 int ids_changed;
Tom Rinibc028342017-08-20 20:05:40 -04001731 char tmp_ep[PARTITION_MAXLEN + 1];
Joe Hershbergera7eb1d62013-04-08 10:32:50 +00001732 char tmp_parts[MTDPARTS_MAXLEN];
Stefan Roese68d7d652009-03-19 13:30:36 +01001733
Wolfgang Denke1d29502010-04-28 10:58:10 +02001734 debug("\n---mtdparts_init---\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01001735 if (!initialized) {
1736 INIT_LIST_HEAD(&mtdids);
1737 INIT_LIST_HEAD(&devices);
Tom Rini54f17922017-08-14 20:42:27 -04001738 memset(last_ids, 0, sizeof(last_ids));
1739 memset(last_parts, 0, sizeof(last_parts));
1740 memset(last_partition, 0, sizeof(last_partition));
Ladislav Michlaf324432016-07-12 20:28:26 +02001741#if defined(CONFIG_SYS_MTDPARTS_RUNTIME)
1742 board_mtdparts_default(&mtdids_default, &mtdparts_default);
1743#endif
Ladislav Michlf8f744a2016-07-12 20:28:25 +02001744 use_defaults = 1;
Stefan Roese68d7d652009-03-19 13:30:36 +01001745 initialized = 1;
1746 }
1747
1748 /* get variables */
Simon Glass00caae62017-08-03 12:22:12 -06001749 ids = env_get("mtdids");
Simon Glass723806c2017-08-03 12:22:15 -06001750 parts = env_get_mtdparts(tmp_parts);
Simon Glass00caae62017-08-03 12:22:12 -06001751 current_partition = env_get("partition");
Stefan Roese68d7d652009-03-19 13:30:36 +01001752
1753 /* save it for later parsing, cannot rely on current partition pointer
1754 * as 'partition' variable may be updated during init */
Tom Rinibc028342017-08-20 20:05:40 -04001755 memset(tmp_parts, 0, sizeof(tmp_parts));
Tom Rini8b3cec72017-08-26 16:59:24 -04001756 memset(tmp_ep, 0, sizeof(tmp_ep));
Stefan Roese68d7d652009-03-19 13:30:36 +01001757 if (current_partition)
1758 strncpy(tmp_ep, current_partition, PARTITION_MAXLEN);
1759
Wolfgang Denke1d29502010-04-28 10:58:10 +02001760 debug("last_ids : %s\n", last_ids);
1761 debug("env_ids : %s\n", ids);
1762 debug("last_parts: %s\n", last_parts);
1763 debug("env_parts : %s\n\n", parts);
Stefan Roese68d7d652009-03-19 13:30:36 +01001764
Wolfgang Denke1d29502010-04-28 10:58:10 +02001765 debug("last_partition : %s\n", last_partition);
1766 debug("env_partition : %s\n", current_partition);
Stefan Roese68d7d652009-03-19 13:30:36 +01001767
Robert P. J. Day1cc0a9f2016-05-04 04:47:31 -04001768 /* if mtdids variable is empty try to use defaults */
Stefan Roese68d7d652009-03-19 13:30:36 +01001769 if (!ids) {
1770 if (mtdids_default) {
Wolfgang Denke1d29502010-04-28 10:58:10 +02001771 debug("mtdids variable not defined, using default\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01001772 ids = mtdids_default;
Simon Glass382bee52017-08-03 12:22:09 -06001773 env_set("mtdids", (char *)ids);
Stefan Roese68d7d652009-03-19 13:30:36 +01001774 } else {
1775 printf("mtdids not defined, no default present\n");
1776 return 1;
1777 }
1778 }
1779 if (strlen(ids) > MTDIDS_MAXLEN - 1) {
1780 printf("mtdids too long (> %d)\n", MTDIDS_MAXLEN);
1781 return 1;
1782 }
1783
Ladislav Michlf8f744a2016-07-12 20:28:25 +02001784 /* use defaults when mtdparts variable is not defined
1785 * once mtdparts is saved environment, drop use_defaults flag */
1786 if (!parts) {
1787 if (mtdparts_default && use_defaults) {
1788 parts = mtdparts_default;
Simon Glass382bee52017-08-03 12:22:09 -06001789 if (env_set("mtdparts", (char *)parts) == 0)
Ladislav Michlf8f744a2016-07-12 20:28:25 +02001790 use_defaults = 0;
1791 } else
1792 printf("mtdparts variable not set, see 'help mtdparts'\n");
1793 }
Stefan Roese68d7d652009-03-19 13:30:36 +01001794
1795 if (parts && (strlen(parts) > MTDPARTS_MAXLEN - 1)) {
1796 printf("mtdparts too long (> %d)\n", MTDPARTS_MAXLEN);
1797 return 1;
1798 }
1799
1800 /* check if we have already parsed those mtdids */
1801 if ((last_ids[0] != '\0') && (strcmp(last_ids, ids) == 0)) {
1802 ids_changed = 0;
1803 } else {
1804 ids_changed = 1;
1805
1806 if (parse_mtdids(ids) != 0) {
1807 mtd_devices_init();
1808 return 1;
1809 }
1810
1811 /* ok it's good, save new ids */
1812 strncpy(last_ids, ids, MTDIDS_MAXLEN);
1813 }
1814
1815 /* parse partitions if either mtdparts or mtdids were updated */
1816 if (parts && ((last_parts[0] == '\0') || ((strcmp(last_parts, parts) != 0)) || ids_changed)) {
1817 if (parse_mtdparts(parts) != 0)
1818 return 1;
1819
1820 if (list_empty(&devices)) {
1821 printf("mtdparts_init: no valid partitions\n");
1822 return 1;
1823 }
1824
1825 /* ok it's good, save new parts */
1826 strncpy(last_parts, parts, MTDPARTS_MAXLEN);
1827
1828 /* reset first partition from first dev from the list as current */
Stefan Roese76b58832009-05-16 12:04:22 +02001829 current_mtd_dev = list_entry(devices.next, struct mtd_device, link);
1830 current_mtd_partnum = 0;
Stefan Roese68d7d652009-03-19 13:30:36 +01001831 current_save();
1832
Wolfgang Denke1d29502010-04-28 10:58:10 +02001833 debug("mtdparts_init: current_mtd_dev = %s%d, current_mtd_partnum = %d\n",
Stefan Roese76b58832009-05-16 12:04:22 +02001834 MTD_DEV_TYPE(current_mtd_dev->id->type),
1835 current_mtd_dev->id->num, current_mtd_partnum);
Stefan Roese68d7d652009-03-19 13:30:36 +01001836 }
1837
1838 /* mtdparts variable was reset to NULL, delete all devices/partitions */
1839 if (!parts && (last_parts[0] != '\0'))
1840 return mtd_devices_init();
1841
1842 /* do not process current partition if mtdparts variable is null */
1843 if (!parts)
1844 return 0;
1845
1846 /* is current partition set in environment? if so, use it */
1847 if ((tmp_ep[0] != '\0') && (strcmp(tmp_ep, last_partition) != 0)) {
1848 struct part_info *p;
1849 struct mtd_device *cdev;
1850 u8 pnum;
1851
Wolfgang Denke1d29502010-04-28 10:58:10 +02001852 debug("--- getting current partition: %s\n", tmp_ep);
Stefan Roese68d7d652009-03-19 13:30:36 +01001853
1854 if (find_dev_and_part(tmp_ep, &cdev, &pnum, &p) == 0) {
Stefan Roese76b58832009-05-16 12:04:22 +02001855 current_mtd_dev = cdev;
1856 current_mtd_partnum = pnum;
Stefan Roese68d7d652009-03-19 13:30:36 +01001857 current_save();
1858 }
Simon Glass00caae62017-08-03 12:22:12 -06001859 } else if (env_get("partition") == NULL) {
Wolfgang Denke1d29502010-04-28 10:58:10 +02001860 debug("no partition variable set, setting...\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01001861 current_save();
1862 }
1863
1864 return 0;
1865}
1866
1867/**
1868 * Return pointer to the partition of a requested number from a requested
1869 * device.
1870 *
1871 * @param dev device that is to be searched for a partition
1872 * @param part_num requested partition number
1873 * @return pointer to the part_info, NULL otherwise
1874 */
1875static struct part_info* mtd_part_info(struct mtd_device *dev, unsigned int part_num)
1876{
1877 struct list_head *entry;
1878 struct part_info *part;
1879 int num;
1880
1881 if (!dev)
1882 return NULL;
1883
Wolfgang Denke1d29502010-04-28 10:58:10 +02001884 debug("\n--- mtd_part_info: partition number %d for device %s%d (%s)\n",
Stefan Roese68d7d652009-03-19 13:30:36 +01001885 part_num, MTD_DEV_TYPE(dev->id->type),
1886 dev->id->num, dev->id->mtd_id);
1887
1888 if (part_num >= dev->num_parts) {
1889 printf("invalid partition number %d for device %s%d (%s)\n",
1890 part_num, MTD_DEV_TYPE(dev->id->type),
1891 dev->id->num, dev->id->mtd_id);
1892 return NULL;
1893 }
1894
1895 /* locate partition number, return it */
1896 num = 0;
1897 list_for_each(entry, &dev->parts) {
1898 part = list_entry(entry, struct part_info, link);
1899
1900 if (part_num == num++) {
1901 return part;
1902 }
1903 }
1904
1905 return NULL;
1906}
1907
1908/***************************************************/
Bin Menga1875592016-02-05 19:30:11 -08001909/* U-Boot commands */
Stefan Roese68d7d652009-03-19 13:30:36 +01001910/***************************************************/
1911/* command line only */
1912/**
1913 * Routine implementing u-boot chpart command. Sets new current partition based
1914 * on the user supplied partition id. For partition id format see find_dev_and_part().
1915 *
1916 * @param cmdtp command internal data
1917 * @param flag command flag
1918 * @param argc number of arguments supplied to the command
1919 * @param argv arguments list
1920 * @return 0 on success, 1 otherwise
1921 */
Kim Phillips088f1b12012-10-29 13:34:31 +00001922static int do_chpart(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Stefan Roese68d7d652009-03-19 13:30:36 +01001923{
1924/* command line only */
1925 struct mtd_device *dev;
1926 struct part_info *part;
1927 u8 pnum;
1928
1929 if (mtdparts_init() !=0)
1930 return 1;
1931
1932 if (argc < 2) {
1933 printf("no partition id specified\n");
1934 return 1;
1935 }
1936
1937 if (find_dev_and_part(argv[1], &dev, &pnum, &part) != 0)
1938 return 1;
1939
Stefan Roese76b58832009-05-16 12:04:22 +02001940 current_mtd_dev = dev;
1941 current_mtd_partnum = pnum;
Stefan Roese68d7d652009-03-19 13:30:36 +01001942 current_save();
1943
1944 printf("partition changed to %s%d,%d\n",
1945 MTD_DEV_TYPE(dev->id->type), dev->id->num, pnum);
1946
1947 return 0;
1948}
1949
1950/**
1951 * Routine implementing u-boot mtdparts command. Initialize/update default global
1952 * partition list and process user partition request (list, add, del).
1953 *
1954 * @param cmdtp command internal data
1955 * @param flag command flag
1956 * @param argc number of arguments supplied to the command
1957 * @param argv arguments list
1958 * @return 0 on success, 1 otherwise
1959 */
Kim Phillips088f1b12012-10-29 13:34:31 +00001960static int do_mtdparts(cmd_tbl_t *cmdtp, int flag, int argc,
1961 char * const argv[])
Stefan Roese68d7d652009-03-19 13:30:36 +01001962{
1963 if (argc == 2) {
1964 if (strcmp(argv[1], "default") == 0) {
Simon Glass382bee52017-08-03 12:22:09 -06001965 env_set("mtdids", NULL);
1966 env_set("mtdparts", NULL);
1967 env_set("partition", NULL);
Ladislav Michlf8f744a2016-07-12 20:28:25 +02001968 use_defaults = 1;
Stefan Roese68d7d652009-03-19 13:30:36 +01001969
1970 mtdparts_init();
1971 return 0;
1972 } else if (strcmp(argv[1], "delall") == 0) {
1973 /* this may be the first run, initialize lists if needed */
1974 mtdparts_init();
1975
Simon Glass382bee52017-08-03 12:22:09 -06001976 env_set("mtdparts", NULL);
Stefan Roese68d7d652009-03-19 13:30:36 +01001977
1978 /* mtd_devices_init() calls current_save() */
1979 return mtd_devices_init();
1980 }
1981 }
1982
1983 /* make sure we are in sync with env variables */
1984 if (mtdparts_init() != 0)
1985 return 1;
1986
1987 if (argc == 1) {
1988 list_partitions();
1989 return 0;
1990 }
1991
1992 /* mtdparts add <mtd-dev> <size>[@<offset>] <name> [ro] */
Ben Gardiner59a50d22010-08-31 17:48:04 -04001993 if (((argc == 5) || (argc == 6)) && (strncmp(argv[1], "add", 3) == 0)) {
Stefan Roese68d7d652009-03-19 13:30:36 +01001994#define PART_ADD_DESC_MAXLEN 64
1995 char tmpbuf[PART_ADD_DESC_MAXLEN];
Ben Gardiner59a50d22010-08-31 17:48:04 -04001996#if defined(CONFIG_CMD_MTDPARTS_SPREAD)
1997 struct mtd_info *mtd;
1998 uint64_t next_offset;
1999#endif
Stefan Roese68d7d652009-03-19 13:30:36 +01002000 u8 type, num, len;
2001 struct mtd_device *dev;
2002 struct mtd_device *dev_tmp;
2003 struct mtdids *id;
2004 struct part_info *p;
2005
2006 if (mtd_id_parse(argv[2], NULL, &type, &num) != 0)
2007 return 1;
2008
2009 if ((id = id_find(type, num)) == NULL) {
2010 printf("no such device %s defined in mtdids variable\n", argv[2]);
2011 return 1;
2012 }
2013
2014 len = strlen(id->mtd_id) + 1; /* 'mtd_id:' */
2015 len += strlen(argv[3]); /* size@offset */
2016 len += strlen(argv[4]) + 2; /* '(' name ')' */
2017 if (argv[5] && (strlen(argv[5]) == 2))
2018 len += 2; /* 'ro' */
2019
2020 if (len >= PART_ADD_DESC_MAXLEN) {
2021 printf("too long partition description\n");
2022 return 1;
2023 }
2024 sprintf(tmpbuf, "%s:%s(%s)%s",
2025 id->mtd_id, argv[3], argv[4], argv[5] ? argv[5] : "");
Wolfgang Denke1d29502010-04-28 10:58:10 +02002026 debug("add tmpbuf: %s\n", tmpbuf);
Stefan Roese68d7d652009-03-19 13:30:36 +01002027
2028 if ((device_parse(tmpbuf, NULL, &dev) != 0) || (!dev))
2029 return 1;
2030
Wolfgang Denke1d29502010-04-28 10:58:10 +02002031 debug("+ %s\t%d\t%s\n", MTD_DEV_TYPE(dev->id->type),
Stefan Roese68d7d652009-03-19 13:30:36 +01002032 dev->id->num, dev->id->mtd_id);
2033
Ben Gardiner59a50d22010-08-31 17:48:04 -04002034 p = list_entry(dev->parts.next, struct part_info, link);
2035
2036#if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2037 if (get_mtd_info(dev->id->type, dev->id->num, &mtd))
2038 return 1;
2039
2040 if (!strcmp(&argv[1][3], ".spread")) {
2041 spread_partition(mtd, p, &next_offset);
Steve Rae59441ac2016-06-29 13:50:59 -07002042 debug("increased %s to %llu bytes\n", p->name, p->size);
Ben Gardiner59a50d22010-08-31 17:48:04 -04002043 }
2044#endif
2045
2046 dev_tmp = device_find(dev->id->type, dev->id->num);
2047 if (dev_tmp == NULL) {
Stefan Roese68d7d652009-03-19 13:30:36 +01002048 device_add(dev);
Ben Gardiner59a50d22010-08-31 17:48:04 -04002049 } else if (part_add(dev_tmp, p) != 0) {
Stefan Roese68d7d652009-03-19 13:30:36 +01002050 /* merge new partition with existing ones*/
Ben Gardiner59a50d22010-08-31 17:48:04 -04002051 device_del(dev);
2052 return 1;
Stefan Roese68d7d652009-03-19 13:30:36 +01002053 }
2054
2055 if (generate_mtdparts_save(last_parts, MTDPARTS_MAXLEN) != 0) {
Robert P. J. Daya22bf162013-02-04 13:51:10 +00002056 printf("generated mtdparts too long, resetting to null\n");
Stefan Roese68d7d652009-03-19 13:30:36 +01002057 return 1;
2058 }
2059
2060 return 0;
2061 }
2062
2063 /* mtdparts del part-id */
2064 if ((argc == 3) && (strcmp(argv[1], "del") == 0)) {
Wolfgang Denke1d29502010-04-28 10:58:10 +02002065 debug("del: part-id = %s\n", argv[2]);
Stefan Roese68d7d652009-03-19 13:30:36 +01002066
2067 return delete_partition(argv[2]);
2068 }
2069
Ben Gardinerca75b202010-08-31 17:48:03 -04002070#if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2071 if ((argc == 2) && (strcmp(argv[1], "spread") == 0))
2072 return spread_partitions();
2073#endif /* CONFIG_CMD_MTDPARTS_SPREAD */
2074
Simon Glass4c12eeb2011-12-10 08:44:01 +00002075 return CMD_RET_USAGE;
Stefan Roese68d7d652009-03-19 13:30:36 +01002076}
2077
2078/***************************************************/
2079U_BOOT_CMD(
2080 chpart, 2, 0, do_chpart,
2081 "change active partition",
2082 "part-id\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02002083 " - change active partition (e.g. part-id = nand0,1)"
Stefan Roese68d7d652009-03-19 13:30:36 +01002084);
2085
Kim Phillips088f1b12012-10-29 13:34:31 +00002086#ifdef CONFIG_SYS_LONGHELP
2087static char mtdparts_help_text[] =
Stefan Roese68d7d652009-03-19 13:30:36 +01002088 "\n"
2089 " - list partition table\n"
2090 "mtdparts delall\n"
2091 " - delete all partitions\n"
2092 "mtdparts del part-id\n"
2093 " - delete partition (e.g. part-id = nand0,1)\n"
2094 "mtdparts add <mtd-dev> <size>[@<offset>] [<name>] [ro]\n"
2095 " - add partition\n"
Ben Gardiner59a50d22010-08-31 17:48:04 -04002096#if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2097 "mtdparts add.spread <mtd-dev> <size>[@<offset>] [<name>] [ro]\n"
2098 " - add partition, padding size by skipping bad blocks\n"
2099#endif
Stefan Roese68d7d652009-03-19 13:30:36 +01002100 "mtdparts default\n"
Ben Gardinerca75b202010-08-31 17:48:03 -04002101 " - reset partition table to defaults\n"
2102#if defined(CONFIG_CMD_MTDPARTS_SPREAD)
2103 "mtdparts spread\n"
2104 " - adjust the sizes of the partitions so they are\n"
2105 " at least as big as the mtdparts variable specifies\n"
2106 " and they each start on a good block\n\n"
2107#else
2108 "\n"
2109#endif /* CONFIG_CMD_MTDPARTS_SPREAD */
Stefan Roese68d7d652009-03-19 13:30:36 +01002110 "-----\n\n"
2111 "this command uses three environment variables:\n\n"
2112 "'partition' - keeps current partition identifier\n\n"
2113 "partition := <part-id>\n"
2114 "<part-id> := <dev-id>,part_num\n\n"
2115 "'mtdids' - linux kernel mtd device id <-> u-boot device id mapping\n\n"
2116 "mtdids=<idmap>[,<idmap>,...]\n\n"
2117 "<idmap> := <dev-id>=<mtd-id>\n"
Miquel Raynal00ac9222018-09-06 09:08:45 +02002118 "<dev-id> := 'nand'|'nor'|'onenand'|'spi-nand'<dev-num>\n"
Stefan Roese68d7d652009-03-19 13:30:36 +01002119 "<dev-num> := mtd device number, 0...\n"
2120 "<mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)\n\n"
2121 "'mtdparts' - partition list\n\n"
2122 "mtdparts=mtdparts=<mtd-def>[;<mtd-def>...]\n\n"
2123 "<mtd-def> := <mtd-id>:<part-def>[,<part-def>...]\n"
2124 "<mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)\n"
2125 "<part-def> := <size>[@<offset>][<name>][<ro-flag>]\n"
2126 "<size> := standard linux memsize OR '-' to denote all remaining space\n"
2127 "<offset> := partition start offset within the device\n"
2128 "<name> := '(' NAME ')'\n"
Kim Phillips088f1b12012-10-29 13:34:31 +00002129 "<ro-flag> := when set to 'ro' makes partition read-only (not used, passed to kernel)";
2130#endif
2131
2132U_BOOT_CMD(
2133 mtdparts, 6, 0, do_mtdparts,
2134 "define flash/nand partitions", mtdparts_help_text
Stefan Roese68d7d652009-03-19 13:30:36 +01002135);
2136/***************************************************/