Merge branch 'master' into next
[platform/kernel/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 static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
30 {
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;
35
36         if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
37                 for (entry = drv; entry != drv + n_ents; entry++) {
38                         int ret;
39
40                         ret = entry->test(dev_desc);
41                         if (!ret) {
42                                 dev_desc->part_type = entry->part_type;
43                                 return entry;
44                         }
45                 }
46         } else {
47                 for (entry = drv; entry != drv + n_ents; entry++) {
48                         if (dev_desc->part_type == entry->part_type)
49                                 return entry;
50                 }
51         }
52
53         /* Not found */
54         return NULL;
55 }
56
57 static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
58 {
59         struct blk_desc *dev_desc;
60         int ret;
61
62         if (!blk_enabled())
63                 return NULL;
64         dev_desc = blk_get_devnum_by_typename(ifname, dev);
65         if (!dev_desc) {
66                 debug("%s: No device for iface '%s', dev %d\n", __func__,
67                       ifname, dev);
68                 return NULL;
69         }
70         ret = blk_dselect_hwpart(dev_desc, hwpart);
71         if (ret) {
72                 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
73                       ret);
74                 return NULL;
75         }
76
77         return dev_desc;
78 }
79
80 struct blk_desc *blk_get_dev(const char *ifname, int dev)
81 {
82         if (!blk_enabled())
83                 return NULL;
84
85         return get_dev_hwpart(ifname, dev, 0);
86 }
87
88 /* ------------------------------------------------------------------------- */
89 /*
90  * reports device info to the user
91  */
92
93 #ifdef CONFIG_LBA48
94 typedef uint64_t lba512_t;
95 #else
96 typedef lbaint_t lba512_t;
97 #endif
98
99 /*
100  * Overflowless variant of (block_count * mul_by / 2**right_shift)
101  * when 2**right_shift > mul_by
102  */
103 static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by,
104                               int right_shift)
105 {
106         lba512_t bc_quot, bc_rem;
107
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);
112 }
113
114 void dev_print(struct blk_desc *dev_desc)
115 {
116         lba512_t lba512; /* number of blocks if 512bytes block size */
117
118         if (dev_desc->type == DEV_TYPE_UNKNOWN) {
119                 puts ("not available\n");
120                 return;
121         }
122
123         switch (dev_desc->if_type) {
124         case UCLASS_SCSI:
125                 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
126                         dev_desc->target,dev_desc->lun,
127                         dev_desc->vendor,
128                         dev_desc->product,
129                         dev_desc->revision);
130                 break;
131         case UCLASS_IDE:
132         case UCLASS_AHCI:
133                 printf ("Model: %s Firm: %s Ser#: %s\n",
134                         dev_desc->vendor,
135                         dev_desc->revision,
136                         dev_desc->product);
137                 break;
138         case UCLASS_MMC:
139         case UCLASS_USB:
140         case UCLASS_NVME:
141         case UCLASS_PVBLOCK:
142         case UCLASS_ROOT:
143                 printf ("Vendor: %s Rev: %s Prod: %s\n",
144                         dev_desc->vendor,
145                         dev_desc->revision,
146                         dev_desc->product);
147                 break;
148         case UCLASS_VIRTIO:
149                 printf("%s VirtIO Block Device\n", dev_desc->vendor);
150                 break;
151         case UCLASS_EFI_MEDIA:
152                 printf("EFI media Block Device %d\n", dev_desc->devnum);
153                 break;
154         case UCLASS_INVALID:
155                 puts("device type unknown\n");
156                 return;
157         default:
158                 printf("Unhandled device type: %i\n", dev_desc->if_type);
159                 return;
160         }
161         puts ("            Type: ");
162         if (dev_desc->removable)
163                 puts ("Removable ");
164         switch (dev_desc->type & 0x1F) {
165         case DEV_TYPE_HARDDISK:
166                 puts ("Hard Disk");
167                 break;
168         case DEV_TYPE_CDROM:
169                 puts ("CD ROM");
170                 break;
171         case DEV_TYPE_OPDISK:
172                 puts ("Optical Device");
173                 break;
174         case DEV_TYPE_TAPE:
175                 puts ("Tape");
176                 break;
177         default:
178                 printf ("# %02X #", dev_desc->type & 0x1F);
179                 break;
180         }
181         puts ("\n");
182         if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
183                 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
184                 lbaint_t lba;
185
186                 lba = dev_desc->lba;
187
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);
192
193                 mb_quot = mb / 10;
194                 mb_rem  = mb - (10 * mb_quot);
195
196                 gb = mb / 1024;
197                 gb_quot = gb / 10;
198                 gb_rem  = gb - (10 * gb_quot);
199 #ifdef CONFIG_LBA48
200                 if (dev_desc->lba48)
201                         printf ("            Supports 48-bit addressing\n");
202 #endif
203 #if defined(CONFIG_SYS_64BIT_LBA)
204                 printf ("            Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
205                         mb_quot, mb_rem,
206                         gb_quot, gb_rem,
207                         lba,
208                         dev_desc->blksz);
209 #else
210                 printf ("            Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
211                         mb_quot, mb_rem,
212                         gb_quot, gb_rem,
213                         (ulong)lba,
214                         dev_desc->blksz);
215 #endif
216         } else {
217                 puts ("            Capacity: not available\n");
218         }
219 }
220
221 void part_init(struct blk_desc *dev_desc)
222 {
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;
227
228         blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
229
230         dev_desc->part_type = PART_TYPE_UNKNOWN;
231         for (entry = drv; entry != drv + n_ents; entry++) {
232                 int ret;
233
234                 ret = entry->test(dev_desc);
235                 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
236                 if (!ret) {
237                         dev_desc->part_type = entry->part_type;
238                         break;
239                 }
240         }
241 }
242
243 static void print_part_header(const char *type, struct blk_desc *dev_desc)
244 {
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) {
252         case UCLASS_IDE:
253                 puts ("IDE");
254                 break;
255         case UCLASS_AHCI:
256                 puts ("SATA");
257                 break;
258         case UCLASS_SCSI:
259                 puts ("SCSI");
260                 break;
261         case UCLASS_USB:
262                 puts ("USB");
263                 break;
264         case UCLASS_MMC:
265                 puts ("MMC");
266                 break;
267         case UCLASS_ROOT:
268                 puts ("HOST");
269                 break;
270         case UCLASS_NVME:
271                 puts ("NVMe");
272                 break;
273         case UCLASS_PVBLOCK:
274                 puts("PV BLOCK");
275                 break;
276         case UCLASS_VIRTIO:
277                 puts("VirtIO");
278                 break;
279         case UCLASS_EFI_MEDIA:
280                 puts("EFI");
281                 break;
282         default:
283                 puts("UNKNOWN");
284                 break;
285         }
286         printf (" device %d  --   Partition Type: %s\n\n",
287                         dev_desc->devnum, type);
288 #endif /* any CONFIG_..._PARTITION */
289 }
290
291 void part_print(struct blk_desc *dev_desc)
292 {
293         struct part_driver *drv;
294
295         drv = part_driver_lookup_type(dev_desc);
296         if (!drv) {
297                 printf("## Unknown partition table type %x\n",
298                        dev_desc->part_type);
299                 return;
300         }
301
302         PRINTF("## Testing for valid %s partition ##\n", drv->name);
303         print_part_header(drv->name, dev_desc);
304         if (drv->print)
305                 drv->print(dev_desc);
306 }
307
308 int part_get_info(struct blk_desc *dev_desc, int part,
309                        struct disk_partition *info)
310 {
311         struct part_driver *drv;
312
313         if (blk_enabled()) {
314 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
315                 /* The common case is no UUID support */
316                 info->uuid[0] = 0;
317 #endif
318 #ifdef CONFIG_PARTITION_TYPE_GUID
319                 info->type_guid[0] = 0;
320 #endif
321
322                 drv = part_driver_lookup_type(dev_desc);
323                 if (!drv) {
324                         debug("## Unknown partition table type %x\n",
325                               dev_desc->part_type);
326                         return -EPROTONOSUPPORT;
327                 }
328                 if (!drv->get_info) {
329                         PRINTF("## Driver %s does not have the get_info() method\n",
330                                drv->name);
331                         return -ENOSYS;
332                 }
333                 if (drv->get_info(dev_desc, part, info) == 0) {
334                         PRINTF("## Valid %s partition found ##\n", drv->name);
335                         return 0;
336                 }
337         }
338
339         return -ENOENT;
340 }
341
342 int part_get_info_whole_disk(struct blk_desc *dev_desc,
343                              struct disk_partition *info)
344 {
345         info->start = 0;
346         info->size = dev_desc->lba;
347         info->blksz = dev_desc->blksz;
348         info->bootable = 0;
349         strcpy((char *)info->type, BOOT_PART_TYPE);
350         strcpy((char *)info->name, "Whole Disk");
351 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
352         info->uuid[0] = 0;
353 #endif
354 #ifdef CONFIG_PARTITION_TYPE_GUID
355         info->type_guid[0] = 0;
356 #endif
357
358         return 0;
359 }
360
361 int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
362                           struct blk_desc **dev_desc)
363 {
364         char *ep;
365         char *dup_str = NULL;
366         const char *dev_str, *hwpart_str;
367         int dev, hwpart;
368
369         hwpart_str = strchr(dev_hwpart_str, '.');
370         if (hwpart_str) {
371                 dup_str = strdup(dev_hwpart_str);
372                 dup_str[hwpart_str - dev_hwpart_str] = 0;
373                 dev_str = dup_str;
374                 hwpart_str++;
375         } else {
376                 dev_str = dev_hwpart_str;
377                 hwpart = 0;
378         }
379
380         dev = hextoul(dev_str, &ep);
381         if (*ep) {
382                 printf("** Bad device specification %s %s **\n",
383                        ifname, dev_str);
384                 dev = -EINVAL;
385                 goto cleanup;
386         }
387
388         if (hwpart_str) {
389                 hwpart = hextoul(hwpart_str, &ep);
390                 if (*ep) {
391                         printf("** Bad HW partition specification %s %s **\n",
392                             ifname, hwpart_str);
393                         dev = -EINVAL;
394                         goto cleanup;
395                 }
396         }
397
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);
401                 dev = -ENODEV;
402                 goto cleanup;
403         }
404
405         if (blk_enabled()) {
406                 /*
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.
410                  */
411                 if ((*dev_desc)->if_type == UCLASS_MMC)
412                         part_init(*dev_desc);
413         }
414
415 cleanup:
416         free(dup_str);
417         return dev;
418 }
419
420 #define PART_UNSPECIFIED -2
421 #define PART_AUTO -1
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)
425 {
426         int ret;
427         const char *part_str;
428         char *dup_str = NULL;
429         const char *dev_str;
430         int dev;
431         char *ep;
432         int p;
433         int part;
434         struct disk_partition tmpinfo;
435
436 #if IS_ENABLED(CONFIG_SANDBOX) || IS_ENABLED(CONFIG_SEMIHOSTING)
437         /*
438          * Special-case a pseudo block device "hostfs", to allow access to the
439          * host's own filesystem.
440          */
441         if (0 == strcmp(ifname, "hostfs")) {
442                 *dev_desc = NULL;
443                 info->start = 0;
444                 info->size = 0;
445                 info->blksz = 0;
446                 info->bootable = 0;
447                 strcpy((char *)info->type, BOOT_PART_TYPE);
448                 strcpy((char *)info->name, "Host filesystem");
449 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
450                 info->uuid[0] = 0;
451 #endif
452 #ifdef CONFIG_PARTITION_TYPE_GUID
453                 info->type_guid[0] = 0;
454 #endif
455
456                 return 0;
457         }
458 #endif
459
460 #if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_SPL_BUILD)
461         /*
462          * Special-case ubi, ubi goes through a mtd, rather than through
463          * a regular block device.
464          */
465         if (0 == strcmp(ifname, "ubi")) {
466                 if (!ubifs_is_mounted()) {
467                         printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
468                         return -EINVAL;
469                 }
470
471                 *dev_desc = NULL;
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)
476                 info->uuid[0] = 0;
477 #endif
478                 return 0;
479         }
480 #endif
481
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");
486
487         /* If still no dev_part_str, it's an error */
488         if (!dev_part_str) {
489                 printf("** No device specified **\n");
490                 ret = -ENODEV;
491                 goto cleanup;
492         }
493
494         /* Separate device and partition ID specification */
495         part_str = strchr(dev_part_str, ':');
496         if (part_str) {
497                 dup_str = strdup(dev_part_str);
498                 dup_str[part_str - dev_part_str] = 0;
499                 dev_str = dup_str;
500                 part_str++;
501         } else {
502                 dev_str = dev_part_str;
503         }
504
505         /* Look up the device */
506         dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
507         if (dev < 0) {
508                 printf("** Bad device specification %s %s **\n",
509                        ifname, dev_str);
510                 ret = dev;
511                 goto cleanup;
512         }
513
514         /* Convert partition ID string to number */
515         if (!part_str || !*part_str) {
516                 part = PART_UNSPECIFIED;
517         } else if (!strcmp(part_str, "auto")) {
518                 part = PART_AUTO;
519         } else {
520                 /* Something specified -> use exactly that */
521                 part = (int)hextoul(part_str, &ep);
522                 /*
523                  * Less than whole string converted,
524                  * or request for whole device, but caller requires partition.
525                  */
526                 if (*ep || (part == 0 && !allow_whole_dev)) {
527                         printf("** Bad partition specification %s %s **\n",
528                             ifname, dev_part_str);
529                         ret = -ENOENT;
530                         goto cleanup;
531                 }
532         }
533
534         /*
535          * No partition table on device,
536          * or user requested partition 0 (entire device).
537          */
538         if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
539             (part == 0)) {
540                 if (!(*dev_desc)->lba) {
541                         printf("** Bad device size - %s %s **\n", ifname,
542                                dev_str);
543                         ret = -EINVAL;
544                         goto cleanup;
545                 }
546
547                 /*
548                  * If user specified a partition ID other than 0,
549                  * or the calling command only accepts partitions,
550                  * it's an error.
551                  */
552                 if ((part > 0) || (!allow_whole_dev)) {
553                         printf("** No partition table - %s %s **\n", ifname,
554                                dev_str);
555                         ret = -EPROTONOSUPPORT;
556                         goto cleanup;
557                 }
558
559                 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
560
561                 part_get_info_whole_disk(*dev_desc, info);
562
563                 ret = 0;
564                 goto cleanup;
565         }
566
567         /*
568          * Now there's known to be a partition table,
569          * not specifying a partition means to pick partition 1.
570          */
571         if (part == PART_UNSPECIFIED)
572                 part = 1;
573
574         /*
575          * If user didn't specify a partition number, or did specify something
576          * other than "auto", use that partition number directly.
577          */
578         if (part != PART_AUTO) {
579                 ret = part_get_info(*dev_desc, part, info);
580                 if (ret) {
581                         printf("** Invalid partition %d **\n", part);
582                         goto cleanup;
583                 }
584         } else {
585                 /*
586                  * Find the first bootable partition.
587                  * If none are bootable, fall back to the first valid partition.
588                  */
589                 part = 0;
590                 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
591                         ret = part_get_info(*dev_desc, p, info);
592                         if (ret)
593                                 continue;
594
595                         /*
596                          * First valid partition, or new better partition?
597                          * If so, save partition ID.
598                          */
599                         if (!part || info->bootable)
600                                 part = p;
601
602                         /* Best possible partition? Stop searching. */
603                         if (info->bootable)
604                                 break;
605
606                         /*
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.
610                          */
611                         if (part == p)
612                                 tmpinfo = *info;
613                 }
614                 /* If we found any acceptable partition */
615                 if (part) {
616                         /*
617                          * If we searched all possible partition IDs,
618                          * return the first valid partition we found.
619                          */
620                         if (p == MAX_SEARCH_PARTITIONS + 1)
621                                 *info = tmpinfo;
622                 } else {
623                         printf("** No valid partitions found **\n");
624                         goto cleanup;
625                 }
626         }
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",
630                         info->type);
631                 ret  = -EINVAL;
632                 goto cleanup;
633         }
634
635         (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
636
637         ret = part;
638         goto cleanup;
639
640 cleanup:
641         free(dup_str);
642         return ret;
643 }
644
645 int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
646                                struct disk_partition *info, int part_type)
647 {
648         struct part_driver *part_drv;
649         int ret;
650         int i;
651
652         part_drv = part_driver_lookup_type(dev_desc);
653         if (!part_drv)
654                 return -1;
655
656         if (!part_drv->get_info) {
657                 log_debug("## Driver %s does not have the get_info() method\n",
658                           part_drv->name);
659                 return -ENOSYS;
660         }
661
662         for (i = 1; i < part_drv->max_entries; i++) {
663                 ret = part_drv->get_info(dev_desc, i, info);
664                 if (ret != 0) {
665                         /* no more entries in table */
666                         break;
667                 }
668                 if (strcmp(name, (const char *)info->name) == 0) {
669                         /* matched */
670                         return i;
671                 }
672         }
673
674         return -ENOENT;
675 }
676
677 int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
678                           struct disk_partition *info)
679 {
680         return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
681 }
682
683 /**
684  * Get partition info from device number and partition name.
685  *
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.
691  *
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
697  */
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)
702 {
703         char *dup_str = NULL;
704         const char *dev_str, *part_str;
705         int ret;
706
707         /* Separate device and partition name specification */
708         if (dev_part_str)
709                 part_str = strchr(dev_part_str, '#');
710         else
711                 part_str = NULL;
712
713         if (part_str) {
714                 dup_str = strdup(dev_part_str);
715                 dup_str[part_str - dev_part_str] = 0;
716                 dev_str = dup_str;
717                 part_str++;
718         } else {
719                 return -EINVAL;
720         }
721
722         ret = blk_get_device_by_str(dev_iface, dev_str, dev_desc);
723         if (ret < 0)
724                 goto cleanup;
725
726         ret = part_get_info_by_name(*dev_desc, part_str, part_info);
727         if (ret < 0)
728                 printf("Could not find \"%s\" partition\n", part_str);
729
730 cleanup:
731         free(dup_str);
732         return ret;
733 }
734
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,
739                                          int allow_whole_dev)
740 {
741         int ret;
742
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);
746         if (ret >= 0)
747                 return ret;
748         /*
749          * Couldn't lookup by name, try looking up the partition description
750          * directly.
751          */
752         ret = blk_get_device_part_str(dev_iface, dev_part_str,
753                                       dev_desc, part_info, allow_whole_dev);
754         if (ret < 0)
755                 printf("Couldn't find partition %s %s\n",
756                        dev_iface, dev_part_str);
757         return ret;
758 }
759
760 void part_set_generic_name(const struct blk_desc *dev_desc,
761         int part_num, char *name)
762 {
763         char *devtype;
764
765         switch (dev_desc->if_type) {
766         case UCLASS_IDE:
767         case UCLASS_AHCI:
768                 devtype = "hd";
769                 break;
770         case UCLASS_SCSI:
771                 devtype = "sd";
772                 break;
773         case UCLASS_USB:
774                 devtype = "usbd";
775                 break;
776         case UCLASS_MMC:
777                 devtype = "mmcsd";
778                 break;
779         default:
780                 devtype = "xx";
781                 break;
782         }
783
784         sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
785 }