blob: f982b30f972f36460fa1dca40e4211bde56382aa [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:
142 case UCLASS_ROOT:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300143 printf ("Vendor: %s Rev: %s Prod: %s\n",
144 dev_desc->vendor,
145 dev_desc->revision,
146 dev_desc->product);
147 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600148 case UCLASS_VIRTIO:
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700149 printf("%s VirtIO Block Device\n", dev_desc->vendor);
150 break;
Simon Glassef4b66b2022-08-11 19:35:00 -0600151 case UCLASS_EFI_MEDIA:
152 printf("EFI media Block Device %d\n", dev_desc->devnum);
153 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600154 case UCLASS_INVALID:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200155 puts("device type unknown\n");
156 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200157 default:
Simon Glass8149b152022-09-17 09:00:09 -0600158 printf("Unhandled device type: %i\n", dev_desc->uclass_id);
Detlev Zundel574b3192008-05-05 16:11:21 +0200159 return;
wdenkaffae2b2002-08-17 09:36:01 +0000160 }
161 puts (" Type: ");
162 if (dev_desc->removable)
163 puts ("Removable ");
164 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200165 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;
wdenkaffae2b2002-08-17 09:36:01 +0000180 }
181 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000182 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000183 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000184 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000185
186 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000187
wdenkc40b2952004-03-13 23:29:43 +0000188 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000189 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200190 /* 2048 = (1024 * 1024) / 512 MB */
Heinrich Schuchardt17416ea2019-06-02 00:04:50 +0200191 mb = lba512_muldiv(lba512, 10, 11);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300192
wdenkaffae2b2002-08-17 09:36:01 +0000193 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);
wdenk42dfe7a2004-03-14 22:25:36 +0000199#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000200 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000201 printf (" Supports 48-bit addressing\n");
202#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100203#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100204 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkc40b2952004-03-13 23:29:43 +0000205 mb_quot, mb_rem,
206 gb_quot, gb_rem,
207 lba,
208 dev_desc->blksz);
209#else
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100210 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000211 mb_quot, mb_rem,
212 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000213 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000214 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000215#endif
wdenkaffae2b2002-08-17 09:36:01 +0000216 } else {
217 puts (" Capacity: not available\n");
218 }
219}
wdenkaffae2b2002-08-17 09:36:01 +0000220
Simon Glass3e8bd462016-02-29 15:25:48 -0700221void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000222{
Simon Glass96e5b032016-02-29 15:25:47 -0700223 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;
wdenkaffae2b2002-08-17 09:36:01 +0000227
Simon Glass8149b152022-09-17 09:00:09 -0600228 blkcache_invalidate(dev_desc->uclass_id, dev_desc->devnum);
Eric Nelsone40cf342016-03-28 10:05:44 -0700229
Rob Herring99d2c202012-09-21 04:08:17 +0000230 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700231 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 }
wdenkaffae2b2002-08-17 09:36:01 +0000241}
242
Simon Glass96e5b032016-02-29 15:25:47 -0700243static void print_part_header(const char *type, struct blk_desc *dev_desc)
244{
Patrick Delaunayf18fa312017-01-27 11:00:36 +0100245#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100246 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100247 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay863c5b62017-01-27 11:00:39 +0100248 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100249 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000250 puts ("\nPartition Map for ");
Simon Glass8149b152022-09-17 09:00:09 -0600251 switch (dev_desc->uclass_id) {
Simon Glasse33a5c62022-08-11 19:34:59 -0600252 case UCLASS_IDE:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200253 puts ("IDE");
254 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600255 case UCLASS_AHCI:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200256 puts ("SATA");
257 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600258 case UCLASS_SCSI:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200259 puts ("SCSI");
260 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600261 case UCLASS_USB:
Detlev Zundel726c0f12008-05-05 16:11:22 +0200262 puts ("USB");
263 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600264 case UCLASS_MMC:
Lei Wen8f3b9642010-09-13 22:07:28 +0800265 puts ("MMC");
266 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600267 case UCLASS_ROOT:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700268 puts ("HOST");
269 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600270 case UCLASS_NVME:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700271 puts ("NVMe");
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700272 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600273 case UCLASS_PVBLOCK:
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +0300274 puts("PV BLOCK");
275 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600276 case UCLASS_VIRTIO:
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700277 puts("VirtIO");
278 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600279 case UCLASS_EFI_MEDIA:
Simon Glass42b7f422021-12-04 08:56:31 -0700280 puts("EFI");
281 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200282 default:
Simon Glass42b7f422021-12-04 08:56:31 -0700283 puts("UNKNOWN");
Detlev Zundel726c0f12008-05-05 16:11:22 +0200284 break;
wdenkaffae2b2002-08-17 09:36:01 +0000285 }
286 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700287 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000288#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700289}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000290
Simon Glass3e8bd462016-02-29 15:25:48 -0700291void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000292{
Simon Glass96e5b032016-02-29 15:25:47 -0700293 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000294
Kever Yangd4729262018-02-10 17:55:37 +0800295 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700296 if (!drv) {
297 printf("## Unknown partition table type %x\n",
298 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000299 return;
wdenkaffae2b2002-08-17 09:36:01 +0000300 }
Simon Glass96e5b032016-02-29 15:25:47 -0700301
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);
wdenkaffae2b2002-08-17 09:36:01 +0000306}
307
Simon Glass3e8bd462016-02-29 15:25:48 -0700308int part_get_info(struct blk_desc *dev_desc, int part,
Simon Glass05289792020-05-10 11:39:57 -0600309 struct disk_partition *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000310{
Simon Glass96e5b032016-02-29 15:25:47 -0700311 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000312
Simon Glassa51eb8d2022-08-11 19:34:45 -0600313 if (blk_enabled()) {
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100314#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Simon Glassa51eb8d2022-08-11 19:34:45 -0600315 /* The common case is no UUID support */
316 info->uuid[0] = 0;
Stephen Warren894bfbb2012-09-21 09:50:59 +0000317#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100318#ifdef CONFIG_PARTITION_TYPE_GUID
Simon Glassa51eb8d2022-08-11 19:34:45 -0600319 info->type_guid[0] = 0;
Patrick Delaunay7561b252015-10-27 11:00:27 +0100320#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000321
Simon Glassa51eb8d2022-08-11 19:34:45 -0600322 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 }
Simon Glass96e5b032016-02-29 15:25:47 -0700337 }
Stephen Warren2f501642012-09-21 12:46:54 +0000338
Sean Anderson59715752021-02-05 09:38:55 -0500339 return -ENOENT;
Stephen Warren2f501642012-09-21 12:46:54 +0000340}
Rob Herring99d2c202012-09-21 04:08:17 +0000341
Simon Glass05289792020-05-10 11:39:57 -0600342int part_get_info_whole_disk(struct blk_desc *dev_desc,
343 struct disk_partition *info)
Rob Clark4bbcc962017-09-09 13:15:55 -0400344{
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
Simon Glassebac37c2016-02-29 15:25:43 -0700361int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
362 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000363{
364 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600365 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;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600377 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600378 }
Stephen Warren2023e602012-09-21 09:50:56 +0000379
Simon Glass7e5f4602021-07-24 09:03:29 -0600380 dev = hextoul(dev_str, &ep);
Stephen Warren2023e602012-09-21 09:50:56 +0000381 if (*ep) {
382 printf("** Bad device specification %s %s **\n",
383 ifname, dev_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600384 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600385 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000386 }
387
Stephen Warren336b6f92014-05-07 12:19:01 -0600388 if (hwpart_str) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600389 hwpart = hextoul(hwpart_str, &ep);
Stephen Warren336b6f92014-05-07 12:19:01 -0600390 if (*ep) {
391 printf("** Bad HW partition specification %s %s **\n",
392 ifname, hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600393 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600394 goto cleanup;
395 }
396 }
397
398 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000399 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Sam Protsenko8f690842018-07-30 19:19:27 +0300400 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Sean Anderson59715752021-02-05 09:38:55 -0500401 dev = -ENODEV;
Stephen Warren336b6f92014-05-07 12:19:01 -0600402 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000403 }
404
Simon Glassa51eb8d2022-08-11 19:34:45 -0600405 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 */
Simon Glass8149b152022-09-17 09:00:09 -0600411 if ((*dev_desc)->uclass_id == UCLASS_MMC)
Simon Glassa51eb8d2022-08-11 19:34:45 -0600412 part_init(*dev_desc);
413 }
Erik Tideman99e7fc82016-01-11 13:39:07 +0000414
Stephen Warren336b6f92014-05-07 12:19:01 -0600415cleanup:
416 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000417 return dev;
418}
419
Stephen Warren10a37fd2012-09-21 09:50:57 +0000420#define PART_UNSPECIFIED -2
421#define PART_AUTO -1
Simon Glasse35929e2016-02-29 15:25:44 -0700422int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700423 struct blk_desc **dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600424 struct disk_partition *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000425{
Sean Anderson59715752021-02-05 09:38:55 -0500426 int ret;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000427 const char *part_str;
428 char *dup_str = NULL;
429 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000430 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000431 char *ep;
432 int p;
433 int part;
Simon Glass05289792020-05-10 11:39:57 -0600434 struct disk_partition tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000435
Sean Andersonf676b452022-03-22 16:59:20 -0400436#if IS_ENABLED(CONFIG_SANDBOX) || IS_ENABLED(CONFIG_SEMIHOSTING)
Stephen Warren4d907022014-06-12 10:28:32 -0600437 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200438 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600439 * 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);
Sean Andersonf676b452022-03-22 16:59:20 -0400448 strcpy((char *)info->name, "Host filesystem");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100449#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren4d907022014-06-12 10:28:32 -0600450 info->uuid[0] = 0;
451#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100452#ifdef CONFIG_PARTITION_TYPE_GUID
453 info->type_guid[0] = 0;
454#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600455
456 return 0;
457 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400458#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600459
Stefan Herbrechtsmeier2f03a632022-08-08 16:45:17 +0200460#if IS_ENABLED(CONFIG_CMD_UBIFS) && !IS_ENABLED(CONFIG_SPL_BUILD)
Hans de Goede251cee02015-09-17 18:46:58 -0400461 /*
Heinrich Schuchardt3174caf2019-04-10 18:59:26 +0200462 * Special-case ubi, ubi goes through a mtd, rather than through
Hans de Goede251cee02015-09-17 18:46:58 -0400463 * 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");
Sean Anderson59715752021-02-05 09:38:55 -0500468 return -EINVAL;
Hans de Goede251cee02015-09-17 18:46:58 -0400469 }
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");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100475#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede251cee02015-09-17 18:46:58 -0400476 info->uuid[0] = 0;
477#endif
478 return 0;
479 }
480#endif
481
Stephen Warren10a37fd2012-09-21 09:50:57 +0000482 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000483 if (!dev_part_str || !strlen(dev_part_str) ||
484 !strcmp(dev_part_str, "-"))
Simon Glass00caae62017-08-03 12:22:12 -0600485 dev_part_str = env_get("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000486
Stephen Warren10a37fd2012-09-21 09:50:57 +0000487 /* If still no dev_part_str, it's an error */
488 if (!dev_part_str) {
489 printf("** No device specified **\n");
Sean Anderson59715752021-02-05 09:38:55 -0500490 ret = -ENODEV;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000491 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000492 }
493
Stephen Warren10a37fd2012-09-21 09:50:57 +0000494 /* 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 }
Rob Herring99d2c202012-09-21 04:08:17 +0000504
Stephen Warren10a37fd2012-09-21 09:50:57 +0000505 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700506 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Sean Anderson59715752021-02-05 09:38:55 -0500507 if (dev < 0) {
Oleksii Bidnichenko192e7012022-04-08 10:07:13 +0200508 printf("** Bad device specification %s %s **\n",
509 ifname, dev_str);
Sean Anderson59715752021-02-05 09:38:55 -0500510 ret = dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000511 goto cleanup;
Sean Anderson59715752021-02-05 09:38:55 -0500512 }
Stephen Warren10a37fd2012-09-21 09:50:57 +0000513
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 */
Simon Glass7e5f4602021-07-24 09:03:29 -0600521 part = (int)hextoul(part_str, &ep);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000522 /*
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);
Sean Anderson59715752021-02-05 09:38:55 -0500529 ret = -ENOENT;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000530 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000531 }
Rob Herring99d2c202012-09-21 04:08:17 +0000532 }
533
Stephen Warren10a37fd2012-09-21 09:50:57 +0000534 /*
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);
Sean Anderson59715752021-02-05 09:38:55 -0500543 ret = -EINVAL;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000544 goto cleanup;
545 }
Rob Herring99d2c202012-09-21 04:08:17 +0000546
Stephen Warren10a37fd2012-09-21 09:50:57 +0000547 /*
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);
Sean Anderson59715752021-02-05 09:38:55 -0500555 ret = -EPROTONOSUPPORT;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000556 goto cleanup;
557 }
558
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800559 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
560
Rob Clark4bbcc962017-09-09 13:15:55 -0400561 part_get_info_whole_disk(*dev_desc, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000562
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) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700579 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000580 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++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700591 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000592 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;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000622 } else {
623 printf("** No valid partitions found **\n");
624 goto cleanup;
625 }
Rob Herring99d2c202012-09-21 04:08:17 +0000626 }
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);
Sean Anderson59715752021-02-05 09:38:55 -0500631 ret = -EINVAL;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000632 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000633 }
634
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800635 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
636
Stephen Warren10a37fd2012-09-21 09:50:57 +0000637 ret = part;
638 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000639
Stephen Warren10a37fd2012-09-21 09:50:57 +0000640cleanup:
641 free(dup_str);
642 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000643}
Petr Kulhavy87b85302016-09-09 10:27:15 +0200644
Sam Protsenko30789092017-09-22 01:51:58 +0300645int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
Simon Glass05289792020-05-10 11:39:57 -0600646 struct disk_partition *info, int part_type)
Petr Kulhavy87b85302016-09-09 10:27:15 +0200647{
Petr Kulhavy87b85302016-09-09 10:27:15 +0200648 struct part_driver *part_drv;
Kever Yang56670d62018-02-10 17:55:38 +0800649 int ret;
650 int i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200651
Kever Yang56670d62018-02-10 17:55:38 +0800652 part_drv = part_driver_lookup_type(dev_desc);
653 if (!part_drv)
654 return -1;
schspa50f7b2e2021-10-20 20:15:55 +0800655
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
Kever Yang56670d62018-02-10 17:55:38 +0800662 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;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200671 }
672 }
Kever Yang56670d62018-02-10 17:55:38 +0800673
Sean Anderson59715752021-02-05 09:38:55 -0500674 return -ENOENT;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200675}
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200676
Sam Protsenko30789092017-09-22 01:51:58 +0300677int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
Simon Glass05289792020-05-10 11:39:57 -0600678 struct disk_partition *info)
Sam Protsenko30789092017-09-22 01:51:58 +0300679{
680 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
681}
682
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300683/**
684 * Get partition info from device number and partition name.
685 *
686 * Parse a device number and partition name string in the form of
Sean Anderson81c1aa82021-02-05 09:38:57 -0500687 * "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.
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300691 *
692 * @param[in] dev_iface Device interface
Sean Anderson81c1aa82021-02-05 09:38:57 -0500693 * @param[in] dev_part_str Input string argument, like "0.1#misc"
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300694 * @param[out] dev_desc Place to store the device description pointer
695 * @param[out] part_info Place to store the partition information
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100696 * Return: 0 on success, or a negative on error
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300697 */
698static int part_get_info_by_dev_and_name(const char *dev_iface,
699 const char *dev_part_str,
700 struct blk_desc **dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600701 struct disk_partition *part_info)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300702{
Sean Anderson81c1aa82021-02-05 09:38:57 -0500703 char *dup_str = NULL;
704 const char *dev_str, *part_str;
705 int ret;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300706
Sean Anderson81c1aa82021-02-05 09:38:57 -0500707 /* Separate device and partition name specification */
Sean Anderson26de4292021-05-15 14:13:54 -0400708 if (dev_part_str)
709 part_str = strchr(dev_part_str, '#');
710 else
711 part_str = NULL;
712
Sean Anderson81c1aa82021-02-05 09:38:57 -0500713 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 {
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300719 return -EINVAL;
720 }
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300721
Sean Anderson81c1aa82021-02-05 09:38:57 -0500722 ret = blk_get_device_by_str(dev_iface, dev_str, dev_desc);
Sean Andersonfe5a5092021-04-12 18:53:06 -0400723 if (ret < 0)
Sean Anderson81c1aa82021-02-05 09:38:57 -0500724 goto cleanup;
725
Sean Anderson59715752021-02-05 09:38:55 -0500726 ret = part_get_info_by_name(*dev_desc, part_str, part_info);
727 if (ret < 0)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300728 printf("Could not find \"%s\" partition\n", part_str);
Sean Anderson81c1aa82021-02-05 09:38:57 -0500729
730cleanup:
731 free(dup_str);
Sean Anderson59715752021-02-05 09:38:55 -0500732 return ret;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300733}
734
735int 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,
Sean Anderson9f7bb282021-02-05 09:38:56 -0500738 struct disk_partition *part_info,
739 int allow_whole_dev)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300740{
Sean Anderson59715752021-02-05 09:38:55 -0500741 int ret;
742
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300743 /* Split the part_name if passed as "$dev_num#part_name". */
Sean Anderson59715752021-02-05 09:38:55 -0500744 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;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300748 /*
749 * Couldn't lookup by name, try looking up the partition description
750 * directly.
751 */
Sean Anderson59715752021-02-05 09:38:55 -0500752 ret = blk_get_device_part_str(dev_iface, dev_part_str,
Sean Anderson9f7bb282021-02-05 09:38:56 -0500753 dev_desc, part_info, allow_whole_dev);
Sean Anderson59715752021-02-05 09:38:55 -0500754 if (ret < 0)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300755 printf("Couldn't find partition %s %s\n",
756 dev_iface, dev_part_str);
Sean Anderson59715752021-02-05 09:38:55 -0500757 return ret;
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300758}
759
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200760void part_set_generic_name(const struct blk_desc *dev_desc,
761 int part_num, char *name)
762{
763 char *devtype;
764
Simon Glass8149b152022-09-17 09:00:09 -0600765 switch (dev_desc->uclass_id) {
Simon Glasse33a5c62022-08-11 19:34:59 -0600766 case UCLASS_IDE:
767 case UCLASS_AHCI:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200768 devtype = "hd";
769 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600770 case UCLASS_SCSI:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200771 devtype = "sd";
772 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600773 case UCLASS_USB:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200774 devtype = "usbd";
775 break;
Simon Glasse33a5c62022-08-11 19:34:59 -0600776 case UCLASS_MMC:
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200777 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}