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