1 // SPDX-License-Identifier: GPL-2.0+
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_uclass_idname(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->uclass_id) {
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->uclass_id);
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->uclass_id, 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->uclass_id) {
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)->uclass_id == 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;
437 memset(info, 0, sizeof(*info));
439 #if IS_ENABLED(CONFIG_SANDBOX) || IS_ENABLED(CONFIG_SEMIHOSTING)
441 * Special-case a pseudo block device "hostfs", to allow access to the
442 * host's own filesystem.
444 if (!strcmp(ifname, "hostfs")) {
445 strcpy((char *)info->type, BOOT_PART_TYPE);
446 strcpy((char *)info->name, "Host filesystem");
452 #if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_SPL_BUILD)
454 * Special-case ubi, ubi goes through a mtd, rather than through
455 * a regular block device.
457 if (!strcmp(ifname, "ubi")) {
458 if (!ubifs_is_mounted()) {
459 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
463 strcpy((char *)info->type, BOOT_PART_TYPE);
464 strcpy((char *)info->name, "UBI");
469 /* If no dev_part_str, use bootdevice environment variable */
470 if (!dev_part_str || !strlen(dev_part_str) ||
471 !strcmp(dev_part_str, "-"))
472 dev_part_str = env_get("bootdevice");
474 /* If still no dev_part_str, it's an error */
476 printf("** No device specified **\n");
481 /* Separate device and partition ID specification */
482 part_str = strchr(dev_part_str, ':');
484 dup_str = strdup(dev_part_str);
485 dup_str[part_str - dev_part_str] = 0;
489 dev_str = dev_part_str;
492 /* Look up the device */
493 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
495 printf("** Bad device specification %s %s **\n",
501 /* Convert partition ID string to number */
502 if (!part_str || !*part_str) {
503 part = PART_UNSPECIFIED;
504 } else if (!strcmp(part_str, "auto")) {
507 /* Something specified -> use exactly that */
508 part = (int)hextoul(part_str, &ep);
510 * Less than whole string converted,
511 * or request for whole device, but caller requires partition.
513 if (*ep || (part == 0 && !allow_whole_dev)) {
514 printf("** Bad partition specification %s %s **\n",
515 ifname, dev_part_str);
522 * No partition table on device,
523 * or user requested partition 0 (entire device).
525 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
527 if (!(*dev_desc)->lba) {
528 printf("** Bad device size - %s %s **\n", ifname,
535 * If user specified a partition ID other than 0,
536 * or the calling command only accepts partitions,
539 if ((part > 0) || (!allow_whole_dev)) {
540 printf("** No partition table - %s %s **\n", ifname,
542 ret = -EPROTONOSUPPORT;
546 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
548 part_get_info_whole_disk(*dev_desc, info);
555 * Now there's known to be a partition table,
556 * not specifying a partition means to pick partition 1.
558 if (part == PART_UNSPECIFIED)
562 * If user didn't specify a partition number, or did specify something
563 * other than "auto", use that partition number directly.
565 if (part != PART_AUTO) {
566 ret = part_get_info(*dev_desc, part, info);
568 printf("** Invalid partition %d **\n", part);
573 * Find the first bootable partition.
574 * If none are bootable, fall back to the first valid partition.
577 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
578 ret = part_get_info(*dev_desc, p, info);
583 * First valid partition, or new better partition?
584 * If so, save partition ID.
586 if (!part || info->bootable)
589 /* Best possible partition? Stop searching. */
594 * We now need to search further for best possible.
595 * If we what we just queried was the best so far,
596 * save the info since we over-write it next loop.
601 /* If we found any acceptable partition */
604 * If we searched all possible partition IDs,
605 * return the first valid partition we found.
607 if (p == MAX_SEARCH_PARTITIONS + 1)
610 printf("** No valid partitions found **\n");
614 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
615 printf("** Invalid partition type \"%.32s\""
616 " (expect \"" BOOT_PART_TYPE "\")\n",
622 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
632 int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
633 struct disk_partition *info, int part_type)
635 struct part_driver *part_drv;
639 part_drv = part_driver_lookup_type(dev_desc);
643 if (!part_drv->get_info) {
644 log_debug("## Driver %s does not have the get_info() method\n",
649 for (i = 1; i < part_drv->max_entries; i++) {
650 ret = part_drv->get_info(dev_desc, i, info);
652 /* no more entries in table */
655 if (strcmp(name, (const char *)info->name) == 0) {
664 int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
665 struct disk_partition *info)
667 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
671 * Get partition info from device number and partition name.
673 * Parse a device number and partition name string in the form of
674 * "devicenum.hwpartnum#partition_name", for example "0.1#misc". devicenum and
675 * hwpartnum are both optional, defaulting to 0. If the partition is found,
676 * sets dev_desc and part_info accordingly with the information of the
677 * partition with the given partition_name.
679 * @param[in] dev_iface Device interface
680 * @param[in] dev_part_str Input string argument, like "0.1#misc"
681 * @param[out] dev_desc Place to store the device description pointer
682 * @param[out] part_info Place to store the partition information
683 * Return: 0 on success, or a negative on error
685 static int part_get_info_by_dev_and_name(const char *dev_iface,
686 const char *dev_part_str,
687 struct blk_desc **dev_desc,
688 struct disk_partition *part_info)
690 char *dup_str = NULL;
691 const char *dev_str, *part_str;
694 /* Separate device and partition name specification */
696 part_str = strchr(dev_part_str, '#');
701 dup_str = strdup(dev_part_str);
702 dup_str[part_str - dev_part_str] = 0;
709 ret = blk_get_device_by_str(dev_iface, dev_str, dev_desc);
713 ret = part_get_info_by_name(*dev_desc, part_str, part_info);
715 printf("Could not find \"%s\" partition\n", part_str);
722 int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
723 const char *dev_part_str,
724 struct blk_desc **dev_desc,
725 struct disk_partition *part_info,
730 /* Split the part_name if passed as "$dev_num#part_name". */
731 ret = part_get_info_by_dev_and_name(dev_iface, dev_part_str,
732 dev_desc, part_info);
736 * Couldn't lookup by name, try looking up the partition description
739 ret = blk_get_device_part_str(dev_iface, dev_part_str,
740 dev_desc, part_info, allow_whole_dev);
742 printf("Couldn't find partition %s %s\n",
743 dev_iface, dev_part_str);
747 void part_set_generic_name(const struct blk_desc *dev_desc,
748 int part_num, char *name)
752 switch (dev_desc->uclass_id) {
771 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
774 int part_get_bootable(struct blk_desc *desc)
776 struct disk_partition info;
779 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
782 ret = part_get_info(desc, p, &info);
783 if (!ret && info.bootable)