3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
14 #include <ubifs_uboot.h>
19 #define PRINTF(fmt,args...) printf (fmt ,##args)
21 #define PRINTF(fmt,args...)
24 /* Check all partition types */
25 #define PART_TYPE_ALL -1
27 DECLARE_GLOBAL_DATA_PTR;
29 static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
31 struct part_driver *drv =
32 ll_entry_start(struct part_driver, part_driver);
33 const int n_ents = ll_entry_count(struct part_driver, part_driver);
34 struct part_driver *entry;
36 if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
37 for (entry = drv; entry != drv + n_ents; entry++) {
40 ret = entry->test(dev_desc);
42 dev_desc->part_type = entry->part_type;
47 for (entry = drv; entry != drv + n_ents; entry++) {
48 if (dev_desc->part_type == entry->part_type)
57 #ifdef CONFIG_HAVE_BLOCK_DEVICE
58 static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
60 struct blk_desc *dev_desc;
63 dev_desc = blk_get_devnum_by_typename(ifname, dev);
65 debug("%s: No device for iface '%s', dev %d\n", __func__,
69 ret = blk_dselect_hwpart(dev_desc, hwpart);
71 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
79 struct blk_desc *blk_get_dev(const char *ifname, int dev)
81 return get_dev_hwpart(ifname, dev, 0);
84 struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
89 struct blk_desc *blk_get_dev(const char *ifname, int dev)
95 #ifdef CONFIG_HAVE_BLOCK_DEVICE
97 /* ------------------------------------------------------------------------- */
99 * reports device info to the user
103 typedef uint64_t lba512_t;
105 typedef lbaint_t lba512_t;
109 * Overflowless variant of (block_count * mul_by / div_by)
110 * when div_by > mul_by
112 static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by)
114 lba512_t bc_quot, bc_rem;
116 /* x * m / d == x / d * m + (x % d) * m / d */
117 bc_quot = block_count / div_by;
118 bc_rem = block_count - div_by * bc_quot;
119 return bc_quot * mul_by + (bc_rem * mul_by) / div_by;
122 void dev_print (struct blk_desc *dev_desc)
124 lba512_t lba512; /* number of blocks if 512bytes block size */
126 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
127 puts ("not available\n");
131 switch (dev_desc->if_type) {
133 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
134 dev_desc->target,dev_desc->lun,
142 printf ("Model: %s Firm: %s Ser#: %s\n",
151 printf ("Vendor: %s Rev: %s Prod: %s\n",
157 puts("device type DOC\n");
159 case IF_TYPE_UNKNOWN:
160 puts("device type unknown\n");
163 printf("Unhandled device type: %i\n", dev_desc->if_type);
167 if (dev_desc->removable)
169 switch (dev_desc->type & 0x1F) {
170 case DEV_TYPE_HARDDISK:
176 case DEV_TYPE_OPDISK:
177 puts ("Optical Device");
183 printf ("# %02X #", dev_desc->type & 0x1F);
187 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
188 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
193 lba512 = (lba * (dev_desc->blksz/512));
194 /* round to 1 digit */
195 /* 2048 = (1024 * 1024) / 512 MB */
196 mb = lba512_muldiv(lba512, 10, 2048);
199 mb_rem = mb - (10 * mb_quot);
203 gb_rem = gb - (10 * gb_quot);
206 printf (" Supports 48-bit addressing\n");
208 #if defined(CONFIG_SYS_64BIT_LBA)
209 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
215 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
222 puts (" Capacity: not available\n");
227 #ifdef CONFIG_HAVE_BLOCK_DEVICE
229 void part_init(struct blk_desc *dev_desc)
231 struct part_driver *drv =
232 ll_entry_start(struct part_driver, part_driver);
233 const int n_ents = ll_entry_count(struct part_driver, part_driver);
234 struct part_driver *entry;
236 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
238 dev_desc->part_type = PART_TYPE_UNKNOWN;
239 for (entry = drv; entry != drv + n_ents; entry++) {
242 ret = entry->test(dev_desc);
243 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
245 dev_desc->part_type = entry->part_type;
251 static void print_part_header(const char *type, struct blk_desc *dev_desc)
253 #if CONFIG_IS_ENABLED(MAC_PARTITION) || \
254 CONFIG_IS_ENABLED(DOS_PARTITION) || \
255 CONFIG_IS_ENABLED(ISO_PARTITION) || \
256 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
257 CONFIG_IS_ENABLED(EFI_PARTITION)
258 puts ("\nPartition Map for ");
259 switch (dev_desc->if_type) {
291 printf (" device %d -- Partition Type: %s\n\n",
292 dev_desc->devnum, type);
293 #endif /* any CONFIG_..._PARTITION */
296 void part_print(struct blk_desc *dev_desc)
298 struct part_driver *drv;
300 drv = part_driver_lookup_type(dev_desc);
302 printf("## Unknown partition table type %x\n",
303 dev_desc->part_type);
307 PRINTF("## Testing for valid %s partition ##\n", drv->name);
308 print_part_header(drv->name, dev_desc);
310 drv->print(dev_desc);
313 #endif /* CONFIG_HAVE_BLOCK_DEVICE */
315 int part_get_info(struct blk_desc *dev_desc, int part,
316 disk_partition_t *info)
318 #ifdef CONFIG_HAVE_BLOCK_DEVICE
319 struct part_driver *drv;
321 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
322 /* The common case is no UUID support */
325 #ifdef CONFIG_PARTITION_TYPE_GUID
326 info->type_guid[0] = 0;
329 drv = part_driver_lookup_type(dev_desc);
331 debug("## Unknown partition table type %x\n",
332 dev_desc->part_type);
333 return -EPROTONOSUPPORT;
335 if (!drv->get_info) {
336 PRINTF("## Driver %s does not have the get_info() method\n",
340 if (drv->get_info(dev_desc, part, info) == 0) {
341 PRINTF("## Valid %s partition found ##\n", drv->name);
344 #endif /* CONFIG_HAVE_BLOCK_DEVICE */
349 int part_get_info_whole_disk(struct blk_desc *dev_desc, disk_partition_t *info)
352 info->size = dev_desc->lba;
353 info->blksz = dev_desc->blksz;
355 strcpy((char *)info->type, BOOT_PART_TYPE);
356 strcpy((char *)info->name, "Whole Disk");
357 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
360 #ifdef CONFIG_PARTITION_TYPE_GUID
361 info->type_guid[0] = 0;
367 int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
368 struct blk_desc **dev_desc)
371 char *dup_str = NULL;
372 const char *dev_str, *hwpart_str;
375 hwpart_str = strchr(dev_hwpart_str, '.');
377 dup_str = strdup(dev_hwpart_str);
378 dup_str[hwpart_str - dev_hwpart_str] = 0;
382 dev_str = dev_hwpart_str;
386 dev = simple_strtoul(dev_str, &ep, 16);
388 printf("** Bad device specification %s %s **\n",
395 hwpart = simple_strtoul(hwpart_str, &ep, 16);
397 printf("** Bad HW partition specification %s %s **\n",
404 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
405 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
406 printf("** Bad device %s %s **\n", ifname, dev_hwpart_str);
411 #ifdef CONFIG_HAVE_BLOCK_DEVICE
413 * Updates the partition table for the specified hw partition.
414 * Does not need to be done for hwpart 0 since it is default and
418 part_init(*dev_desc);
426 #define PART_UNSPECIFIED -2
428 int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
429 struct blk_desc **dev_desc,
430 disk_partition_t *info, int allow_whole_dev)
433 const char *part_str;
434 char *dup_str = NULL;
440 disk_partition_t tmpinfo;
442 #ifdef CONFIG_SANDBOX
444 * Special-case a pseudo block device "hostfs", to allow access to the
445 * host's own filesystem.
447 if (0 == strcmp(ifname, "hostfs")) {
453 strcpy((char *)info->type, BOOT_PART_TYPE);
454 strcpy((char *)info->name, "Sandbox host");
455 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
458 #ifdef CONFIG_PARTITION_TYPE_GUID
459 info->type_guid[0] = 0;
466 #ifdef CONFIG_CMD_UBIFS
468 * Special-case ubi, ubi goes through a mtd, rathen then through
469 * a regular block device.
471 if (0 == strcmp(ifname, "ubi")) {
472 if (!ubifs_is_mounted()) {
473 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
478 memset(info, 0, sizeof(*info));
479 strcpy((char *)info->type, BOOT_PART_TYPE);
480 strcpy((char *)info->name, "UBI");
481 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
488 /* If no dev_part_str, use bootdevice environment variable */
489 if (!dev_part_str || !strlen(dev_part_str) ||
490 !strcmp(dev_part_str, "-"))
491 dev_part_str = env_get("bootdevice");
493 /* If still no dev_part_str, it's an error */
495 printf("** No device specified **\n");
499 /* Separate device and partition ID specification */
500 part_str = strchr(dev_part_str, ':');
502 dup_str = strdup(dev_part_str);
503 dup_str[part_str - dev_part_str] = 0;
507 dev_str = dev_part_str;
510 /* Look up the device */
511 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
515 /* Convert partition ID string to number */
516 if (!part_str || !*part_str) {
517 part = PART_UNSPECIFIED;
518 } else if (!strcmp(part_str, "auto")) {
521 /* Something specified -> use exactly that */
522 part = (int)simple_strtoul(part_str, &ep, 16);
524 * Less than whole string converted,
525 * or request for whole device, but caller requires partition.
527 if (*ep || (part == 0 && !allow_whole_dev)) {
528 printf("** Bad partition specification %s %s **\n",
529 ifname, dev_part_str);
535 * No partition table on device,
536 * or user requested partition 0 (entire device).
538 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
540 if (!(*dev_desc)->lba) {
541 printf("** Bad device size - %s %s **\n", ifname,
547 * If user specified a partition ID other than 0,
548 * or the calling command only accepts partitions,
551 if ((part > 0) || (!allow_whole_dev)) {
552 printf("** No partition table - %s %s **\n", ifname,
557 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
559 part_get_info_whole_disk(*dev_desc, info);
566 * Now there's known to be a partition table,
567 * not specifying a partition means to pick partition 1.
569 if (part == PART_UNSPECIFIED)
573 * If user didn't specify a partition number, or did specify something
574 * other than "auto", use that partition number directly.
576 if (part != PART_AUTO) {
577 ret = part_get_info(*dev_desc, part, info);
579 printf("** Invalid partition %d **\n", part);
584 * Find the first bootable partition.
585 * If none are bootable, fall back to the first valid partition.
588 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
589 ret = part_get_info(*dev_desc, p, info);
594 * First valid partition, or new better partition?
595 * If so, save partition ID.
597 if (!part || info->bootable)
600 /* Best possible partition? Stop searching. */
605 * We now need to search further for best possible.
606 * If we what we just queried was the best so far,
607 * save the info since we over-write it next loop.
612 /* If we found any acceptable partition */
615 * If we searched all possible partition IDs,
616 * return the first valid partition we found.
618 if (p == MAX_SEARCH_PARTITIONS + 1)
621 printf("** No valid partitions found **\n");
626 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
627 printf("** Invalid partition type \"%.32s\""
628 " (expect \"" BOOT_PART_TYPE "\")\n",
634 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
644 int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
645 disk_partition_t *info, int part_type)
647 struct part_driver *part_drv;
651 part_drv = part_driver_lookup_type(dev_desc);
654 for (i = 1; i < part_drv->max_entries; i++) {
655 ret = part_drv->get_info(dev_desc, i, info);
657 /* no more entries in table */
660 if (strcmp(name, (const char *)info->name) == 0) {
669 int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
670 disk_partition_t *info)
672 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
675 void part_set_generic_name(const struct blk_desc *dev_desc,
676 int part_num, char *name)
680 switch (dev_desc->if_type) {
704 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);