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 const struct block_drvr block_drvr[] = {
25 #if defined(CONFIG_CMD_IDE)
26 { .name = "ide", .get_dev = ide_get_dev, },
28 #if defined(CONFIG_CMD_SATA)
29 {.name = "sata", .get_dev = sata_get_dev, },
31 #if defined(CONFIG_CMD_SCSI)
32 { .name = "scsi", .get_dev = scsi_get_dev, },
34 #if defined(CONFIG_CMD_USB) && defined(CONFIG_USB_STORAGE)
35 { .name = "usb", .get_dev = usb_stor_get_dev, },
37 #if defined(CONFIG_MMC)
40 .get_dev = mmc_get_dev,
41 .select_hwpart = mmc_select_hwpart,
44 #if defined(CONFIG_SYSTEMACE)
45 { .name = "ace", .get_dev = systemace_get_dev, },
47 #if defined(CONFIG_SANDBOX)
48 { .name = "host", .get_dev = host_get_dev, },
53 DECLARE_GLOBAL_DATA_PTR;
55 #ifdef HAVE_BLOCK_DEVICE
56 static struct part_driver *part_driver_lookup_type(int part_type)
58 struct part_driver *drv =
59 ll_entry_start(struct part_driver, part_driver);
60 const int n_ents = ll_entry_count(struct part_driver, part_driver);
61 struct part_driver *entry;
63 for (entry = drv; entry != drv + n_ents; entry++) {
64 if (part_type == entry->part_type)
72 static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
74 const struct block_drvr *drvr = block_drvr;
75 struct blk_desc* (*reloc_get_dev)(int dev);
76 int (*select_hwpart)(int dev_num, int hwpart);
84 #ifdef CONFIG_NEEDS_MANUAL_RELOC
85 name += gd->reloc_off;
89 reloc_get_dev = drvr->get_dev;
90 select_hwpart = drvr->select_hwpart;
91 #ifdef CONFIG_NEEDS_MANUAL_RELOC
92 name += gd->reloc_off;
93 reloc_get_dev += gd->reloc_off;
95 select_hwpart += gd->reloc_off;
97 if (strncmp(ifname, name, strlen(name)) == 0) {
98 struct blk_desc *dev_desc = reloc_get_dev(dev);
101 if (hwpart == 0 && !select_hwpart)
105 ret = select_hwpart(dev_desc->devnum, hwpart);
115 struct blk_desc *blk_get_dev(const char *ifname, int dev)
117 return get_dev_hwpart(ifname, dev, 0);
120 struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
125 struct blk_desc *blk_get_dev(const char *ifname, int dev)
131 #ifdef HAVE_BLOCK_DEVICE
133 /* ------------------------------------------------------------------------- */
135 * reports device info to the user
139 typedef uint64_t lba512_t;
141 typedef lbaint_t lba512_t;
145 * Overflowless variant of (block_count * mul_by / div_by)
146 * when div_by > mul_by
148 static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by)
150 lba512_t bc_quot, bc_rem;
152 /* x * m / d == x / d * m + (x % d) * m / d */
153 bc_quot = block_count / div_by;
154 bc_rem = block_count - div_by * bc_quot;
155 return bc_quot * mul_by + (bc_rem * mul_by) / div_by;
158 void dev_print (struct blk_desc *dev_desc)
160 lba512_t lba512; /* number of blocks if 512bytes block size */
162 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
163 puts ("not available\n");
167 switch (dev_desc->if_type) {
169 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
170 dev_desc->target,dev_desc->lun,
178 printf ("Model: %s Firm: %s Ser#: %s\n",
186 printf ("Vendor: %s Rev: %s Prod: %s\n",
192 puts("device type DOC\n");
194 case IF_TYPE_UNKNOWN:
195 puts("device type unknown\n");
198 printf("Unhandled device type: %i\n", dev_desc->if_type);
202 if (dev_desc->removable)
204 switch (dev_desc->type & 0x1F) {
205 case DEV_TYPE_HARDDISK:
211 case DEV_TYPE_OPDISK:
212 puts ("Optical Device");
218 printf ("# %02X #", dev_desc->type & 0x1F);
222 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
223 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
228 lba512 = (lba * (dev_desc->blksz/512));
229 /* round to 1 digit */
230 /* 2048 = (1024 * 1024) / 512 MB */
231 mb = lba512_muldiv(lba512, 10, 2048);
234 mb_rem = mb - (10 * mb_quot);
238 gb_rem = gb - (10 * gb_quot);
241 printf (" Supports 48-bit addressing\n");
243 #if defined(CONFIG_SYS_64BIT_LBA)
244 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%Ld x %ld)\n",
250 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%ld x %ld)\n",
257 puts (" Capacity: not available\n");
262 #ifdef HAVE_BLOCK_DEVICE
264 void part_init(struct blk_desc *dev_desc)
266 struct part_driver *drv =
267 ll_entry_start(struct part_driver, part_driver);
268 const int n_ents = ll_entry_count(struct part_driver, part_driver);
269 struct part_driver *entry;
271 dev_desc->part_type = PART_TYPE_UNKNOWN;
272 for (entry = drv; entry != drv + n_ents; entry++) {
275 ret = entry->test(dev_desc);
276 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
278 dev_desc->part_type = entry->part_type;
284 static void print_part_header(const char *type, struct blk_desc *dev_desc)
286 #if defined(CONFIG_MAC_PARTITION) || \
287 defined(CONFIG_DOS_PARTITION) || \
288 defined(CONFIG_ISO_PARTITION) || \
289 defined(CONFIG_AMIGA_PARTITION) || \
290 defined(CONFIG_EFI_PARTITION)
291 puts ("\nPartition Map for ");
292 switch (dev_desc->if_type) {
321 printf (" device %d -- Partition Type: %s\n\n",
322 dev_desc->devnum, type);
323 #endif /* any CONFIG_..._PARTITION */
326 void part_print(struct blk_desc *dev_desc)
328 struct part_driver *drv;
330 drv = part_driver_lookup_type(dev_desc->part_type);
332 printf("## Unknown partition table type %x\n",
333 dev_desc->part_type);
337 PRINTF("## Testing for valid %s partition ##\n", drv->name);
338 print_part_header(drv->name, dev_desc);
340 drv->print(dev_desc);
343 #endif /* HAVE_BLOCK_DEVICE */
345 int part_get_info(struct blk_desc *dev_desc, int part,
346 disk_partition_t *info)
348 #ifdef HAVE_BLOCK_DEVICE
349 struct part_driver *drv;
351 #ifdef CONFIG_PARTITION_UUIDS
352 /* The common case is no UUID support */
355 #ifdef CONFIG_PARTITION_TYPE_GUID
356 info->type_guid[0] = 0;
359 drv = part_driver_lookup_type(dev_desc->part_type);
361 debug("## Unknown partition table type %x\n",
362 dev_desc->part_type);
363 return -EPROTONOSUPPORT;
365 if (!drv->get_info) {
366 PRINTF("## Driver %s does not have the get_info() method\n");
369 if (drv->get_info(dev_desc, part, info) == 0) {
370 PRINTF("## Valid %s partition found ##\n", drv->name);
373 #endif /* HAVE_BLOCK_DEVICE */
378 int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
379 struct blk_desc **dev_desc)
382 char *dup_str = NULL;
383 const char *dev_str, *hwpart_str;
386 hwpart_str = strchr(dev_hwpart_str, '.');
388 dup_str = strdup(dev_hwpart_str);
389 dup_str[hwpart_str - dev_hwpart_str] = 0;
393 dev_str = dev_hwpart_str;
397 dev = simple_strtoul(dev_str, &ep, 16);
399 printf("** Bad device specification %s %s **\n",
406 hwpart = simple_strtoul(hwpart_str, &ep, 16);
408 printf("** Bad HW partition specification %s %s **\n",
415 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
416 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
417 printf("** Bad device %s %s **\n", ifname, dev_hwpart_str);
422 #ifdef HAVE_BLOCK_DEVICE
424 * Updates the partition table for the specified hw partition.
425 * Does not need to be done for hwpart 0 since it is default and
429 part_init(*dev_desc);
437 #define PART_UNSPECIFIED -2
439 #define MAX_SEARCH_PARTITIONS 16
440 int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
441 struct blk_desc **dev_desc,
442 disk_partition_t *info, int allow_whole_dev)
445 const char *part_str;
446 char *dup_str = NULL;
452 disk_partition_t tmpinfo;
454 #ifdef CONFIG_SANDBOX
456 * Special-case a pseudo block device "hostfs", to allow access to the
457 * host's own filesystem.
459 if (0 == strcmp(ifname, "hostfs")) {
465 strcpy((char *)info->type, BOOT_PART_TYPE);
466 strcpy((char *)info->name, "Sandbox host");
467 #ifdef CONFIG_PARTITION_UUIDS
470 #ifdef CONFIG_PARTITION_TYPE_GUID
471 info->type_guid[0] = 0;
478 #ifdef CONFIG_CMD_UBIFS
480 * Special-case ubi, ubi goes through a mtd, rathen then through
481 * a regular block device.
483 if (0 == strcmp(ifname, "ubi")) {
484 if (!ubifs_is_mounted()) {
485 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
490 memset(info, 0, sizeof(*info));
491 strcpy((char *)info->type, BOOT_PART_TYPE);
492 strcpy((char *)info->name, "UBI");
493 #ifdef CONFIG_PARTITION_UUIDS
500 /* If no dev_part_str, use bootdevice environment variable */
501 if (!dev_part_str || !strlen(dev_part_str) ||
502 !strcmp(dev_part_str, "-"))
503 dev_part_str = getenv("bootdevice");
505 /* If still no dev_part_str, it's an error */
507 printf("** No device specified **\n");
511 /* Separate device and partition ID specification */
512 part_str = strchr(dev_part_str, ':');
514 dup_str = strdup(dev_part_str);
515 dup_str[part_str - dev_part_str] = 0;
519 dev_str = dev_part_str;
522 /* Look up the device */
523 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
527 /* Convert partition ID string to number */
528 if (!part_str || !*part_str) {
529 part = PART_UNSPECIFIED;
530 } else if (!strcmp(part_str, "auto")) {
533 /* Something specified -> use exactly that */
534 part = (int)simple_strtoul(part_str, &ep, 16);
536 * Less than whole string converted,
537 * or request for whole device, but caller requires partition.
539 if (*ep || (part == 0 && !allow_whole_dev)) {
540 printf("** Bad partition specification %s %s **\n",
541 ifname, dev_part_str);
547 * No partition table on device,
548 * or user requested partition 0 (entire device).
550 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
552 if (!(*dev_desc)->lba) {
553 printf("** Bad device size - %s %s **\n", ifname,
559 * If user specified a partition ID other than 0,
560 * or the calling command only accepts partitions,
563 if ((part > 0) || (!allow_whole_dev)) {
564 printf("** No partition table - %s %s **\n", ifname,
569 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
572 info->size = (*dev_desc)->lba;
573 info->blksz = (*dev_desc)->blksz;
575 strcpy((char *)info->type, BOOT_PART_TYPE);
576 strcpy((char *)info->name, "Whole Disk");
577 #ifdef CONFIG_PARTITION_UUIDS
580 #ifdef CONFIG_PARTITION_TYPE_GUID
581 info->type_guid[0] = 0;
589 * Now there's known to be a partition table,
590 * not specifying a partition means to pick partition 1.
592 if (part == PART_UNSPECIFIED)
596 * If user didn't specify a partition number, or did specify something
597 * other than "auto", use that partition number directly.
599 if (part != PART_AUTO) {
600 ret = part_get_info(*dev_desc, part, info);
602 printf("** Invalid partition %d **\n", part);
607 * Find the first bootable partition.
608 * If none are bootable, fall back to the first valid partition.
611 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
612 ret = part_get_info(*dev_desc, p, info);
617 * First valid partition, or new better partition?
618 * If so, save partition ID.
620 if (!part || info->bootable)
623 /* Best possible partition? Stop searching. */
628 * We now need to search further for best possible.
629 * If we what we just queried was the best so far,
630 * save the info since we over-write it next loop.
635 /* If we found any acceptable partition */
638 * If we searched all possible partition IDs,
639 * return the first valid partition we found.
641 if (p == MAX_SEARCH_PARTITIONS + 1)
644 printf("** No valid partitions found **\n");
649 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
650 printf("** Invalid partition type \"%.32s\""
651 " (expect \"" BOOT_PART_TYPE "\")\n",
657 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);