1 // SPDX-License-Identifier: GPL-2.0+
4 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
8 #include <dm/uclass-internal.h>
9 #include <jffs2/jffs2.h> /* LEGACY */
10 #include <linux/mtd/mtd.h>
11 #include <linux/mtd/partitions.h>
14 #define MTD_NAME_MAX_LEN 20
16 void board_mtdparts_default(const char **mtdids, const char **mtdparts);
18 static const char *get_mtdids(void)
20 __maybe_unused const char *mtdparts = NULL;
21 const char *mtdids = env_get("mtdids");
26 #if defined(CONFIG_SYS_MTDPARTS_RUNTIME)
27 board_mtdparts_default(&mtdids, &mtdparts);
28 #elif defined(MTDIDS_DEFAULT)
29 mtdids = MTDIDS_DEFAULT;
30 #elif defined(CONFIG_MTDIDS_DEFAULT)
31 mtdids = CONFIG_MTDIDS_DEFAULT;
35 env_set("mtdids", mtdids);
41 * mtd_search_alternate_name - Search an alternate name for @mtdname thanks to
42 * the mtdids legacy environment variable.
44 * The mtdids string is a list of comma-separated 'dev_id=mtd_id' tupples.
45 * Check if one of the mtd_id matches mtdname, in this case save dev_id in
48 * @mtdname: Current MTD device name
49 * @altname: Alternate name to return
50 * @max_len: Length of the alternate name buffer
52 * @return 0 on success, an error otherwise.
54 int mtd_search_alternate_name(const char *mtdname, char *altname,
57 const char *mtdids, *equal, *comma, *dev_id, *mtd_id;
58 int dev_id_len, mtd_id_len;
60 mtdids = get_mtdids();
65 /* Find the '=' sign */
67 equal = strchr(dev_id, '=');
70 dev_id_len = equal - mtdids;
73 /* Find the end of the tupple */
74 comma = strchr(mtdids, ',');
76 mtd_id_len = comma - mtd_id;
78 mtd_id_len = &mtdids[strlen(mtdids)] - mtd_id + 1;
80 if (!dev_id_len || !mtd_id_len)
83 if (dev_id_len + 1 > max_len)
86 /* Compare the name we search with the current mtd_id */
87 if (!strncmp(mtdname, mtd_id, mtd_id_len)) {
88 strncpy(altname, dev_id, dev_id_len);
89 altname[dev_id_len] = 0;
94 /* Go to the next tupple */
101 #if IS_ENABLED(CONFIG_MTD)
102 static void mtd_probe_uclass_mtd_devs(void)
107 /* Probe devices with DM compliant drivers */
108 while (!uclass_find_device(UCLASS_MTD, idx, &dev) && dev) {
114 static void mtd_probe_uclass_mtd_devs(void) { }
117 #if defined(CONFIG_MTD_PARTITIONS)
119 #define MTDPARTS_MAXLEN 512
121 static const char *get_mtdparts(void)
123 __maybe_unused const char *mtdids = NULL;
124 static char tmp_parts[MTDPARTS_MAXLEN];
125 const char *mtdparts = NULL;
127 if (gd->flags & GD_FLG_ENV_READY)
128 mtdparts = env_get("mtdparts");
129 else if (env_get_f("mtdparts", tmp_parts, sizeof(tmp_parts)) != -1)
130 mtdparts = tmp_parts;
135 #if defined(CONFIG_SYS_MTDPARTS_RUNTIME)
136 board_mtdparts_default(&mtdids, &mtdparts);
137 #elif defined(MTDPARTS_DEFAULT)
138 mtdparts = MTDPARTS_DEFAULT;
139 #elif defined(CONFIG_MTDPARTS_DEFAULT)
140 mtdparts = CONFIG_MTDPARTS_DEFAULT;
144 env_set("mtdparts", mtdparts);
149 static int mtd_del_parts(struct mtd_info *mtd, bool quiet)
153 if (!mtd_has_partitions(mtd))
156 /* do not delete partitions if they are in use. */
157 if (mtd_partitions_used(mtd)) {
159 printf("\"%s\" partitions still in use, can't delete them\n",
164 ret = del_mtd_partitions(mtd);
171 static bool mtd_del_all_parts_failed;
173 static void mtd_del_all_parts(void)
175 struct mtd_info *mtd;
178 mtd_del_all_parts_failed = false;
181 * It is not safe to remove entries from the mtd_for_each_device loop
182 * as it uses idr indexes and the partitions removal is done in bulk
183 * (all partitions of one device at the same time), so break and
184 * iterate from start each time a new partition is found and deleted.
187 mtd_for_each_device(mtd) {
188 ret = mtd_del_parts(mtd, false);
192 mtd_del_all_parts_failed = true;
197 int mtd_probe_devices(void)
199 static char *old_mtdparts;
200 static char *old_mtdids;
201 const char *mtdparts = get_mtdparts();
202 const char *mtdids = get_mtdids();
203 const char *mtdparts_next = mtdparts;
204 struct mtd_info *mtd;
206 mtd_probe_uclass_mtd_devs();
209 * Check if mtdparts/mtdids changed, if the MTD dev list was updated
210 * or if our previous attempt to delete existing partititions failed.
211 * In any of these cases we want to update the partitions, otherwise,
212 * everything is up-to-date and we can return 0 directly.
214 if ((!mtdparts && !old_mtdparts && !mtdids && !old_mtdids) ||
215 (mtdparts && old_mtdparts && mtdids && old_mtdids &&
216 !mtd_dev_list_updated() && !mtd_del_all_parts_failed &&
217 !strcmp(mtdparts, old_mtdparts) &&
218 !strcmp(mtdids, old_mtdids)))
221 /* Update the local copy of mtdparts */
224 old_mtdparts = strdup(mtdparts);
225 old_mtdids = strdup(mtdids);
228 * Remove all old parts. Note that partition removal can fail in case
229 * one of the partition is still being used by an MTD user, so this
230 * does not guarantee that all old partitions are gone.
235 * Call mtd_dev_list_updated() to clear updates generated by our own
236 * parts removal loop.
238 mtd_dev_list_updated();
240 /* If either mtdparts or mtdids is empty, then exit */
241 if (!mtdparts || !mtdids)
244 /* Start the parsing by ignoring the extra 'mtdparts=' prefix, if any */
245 if (!strncmp(mtdparts, "mtdparts=", sizeof("mtdparts=") - 1))
248 /* For each MTD device in mtdparts */
249 for (; mtdparts[0] != '\0'; mtdparts = mtdparts_next) {
250 char mtd_name[MTD_NAME_MAX_LEN], *colon;
251 struct mtd_partition *parts;
252 unsigned int mtd_name_len;
255 mtdparts_next = strchr(mtdparts, ';');
257 mtdparts_next = mtdparts + strlen(mtdparts);
261 colon = strchr(mtdparts, ':');
262 if (colon > mtdparts_next)
266 printf("Wrong mtdparts: %s\n", mtdparts);
270 mtd_name_len = (unsigned int)(colon - mtdparts);
271 if (mtd_name_len + 1 > sizeof(mtd_name)) {
272 printf("MTD name too long: %s\n", mtdparts);
276 strncpy(mtd_name, mtdparts, mtd_name_len);
277 mtd_name[mtd_name_len] = '\0';
278 /* Move the pointer forward (including the ':') */
279 mtdparts += mtd_name_len + 1;
280 mtd = get_mtd_device_nm(mtd_name);
281 if (IS_ERR_OR_NULL(mtd)) {
282 char linux_name[MTD_NAME_MAX_LEN];
285 * The MTD device named "mtd_name" does not exist. Try
286 * to find a correspondance with an MTD device having
287 * the same type and number as defined in the mtdids.
289 debug("No device named %s\n", mtd_name);
290 ret = mtd_search_alternate_name(mtd_name, linux_name,
293 mtd = get_mtd_device_nm(linux_name);
296 * If no device could be found, move the mtdparts
297 * pointer forward until the next set of partitions.
299 if (ret || IS_ERR_OR_NULL(mtd)) {
300 printf("Could not find a valid device for %s\n",
302 mtdparts = mtdparts_next;
308 * Call mtd_del_parts() again, even if it's already been called
309 * in mtd_del_all_parts(). We need to know if old partitions are
310 * still around (because they are still being used by someone),
311 * and if they are, we shouldn't create new partitions, so just
312 * skip this MTD device and try the next one.
314 ret = mtd_del_parts(mtd, true);
319 * Parse the MTD device partitions. It will update the mtdparts
320 * pointer, create an array of parts (that must be freed), and
321 * return the number of partition structures in the array.
323 ret = mtd_parse_partitions(mtd, &mtdparts, &parts, &nparts);
325 printf("Could not parse device %s\n", mtd->name);
333 /* Create the new MTD partitions */
334 add_mtd_partitions(mtd, parts, nparts);
336 /* Free the structures allocated during the parsing */
337 mtd_free_parsed_partitions(parts, nparts);
343 * Call mtd_dev_list_updated() to clear updates generated by our own
344 * parts registration loop.
346 mtd_dev_list_updated();
351 int mtd_probe_devices(void)
353 mtd_probe_uclass_mtd_devs();
357 #endif /* defined(CONFIG_MTD_PARTITIONS) */
361 static int get_part(const char *partname, int *idx, loff_t *off, loff_t *size,
362 loff_t *maxsize, int devtype)
364 #ifdef CONFIG_CMD_MTDPARTS
365 struct mtd_device *dev;
366 struct part_info *part;
370 ret = mtdparts_init();
374 ret = find_dev_and_part(partname, &dev, &pnum, &part);
378 if (dev->id->type != devtype) {
379 printf("not same typ %d != %d\n", dev->id->type, devtype);
385 *maxsize = part->size;
390 puts("mtdparts support missing.\n");
395 int mtd_arg_off(const char *arg, int *idx, loff_t *off, loff_t *size,
396 loff_t *maxsize, int devtype, uint64_t chipsize)
398 if (!str2off(arg, off))
399 return get_part(arg, idx, off, size, maxsize, devtype);
401 if (*off >= chipsize) {
402 puts("Offset exceeds device limit\n");
406 *maxsize = chipsize - *off;
411 int mtd_arg_off_size(int argc, char *const argv[], int *idx, loff_t *off,
412 loff_t *size, loff_t *maxsize, int devtype,
424 ret = mtd_arg_off(argv[0], idx, off, size, maxsize, devtype,
432 if (!str2off(argv[1], size)) {
433 printf("'%s' is not a number\n", argv[1]);
437 if (*size > *maxsize) {
438 puts("Size exceeds partition or device limit\n");
443 printf("device %d ", *idx);
444 if (*size == chipsize)
445 puts("whole chip\n");
447 printf("offset 0x%llx, size 0x%llx\n",
448 (unsigned long long)*off, (unsigned long long)*size);