]> git.ipfire.org Git - thirdparty/u-boot.git/blob - disk/part.c
part: Add accessors for struct disk_partition uuid
[thirdparty/u-boot.git] / disk / part.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2001
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 */
6
7 #include <common.h>
8 #include <blk.h>
9 #include <command.h>
10 #include <env.h>
11 #include <errno.h>
12 #include <ide.h>
13 #include <log.h>
14 #include <malloc.h>
15 #include <part.h>
16 #include <ubifs_uboot.h>
17
18 #undef PART_DEBUG
19
20 #ifdef PART_DEBUG
21 #define PRINTF(fmt,args...) printf (fmt ,##args)
22 #else
23 #define PRINTF(fmt,args...)
24 #endif
25
26 /* Check all partition types */
27 #define PART_TYPE_ALL -1
28
29 /**
30 * part_driver_get_type() - Get a driver given its type
31 *
32 * @part_type: Partition type to find the driver for
33 * Return: Driver for that type, or NULL if none
34 */
35 static struct part_driver *part_driver_get_type(int part_type)
36 {
37 struct part_driver *drv =
38 ll_entry_start(struct part_driver, part_driver);
39 const int n_ents = ll_entry_count(struct part_driver, part_driver);
40 struct part_driver *entry;
41
42 for (entry = drv; entry != drv + n_ents; entry++) {
43 if (part_type == entry->part_type)
44 return entry;
45 }
46
47 /* Not found */
48 return NULL;
49 }
50
51 /**
52 * part_driver_lookup_type() - Look up the partition driver for a blk device
53 *
54 * If @desc->part_type is PART_TYPE_UNKNOWN, this checks each parition driver
55 * against the blk device to see if there is a valid partition table acceptable
56 * to that driver.
57 *
58 * If @desc->part_type is already set, it just returns the driver for that
59 * type, without testing if the driver can find a valid partition on the
60 * descriptor.
61 *
62 * On success it updates @desc->part_type if set to PART_TYPE_UNKNOWN on entry
63 *
64 * @dev_desc: Device descriptor
65 * Return: Driver found, or NULL if none
66 */
67 static struct part_driver *part_driver_lookup_type(struct blk_desc *desc)
68 {
69 struct part_driver *drv =
70 ll_entry_start(struct part_driver, part_driver);
71 const int n_ents = ll_entry_count(struct part_driver, part_driver);
72 struct part_driver *entry;
73
74 if (desc->part_type == PART_TYPE_UNKNOWN) {
75 for (entry = drv; entry != drv + n_ents; entry++) {
76 int ret;
77
78 ret = entry->test(desc);
79 if (!ret) {
80 desc->part_type = entry->part_type;
81 return entry;
82 }
83 }
84 } else {
85 return part_driver_get_type(desc->part_type);
86 }
87
88 /* Not found */
89 return NULL;
90 }
91
92 int part_get_type_by_name(const char *name)
93 {
94 struct part_driver *drv =
95 ll_entry_start(struct part_driver, part_driver);
96 const int n_ents = ll_entry_count(struct part_driver, part_driver);
97 struct part_driver *entry;
98
99 for (entry = drv; entry != drv + n_ents; entry++) {
100 if (!strcasecmp(name, entry->name))
101 return entry->part_type;
102 }
103
104 /* Not found */
105 return PART_TYPE_UNKNOWN;
106 }
107
108 /**
109 * get_dev_hwpart() - Get the descriptor for a device with hardware partitions
110 *
111 * @ifname: Interface name (e.g. "ide", "scsi")
112 * @dev: Device number (0 for first device on that interface, 1 for
113 * second, etc.
114 * @hwpart: Hardware partition, or 0 if none (used for MMC)
115 * Return: pointer to the block device, or NULL if not available, or an
116 * error occurred.
117 */
118 static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
119 {
120 struct blk_desc *desc;
121 int ret;
122
123 if (!blk_enabled())
124 return NULL;
125 desc = blk_get_devnum_by_uclass_idname(ifname, dev);
126 if (!desc) {
127 debug("%s: No device for iface '%s', dev %d\n", __func__,
128 ifname, dev);
129 return NULL;
130 }
131 ret = blk_dselect_hwpart(desc, hwpart);
132 if (ret) {
133 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
134 ret);
135 return NULL;
136 }
137
138 return desc;
139 }
140
141 struct blk_desc *blk_get_dev(const char *ifname, int dev)
142 {
143 if (!blk_enabled())
144 return NULL;
145
146 return get_dev_hwpart(ifname, dev, 0);
147 }
148
149 /* ------------------------------------------------------------------------- */
150 /*
151 * reports device info to the user
152 */
153
154 #ifdef CONFIG_LBA48
155 typedef uint64_t lba512_t;
156 #else
157 typedef lbaint_t lba512_t;
158 #endif
159
160 /*
161 * Overflowless variant of (block_count * mul_by / 2**right_shift)
162 * when 2**right_shift > mul_by
163 */
164 static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by,
165 int right_shift)
166 {
167 lba512_t bc_quot, bc_rem;
168
169 /* x * m / d == x / d * m + (x % d) * m / d */
170 bc_quot = block_count >> right_shift;
171 bc_rem = block_count - (bc_quot << right_shift);
172 return bc_quot * mul_by + ((bc_rem * mul_by) >> right_shift);
173 }
174
175 void dev_print(struct blk_desc *desc)
176 {
177 lba512_t lba512; /* number of blocks if 512bytes block size */
178
179 if (desc->type == DEV_TYPE_UNKNOWN) {
180 puts ("not available\n");
181 return;
182 }
183
184 switch (desc->uclass_id) {
185 case UCLASS_SCSI:
186 printf("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n", desc->target,
187 desc->lun, desc->vendor, desc->product, desc->revision);
188 break;
189 case UCLASS_IDE:
190 case UCLASS_AHCI:
191 printf("Model: %s Firm: %s Ser#: %s\n", desc->vendor,
192 desc->revision, desc->product);
193 break;
194 case UCLASS_MMC:
195 case UCLASS_USB:
196 case UCLASS_NVME:
197 case UCLASS_PVBLOCK:
198 case UCLASS_HOST:
199 case UCLASS_BLKMAP:
200 printf ("Vendor: %s Rev: %s Prod: %s\n",
201 desc->vendor,
202 desc->revision,
203 desc->product);
204 break;
205 case UCLASS_VIRTIO:
206 printf("%s VirtIO Block Device\n", desc->vendor);
207 break;
208 case UCLASS_EFI_MEDIA:
209 printf("EFI media Block Device %d\n", desc->devnum);
210 break;
211 case UCLASS_INVALID:
212 puts("device type unknown\n");
213 return;
214 default:
215 printf("Unhandled device type: %i\n", desc->uclass_id);
216 return;
217 }
218 puts (" Type: ");
219 if (desc->removable)
220 puts ("Removable ");
221 switch (desc->type & 0x1F) {
222 case DEV_TYPE_HARDDISK:
223 puts ("Hard Disk");
224 break;
225 case DEV_TYPE_CDROM:
226 puts ("CD ROM");
227 break;
228 case DEV_TYPE_OPDISK:
229 puts ("Optical Device");
230 break;
231 case DEV_TYPE_TAPE:
232 puts ("Tape");
233 break;
234 default:
235 printf("# %02X #", desc->type & 0x1F);
236 break;
237 }
238 puts ("\n");
239 if (desc->lba > 0L && desc->blksz > 0L) {
240 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
241 lbaint_t lba;
242
243 lba = desc->lba;
244
245 lba512 = lba * (desc->blksz / 512);
246 /* round to 1 digit */
247 /* 2048 = (1024 * 1024) / 512 MB */
248 mb = lba512_muldiv(lba512, 10, 11);
249
250 mb_quot = mb / 10;
251 mb_rem = mb - (10 * mb_quot);
252
253 gb = mb / 1024;
254 gb_quot = gb / 10;
255 gb_rem = gb - (10 * gb_quot);
256 #ifdef CONFIG_LBA48
257 if (desc->lba48)
258 printf (" Supports 48-bit addressing\n");
259 #endif
260 #if defined(CONFIG_SYS_64BIT_LBA)
261 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
262 mb_quot, mb_rem,
263 gb_quot, gb_rem,
264 lba,
265 desc->blksz);
266 #else
267 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
268 mb_quot, mb_rem,
269 gb_quot, gb_rem,
270 (ulong)lba,
271 desc->blksz);
272 #endif
273 } else {
274 puts (" Capacity: not available\n");
275 }
276 }
277
278 void part_init(struct blk_desc *desc)
279 {
280 struct part_driver *drv =
281 ll_entry_start(struct part_driver, part_driver);
282 const int n_ents = ll_entry_count(struct part_driver, part_driver);
283 struct part_driver *entry;
284
285 blkcache_invalidate(desc->uclass_id, desc->devnum);
286
287 desc->part_type = PART_TYPE_UNKNOWN;
288 for (entry = drv; entry != drv + n_ents; entry++) {
289 int ret;
290
291 ret = entry->test(desc);
292 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
293 if (!ret) {
294 desc->part_type = entry->part_type;
295 break;
296 }
297 }
298 }
299
300 static void print_part_header(const char *type, struct blk_desc *desc)
301 {
302 #if CONFIG_IS_ENABLED(MAC_PARTITION) || \
303 CONFIG_IS_ENABLED(DOS_PARTITION) || \
304 CONFIG_IS_ENABLED(ISO_PARTITION) || \
305 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
306 CONFIG_IS_ENABLED(EFI_PARTITION)
307 puts ("\nPartition Map for ");
308 switch (desc->uclass_id) {
309 case UCLASS_IDE:
310 puts ("IDE");
311 break;
312 case UCLASS_AHCI:
313 puts ("SATA");
314 break;
315 case UCLASS_SCSI:
316 puts ("SCSI");
317 break;
318 case UCLASS_USB:
319 puts ("USB");
320 break;
321 case UCLASS_MMC:
322 puts ("MMC");
323 break;
324 case UCLASS_HOST:
325 puts ("HOST");
326 break;
327 case UCLASS_NVME:
328 puts ("NVMe");
329 break;
330 case UCLASS_PVBLOCK:
331 puts("PV BLOCK");
332 break;
333 case UCLASS_VIRTIO:
334 puts("VirtIO");
335 break;
336 case UCLASS_EFI_MEDIA:
337 puts("EFI");
338 break;
339 default:
340 puts("UNKNOWN");
341 break;
342 }
343 printf (" device %d -- Partition Type: %s\n\n",
344 desc->devnum, type);
345 #endif /* any CONFIG_..._PARTITION */
346 }
347
348 void part_print(struct blk_desc *desc)
349 {
350 struct part_driver *drv;
351
352 drv = part_driver_lookup_type(desc);
353 if (!drv) {
354 printf("## Unknown partition table type %x\n",
355 desc->part_type);
356 return;
357 }
358
359 PRINTF("## Testing for valid %s partition ##\n", drv->name);
360 print_part_header(drv->name, desc);
361 if (drv->print)
362 drv->print(desc);
363 }
364
365 int part_get_info_by_type(struct blk_desc *desc, int part, int part_type,
366 struct disk_partition *info)
367 {
368 struct part_driver *drv;
369
370 if (blk_enabled()) {
371 /* The common case is no UUID support */
372 disk_partition_clr_uuid(info);
373 #ifdef CONFIG_PARTITION_TYPE_GUID
374 info->type_guid[0] = 0;
375 #endif
376
377 if (part_type == PART_TYPE_UNKNOWN) {
378 drv = part_driver_lookup_type(desc);
379 } else {
380 drv = part_driver_get_type(part_type);
381 }
382
383 if (!drv) {
384 debug("## Unknown partition table type %x\n",
385 desc->part_type);
386 return -EPROTONOSUPPORT;
387 }
388 if (!drv->get_info) {
389 PRINTF("## Driver %s does not have the get_info() method\n",
390 drv->name);
391 return -ENOSYS;
392 }
393 if (drv->get_info(desc, part, info) == 0) {
394 PRINTF("## Valid %s partition found ##\n", drv->name);
395 return 0;
396 }
397 }
398
399 return -ENOENT;
400 }
401
402 int part_get_info(struct blk_desc *desc, int part,
403 struct disk_partition *info)
404 {
405 return part_get_info_by_type(desc, part, PART_TYPE_UNKNOWN, info);
406 }
407
408 int part_get_info_whole_disk(struct blk_desc *desc,
409 struct disk_partition *info)
410 {
411 info->start = 0;
412 info->size = desc->lba;
413 info->blksz = desc->blksz;
414 info->bootable = 0;
415 strcpy((char *)info->type, BOOT_PART_TYPE);
416 strcpy((char *)info->name, "Whole Disk");
417 disk_partition_clr_uuid(info);
418 #ifdef CONFIG_PARTITION_TYPE_GUID
419 info->type_guid[0] = 0;
420 #endif
421
422 return 0;
423 }
424
425 int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
426 struct blk_desc **desc)
427 {
428 char *ep;
429 char *dup_str = NULL;
430 const char *dev_str, *hwpart_str;
431 int dev, hwpart;
432
433 hwpart_str = strchr(dev_hwpart_str, '.');
434 if (hwpart_str) {
435 dup_str = strdup(dev_hwpart_str);
436 dup_str[hwpart_str - dev_hwpart_str] = 0;
437 dev_str = dup_str;
438 hwpart_str++;
439 } else {
440 dev_str = dev_hwpart_str;
441 hwpart = 0;
442 }
443
444 dev = hextoul(dev_str, &ep);
445 if (*ep) {
446 printf("** Bad device specification %s %s **\n",
447 ifname, dev_str);
448 dev = -EINVAL;
449 goto cleanup;
450 }
451
452 if (hwpart_str) {
453 hwpart = hextoul(hwpart_str, &ep);
454 if (*ep) {
455 printf("** Bad HW partition specification %s %s **\n",
456 ifname, hwpart_str);
457 dev = -EINVAL;
458 goto cleanup;
459 }
460 }
461
462 *desc = get_dev_hwpart(ifname, dev, hwpart);
463 if (!(*desc) || ((*desc)->type == DEV_TYPE_UNKNOWN)) {
464 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
465 dev = -ENODEV;
466 goto cleanup;
467 }
468
469 if (blk_enabled()) {
470 /*
471 * Updates the partition table for the specified hw partition.
472 * Always should be done, otherwise hw partition 0 will return
473 * stale data after displaying a non-zero hw partition.
474 */
475 if ((*desc)->uclass_id == UCLASS_MMC)
476 part_init(*desc);
477 }
478
479 cleanup:
480 free(dup_str);
481 return dev;
482 }
483
484 #define PART_UNSPECIFIED -2
485 #define PART_AUTO -1
486 int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
487 struct blk_desc **desc,
488 struct disk_partition *info, int allow_whole_dev)
489 {
490 int ret;
491 const char *part_str;
492 char *dup_str = NULL;
493 const char *dev_str;
494 int dev;
495 char *ep;
496 int p;
497 int part;
498 struct disk_partition tmpinfo;
499
500 *desc = NULL;
501 memset(info, 0, sizeof(*info));
502
503 #if IS_ENABLED(CONFIG_SANDBOX) || IS_ENABLED(CONFIG_SEMIHOSTING)
504 /*
505 * Special-case a pseudo block device "hostfs", to allow access to the
506 * host's own filesystem.
507 */
508 if (!strcmp(ifname, "hostfs")) {
509 strcpy((char *)info->type, BOOT_PART_TYPE);
510 strcpy((char *)info->name, "Host filesystem");
511
512 return 0;
513 }
514 #endif
515
516 #if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_SPL_BUILD)
517 /*
518 * Special-case ubi, ubi goes through a mtd, rather than through
519 * a regular block device.
520 */
521 if (!strcmp(ifname, "ubi")) {
522 if (!ubifs_is_mounted()) {
523 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
524 return -EINVAL;
525 }
526
527 strcpy((char *)info->type, BOOT_PART_TYPE);
528 strcpy((char *)info->name, "UBI");
529 return 0;
530 }
531 #endif
532
533 /* If no dev_part_str, use bootdevice environment variable */
534 if (CONFIG_IS_ENABLED(ENV_SUPPORT)) {
535 if (!dev_part_str || !strlen(dev_part_str) ||
536 !strcmp(dev_part_str, "-"))
537 dev_part_str = env_get("bootdevice");
538 }
539
540 /* If still no dev_part_str, it's an error */
541 if (!dev_part_str) {
542 printf("** No device specified **\n");
543 ret = -ENODEV;
544 goto cleanup;
545 }
546
547 /* Separate device and partition ID specification */
548 part_str = strchr(dev_part_str, ':');
549 if (part_str) {
550 dup_str = strdup(dev_part_str);
551 dup_str[part_str - dev_part_str] = 0;
552 dev_str = dup_str;
553 part_str++;
554 } else {
555 dev_str = dev_part_str;
556 }
557
558 /* Look up the device */
559 dev = blk_get_device_by_str(ifname, dev_str, desc);
560 if (dev < 0) {
561 printf("** Bad device specification %s %s **\n",
562 ifname, dev_str);
563 ret = dev;
564 goto cleanup;
565 }
566
567 /* Convert partition ID string to number */
568 if (!part_str || !*part_str) {
569 part = PART_UNSPECIFIED;
570 } else if (!strcmp(part_str, "auto")) {
571 part = PART_AUTO;
572 } else {
573 /* Something specified -> use exactly that */
574 part = (int)hextoul(part_str, &ep);
575 /*
576 * Less than whole string converted,
577 * or request for whole device, but caller requires partition.
578 */
579 if (*ep || (part == 0 && !allow_whole_dev)) {
580 printf("** Bad partition specification %s %s **\n",
581 ifname, dev_part_str);
582 ret = -ENOENT;
583 goto cleanup;
584 }
585 }
586
587 /*
588 * No partition table on device,
589 * or user requested partition 0 (entire device).
590 */
591 if (((*desc)->part_type == PART_TYPE_UNKNOWN) || !part) {
592 if (!(*desc)->lba) {
593 printf("** Bad device size - %s %s **\n", ifname,
594 dev_str);
595 ret = -EINVAL;
596 goto cleanup;
597 }
598
599 /*
600 * If user specified a partition ID other than 0,
601 * or the calling command only accepts partitions,
602 * it's an error.
603 */
604 if ((part > 0) || (!allow_whole_dev)) {
605 printf("** No partition table - %s %s **\n", ifname,
606 dev_str);
607 ret = -EPROTONOSUPPORT;
608 goto cleanup;
609 }
610
611 (*desc)->log2blksz = LOG2((*desc)->blksz);
612
613 part_get_info_whole_disk(*desc, info);
614
615 ret = 0;
616 goto cleanup;
617 }
618
619 /*
620 * Now there's known to be a partition table,
621 * not specifying a partition means to pick partition 1.
622 */
623 if (part == PART_UNSPECIFIED)
624 part = 1;
625
626 /*
627 * If user didn't specify a partition number, or did specify something
628 * other than "auto", use that partition number directly.
629 */
630 if (part != PART_AUTO) {
631 ret = part_get_info(*desc, part, info);
632 if (ret) {
633 printf("** Invalid partition %d **\n", part);
634 goto cleanup;
635 }
636 } else {
637 /*
638 * Find the first bootable partition.
639 * If none are bootable, fall back to the first valid partition.
640 */
641 part = 0;
642 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
643 ret = part_get_info(*desc, p, info);
644 if (ret)
645 continue;
646
647 /*
648 * First valid partition, or new better partition?
649 * If so, save partition ID.
650 */
651 if (!part || info->bootable)
652 part = p;
653
654 /* Best possible partition? Stop searching. */
655 if (info->bootable)
656 break;
657
658 /*
659 * We now need to search further for best possible.
660 * If we what we just queried was the best so far,
661 * save the info since we over-write it next loop.
662 */
663 if (part == p)
664 tmpinfo = *info;
665 }
666 /* If we found any acceptable partition */
667 if (part) {
668 /*
669 * If we searched all possible partition IDs,
670 * return the first valid partition we found.
671 */
672 if (p == MAX_SEARCH_PARTITIONS + 1)
673 *info = tmpinfo;
674 } else {
675 printf("** No valid partitions found **\n");
676 goto cleanup;
677 }
678 }
679 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
680 printf("** Invalid partition type \"%.32s\""
681 " (expect \"" BOOT_PART_TYPE "\")\n",
682 info->type);
683 ret = -EINVAL;
684 goto cleanup;
685 }
686
687 (*desc)->log2blksz = LOG2((*desc)->blksz);
688
689 ret = part;
690 goto cleanup;
691
692 cleanup:
693 free(dup_str);
694 return ret;
695 }
696
697 int part_get_info_by_name(struct blk_desc *desc, const char *name,
698 struct disk_partition *info)
699 {
700 struct part_driver *part_drv;
701 int ret;
702 int i;
703
704 part_drv = part_driver_lookup_type(desc);
705 if (!part_drv)
706 return -1;
707
708 if (!part_drv->get_info) {
709 log_debug("## Driver %s does not have the get_info() method\n",
710 part_drv->name);
711 return -ENOSYS;
712 }
713
714 for (i = 1; i < part_drv->max_entries; i++) {
715 ret = part_drv->get_info(desc, i, info);
716 if (ret != 0) {
717 /* no more entries in table */
718 break;
719 }
720 if (strcmp(name, (const char *)info->name) == 0) {
721 /* matched */
722 return i;
723 }
724 }
725
726 return -ENOENT;
727 }
728
729 /**
730 * Get partition info from device number and partition name.
731 *
732 * Parse a device number and partition name string in the form of
733 * "devicenum.hwpartnum#partition_name", for example "0.1#misc". devicenum and
734 * hwpartnum are both optional, defaulting to 0. If the partition is found,
735 * sets desc and part_info accordingly with the information of the
736 * partition with the given partition_name.
737 *
738 * @param[in] dev_iface Device interface
739 * @param[in] dev_part_str Input string argument, like "0.1#misc"
740 * @param[out] desc Place to store the device description pointer
741 * @param[out] part_info Place to store the partition information
742 * Return: 0 on success, or a negative on error
743 */
744 static int part_get_info_by_dev_and_name(const char *dev_iface,
745 const char *dev_part_str,
746 struct blk_desc **desc,
747 struct disk_partition *part_info)
748 {
749 char *dup_str = NULL;
750 const char *dev_str, *part_str;
751 int ret;
752
753 /* Separate device and partition name specification */
754 if (dev_part_str)
755 part_str = strchr(dev_part_str, '#');
756 else
757 part_str = NULL;
758
759 if (part_str) {
760 dup_str = strdup(dev_part_str);
761 dup_str[part_str - dev_part_str] = 0;
762 dev_str = dup_str;
763 part_str++;
764 } else {
765 return -EINVAL;
766 }
767
768 ret = blk_get_device_by_str(dev_iface, dev_str, desc);
769 if (ret < 0)
770 goto cleanup;
771
772 ret = part_get_info_by_name(*desc, part_str, part_info);
773 if (ret < 0)
774 printf("Could not find \"%s\" partition\n", part_str);
775
776 cleanup:
777 free(dup_str);
778 return ret;
779 }
780
781 int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
782 const char *dev_part_str,
783 struct blk_desc **desc,
784 struct disk_partition *part_info,
785 int allow_whole_dev)
786 {
787 int ret;
788
789 /* Split the part_name if passed as "$dev_num#part_name". */
790 ret = part_get_info_by_dev_and_name(dev_iface, dev_part_str, desc,
791 part_info);
792 if (ret >= 0)
793 return ret;
794 /*
795 * Couldn't lookup by name, try looking up the partition description
796 * directly.
797 */
798 ret = blk_get_device_part_str(dev_iface, dev_part_str, desc, part_info,
799 allow_whole_dev);
800 if (ret < 0)
801 printf("Couldn't find partition %s %s\n",
802 dev_iface, dev_part_str);
803 return ret;
804 }
805
806 void part_set_generic_name(const struct blk_desc *desc, int part_num,
807 char *name)
808 {
809 char *devtype;
810
811 switch (desc->uclass_id) {
812 case UCLASS_IDE:
813 case UCLASS_AHCI:
814 devtype = "hd";
815 break;
816 case UCLASS_SCSI:
817 devtype = "sd";
818 break;
819 case UCLASS_USB:
820 devtype = "usbd";
821 break;
822 case UCLASS_MMC:
823 devtype = "mmcsd";
824 break;
825 default:
826 devtype = "xx";
827 break;
828 }
829
830 sprintf(name, "%s%c%d", devtype, 'a' + desc->devnum, part_num);
831 }
832
833 int part_get_bootable(struct blk_desc *desc)
834 {
835 struct disk_partition info;
836 int p;
837
838 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
839 int ret;
840
841 ret = part_get_info(desc, p, &info);
842 if (!ret && info.bootable)
843 return p;
844 }
845
846 return 0;
847 }