blob: 35300df5903947f5211f6c45d8da1d99cc7c68c7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkaffae2b2002-08-17 09:36:01 +00002/*
3 * (C) Copyright 2001
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkaffae2b2002-08-17 09:36:01 +00005 */
6
7#include <common.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -06008#include <blk.h>
wdenkaffae2b2002-08-17 09:36:01 +00009#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -060010#include <env.h>
Simon Glass96e5b032016-02-29 15:25:47 -070011#include <errno.h>
wdenkaffae2b2002-08-17 09:36:01 +000012#include <ide.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Stephen Warren10a37fd2012-09-21 09:50:57 +000014#include <malloc.h>
Grant Likely735dd972007-02-20 09:04:34 +010015#include <part.h>
Hans de Goede251cee02015-09-17 18:46:58 -040016#include <ubifs_uboot.h>
wdenkaffae2b2002-08-17 09:36:01 +000017
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
Sam Protsenko30789092017-09-22 01:51:58 +030026/* Check all partition types */
27#define PART_TYPE_ALL -1
28
Kever Yangd4729262018-02-10 17:55:37 +080029static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
Simon Glass96e5b032016-02-29 15:25:47 -070030{
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
Kever Yangd4729262018-02-10 17:55:37 +080036 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 }
Simon Glass96e5b032016-02-29 15:25:47 -070051 }
52
53 /* Not found */
54 return NULL;
55}
56
Simon Glass4101f682016-02-29 15:25:34 -070057static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likely735dd972007-02-20 09:04:34 +010058{
Simon Glass6dd9faf2016-05-01 13:52:32 -060059 struct blk_desc *dev_desc;
60 int ret;
Grant Likely735dd972007-02-20 09:04:34 +010061
Simon Glassa51eb8d2022-08-11 19:34:45 -060062 if (!blk_enabled())
63 return NULL;
Simon Glass8149b152022-09-17 09:00:09 -060064 dev_desc = blk_get_devnum_by_uclass_idname(ifname, dev);
Simon Glass6dd9faf2016-05-01 13:52:32 -060065 if (!dev_desc) {
66 debug("%s: No device for iface '%s', dev %d\n", __func__,
67 ifname, dev);
Tim Kientzle7e71dc62012-03-27 11:43:25 +020068 return NULL;
Grant Likely735dd972007-02-20 09:04:34 +010069 }
Simon Glass6dd9faf2016-05-01 13:52:32 -060070 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;
Grant Likely735dd972007-02-20 09:04:34 +010078}
Stephen Warren336b6f92014-05-07 12:19:01 -060079
Simon Glassdb1d9e72016-02-29 15:25:42 -070080struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warren336b6f92014-05-07 12:19:01 -060081{
Simon Glassa51eb8d2022-08-11 19:34:45 -060082 if (!blk_enabled())
83 return NULL;
84
Stephen Warrenecdd57e2014-05-23 12:48:11 -060085 return get_dev_hwpart(ifname, dev, 0);
Stephen Warren336b6f92014-05-07 12:19:01 -060086}
Grant Likely735dd972007-02-20 09:04:34 +010087
wdenkaffae2b2002-08-17 09:36:01 +000088/* ------------------------------------------------------------------------- */
89/*
90 * reports device info to the user
91 */
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +030092
93#ifdef CONFIG_LBA48
94typedef uint64_t lba512_t;
95#else
96typedef lbaint_t lba512_t;
97#endif
98
99/*
Heinrich Schuchardta9d1c0e2020-01-16 20:36:58 +0100100 * Overflowless variant of (block_count * mul_by / 2**right_shift)
101 * when 2**right_shift > mul_by
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300102 */
Heinrich Schuchardta9d1c0e2020-01-16 20:36:58 +0100103static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by,
104 int right_shift)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300105{
106 lba512_t bc_quot, bc_rem;
107
108 /* x * m / d == x / d * m + (x % d) * m / d */
Heinrich Schuchardta9d1c0e2020-01-16 20:36:58 +0100109 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);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300112}
113
Simon Glassef4b66b2022-08-11 19:35:00 -0600114void dev_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000115{
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300116 lba512_t lba512; /* number of blocks if 512bytes block size */
wdenkaffae2b2002-08-17 09:36:01 +0000117
Wolfgang Denkaf75a452009-05-15 09:27:58 +0200118 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
119 puts ("not available\n");
120 return;
121 }
122
Simon Glass8149b152022-09-17 09:00:09 -0600123 switch (dev_desc->uclass_id) {
Simon Glasse33a5c62022-08-11 19:34:59 -0600124 case UCLASS_SCSI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200125 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
126 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000127 dev_desc->vendor,
128 dev_desc->product,
129 dev_desc->revision);
Detlev Zundel574b3192008-05-05 16:11:21 +0200130 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600131 case UCLASS_IDE:
132 case UCLASS_AHCI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200133 printf ("Model: %s Firm: %s Ser#: %s\n",
134 dev_desc->vendor,
135 dev_desc->revision,
136 dev_desc->product);
137 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600138 case UCLASS_MMC:
139 case UCLASS_USB:
140 case UCLASS_NVME:
141 case UCLASS_PVBLOCK:
Simon Glass95201812022-10-29 19:47:17 -0600142 case UCLASS_HOST:
Tobias Waldekranzbb56da12023-02-16 16:33:52 +0100143 case UCLASS_BLKMAP:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300144 printf ("Vendor: %s Rev: %s Prod: %s\n",
145 dev_desc->vendor,
146 dev_desc->revision,
147 dev_desc->product);
148 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600149 case UCLASS_VIRTIO:
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700150 printf("%s VirtIO Block Device\n", dev_desc->vendor);
151 break;
Simon Glassef4b66b2022-08-11 19:35:00 -0600152 case UCLASS_EFI_MEDIA:
153 printf("EFI media Block Device %d\n", dev_desc->devnum);
154 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600155 case UCLASS_INVALID:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200156 puts("device type unknown\n");
157 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200158 default:
Simon Glass8149b152022-09-17 09:00:09 -0600159 printf("Unhandled device type: %i\n", dev_desc->uclass_id);
Detlev Zundel574b3192008-05-05 16:11:21 +0200160 return;
wdenkaffae2b2002-08-17 09:36:01 +0000161 }
162 puts (" Type: ");
163 if (dev_desc->removable)
164 puts ("Removable ");
165 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200166 case DEV_TYPE_HARDDISK:
167 puts ("Hard Disk");
168 break;
169 case DEV_TYPE_CDROM:
170 puts ("CD ROM");
171 break;
172 case DEV_TYPE_OPDISK:
173 puts ("Optical Device");
174 break;
175 case DEV_TYPE_TAPE:
176 puts ("Tape");
177 break;
178 default:
179 printf ("# %02X #", dev_desc->type & 0x1F);
180 break;
wdenkaffae2b2002-08-17 09:36:01 +0000181 }
182 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000183 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000184 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000185 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000186
187 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000188
wdenkc40b2952004-03-13 23:29:43 +0000189 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000190 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200191 /* 2048 = (1024 * 1024) / 512 MB */
Heinrich Schuchardt17416ea2019-06-02 00:04:50 +0200192 mb = lba512_muldiv(lba512, 10, 11);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300193
wdenkaffae2b2002-08-17 09:36:01 +0000194 mb_quot = mb / 10;
195 mb_rem = mb - (10 * mb_quot);
196
197 gb = mb / 1024;
198 gb_quot = gb / 10;
199 gb_rem = gb - (10 * gb_quot);
wdenk42dfe7a2004-03-14 22:25:36 +0000200#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000201 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000202 printf (" Supports 48-bit addressing\n");
203#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100204#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100205 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkc40b2952004-03-13 23:29:43 +0000206 mb_quot, mb_rem,
207 gb_quot, gb_rem,
208 lba,
209 dev_desc->blksz);
210#else
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100211 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000212 mb_quot, mb_rem,
213 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000214 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000215 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000216#endif
wdenkaffae2b2002-08-17 09:36:01 +0000217 } else {
218 puts (" Capacity: not available\n");
219 }
220}
wdenkaffae2b2002-08-17 09:36:01 +0000221
Simon Glass3e8bd462016-02-29 15:25:48 -0700222void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000223{
Simon Glass96e5b032016-02-29 15:25:47 -0700224 struct part_driver *drv =
225 ll_entry_start(struct part_driver, part_driver);
226 const int n_ents = ll_entry_count(struct part_driver, part_driver);
227 struct part_driver *entry;
wdenkaffae2b2002-08-17 09:36:01 +0000228
Simon Glass8149b152022-09-17 09:00:09 -0600229 blkcache_invalidate(dev_desc->uclass_id, dev_desc->devnum);
Eric Nelsone40cf342016-03-28 10:05:44 -0700230
Rob Herring99d2c202012-09-21 04:08:17 +0000231 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700232 for (entry = drv; entry != drv + n_ents; entry++) {
233 int ret;
234
235 ret = entry->test(dev_desc);
236 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
237 if (!ret) {
238 dev_desc->part_type = entry->part_type;
239 break;
240 }
241 }
wdenkaffae2b2002-08-17 09:36:01 +0000242}
243
Simon Glass96e5b032016-02-29 15:25:47 -0700244static void print_part_header(const char *type, struct blk_desc *dev_desc)
245{
Patrick Delaunayf18fa312017-01-27 11:00:36 +0100246#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100247 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100248 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay863c5b62017-01-27 11:00:39 +0100249 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100250 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000251 puts ("\nPartition Map for ");
Simon Glass8149b152022-09-17 09:00:09 -0600252 switch (dev_desc->uclass_id) {
Simon Glasse33a5c62022-08-11 19:34:59 -0600253 case UCLASS_IDE:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200254 puts ("IDE");
255 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600256 case UCLASS_AHCI:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200257 puts ("SATA");
258 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600259 case UCLASS_SCSI:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200260 puts ("SCSI");
261 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600262 case UCLASS_USB:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200263 puts ("USB");
264 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600265 case UCLASS_MMC:
Lei Wen8f3b9642010-09-13 22:07:28 +0800266 puts ("MMC");
267 break;
Simon Glass95201812022-10-29 19:47:17 -0600268 case UCLASS_HOST:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700269 puts ("HOST");
270 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600271 case UCLASS_NVME:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700272 puts ("NVMe");
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700273 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600274 case UCLASS_PVBLOCK:
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +0300275 puts("PV BLOCK");
276 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600277 case UCLASS_VIRTIO:
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700278 puts("VirtIO");
279 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600280 case UCLASS_EFI_MEDIA:
Simon Glass42b7f422021-12-04 08:56:31 -0700281 puts("EFI");
282 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200283 default:
Simon Glass42b7f422021-12-04 08:56:31 -0700284 puts("UNKNOWN");
Detlev Zundel726c0f12008-05-05 16:11:22 +0200285 break;
wdenkaffae2b2002-08-17 09:36:01 +0000286 }
287 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700288 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000289#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700290}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000291
Simon Glass3e8bd462016-02-29 15:25:48 -0700292void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000293{
Simon Glass96e5b032016-02-29 15:25:47 -0700294 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000295
Kever Yangd4729262018-02-10 17:55:37 +0800296 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700297 if (!drv) {
298 printf("## Unknown partition table type %x\n",
299 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000300 return;
wdenkaffae2b2002-08-17 09:36:01 +0000301 }
Simon Glass96e5b032016-02-29 15:25:47 -0700302
303 PRINTF("## Testing for valid %s partition ##\n", drv->name);
304 print_part_header(drv->name, dev_desc);
305 if (drv->print)
306 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000307}
308
Simon Glass3e8bd462016-02-29 15:25:48 -0700309int part_get_info(struct blk_desc *dev_desc, int part,
Simon Glass05289792020-05-10 11:39:57 -0600310 struct disk_partition *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000311{
Simon Glass96e5b032016-02-29 15:25:47 -0700312 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000313
Simon Glassa51eb8d2022-08-11 19:34:45 -0600314 if (blk_enabled()) {
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100315#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Simon Glassa51eb8d2022-08-11 19:34:45 -0600316 /* The common case is no UUID support */
317 info->uuid[0] = 0;
Stephen Warren894bfbb2012-09-21 09:50:59 +0000318#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100319#ifdef CONFIG_PARTITION_TYPE_GUID
Simon Glassa51eb8d2022-08-11 19:34:45 -0600320 info->type_guid[0] = 0;
Patrick Delaunay7561b252015-10-27 11:00:27 +0100321#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000322
Simon Glassa51eb8d2022-08-11 19:34:45 -0600323 drv = part_driver_lookup_type(dev_desc);
324 if (!drv) {
325 debug("## Unknown partition table type %x\n",
326 dev_desc->part_type);
327 return -EPROTONOSUPPORT;
328 }
329 if (!drv->get_info) {
330 PRINTF("## Driver %s does not have the get_info() method\n",
331 drv->name);
332 return -ENOSYS;
333 }
334 if (drv->get_info(dev_desc, part, info) == 0) {
335 PRINTF("## Valid %s partition found ##\n", drv->name);
336 return 0;
337 }
Simon Glass96e5b032016-02-29 15:25:47 -0700338 }
Stephen Warren2f501642012-09-21 12:46:54 +0000339
Sean Anderson59715752021-02-05 09:38:55 -0500340 return -ENOENT;
Stephen Warren2f501642012-09-21 12:46:54 +0000341}
Rob Herring99d2c202012-09-21 04:08:17 +0000342
Simon Glass05289792020-05-10 11:39:57 -0600343int part_get_info_whole_disk(struct blk_desc *dev_desc,
344 struct disk_partition *info)
Rob Clark4bbcc962017-09-09 13:15:55 -0400345{
346 info->start = 0;
347 info->size = dev_desc->lba;
348 info->blksz = dev_desc->blksz;
349 info->bootable = 0;
350 strcpy((char *)info->type, BOOT_PART_TYPE);
351 strcpy((char *)info->name, "Whole Disk");
352#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
353 info->uuid[0] = 0;
354#endif
355#ifdef CONFIG_PARTITION_TYPE_GUID
356 info->type_guid[0] = 0;
357#endif
358
359 return 0;
360}
361
Simon Glassebac37c2016-02-29 15:25:43 -0700362int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
363 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000364{
365 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600366 char *dup_str = NULL;
367 const char *dev_str, *hwpart_str;
368 int dev, hwpart;
369
370 hwpart_str = strchr(dev_hwpart_str, '.');
371 if (hwpart_str) {
372 dup_str = strdup(dev_hwpart_str);
373 dup_str[hwpart_str - dev_hwpart_str] = 0;
374 dev_str = dup_str;
375 hwpart_str++;
376 } else {
377 dev_str = dev_hwpart_str;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600378 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600379 }
Stephen Warren2023e602012-09-21 09:50:56 +0000380
Simon Glass7e5f4602021-07-24 09:03:29 -0600381 dev = hextoul(dev_str, &ep);
Stephen Warren2023e602012-09-21 09:50:56 +0000382 if (*ep) {
383 printf("** Bad device specification %s %s **\n",
384 ifname, dev_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600385 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600386 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000387 }
388
Stephen Warren336b6f92014-05-07 12:19:01 -0600389 if (hwpart_str) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600390 hwpart = hextoul(hwpart_str, &ep);
Stephen Warren336b6f92014-05-07 12:19:01 -0600391 if (*ep) {
392 printf("** Bad HW partition specification %s %s **\n",
393 ifname, hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600394 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600395 goto cleanup;
396 }
397 }
398
399 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000400 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Sam Protsenko8f690842018-07-30 19:19:27 +0300401 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Sean Anderson59715752021-02-05 09:38:55 -0500402 dev = -ENODEV;
Stephen Warren336b6f92014-05-07 12:19:01 -0600403 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000404 }
405
Simon Glassa51eb8d2022-08-11 19:34:45 -0600406 if (blk_enabled()) {
407 /*
408 * Updates the partition table for the specified hw partition.
409 * Always should be done, otherwise hw partition 0 will return
410 * stale data after displaying a non-zero hw partition.
411 */
Simon Glass8149b152022-09-17 09:00:09 -0600412 if ((*dev_desc)->uclass_id == UCLASS_MMC)
Simon Glassa51eb8d2022-08-11 19:34:45 -0600413 part_init(*dev_desc);
414 }
Erik Tideman99e7fc82016-01-11 13:39:07 +0000415
Stephen Warren336b6f92014-05-07 12:19:01 -0600416cleanup:
417 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000418 return dev;
419}
420
Stephen Warren10a37fd2012-09-21 09:50:57 +0000421#define PART_UNSPECIFIED -2
422#define PART_AUTO -1
Simon Glasse35929e2016-02-29 15:25:44 -0700423int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700424 struct blk_desc **dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600425 struct disk_partition *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000426{
Sean Anderson59715752021-02-05 09:38:55 -0500427 int ret;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000428 const char *part_str;
429 char *dup_str = NULL;
430 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000431 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000432 char *ep;
433 int p;
434 int part;
Simon Glass05289792020-05-10 11:39:57 -0600435 struct disk_partition tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000436
Heinrich Schuchardtbe2e42f2022-11-20 11:23:24 +0100437 *dev_desc = NULL;
438 memset(info, 0, sizeof(*info));
439
Sean Andersonf676b452022-03-22 16:59:20 -0400440#if IS_ENABLED(CONFIG_SANDBOX) || IS_ENABLED(CONFIG_SEMIHOSTING)
Stephen Warren4d907022014-06-12 10:28:32 -0600441 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200442 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600443 * host's own filesystem.
444 */
Heinrich Schuchardtbe2e42f2022-11-20 11:23:24 +0100445 if (!strcmp(ifname, "hostfs")) {
Stephen Warren4d907022014-06-12 10:28:32 -0600446 strcpy((char *)info->type, BOOT_PART_TYPE);
Sean Andersonf676b452022-03-22 16:59:20 -0400447 strcpy((char *)info->name, "Host filesystem");
Stephen Warren4d907022014-06-12 10:28:32 -0600448
449 return 0;
450 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400451#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600452
Stefan Herbrechtsmeier2f03a632022-08-08 16:45:17 +0200453#if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_SPL_BUILD)
Hans de Goede251cee02015-09-17 18:46:58 -0400454 /*
Heinrich Schuchardt3174caf2019-04-10 18:59:26 +0200455 * Special-case ubi, ubi goes through a mtd, rather than through
Hans de Goede251cee02015-09-17 18:46:58 -0400456 * a regular block device.
457 */
Heinrich Schuchardtbe2e42f2022-11-20 11:23:24 +0100458 if (!strcmp(ifname, "ubi")) {
Hans de Goede251cee02015-09-17 18:46:58 -0400459 if (!ubifs_is_mounted()) {
460 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
Sean Anderson59715752021-02-05 09:38:55 -0500461 return -EINVAL;
Hans de Goede251cee02015-09-17 18:46:58 -0400462 }
463
Hans de Goede251cee02015-09-17 18:46:58 -0400464 strcpy((char *)info->type, BOOT_PART_TYPE);
465 strcpy((char *)info->name, "UBI");
Hans de Goede251cee02015-09-17 18:46:58 -0400466 return 0;
467 }
468#endif
469
Stephen Warren10a37fd2012-09-21 09:50:57 +0000470 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000471 if (!dev_part_str || !strlen(dev_part_str) ||
472 !strcmp(dev_part_str, "-"))
Simon Glass00caae62017-08-03 12:22:12 -0600473 dev_part_str = env_get("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000474
Stephen Warren10a37fd2012-09-21 09:50:57 +0000475 /* If still no dev_part_str, it's an error */
476 if (!dev_part_str) {
477 printf("** No device specified **\n");
Sean Anderson59715752021-02-05 09:38:55 -0500478 ret = -ENODEV;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000479 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000480 }
481
Stephen Warren10a37fd2012-09-21 09:50:57 +0000482 /* Separate device and partition ID specification */
483 part_str = strchr(dev_part_str, ':');
484 if (part_str) {
485 dup_str = strdup(dev_part_str);
486 dup_str[part_str - dev_part_str] = 0;
487 dev_str = dup_str;
488 part_str++;
489 } else {
490 dev_str = dev_part_str;
491 }
Rob Herring99d2c202012-09-21 04:08:17 +0000492
Stephen Warren10a37fd2012-09-21 09:50:57 +0000493 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700494 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Sean Anderson59715752021-02-05 09:38:55 -0500495 if (dev < 0) {
Oleksii Bidnichenko192e7012022-04-08 10:07:13 +0200496 printf("** Bad device specification %s %s **\n",
497 ifname, dev_str);
Sean Anderson59715752021-02-05 09:38:55 -0500498 ret = dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000499 goto cleanup;
Sean Anderson59715752021-02-05 09:38:55 -0500500 }
Stephen Warren10a37fd2012-09-21 09:50:57 +0000501
502 /* Convert partition ID string to number */
503 if (!part_str || !*part_str) {
504 part = PART_UNSPECIFIED;
505 } else if (!strcmp(part_str, "auto")) {
506 part = PART_AUTO;
507 } else {
508 /* Something specified -> use exactly that */
Simon Glass7e5f4602021-07-24 09:03:29 -0600509 part = (int)hextoul(part_str, &ep);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000510 /*
511 * Less than whole string converted,
512 * or request for whole device, but caller requires partition.
513 */
514 if (*ep || (part == 0 && !allow_whole_dev)) {
515 printf("** Bad partition specification %s %s **\n",
516 ifname, dev_part_str);
Sean Anderson59715752021-02-05 09:38:55 -0500517 ret = -ENOENT;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000518 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000519 }
Rob Herring99d2c202012-09-21 04:08:17 +0000520 }
521
Stephen Warren10a37fd2012-09-21 09:50:57 +0000522 /*
523 * No partition table on device,
524 * or user requested partition 0 (entire device).
525 */
526 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
527 (part == 0)) {
528 if (!(*dev_desc)->lba) {
529 printf("** Bad device size - %s %s **\n", ifname,
530 dev_str);
Sean Anderson59715752021-02-05 09:38:55 -0500531 ret = -EINVAL;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000532 goto cleanup;
533 }
Rob Herring99d2c202012-09-21 04:08:17 +0000534
Stephen Warren10a37fd2012-09-21 09:50:57 +0000535 /*
536 * If user specified a partition ID other than 0,
537 * or the calling command only accepts partitions,
538 * it's an error.
539 */
540 if ((part > 0) || (!allow_whole_dev)) {
541 printf("** No partition table - %s %s **\n", ifname,
542 dev_str);
Sean Anderson59715752021-02-05 09:38:55 -0500543 ret = -EPROTONOSUPPORT;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000544 goto cleanup;
545 }
546
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800547 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
548
Rob Clark4bbcc962017-09-09 13:15:55 -0400549 part_get_info_whole_disk(*dev_desc, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000550
551 ret = 0;
552 goto cleanup;
553 }
554
555 /*
556 * Now there's known to be a partition table,
557 * not specifying a partition means to pick partition 1.
558 */
559 if (part == PART_UNSPECIFIED)
560 part = 1;
561
562 /*
563 * If user didn't specify a partition number, or did specify something
564 * other than "auto", use that partition number directly.
565 */
566 if (part != PART_AUTO) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700567 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000568 if (ret) {
569 printf("** Invalid partition %d **\n", part);
570 goto cleanup;
571 }
572 } else {
573 /*
574 * Find the first bootable partition.
575 * If none are bootable, fall back to the first valid partition.
576 */
577 part = 0;
578 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700579 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000580 if (ret)
581 continue;
582
583 /*
584 * First valid partition, or new better partition?
585 * If so, save partition ID.
586 */
587 if (!part || info->bootable)
588 part = p;
589
590 /* Best possible partition? Stop searching. */
591 if (info->bootable)
592 break;
593
594 /*
595 * We now need to search further for best possible.
596 * If we what we just queried was the best so far,
597 * save the info since we over-write it next loop.
598 */
599 if (part == p)
600 tmpinfo = *info;
601 }
602 /* If we found any acceptable partition */
603 if (part) {
604 /*
605 * If we searched all possible partition IDs,
606 * return the first valid partition we found.
607 */
608 if (p == MAX_SEARCH_PARTITIONS + 1)
609 *info = tmpinfo;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000610 } else {
611 printf("** No valid partitions found **\n");
612 goto cleanup;
613 }
Rob Herring99d2c202012-09-21 04:08:17 +0000614 }
615 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
616 printf("** Invalid partition type \"%.32s\""
617 " (expect \"" BOOT_PART_TYPE "\")\n",
618 info->type);
Sean Anderson59715752021-02-05 09:38:55 -0500619 ret = -EINVAL;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000620 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000621 }
622
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800623 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
624
Stephen Warren10a37fd2012-09-21 09:50:57 +0000625 ret = part;
626 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000627
Stephen Warren10a37fd2012-09-21 09:50:57 +0000628cleanup:
629 free(dup_str);
630 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000631}
Petr Kulhavy87b85302016-09-09 10:27:15 +0200632
Sam Protsenko30789092017-09-22 01:51:58 +0300633int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
Simon Glass05289792020-05-10 11:39:57 -0600634 struct disk_partition *info, int part_type)
Petr Kulhavy87b85302016-09-09 10:27:15 +0200635{
Petr Kulhavy87b85302016-09-09 10:27:15 +0200636 struct part_driver *part_drv;
Kever Yang56670d62018-02-10 17:55:38 +0800637 int ret;
638 int i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200639
Kever Yang56670d62018-02-10 17:55:38 +0800640 part_drv = part_driver_lookup_type(dev_desc);
641 if (!part_drv)
642 return -1;
schspa50f7b2e2021-10-20 20:15:55 +0800643
644 if (!part_drv->get_info) {
645 log_debug("## Driver %s does not have the get_info() method\n",
646 part_drv->name);
647 return -ENOSYS;
648 }
649
Kever Yang56670d62018-02-10 17:55:38 +0800650 for (i = 1; i < part_drv->max_entries; i++) {
651 ret = part_drv->get_info(dev_desc, i, info);
652 if (ret != 0) {
653 /* no more entries in table */
654 break;
655 }
656 if (strcmp(name, (const char *)info->name) == 0) {
657 /* matched */
658 return i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200659 }
660 }
Kever Yang56670d62018-02-10 17:55:38 +0800661
Sean Anderson59715752021-02-05 09:38:55 -0500662 return -ENOENT;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200663}
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200664
Sam Protsenko30789092017-09-22 01:51:58 +0300665int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
Simon Glass05289792020-05-10 11:39:57 -0600666 struct disk_partition *info)
Sam Protsenko30789092017-09-22 01:51:58 +0300667{
668 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
669}
670
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300671/**
672 * Get partition info from device number and partition name.
673 *
674 * Parse a device number and partition name string in the form of
Sean Anderson81c1aa82021-02-05 09:38:57 -0500675 * "devicenum.hwpartnum#partition_name", for example "0.1#misc". devicenum and
676 * hwpartnum are both optional, defaulting to 0. If the partition is found,
677 * sets dev_desc and part_info accordingly with the information of the
678 * partition with the given partition_name.
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300679 *
680 * @param[in] dev_iface Device interface
Sean Anderson81c1aa82021-02-05 09:38:57 -0500681 * @param[in] dev_part_str Input string argument, like "0.1#misc"
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300682 * @param[out] dev_desc Place to store the device description pointer
683 * @param[out] part_info Place to store the partition information
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100684 * Return: 0 on success, or a negative on error
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300685 */
686static int part_get_info_by_dev_and_name(const char *dev_iface,
687 const char *dev_part_str,
688 struct blk_desc **dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600689 struct disk_partition *part_info)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300690{
Sean Anderson81c1aa82021-02-05 09:38:57 -0500691 char *dup_str = NULL;
692 const char *dev_str, *part_str;
693 int ret;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300694
Sean Anderson81c1aa82021-02-05 09:38:57 -0500695 /* Separate device and partition name specification */
Sean Anderson26de4292021-05-15 14:13:54 -0400696 if (dev_part_str)
697 part_str = strchr(dev_part_str, '#');
698 else
699 part_str = NULL;
700
Sean Anderson81c1aa82021-02-05 09:38:57 -0500701 if (part_str) {
702 dup_str = strdup(dev_part_str);
703 dup_str[part_str - dev_part_str] = 0;
704 dev_str = dup_str;
705 part_str++;
706 } else {
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300707 return -EINVAL;
708 }
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300709
Sean Anderson81c1aa82021-02-05 09:38:57 -0500710 ret = blk_get_device_by_str(dev_iface, dev_str, dev_desc);
Sean Andersonfe5a5092021-04-12 18:53:06 -0400711 if (ret < 0)
Sean Anderson81c1aa82021-02-05 09:38:57 -0500712 goto cleanup;
713
Sean Anderson59715752021-02-05 09:38:55 -0500714 ret = part_get_info_by_name(*dev_desc, part_str, part_info);
715 if (ret < 0)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300716 printf("Could not find \"%s\" partition\n", part_str);
Sean Anderson81c1aa82021-02-05 09:38:57 -0500717
718cleanup:
719 free(dup_str);
Sean Anderson59715752021-02-05 09:38:55 -0500720 return ret;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300721}
722
723int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
724 const char *dev_part_str,
725 struct blk_desc **dev_desc,
Sean Anderson9f7bb282021-02-05 09:38:56 -0500726 struct disk_partition *part_info,
727 int allow_whole_dev)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300728{
Sean Anderson59715752021-02-05 09:38:55 -0500729 int ret;
730
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300731 /* Split the part_name if passed as "$dev_num#part_name". */
Sean Anderson59715752021-02-05 09:38:55 -0500732 ret = part_get_info_by_dev_and_name(dev_iface, dev_part_str,
733 dev_desc, part_info);
734 if (ret >= 0)
735 return ret;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300736 /*
737 * Couldn't lookup by name, try looking up the partition description
738 * directly.
739 */
Sean Anderson59715752021-02-05 09:38:55 -0500740 ret = blk_get_device_part_str(dev_iface, dev_part_str,
Sean Anderson9f7bb282021-02-05 09:38:56 -0500741 dev_desc, part_info, allow_whole_dev);
Sean Anderson59715752021-02-05 09:38:55 -0500742 if (ret < 0)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300743 printf("Couldn't find partition %s %s\n",
744 dev_iface, dev_part_str);
Sean Anderson59715752021-02-05 09:38:55 -0500745 return ret;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300746}
747
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200748void part_set_generic_name(const struct blk_desc *dev_desc,
749 int part_num, char *name)
750{
751 char *devtype;
752
Simon Glass8149b152022-09-17 09:00:09 -0600753 switch (dev_desc->uclass_id) {
Simon Glasse33a5c62022-08-11 19:34:59 -0600754 case UCLASS_IDE:
755 case UCLASS_AHCI:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200756 devtype = "hd";
757 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600758 case UCLASS_SCSI:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200759 devtype = "sd";
760 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600761 case UCLASS_USB:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200762 devtype = "usbd";
763 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600764 case UCLASS_MMC:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200765 devtype = "mmcsd";
766 break;
767 default:
768 devtype = "xx";
769 break;
770 }
771
772 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
773}
Simon Glassdcffa442023-01-17 10:47:41 -0700774
775int part_get_bootable(struct blk_desc *desc)
776{
777 struct disk_partition info;
778 int p;
779
780 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
781 int ret;
782
783 ret = part_get_info(desc, p, &info);
784 if (!ret && info.bootable)
785 return p;
786 }
787
788 return 0;
789}