blob: b69fd345f3600c11a389057e549958b3d667326b [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
Kever Yang56670d62018-02-10 17:55:38 +080057#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass4101f682016-02-29 15:25:34 -070058static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likely735dd972007-02-20 09:04:34 +010059{
Simon Glass6dd9faf2016-05-01 13:52:32 -060060 struct blk_desc *dev_desc;
61 int ret;
Grant Likely735dd972007-02-20 09:04:34 +010062
Simon Glass6dd9faf2016-05-01 13:52:32 -060063 dev_desc = blk_get_devnum_by_typename(ifname, dev);
64 if (!dev_desc) {
65 debug("%s: No device for iface '%s', dev %d\n", __func__,
66 ifname, dev);
Tim Kientzle7e71dc62012-03-27 11:43:25 +020067 return NULL;
Grant Likely735dd972007-02-20 09:04:34 +010068 }
Simon Glass6dd9faf2016-05-01 13:52:32 -060069 ret = blk_dselect_hwpart(dev_desc, hwpart);
70 if (ret) {
71 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
72 ret);
73 return NULL;
74 }
75
76 return dev_desc;
Grant Likely735dd972007-02-20 09:04:34 +010077}
Stephen Warren336b6f92014-05-07 12:19:01 -060078
Simon Glassdb1d9e72016-02-29 15:25:42 -070079struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warren336b6f92014-05-07 12:19:01 -060080{
Stephen Warrenecdd57e2014-05-23 12:48:11 -060081 return get_dev_hwpart(ifname, dev, 0);
Stephen Warren336b6f92014-05-07 12:19:01 -060082}
Grant Likely735dd972007-02-20 09:04:34 +010083#else
Simon Glass4101f682016-02-29 15:25:34 -070084struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warren336b6f92014-05-07 12:19:01 -060085{
86 return NULL;
87}
88
Simon Glassdb1d9e72016-02-29 15:25:42 -070089struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likely735dd972007-02-20 09:04:34 +010090{
91 return NULL;
92}
93#endif
94
Adam Ford1811a922018-02-06 12:43:56 -060095#ifdef CONFIG_HAVE_BLOCK_DEVICE
Grant Likely735dd972007-02-20 09:04:34 +010096
wdenkaffae2b2002-08-17 09:36:01 +000097/* ------------------------------------------------------------------------- */
98/*
99 * reports device info to the user
100 */
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300101
102#ifdef CONFIG_LBA48
103typedef uint64_t lba512_t;
104#else
105typedef lbaint_t lba512_t;
106#endif
107
108/*
Heinrich Schuchardta9d1c0e2020-01-16 20:36:58 +0100109 * Overflowless variant of (block_count * mul_by / 2**right_shift)
110 * when 2**right_shift > mul_by
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300111 */
Heinrich Schuchardta9d1c0e2020-01-16 20:36:58 +0100112static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by,
113 int right_shift)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300114{
115 lba512_t bc_quot, bc_rem;
116
117 /* x * m / d == x / d * m + (x % d) * m / d */
Heinrich Schuchardta9d1c0e2020-01-16 20:36:58 +0100118 bc_quot = block_count >> right_shift;
119 bc_rem = block_count - (bc_quot << right_shift);
120 return bc_quot * mul_by + ((bc_rem * mul_by) >> right_shift);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300121}
122
Simon Glass4101f682016-02-29 15:25:34 -0700123void dev_print (struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000124{
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300125 lba512_t lba512; /* number of blocks if 512bytes block size */
wdenkaffae2b2002-08-17 09:36:01 +0000126
Wolfgang Denkaf75a452009-05-15 09:27:58 +0200127 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
128 puts ("not available\n");
129 return;
130 }
131
Tor Krill8ec6e332008-05-29 11:10:30 +0200132 switch (dev_desc->if_type) {
Detlev Zundel574b3192008-05-05 16:11:21 +0200133 case IF_TYPE_SCSI:
134 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
135 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000136 dev_desc->vendor,
137 dev_desc->product,
138 dev_desc->revision);
Detlev Zundel574b3192008-05-05 16:11:21 +0200139 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200140 case IF_TYPE_ATAPI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200141 case IF_TYPE_IDE:
142 case IF_TYPE_SATA:
143 printf ("Model: %s Firm: %s Ser#: %s\n",
144 dev_desc->vendor,
145 dev_desc->revision,
146 dev_desc->product);
147 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200148 case IF_TYPE_SD:
149 case IF_TYPE_MMC:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300150 case IF_TYPE_USB:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700151 case IF_TYPE_NVME:
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +0300152 case IF_TYPE_PVBLOCK:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300153 printf ("Vendor: %s Rev: %s Prod: %s\n",
154 dev_desc->vendor,
155 dev_desc->revision,
156 dev_desc->product);
157 break;
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700158 case IF_TYPE_VIRTIO:
159 printf("%s VirtIO Block Device\n", dev_desc->vendor);
160 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200161 case IF_TYPE_DOC:
162 puts("device type DOC\n");
163 return;
Tor Krill8ec6e332008-05-29 11:10:30 +0200164 case IF_TYPE_UNKNOWN:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200165 puts("device type unknown\n");
166 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200167 default:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200168 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundel574b3192008-05-05 16:11:21 +0200169 return;
wdenkaffae2b2002-08-17 09:36:01 +0000170 }
171 puts (" Type: ");
172 if (dev_desc->removable)
173 puts ("Removable ");
174 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200175 case DEV_TYPE_HARDDISK:
176 puts ("Hard Disk");
177 break;
178 case DEV_TYPE_CDROM:
179 puts ("CD ROM");
180 break;
181 case DEV_TYPE_OPDISK:
182 puts ("Optical Device");
183 break;
184 case DEV_TYPE_TAPE:
185 puts ("Tape");
186 break;
187 default:
188 printf ("# %02X #", dev_desc->type & 0x1F);
189 break;
wdenkaffae2b2002-08-17 09:36:01 +0000190 }
191 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000192 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000193 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000194 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000195
196 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000197
wdenkc40b2952004-03-13 23:29:43 +0000198 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000199 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200200 /* 2048 = (1024 * 1024) / 512 MB */
Heinrich Schuchardt17416ea2019-06-02 00:04:50 +0200201 mb = lba512_muldiv(lba512, 10, 11);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300202
wdenkaffae2b2002-08-17 09:36:01 +0000203 mb_quot = mb / 10;
204 mb_rem = mb - (10 * mb_quot);
205
206 gb = mb / 1024;
207 gb_quot = gb / 10;
208 gb_rem = gb - (10 * gb_quot);
wdenk42dfe7a2004-03-14 22:25:36 +0000209#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000210 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000211 printf (" Supports 48-bit addressing\n");
212#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100213#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100214 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkc40b2952004-03-13 23:29:43 +0000215 mb_quot, mb_rem,
216 gb_quot, gb_rem,
217 lba,
218 dev_desc->blksz);
219#else
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100220 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000221 mb_quot, mb_rem,
222 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000223 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000224 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000225#endif
wdenkaffae2b2002-08-17 09:36:01 +0000226 } else {
227 puts (" Capacity: not available\n");
228 }
229}
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500230#endif
wdenkaffae2b2002-08-17 09:36:01 +0000231
Adam Ford1811a922018-02-06 12:43:56 -0600232#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000233
Simon Glass3e8bd462016-02-29 15:25:48 -0700234void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000235{
Simon Glass96e5b032016-02-29 15:25:47 -0700236 struct part_driver *drv =
237 ll_entry_start(struct part_driver, part_driver);
238 const int n_ents = ll_entry_count(struct part_driver, part_driver);
239 struct part_driver *entry;
wdenkaffae2b2002-08-17 09:36:01 +0000240
Eric Nelsone40cf342016-03-28 10:05:44 -0700241 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
242
Rob Herring99d2c202012-09-21 04:08:17 +0000243 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700244 for (entry = drv; entry != drv + n_ents; entry++) {
245 int ret;
246
247 ret = entry->test(dev_desc);
248 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
249 if (!ret) {
250 dev_desc->part_type = entry->part_type;
251 break;
252 }
253 }
wdenkaffae2b2002-08-17 09:36:01 +0000254}
255
Simon Glass96e5b032016-02-29 15:25:47 -0700256static void print_part_header(const char *type, struct blk_desc *dev_desc)
257{
Patrick Delaunayf18fa312017-01-27 11:00:36 +0100258#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100259 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100260 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay863c5b62017-01-27 11:00:39 +0100261 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100262 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000263 puts ("\nPartition Map for ");
264 switch (dev_desc->if_type) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200265 case IF_TYPE_IDE:
266 puts ("IDE");
267 break;
268 case IF_TYPE_SATA:
269 puts ("SATA");
270 break;
271 case IF_TYPE_SCSI:
272 puts ("SCSI");
273 break;
274 case IF_TYPE_ATAPI:
275 puts ("ATAPI");
276 break;
277 case IF_TYPE_USB:
278 puts ("USB");
279 break;
280 case IF_TYPE_DOC:
281 puts ("DOC");
282 break;
Lei Wen8f3b9642010-09-13 22:07:28 +0800283 case IF_TYPE_MMC:
284 puts ("MMC");
285 break;
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700286 case IF_TYPE_HOST:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700287 puts ("HOST");
288 break;
289 case IF_TYPE_NVME:
290 puts ("NVMe");
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700291 break;
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +0300292 case IF_TYPE_PVBLOCK:
293 puts("PV BLOCK");
294 break;
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700295 case IF_TYPE_VIRTIO:
296 puts("VirtIO");
297 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200298 default:
299 puts ("UNKNOWN");
300 break;
wdenkaffae2b2002-08-17 09:36:01 +0000301 }
302 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700303 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000304#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700305}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000306
Simon Glass3e8bd462016-02-29 15:25:48 -0700307void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000308{
Simon Glass96e5b032016-02-29 15:25:47 -0700309 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000310
Kever Yangd4729262018-02-10 17:55:37 +0800311 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700312 if (!drv) {
313 printf("## Unknown partition table type %x\n",
314 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000315 return;
wdenkaffae2b2002-08-17 09:36:01 +0000316 }
Simon Glass96e5b032016-02-29 15:25:47 -0700317
318 PRINTF("## Testing for valid %s partition ##\n", drv->name);
319 print_part_header(drv->name, dev_desc);
320 if (drv->print)
321 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000322}
323
Adam Ford1811a922018-02-06 12:43:56 -0600324#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000325
Simon Glass3e8bd462016-02-29 15:25:48 -0700326int part_get_info(struct blk_desc *dev_desc, int part,
Simon Glass05289792020-05-10 11:39:57 -0600327 struct disk_partition *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000328{
Adam Ford1811a922018-02-06 12:43:56 -0600329#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -0700330 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000331
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100332#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren894bfbb2012-09-21 09:50:59 +0000333 /* The common case is no UUID support */
334 info->uuid[0] = 0;
335#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100336#ifdef CONFIG_PARTITION_TYPE_GUID
337 info->type_guid[0] = 0;
338#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000339
Kever Yangd4729262018-02-10 17:55:37 +0800340 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700341 if (!drv) {
342 debug("## Unknown partition table type %x\n",
343 dev_desc->part_type);
344 return -EPROTONOSUPPORT;
345 }
346 if (!drv->get_info) {
Nishanth Menon2ae67ae2016-03-15 16:15:32 -0500347 PRINTF("## Driver %s does not have the get_info() method\n",
348 drv->name);
Simon Glass96e5b032016-02-29 15:25:47 -0700349 return -ENOSYS;
350 }
351 if (drv->get_info(dev_desc, part, info) == 0) {
352 PRINTF("## Valid %s partition found ##\n", drv->name);
353 return 0;
Stephen Warren2f501642012-09-21 12:46:54 +0000354 }
Adam Ford1811a922018-02-06 12:43:56 -0600355#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000356
357 return -1;
358}
Rob Herring99d2c202012-09-21 04:08:17 +0000359
Simon Glass05289792020-05-10 11:39:57 -0600360int part_get_info_whole_disk(struct blk_desc *dev_desc,
361 struct disk_partition *info)
Rob Clark4bbcc962017-09-09 13:15:55 -0400362{
363 info->start = 0;
364 info->size = dev_desc->lba;
365 info->blksz = dev_desc->blksz;
366 info->bootable = 0;
367 strcpy((char *)info->type, BOOT_PART_TYPE);
368 strcpy((char *)info->name, "Whole Disk");
369#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
370 info->uuid[0] = 0;
371#endif
372#ifdef CONFIG_PARTITION_TYPE_GUID
373 info->type_guid[0] = 0;
374#endif
375
376 return 0;
377}
378
Simon Glassebac37c2016-02-29 15:25:43 -0700379int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
380 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000381{
382 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600383 char *dup_str = NULL;
384 const char *dev_str, *hwpart_str;
385 int dev, hwpart;
386
387 hwpart_str = strchr(dev_hwpart_str, '.');
388 if (hwpart_str) {
389 dup_str = strdup(dev_hwpart_str);
390 dup_str[hwpart_str - dev_hwpart_str] = 0;
391 dev_str = dup_str;
392 hwpart_str++;
393 } else {
394 dev_str = dev_hwpart_str;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600395 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600396 }
Stephen Warren2023e602012-09-21 09:50:56 +0000397
398 dev = simple_strtoul(dev_str, &ep, 16);
399 if (*ep) {
400 printf("** Bad device specification %s %s **\n",
401 ifname, dev_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600402 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600403 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000404 }
405
Stephen Warren336b6f92014-05-07 12:19:01 -0600406 if (hwpart_str) {
407 hwpart = simple_strtoul(hwpart_str, &ep, 16);
408 if (*ep) {
409 printf("** Bad HW partition specification %s %s **\n",
410 ifname, hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600411 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600412 goto cleanup;
413 }
414 }
415
416 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000417 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Sam Protsenko8f690842018-07-30 19:19:27 +0300418 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600419 dev = -ENOENT;
Stephen Warren336b6f92014-05-07 12:19:01 -0600420 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000421 }
422
Adam Ford1811a922018-02-06 12:43:56 -0600423#ifdef CONFIG_HAVE_BLOCK_DEVICE
Erik Tideman99e7fc82016-01-11 13:39:07 +0000424 /*
425 * Updates the partition table for the specified hw partition.
Robert Hancock4edfabd2019-06-18 09:53:04 -0600426 * Always should be done, otherwise hw partition 0 will return stale
427 * data after displaying a non-zero hw partition.
Erik Tideman99e7fc82016-01-11 13:39:07 +0000428 */
Robert Hancock4edfabd2019-06-18 09:53:04 -0600429 part_init(*dev_desc);
Erik Tideman99e7fc82016-01-11 13:39:07 +0000430#endif
431
Stephen Warren336b6f92014-05-07 12:19:01 -0600432cleanup:
433 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000434 return dev;
435}
436
Stephen Warren10a37fd2012-09-21 09:50:57 +0000437#define PART_UNSPECIFIED -2
438#define PART_AUTO -1
Simon Glasse35929e2016-02-29 15:25:44 -0700439int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700440 struct blk_desc **dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600441 struct disk_partition *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000442{
Stephen Warren10a37fd2012-09-21 09:50:57 +0000443 int ret = -1;
444 const char *part_str;
445 char *dup_str = NULL;
446 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000447 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000448 char *ep;
449 int p;
450 int part;
Simon Glass05289792020-05-10 11:39:57 -0600451 struct disk_partition tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000452
Hans de Goedeafc17442015-09-17 18:46:55 -0400453#ifdef CONFIG_SANDBOX
Stephen Warren4d907022014-06-12 10:28:32 -0600454 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200455 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600456 * host's own filesystem.
457 */
458 if (0 == strcmp(ifname, "hostfs")) {
459 *dev_desc = NULL;
460 info->start = 0;
461 info->size = 0;
462 info->blksz = 0;
463 info->bootable = 0;
464 strcpy((char *)info->type, BOOT_PART_TYPE);
465 strcpy((char *)info->name, "Sandbox host");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100466#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren4d907022014-06-12 10:28:32 -0600467 info->uuid[0] = 0;
468#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100469#ifdef CONFIG_PARTITION_TYPE_GUID
470 info->type_guid[0] = 0;
471#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600472
473 return 0;
474 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400475#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600476
Hans de Goede251cee02015-09-17 18:46:58 -0400477#ifdef CONFIG_CMD_UBIFS
478 /*
Heinrich Schuchardt3174caf2019-04-10 18:59:26 +0200479 * Special-case ubi, ubi goes through a mtd, rather than through
Hans de Goede251cee02015-09-17 18:46:58 -0400480 * a regular block device.
481 */
482 if (0 == strcmp(ifname, "ubi")) {
483 if (!ubifs_is_mounted()) {
484 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
485 return -1;
486 }
487
488 *dev_desc = NULL;
489 memset(info, 0, sizeof(*info));
490 strcpy((char *)info->type, BOOT_PART_TYPE);
491 strcpy((char *)info->name, "UBI");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100492#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede251cee02015-09-17 18:46:58 -0400493 info->uuid[0] = 0;
494#endif
495 return 0;
496 }
497#endif
498
Stephen Warren10a37fd2012-09-21 09:50:57 +0000499 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000500 if (!dev_part_str || !strlen(dev_part_str) ||
501 !strcmp(dev_part_str, "-"))
Simon Glass00caae62017-08-03 12:22:12 -0600502 dev_part_str = env_get("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000503
Stephen Warren10a37fd2012-09-21 09:50:57 +0000504 /* If still no dev_part_str, it's an error */
505 if (!dev_part_str) {
506 printf("** No device specified **\n");
507 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000508 }
509
Stephen Warren10a37fd2012-09-21 09:50:57 +0000510 /* Separate device and partition ID specification */
511 part_str = strchr(dev_part_str, ':');
512 if (part_str) {
513 dup_str = strdup(dev_part_str);
514 dup_str[part_str - dev_part_str] = 0;
515 dev_str = dup_str;
516 part_str++;
517 } else {
518 dev_str = dev_part_str;
519 }
Rob Herring99d2c202012-09-21 04:08:17 +0000520
Stephen Warren10a37fd2012-09-21 09:50:57 +0000521 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700522 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000523 if (dev < 0)
524 goto cleanup;
525
526 /* Convert partition ID string to number */
527 if (!part_str || !*part_str) {
528 part = PART_UNSPECIFIED;
529 } else if (!strcmp(part_str, "auto")) {
530 part = PART_AUTO;
531 } else {
532 /* Something specified -> use exactly that */
533 part = (int)simple_strtoul(part_str, &ep, 16);
534 /*
535 * Less than whole string converted,
536 * or request for whole device, but caller requires partition.
537 */
538 if (*ep || (part == 0 && !allow_whole_dev)) {
539 printf("** Bad partition specification %s %s **\n",
540 ifname, dev_part_str);
541 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000542 }
Rob Herring99d2c202012-09-21 04:08:17 +0000543 }
544
Stephen Warren10a37fd2012-09-21 09:50:57 +0000545 /*
546 * No partition table on device,
547 * or user requested partition 0 (entire device).
548 */
549 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
550 (part == 0)) {
551 if (!(*dev_desc)->lba) {
552 printf("** Bad device size - %s %s **\n", ifname,
553 dev_str);
554 goto cleanup;
555 }
Rob Herring99d2c202012-09-21 04:08:17 +0000556
Stephen Warren10a37fd2012-09-21 09:50:57 +0000557 /*
558 * If user specified a partition ID other than 0,
559 * or the calling command only accepts partitions,
560 * it's an error.
561 */
562 if ((part > 0) || (!allow_whole_dev)) {
563 printf("** No partition table - %s %s **\n", ifname,
564 dev_str);
565 goto cleanup;
566 }
567
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800568 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
569
Rob Clark4bbcc962017-09-09 13:15:55 -0400570 part_get_info_whole_disk(*dev_desc, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000571
572 ret = 0;
573 goto cleanup;
574 }
575
576 /*
577 * Now there's known to be a partition table,
578 * not specifying a partition means to pick partition 1.
579 */
580 if (part == PART_UNSPECIFIED)
581 part = 1;
582
583 /*
584 * If user didn't specify a partition number, or did specify something
585 * other than "auto", use that partition number directly.
586 */
587 if (part != PART_AUTO) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700588 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000589 if (ret) {
590 printf("** Invalid partition %d **\n", part);
591 goto cleanup;
592 }
593 } else {
594 /*
595 * Find the first bootable partition.
596 * If none are bootable, fall back to the first valid partition.
597 */
598 part = 0;
599 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700600 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000601 if (ret)
602 continue;
603
604 /*
605 * First valid partition, or new better partition?
606 * If so, save partition ID.
607 */
608 if (!part || info->bootable)
609 part = p;
610
611 /* Best possible partition? Stop searching. */
612 if (info->bootable)
613 break;
614
615 /*
616 * We now need to search further for best possible.
617 * If we what we just queried was the best so far,
618 * save the info since we over-write it next loop.
619 */
620 if (part == p)
621 tmpinfo = *info;
622 }
623 /* If we found any acceptable partition */
624 if (part) {
625 /*
626 * If we searched all possible partition IDs,
627 * return the first valid partition we found.
628 */
629 if (p == MAX_SEARCH_PARTITIONS + 1)
630 *info = tmpinfo;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000631 } else {
632 printf("** No valid partitions found **\n");
Stephen Warren71bba422012-10-08 07:45:54 +0000633 ret = -1;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000634 goto cleanup;
635 }
Rob Herring99d2c202012-09-21 04:08:17 +0000636 }
637 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
638 printf("** Invalid partition type \"%.32s\""
639 " (expect \"" BOOT_PART_TYPE "\")\n",
640 info->type);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000641 ret = -1;
642 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000643 }
644
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800645 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
646
Stephen Warren10a37fd2012-09-21 09:50:57 +0000647 ret = part;
648 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000649
Stephen Warren10a37fd2012-09-21 09:50:57 +0000650cleanup:
651 free(dup_str);
652 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000653}
Petr Kulhavy87b85302016-09-09 10:27:15 +0200654
Sam Protsenko30789092017-09-22 01:51:58 +0300655int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
Simon Glass05289792020-05-10 11:39:57 -0600656 struct disk_partition *info, int part_type)
Petr Kulhavy87b85302016-09-09 10:27:15 +0200657{
Petr Kulhavy87b85302016-09-09 10:27:15 +0200658 struct part_driver *part_drv;
Kever Yang56670d62018-02-10 17:55:38 +0800659 int ret;
660 int i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200661
Kever Yang56670d62018-02-10 17:55:38 +0800662 part_drv = part_driver_lookup_type(dev_desc);
663 if (!part_drv)
664 return -1;
665 for (i = 1; i < part_drv->max_entries; i++) {
666 ret = part_drv->get_info(dev_desc, i, info);
667 if (ret != 0) {
668 /* no more entries in table */
669 break;
670 }
671 if (strcmp(name, (const char *)info->name) == 0) {
672 /* matched */
673 return i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200674 }
675 }
Kever Yang56670d62018-02-10 17:55:38 +0800676
Petr Kulhavy87b85302016-09-09 10:27:15 +0200677 return -1;
678}
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200679
Sam Protsenko30789092017-09-22 01:51:58 +0300680int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
Simon Glass05289792020-05-10 11:39:57 -0600681 struct disk_partition *info)
Sam Protsenko30789092017-09-22 01:51:58 +0300682{
683 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
684}
685
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300686/**
687 * Get partition info from device number and partition name.
688 *
689 * Parse a device number and partition name string in the form of
690 * "device_num#partition_name", for example "0#misc". If the partition
691 * is found, sets dev_desc and part_info accordingly with the information
692 * of the partition with the given partition_name.
693 *
694 * @param[in] dev_iface Device interface
695 * @param[in] dev_part_str Input string argument, like "0#misc"
696 * @param[out] dev_desc Place to store the device description pointer
697 * @param[out] part_info Place to store the partition information
698 * @return 0 on success, or a negative on error
699 */
700static int part_get_info_by_dev_and_name(const char *dev_iface,
701 const char *dev_part_str,
702 struct blk_desc **dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600703 struct disk_partition *part_info)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300704{
705 char *ep;
706 const char *part_str;
707 int dev_num;
708
709 part_str = strchr(dev_part_str, '#');
710 if (!part_str || part_str == dev_part_str)
711 return -EINVAL;
712
713 dev_num = simple_strtoul(dev_part_str, &ep, 16);
714 if (ep != part_str) {
715 /* Not all the first part before the # was parsed. */
716 return -EINVAL;
717 }
718 part_str++;
719
720 *dev_desc = blk_get_dev(dev_iface, dev_num);
721 if (!*dev_desc) {
722 printf("Could not find %s %d\n", dev_iface, dev_num);
723 return -EINVAL;
724 }
725 if (part_get_info_by_name(*dev_desc, part_str, part_info) < 0) {
726 printf("Could not find \"%s\" partition\n", part_str);
727 return -EINVAL;
728 }
729 return 0;
730}
731
732int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
733 const char *dev_part_str,
734 struct blk_desc **dev_desc,
Simon Glass05289792020-05-10 11:39:57 -0600735 struct disk_partition *part_info)
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300736{
737 /* Split the part_name if passed as "$dev_num#part_name". */
738 if (!part_get_info_by_dev_and_name(dev_iface, dev_part_str,
739 dev_desc, part_info))
740 return 0;
741 /*
742 * Couldn't lookup by name, try looking up the partition description
743 * directly.
744 */
745 if (blk_get_device_part_str(dev_iface, dev_part_str,
746 dev_desc, part_info, 1) < 0) {
747 printf("Couldn't find partition %s %s\n",
748 dev_iface, dev_part_str);
749 return -EINVAL;
750 }
751 return 0;
752}
753
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200754void part_set_generic_name(const struct blk_desc *dev_desc,
755 int part_num, char *name)
756{
757 char *devtype;
758
759 switch (dev_desc->if_type) {
760 case IF_TYPE_IDE:
761 case IF_TYPE_SATA:
762 case IF_TYPE_ATAPI:
763 devtype = "hd";
764 break;
765 case IF_TYPE_SCSI:
766 devtype = "sd";
767 break;
768 case IF_TYPE_USB:
769 devtype = "usbd";
770 break;
771 case IF_TYPE_DOC:
772 devtype = "docd";
773 break;
774 case IF_TYPE_MMC:
775 case IF_TYPE_SD:
776 devtype = "mmcsd";
777 break;
778 default:
779 devtype = "xx";
780 break;
781 }
782
783 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
784}