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 static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
29 struct part_driver *drv =
30 ll_entry_start(struct part_driver, part_driver);
31 const int n_ents = ll_entry_count(struct part_driver, part_driver);
32 struct part_driver *entry;
34 if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
35 for (entry = drv; entry != drv + n_ents; entry++) {
38 ret = entry->test(dev_desc);
40 dev_desc->part_type = entry->part_type;
45 for (entry = drv; entry != drv + n_ents; entry++) {
46 if (dev_desc->part_type == entry->part_type)
55 #ifdef CONFIG_HAVE_BLOCK_DEVICE
56 static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
58 struct blk_desc *dev_desc;
61 dev_desc = blk_get_devnum_by_typename(ifname, dev);
63 debug("%s: No device for iface '%s', dev %d\n", __func__,
67 ret = blk_dselect_hwpart(dev_desc, hwpart);
69 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
77 struct blk_desc *blk_get_dev(const char *ifname, int dev)
79 return get_dev_hwpart(ifname, dev, 0);
82 struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
87 struct blk_desc *blk_get_dev(const char *ifname, int dev)
93 #ifdef CONFIG_HAVE_BLOCK_DEVICE
95 /* ------------------------------------------------------------------------- */
97 * reports device info to the user
101 typedef uint64_t lba512_t;
103 typedef lbaint_t lba512_t;
107 * Overflowless variant of (block_count * mul_by / div_by)
108 * when div_by > mul_by
110 static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by)
112 lba512_t bc_quot, bc_rem;
114 /* x * m / d == x / d * m + (x % d) * m / d */
115 bc_quot = block_count / div_by;
116 bc_rem = block_count - div_by * bc_quot;
117 return bc_quot * mul_by + (bc_rem * mul_by) / div_by;
120 void dev_print (struct blk_desc *dev_desc)
122 lba512_t lba512; /* number of blocks if 512bytes block size */
124 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
125 puts ("not available\n");
129 switch (dev_desc->if_type) {
131 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
132 dev_desc->target,dev_desc->lun,
140 printf ("Model: %s Firm: %s Ser#: %s\n",
149 printf ("Vendor: %s Rev: %s Prod: %s\n",
155 puts("device type DOC\n");
157 case IF_TYPE_UNKNOWN:
158 puts("device type unknown\n");
161 printf("Unhandled device type: %i\n", dev_desc->if_type);
165 if (dev_desc->removable)
167 switch (dev_desc->type & 0x1F) {
168 case DEV_TYPE_HARDDISK:
174 case DEV_TYPE_OPDISK:
175 puts ("Optical Device");
181 printf ("# %02X #", dev_desc->type & 0x1F);
185 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
186 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
191 lba512 = (lba * (dev_desc->blksz/512));
192 /* round to 1 digit */
193 /* 2048 = (1024 * 1024) / 512 MB */
194 mb = lba512_muldiv(lba512, 10, 2048);
197 mb_rem = mb - (10 * mb_quot);
201 gb_rem = gb - (10 * gb_quot);
204 printf (" Supports 48-bit addressing\n");
206 #if defined(CONFIG_SYS_64BIT_LBA)
207 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
213 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
220 puts (" Capacity: not available\n");
225 #ifdef CONFIG_HAVE_BLOCK_DEVICE
227 void part_init(struct blk_desc *dev_desc)
229 struct part_driver *drv =
230 ll_entry_start(struct part_driver, part_driver);
231 const int n_ents = ll_entry_count(struct part_driver, part_driver);
232 struct part_driver *entry;
234 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
236 dev_desc->part_type = PART_TYPE_UNKNOWN;
237 for (entry = drv; entry != drv + n_ents; entry++) {
240 ret = entry->test(dev_desc);
241 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
243 dev_desc->part_type = entry->part_type;
249 static void print_part_header(const char *type, struct blk_desc *dev_desc)
251 #if CONFIG_IS_ENABLED(MAC_PARTITION) || \
252 CONFIG_IS_ENABLED(DOS_PARTITION) || \
253 CONFIG_IS_ENABLED(ISO_PARTITION) || \
254 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
255 CONFIG_IS_ENABLED(EFI_PARTITION)
256 puts ("\nPartition Map for ");
257 switch (dev_desc->if_type) {
289 printf (" device %d -- Partition Type: %s\n\n",
290 dev_desc->devnum, type);
291 #endif /* any CONFIG_..._PARTITION */
294 void part_print(struct blk_desc *dev_desc)
296 struct part_driver *drv;
298 drv = part_driver_lookup_type(dev_desc);
300 printf("## Unknown partition table type %x\n",
301 dev_desc->part_type);
305 PRINTF("## Testing for valid %s partition ##\n", drv->name);
306 print_part_header(drv->name, dev_desc);
308 drv->print(dev_desc);
311 #endif /* CONFIG_HAVE_BLOCK_DEVICE */
313 int part_get_info(struct blk_desc *dev_desc, int part,
314 disk_partition_t *info)
316 #ifdef CONFIG_HAVE_BLOCK_DEVICE
317 struct part_driver *drv;
319 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
320 /* The common case is no UUID support */
323 #ifdef CONFIG_PARTITION_TYPE_GUID
324 info->type_guid[0] = 0;
327 drv = part_driver_lookup_type(dev_desc);
329 debug("## Unknown partition table type %x\n",
330 dev_desc->part_type);
331 return -EPROTONOSUPPORT;
333 if (!drv->get_info) {
334 PRINTF("## Driver %s does not have the get_info() method\n",
338 if (drv->get_info(dev_desc, part, info) == 0) {
339 PRINTF("## Valid %s partition found ##\n", drv->name);
342 #endif /* CONFIG_HAVE_BLOCK_DEVICE */
347 int part_get_info_whole_disk(struct blk_desc *dev_desc, disk_partition_t *info)
350 info->size = dev_desc->lba;
351 info->blksz = dev_desc->blksz;
353 strcpy((char *)info->type, BOOT_PART_TYPE);
354 strcpy((char *)info->name, "Whole Disk");
355 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
358 #ifdef CONFIG_PARTITION_TYPE_GUID
359 info->type_guid[0] = 0;
365 int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
366 struct blk_desc **dev_desc)
369 char *dup_str = NULL;
370 const char *dev_str, *hwpart_str;
373 hwpart_str = strchr(dev_hwpart_str, '.');
375 dup_str = strdup(dev_hwpart_str);
376 dup_str[hwpart_str - dev_hwpart_str] = 0;
380 dev_str = dev_hwpart_str;
384 dev = simple_strtoul(dev_str, &ep, 16);
386 printf("** Bad device specification %s %s **\n",
393 hwpart = simple_strtoul(hwpart_str, &ep, 16);
395 printf("** Bad HW partition specification %s %s **\n",
402 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
403 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
404 printf("** Bad device %s %s **\n", ifname, dev_hwpart_str);
409 #ifdef CONFIG_HAVE_BLOCK_DEVICE
411 * Updates the partition table for the specified hw partition.
412 * Does not need to be done for hwpart 0 since it is default and
416 part_init(*dev_desc);
424 #define PART_UNSPECIFIED -2
426 int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
427 struct blk_desc **dev_desc,
428 disk_partition_t *info, int allow_whole_dev)
431 const char *part_str;
432 char *dup_str = NULL;
438 disk_partition_t tmpinfo;
440 #ifdef CONFIG_SANDBOX
442 * Special-case a pseudo block device "hostfs", to allow access to the
443 * host's own filesystem.
445 if (0 == strcmp(ifname, "hostfs")) {
451 strcpy((char *)info->type, BOOT_PART_TYPE);
452 strcpy((char *)info->name, "Sandbox host");
453 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
456 #ifdef CONFIG_PARTITION_TYPE_GUID
457 info->type_guid[0] = 0;
464 #ifdef CONFIG_CMD_UBIFS
466 * Special-case ubi, ubi goes through a mtd, rathen then through
467 * a regular block device.
469 if (0 == strcmp(ifname, "ubi")) {
470 if (!ubifs_is_mounted()) {
471 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
476 memset(info, 0, sizeof(*info));
477 strcpy((char *)info->type, BOOT_PART_TYPE);
478 strcpy((char *)info->name, "UBI");
479 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
486 /* If no dev_part_str, use bootdevice environment variable */
487 if (!dev_part_str || !strlen(dev_part_str) ||
488 !strcmp(dev_part_str, "-"))
489 dev_part_str = env_get("bootdevice");
491 /* If still no dev_part_str, it's an error */
493 printf("** No device specified **\n");
497 /* Separate device and partition ID specification */
498 part_str = strchr(dev_part_str, ':');
500 dup_str = strdup(dev_part_str);
501 dup_str[part_str - dev_part_str] = 0;
505 dev_str = dev_part_str;
508 /* Look up the device */
509 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
513 /* Convert partition ID string to number */
514 if (!part_str || !*part_str) {
515 part = PART_UNSPECIFIED;
516 } else if (!strcmp(part_str, "auto")) {
519 /* Something specified -> use exactly that */
520 part = (int)simple_strtoul(part_str, &ep, 16);
522 * Less than whole string converted,
523 * or request for whole device, but caller requires partition.
525 if (*ep || (part == 0 && !allow_whole_dev)) {
526 printf("** Bad partition specification %s %s **\n",
527 ifname, dev_part_str);
533 * No partition table on device,
534 * or user requested partition 0 (entire device).
536 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
538 if (!(*dev_desc)->lba) {
539 printf("** Bad device size - %s %s **\n", ifname,
545 * If user specified a partition ID other than 0,
546 * or the calling command only accepts partitions,
549 if ((part > 0) || (!allow_whole_dev)) {
550 printf("** No partition table - %s %s **\n", ifname,
555 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
557 part_get_info_whole_disk(*dev_desc, info);
564 * Now there's known to be a partition table,
565 * not specifying a partition means to pick partition 1.
567 if (part == PART_UNSPECIFIED)
571 * If user didn't specify a partition number, or did specify something
572 * other than "auto", use that partition number directly.
574 if (part != PART_AUTO) {
575 ret = part_get_info(*dev_desc, part, info);
577 printf("** Invalid partition %d **\n", part);
582 * Find the first bootable partition.
583 * If none are bootable, fall back to the first valid partition.
586 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
587 ret = part_get_info(*dev_desc, p, info);
592 * First valid partition, or new better partition?
593 * If so, save partition ID.
595 if (!part || info->bootable)
598 /* Best possible partition? Stop searching. */
603 * We now need to search further for best possible.
604 * If we what we just queried was the best so far,
605 * save the info since we over-write it next loop.
610 /* If we found any acceptable partition */
613 * If we searched all possible partition IDs,
614 * return the first valid partition we found.
616 if (p == MAX_SEARCH_PARTITIONS + 1)
619 printf("** No valid partitions found **\n");
624 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
625 printf("** Invalid partition type \"%.32s\""
626 " (expect \"" BOOT_PART_TYPE "\")\n",
632 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
642 int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
643 disk_partition_t *info, int part_type)
645 struct part_driver *part_drv;
649 part_drv = part_driver_lookup_type(dev_desc);
652 for (i = 1; i < part_drv->max_entries; i++) {
653 ret = part_drv->get_info(dev_desc, i, info);
655 /* no more entries in table */
658 if (strcmp(name, (const char *)info->name) == 0) {
667 int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
668 disk_partition_t *info)
670 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
673 void part_set_generic_name(const struct blk_desc *dev_desc,
674 int part_num, char *name)
678 switch (dev_desc->if_type) {
702 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);