1 // SPDX-License-Identifier: GPL-2.0+
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
16 #include <ubifs_uboot.h>
21 #define PRINTF(fmt,args...) printf (fmt ,##args)
23 #define PRINTF(fmt,args...)
26 /* Check all partition types */
27 #define PART_TYPE_ALL -1
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 static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
59 struct blk_desc *dev_desc;
64 dev_desc = blk_get_devnum_by_typename(ifname, dev);
66 debug("%s: No device for iface '%s', dev %d\n", __func__,
70 ret = blk_dselect_hwpart(dev_desc, hwpart);
72 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
80 struct blk_desc *blk_get_dev(const char *ifname, int dev)
85 return get_dev_hwpart(ifname, dev, 0);
88 /* ------------------------------------------------------------------------- */
90 * reports device info to the user
94 typedef uint64_t lba512_t;
96 typedef lbaint_t lba512_t;
100 * Overflowless variant of (block_count * mul_by / 2**right_shift)
101 * when 2**right_shift > mul_by
103 static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by,
106 lba512_t bc_quot, bc_rem;
108 /* x * m / d == x / d * m + (x % d) * m / d */
109 bc_quot = block_count >> right_shift;
110 bc_rem = block_count - (bc_quot << right_shift);
111 return bc_quot * mul_by + ((bc_rem * mul_by) >> right_shift);
114 void dev_print(struct blk_desc *dev_desc)
116 lba512_t lba512; /* number of blocks if 512bytes block size */
118 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
119 puts ("not available\n");
123 switch (dev_desc->if_type) {
125 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
126 dev_desc->target,dev_desc->lun,
133 printf ("Model: %s Firm: %s Ser#: %s\n",
143 printf ("Vendor: %s Rev: %s Prod: %s\n",
149 printf("%s VirtIO Block Device\n", dev_desc->vendor);
151 case UCLASS_EFI_MEDIA:
152 printf("EFI media Block Device %d\n", dev_desc->devnum);
155 puts("device type unknown\n");
158 printf("Unhandled device type: %i\n", dev_desc->if_type);
162 if (dev_desc->removable)
164 switch (dev_desc->type & 0x1F) {
165 case DEV_TYPE_HARDDISK:
171 case DEV_TYPE_OPDISK:
172 puts ("Optical Device");
178 printf ("# %02X #", dev_desc->type & 0x1F);
182 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
183 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
188 lba512 = (lba * (dev_desc->blksz/512));
189 /* round to 1 digit */
190 /* 2048 = (1024 * 1024) / 512 MB */
191 mb = lba512_muldiv(lba512, 10, 11);
194 mb_rem = mb - (10 * mb_quot);
198 gb_rem = gb - (10 * gb_quot);
201 printf (" Supports 48-bit addressing\n");
203 #if defined(CONFIG_SYS_64BIT_LBA)
204 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
210 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
217 puts (" Capacity: not available\n");
221 void part_init(struct blk_desc *dev_desc)
223 struct part_driver *drv =
224 ll_entry_start(struct part_driver, part_driver);
225 const int n_ents = ll_entry_count(struct part_driver, part_driver);
226 struct part_driver *entry;
228 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
230 dev_desc->part_type = PART_TYPE_UNKNOWN;
231 for (entry = drv; entry != drv + n_ents; entry++) {
234 ret = entry->test(dev_desc);
235 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
237 dev_desc->part_type = entry->part_type;
243 static void print_part_header(const char *type, struct blk_desc *dev_desc)
245 #if CONFIG_IS_ENABLED(MAC_PARTITION) || \
246 CONFIG_IS_ENABLED(DOS_PARTITION) || \
247 CONFIG_IS_ENABLED(ISO_PARTITION) || \
248 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
249 CONFIG_IS_ENABLED(EFI_PARTITION)
250 puts ("\nPartition Map for ");
251 switch (dev_desc->if_type) {
279 case UCLASS_EFI_MEDIA:
286 printf (" device %d -- Partition Type: %s\n\n",
287 dev_desc->devnum, type);
288 #endif /* any CONFIG_..._PARTITION */
291 void part_print(struct blk_desc *dev_desc)
293 struct part_driver *drv;
295 drv = part_driver_lookup_type(dev_desc);
297 printf("## Unknown partition table type %x\n",
298 dev_desc->part_type);
302 PRINTF("## Testing for valid %s partition ##\n", drv->name);
303 print_part_header(drv->name, dev_desc);
305 drv->print(dev_desc);
308 int part_get_info(struct blk_desc *dev_desc, int part,
309 struct disk_partition *info)
311 struct part_driver *drv;
314 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
315 /* The common case is no UUID support */
318 #ifdef CONFIG_PARTITION_TYPE_GUID
319 info->type_guid[0] = 0;
322 drv = part_driver_lookup_type(dev_desc);
324 debug("## Unknown partition table type %x\n",
325 dev_desc->part_type);
326 return -EPROTONOSUPPORT;
328 if (!drv->get_info) {
329 PRINTF("## Driver %s does not have the get_info() method\n",
333 if (drv->get_info(dev_desc, part, info) == 0) {
334 PRINTF("## Valid %s partition found ##\n", drv->name);
342 int part_get_info_whole_disk(struct blk_desc *dev_desc,
343 struct disk_partition *info)
346 info->size = dev_desc->lba;
347 info->blksz = dev_desc->blksz;
349 strcpy((char *)info->type, BOOT_PART_TYPE);
350 strcpy((char *)info->name, "Whole Disk");
351 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
354 #ifdef CONFIG_PARTITION_TYPE_GUID
355 info->type_guid[0] = 0;
361 int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
362 struct blk_desc **dev_desc)
365 char *dup_str = NULL;
366 const char *dev_str, *hwpart_str;
369 hwpart_str = strchr(dev_hwpart_str, '.');
371 dup_str = strdup(dev_hwpart_str);
372 dup_str[hwpart_str - dev_hwpart_str] = 0;
376 dev_str = dev_hwpart_str;
380 dev = hextoul(dev_str, &ep);
382 printf("** Bad device specification %s %s **\n",
389 hwpart = hextoul(hwpart_str, &ep);
391 printf("** Bad HW partition specification %s %s **\n",
398 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
399 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
400 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
407 * Updates the partition table for the specified hw partition.
408 * Always should be done, otherwise hw partition 0 will return
409 * stale data after displaying a non-zero hw partition.
411 if ((*dev_desc)->if_type == UCLASS_MMC)
412 part_init(*dev_desc);
420 #define PART_UNSPECIFIED -2
422 int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
423 struct blk_desc **dev_desc,
424 struct disk_partition *info, int allow_whole_dev)
427 const char *part_str;
428 char *dup_str = NULL;
434 struct disk_partition tmpinfo;
436 #if IS_ENABLED(CONFIG_SANDBOX) || IS_ENABLED(CONFIG_SEMIHOSTING)
438 * Special-case a pseudo block device "hostfs", to allow access to the
439 * host's own filesystem.
441 if (0 == strcmp(ifname, "hostfs")) {
447 strcpy((char *)info->type, BOOT_PART_TYPE);
448 strcpy((char *)info->name, "Host filesystem");
449 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
452 #ifdef CONFIG_PARTITION_TYPE_GUID
453 info->type_guid[0] = 0;
460 #if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_SPL_BUILD)
462 * Special-case ubi, ubi goes through a mtd, rather than through
463 * a regular block device.
465 if (0 == strcmp(ifname, "ubi")) {
466 if (!ubifs_is_mounted()) {
467 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
472 memset(info, 0, sizeof(*info));
473 strcpy((char *)info->type, BOOT_PART_TYPE);
474 strcpy((char *)info->name, "UBI");
475 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
482 /* If no dev_part_str, use bootdevice environment variable */
483 if (!dev_part_str || !strlen(dev_part_str) ||
484 !strcmp(dev_part_str, "-"))
485 dev_part_str = env_get("bootdevice");
487 /* If still no dev_part_str, it's an error */
489 printf("** No device specified **\n");
494 /* Separate device and partition ID specification */
495 part_str = strchr(dev_part_str, ':');
497 dup_str = strdup(dev_part_str);
498 dup_str[part_str - dev_part_str] = 0;
502 dev_str = dev_part_str;
505 /* Look up the device */
506 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
508 printf("** Bad device specification %s %s **\n",
514 /* Convert partition ID string to number */
515 if (!part_str || !*part_str) {
516 part = PART_UNSPECIFIED;
517 } else if (!strcmp(part_str, "auto")) {
520 /* Something specified -> use exactly that */
521 part = (int)hextoul(part_str, &ep);
523 * Less than whole string converted,
524 * or request for whole device, but caller requires partition.
526 if (*ep || (part == 0 && !allow_whole_dev)) {
527 printf("** Bad partition specification %s %s **\n",
528 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,
548 * If user specified a partition ID other than 0,
549 * or the calling command only accepts partitions,
552 if ((part > 0) || (!allow_whole_dev)) {
553 printf("** No partition table - %s %s **\n", ifname,
555 ret = -EPROTONOSUPPORT;
559 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
561 part_get_info_whole_disk(*dev_desc, info);
568 * Now there's known to be a partition table,
569 * not specifying a partition means to pick partition 1.
571 if (part == PART_UNSPECIFIED)
575 * If user didn't specify a partition number, or did specify something
576 * other than "auto", use that partition number directly.
578 if (part != PART_AUTO) {
579 ret = part_get_info(*dev_desc, part, info);
581 printf("** Invalid partition %d **\n", part);
586 * Find the first bootable partition.
587 * If none are bootable, fall back to the first valid partition.
590 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
591 ret = part_get_info(*dev_desc, p, info);
596 * First valid partition, or new better partition?
597 * If so, save partition ID.
599 if (!part || info->bootable)
602 /* Best possible partition? Stop searching. */
607 * We now need to search further for best possible.
608 * If we what we just queried was the best so far,
609 * save the info since we over-write it next loop.
614 /* If we found any acceptable partition */
617 * If we searched all possible partition IDs,
618 * return the first valid partition we found.
620 if (p == MAX_SEARCH_PARTITIONS + 1)
623 printf("** No valid partitions found **\n");
627 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
628 printf("** Invalid partition type \"%.32s\""
629 " (expect \"" BOOT_PART_TYPE "\")\n",
635 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
645 int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
646 struct disk_partition *info, int part_type)
648 struct part_driver *part_drv;
652 part_drv = part_driver_lookup_type(dev_desc);
656 if (!part_drv->get_info) {
657 log_debug("## Driver %s does not have the get_info() method\n",
662 for (i = 1; i < part_drv->max_entries; i++) {
663 ret = part_drv->get_info(dev_desc, i, info);
665 /* no more entries in table */
668 if (strcmp(name, (const char *)info->name) == 0) {
677 int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
678 struct disk_partition *info)
680 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
684 * Get partition info from device number and partition name.
686 * Parse a device number and partition name string in the form of
687 * "devicenum.hwpartnum#partition_name", for example "0.1#misc". devicenum and
688 * hwpartnum are both optional, defaulting to 0. If the partition is found,
689 * sets dev_desc and part_info accordingly with the information of the
690 * partition with the given partition_name.
692 * @param[in] dev_iface Device interface
693 * @param[in] dev_part_str Input string argument, like "0.1#misc"
694 * @param[out] dev_desc Place to store the device description pointer
695 * @param[out] part_info Place to store the partition information
696 * Return: 0 on success, or a negative on error
698 static int part_get_info_by_dev_and_name(const char *dev_iface,
699 const char *dev_part_str,
700 struct blk_desc **dev_desc,
701 struct disk_partition *part_info)
703 char *dup_str = NULL;
704 const char *dev_str, *part_str;
707 /* Separate device and partition name specification */
709 part_str = strchr(dev_part_str, '#');
714 dup_str = strdup(dev_part_str);
715 dup_str[part_str - dev_part_str] = 0;
722 ret = blk_get_device_by_str(dev_iface, dev_str, dev_desc);
726 ret = part_get_info_by_name(*dev_desc, part_str, part_info);
728 printf("Could not find \"%s\" partition\n", part_str);
735 int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
736 const char *dev_part_str,
737 struct blk_desc **dev_desc,
738 struct disk_partition *part_info,
743 /* Split the part_name if passed as "$dev_num#part_name". */
744 ret = part_get_info_by_dev_and_name(dev_iface, dev_part_str,
745 dev_desc, part_info);
749 * Couldn't lookup by name, try looking up the partition description
752 ret = blk_get_device_part_str(dev_iface, dev_part_str,
753 dev_desc, part_info, allow_whole_dev);
755 printf("Couldn't find partition %s %s\n",
756 dev_iface, dev_part_str);
760 void part_set_generic_name(const struct blk_desc *dev_desc,
761 int part_num, char *name)
765 switch (dev_desc->if_type) {
784 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);