blob: 79955c7fb0002db1d2190087affd5c5bb0dfee00 [file] [log] [blame]
Tom Rini10e47792018-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 Glass655306c2020-05-10 11:39:58 -06008#include <blk.h>
wdenkaffae2b2002-08-17 09:36:01 +00009#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060010#include <env.h>
Simon Glass83ce5632016-02-29 15:25:47 -070011#include <errno.h>
wdenkaffae2b2002-08-17 09:36:01 +000012#include <ide.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Stephen Warrenc87ff222012-09-21 09:50:57 +000014#include <malloc.h>
Grant Likelyffc2dd72007-02-20 09:04:34 +010015#include <part.h>
Hans de Goede690c7962015-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 Protsenkodee80382017-09-22 01:51:58 +030026/* Check all partition types */
27#define PART_TYPE_ALL -1
28
Kever Yang1c636242018-02-10 17:55:37 +080029static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
Simon Glass83ce5632016-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 Yang1c636242018-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 Glass83ce5632016-02-29 15:25:47 -070051 }
52
53 /* Not found */
54 return NULL;
55}
56
Kever Yang91829662018-02-10 17:55:38 +080057#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glasse3394752016-02-29 15:25:34 -070058static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likelyffc2dd72007-02-20 09:04:34 +010059{
Simon Glasse3dfa912016-05-01 13:52:32 -060060 struct blk_desc *dev_desc;
61 int ret;
Grant Likelyffc2dd72007-02-20 09:04:34 +010062
Simon Glasse3dfa912016-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 Kientzle47e444c2012-03-27 11:43:25 +020067 return NULL;
Grant Likelyffc2dd72007-02-20 09:04:34 +010068 }
Simon Glasse3dfa912016-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 Likelyffc2dd72007-02-20 09:04:34 +010077}
Stephen Warrenaeca52f2014-05-07 12:19:01 -060078
Simon Glassbe1e9bb2016-02-29 15:25:42 -070079struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warrenaeca52f2014-05-07 12:19:01 -060080{
Stephen Warrenad17c0f2014-05-23 12:48:11 -060081 return get_dev_hwpart(ifname, dev, 0);
Stephen Warrenaeca52f2014-05-07 12:19:01 -060082}
Grant Likelyffc2dd72007-02-20 09:04:34 +010083#else
Simon Glasse3394752016-02-29 15:25:34 -070084struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warrenaeca52f2014-05-07 12:19:01 -060085{
86 return NULL;
87}
88
Simon Glassbe1e9bb2016-02-29 15:25:42 -070089struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likelyffc2dd72007-02-20 09:04:34 +010090{
91 return NULL;
92}
93#endif
94
Adam Fordb10ba902018-02-06 12:43:56 -060095#ifdef CONFIG_HAVE_BLOCK_DEVICE
Grant Likelyffc2dd72007-02-20 09:04:34 +010096
wdenkaffae2b2002-08-17 09:36:01 +000097/* ------------------------------------------------------------------------- */
98/*
99 * reports device info to the user
100 */
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300101
wdenkc35ba4e2004-03-14 22:25:36 +0000102#ifdef CONFIG_LBA48
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300103typedef uint64_t lba512_t;
wdenkf602aa02004-03-13 23:29:43 +0000104#else
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300105typedef lbaint_t lba512_t;
wdenkf602aa02004-03-13 23:29:43 +0000106#endif
wdenkaffae2b2002-08-17 09:36:01 +0000107
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300108/*
Heinrich Schuchardt296d4dc2020-01-16 20:36:58 +0100109 * Overflowless variant of (block_count * mul_by / 2**right_shift)
110 * when 2**right_shift > mul_by
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300111 */
Heinrich Schuchardt296d4dc2020-01-16 20:36:58 +0100112static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by,
113 int right_shift)
Sergei Trofimovich89d935b2010-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 Schuchardt296d4dc2020-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 Trofimovich89d935b2010-08-08 15:05:39 +0300121}
122
Simon Glasse3394752016-02-29 15:25:34 -0700123void dev_print (struct blk_desc *dev_desc)
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300124{
125 lba512_t lba512; /* number of blocks if 512bytes block size */
126
Wolfgang Denk8561e712009-05-15 09:27:58 +0200127 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
128 puts ("not available\n");
129 return;
130 }
131
Tor Krill03ff3302008-05-29 11:10:30 +0200132 switch (dev_desc->if_type) {
Detlev Zundelbec6b322008-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,
Detlev Zundelbec6b322008-05-05 16:11:21 +0200137 dev_desc->product,
138 dev_desc->revision);
139 break;
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200140 case IF_TYPE_ATAPI:
Detlev Zundelbec6b322008-05-05 16:11:21 +0200141 case IF_TYPE_IDE:
142 case IF_TYPE_SATA:
Dave Liu76596ba2008-03-26 22:49:44 +0800143 printf ("Model: %s Firm: %s Ser#: %s\n",
144 dev_desc->vendor,
145 dev_desc->revision,
146 dev_desc->product);
Detlev Zundelbec6b322008-05-05 16:11:21 +0200147 break;
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200148 case IF_TYPE_SD:
149 case IF_TYPE_MMC:
Nícolas Carneiro Lebedencoef3edd42008-09-04 15:35:46 -0300150 case IF_TYPE_USB:
Zhikang Zhang182fccd2017-08-03 02:30:56 -0700151 case IF_TYPE_NVME:
Anastasiia Lukianenko4fec7f82020-08-06 12:42:55 +0300152 case IF_TYPE_PVBLOCK:
Heinrich Schuchardtfa59f682021-01-25 12:57:15 +0100153 case IF_TYPE_HOST:
Nícolas Carneiro Lebedencoef3edd42008-09-04 15:35:46 -0300154 printf ("Vendor: %s Rev: %s Prod: %s\n",
155 dev_desc->vendor,
156 dev_desc->revision,
157 dev_desc->product);
158 break;
Tuomas Tynkkynend4580062018-10-15 02:21:10 -0700159 case IF_TYPE_VIRTIO:
160 printf("%s VirtIO Block Device\n", dev_desc->vendor);
161 break;
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200162 case IF_TYPE_DOC:
163 puts("device type DOC\n");
164 return;
Tor Krill03ff3302008-05-29 11:10:30 +0200165 case IF_TYPE_UNKNOWN:
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200166 puts("device type unknown\n");
167 return;
Detlev Zundelbec6b322008-05-05 16:11:21 +0200168 default:
Remy Bohmerf9f718b2008-09-19 13:30:06 +0200169 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundelbec6b322008-05-05 16:11:21 +0200170 return;
wdenkaffae2b2002-08-17 09:36:01 +0000171 }
172 puts (" Type: ");
173 if (dev_desc->removable)
174 puts ("Removable ");
175 switch (dev_desc->type & 0x1F) {
Detlev Zundel0e11cc62008-05-05 16:11:22 +0200176 case DEV_TYPE_HARDDISK:
177 puts ("Hard Disk");
178 break;
179 case DEV_TYPE_CDROM:
180 puts ("CD ROM");
181 break;
182 case DEV_TYPE_OPDISK:
183 puts ("Optical Device");
184 break;
185 case DEV_TYPE_TAPE:
186 puts ("Tape");
187 break;
188 default:
189 printf ("# %02X #", dev_desc->type & 0x1F);
190 break;
wdenkaffae2b2002-08-17 09:36:01 +0000191 }
192 puts ("\n");
Jerry Huang6a4feb42012-11-06 15:33:12 +0000193 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000194 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkf602aa02004-03-13 23:29:43 +0000195 lbaint_t lba;
wdenk05939202004-04-18 17:39:38 +0000196
197 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000198
wdenkf602aa02004-03-13 23:29:43 +0000199 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000200 /* round to 1 digit */
Pavel Macheka4264e12014-09-09 15:19:42 +0200201 /* 2048 = (1024 * 1024) / 512 MB */
Heinrich Schuchardt2cb615e2019-06-02 00:04:50 +0200202 mb = lba512_muldiv(lba512, 10, 11);
Sergei Trofimovich89d935b2010-08-08 15:05:39 +0300203
wdenkaffae2b2002-08-17 09:36:01 +0000204 mb_quot = mb / 10;
205 mb_rem = mb - (10 * mb_quot);
206
207 gb = mb / 1024;
208 gb_quot = gb / 10;
209 gb_rem = gb - (10 * gb_quot);
wdenkc35ba4e2004-03-14 22:25:36 +0000210#ifdef CONFIG_LBA48
wdenk05939202004-04-18 17:39:38 +0000211 if (dev_desc->lba48)
wdenkf602aa02004-03-13 23:29:43 +0000212 printf (" Supports 48-bit addressing\n");
213#endif
Heiko Schocher0f602e12009-12-03 11:21:21 +0100214#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblotccbb9152016-12-23 10:45:43 +0100215 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkf602aa02004-03-13 23:29:43 +0000216 mb_quot, mb_rem,
217 gb_quot, gb_rem,
218 lba,
219 dev_desc->blksz);
220#else
Jean-Jacques Hiblotccbb9152016-12-23 10:45:43 +0100221 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000222 mb_quot, mb_rem,
223 gb_quot, gb_rem,
wdenkf602aa02004-03-13 23:29:43 +0000224 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000225 dev_desc->blksz);
wdenkf602aa02004-03-13 23:29:43 +0000226#endif
wdenkaffae2b2002-08-17 09:36:01 +0000227 } else {
228 puts (" Capacity: not available\n");
229 }
230}
Jon Loeliger1670a5b2007-07-10 11:19:50 -0500231#endif
wdenkaffae2b2002-08-17 09:36:01 +0000232
Adam Fordb10ba902018-02-06 12:43:56 -0600233#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000234
Simon Glassb89a8442016-02-29 15:25:48 -0700235void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000236{
Simon Glass83ce5632016-02-29 15:25:47 -0700237 struct part_driver *drv =
238 ll_entry_start(struct part_driver, part_driver);
239 const int n_ents = ll_entry_count(struct part_driver, part_driver);
240 struct part_driver *entry;
richardretanubune6745592008-09-26 11:13:22 -0400241
Eric Nelsonfaf4f052016-03-28 10:05:44 -0700242 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
243
Simon Glass83ce5632016-02-29 15:25:47 -0700244 dev_desc->part_type = PART_TYPE_UNKNOWN;
245 for (entry = drv; entry != drv + n_ents; entry++) {
246 int ret;
wdenk452cfd62002-11-19 11:04:11 +0000247
Simon Glass83ce5632016-02-29 15:25:47 -0700248 ret = entry->test(dev_desc);
249 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
250 if (!ret) {
251 dev_desc->part_type = entry->part_type;
252 break;
253 }
wdenk452cfd62002-11-19 11:04:11 +0000254 }
wdenkaffae2b2002-08-17 09:36:01 +0000255}
256
Simon Glass83ce5632016-02-29 15:25:47 -0700257static void print_part_header(const char *type, struct blk_desc *dev_desc)
258{
Patrick Delaunayc4bbbec2017-01-27 11:00:36 +0100259#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayf7e07722017-01-27 11:00:37 +0100260 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay21d3bce2017-01-27 11:00:38 +0100261 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay1aa32a82017-01-27 11:00:39 +0100262 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +0100263 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000264 puts ("\nPartition Map for ");
265 switch (dev_desc->if_type) {
Detlev Zundel0e11cc62008-05-05 16:11:22 +0200266 case IF_TYPE_IDE:
267 puts ("IDE");
268 break;
269 case IF_TYPE_SATA:
270 puts ("SATA");
271 break;
272 case IF_TYPE_SCSI:
273 puts ("SCSI");
274 break;
275 case IF_TYPE_ATAPI:
276 puts ("ATAPI");
277 break;
278 case IF_TYPE_USB:
279 puts ("USB");
280 break;
281 case IF_TYPE_DOC:
282 puts ("DOC");
283 break;
Lei Wen61dba932010-09-13 22:07:28 +0800284 case IF_TYPE_MMC:
285 puts ("MMC");
286 break;
Henrik Nordström26f9a6c2013-11-10 10:26:56 -0700287 case IF_TYPE_HOST:
Zhikang Zhang182fccd2017-08-03 02:30:56 -0700288 puts ("HOST");
289 break;
290 case IF_TYPE_NVME:
291 puts ("NVMe");
Henrik Nordström26f9a6c2013-11-10 10:26:56 -0700292 break;
Anastasiia Lukianenko4fec7f82020-08-06 12:42:55 +0300293 case IF_TYPE_PVBLOCK:
294 puts("PV BLOCK");
295 break;
Tuomas Tynkkynend4580062018-10-15 02:21:10 -0700296 case IF_TYPE_VIRTIO:
297 puts("VirtIO");
298 break;
Simon Glass507ab962021-12-04 08:56:31 -0700299 case IF_TYPE_EFI_MEDIA:
300 puts("EFI");
301 break;
Detlev Zundel0e11cc62008-05-05 16:11:22 +0200302 default:
Simon Glass507ab962021-12-04 08:56:31 -0700303 puts("UNKNOWN");
Detlev Zundel0e11cc62008-05-05 16:11:22 +0200304 break;
wdenkaffae2b2002-08-17 09:36:01 +0000305 }
306 printf (" device %d -- Partition Type: %s\n\n",
Simon Glass2f26fff2016-02-29 15:25:51 -0700307 dev_desc->devnum, type);
Gabe Black0fc71b52012-10-12 14:26:08 +0000308#endif /* any CONFIG_..._PARTITION */
Simon Glass83ce5632016-02-29 15:25:47 -0700309}
Gabe Black0fc71b52012-10-12 14:26:08 +0000310
Simon Glassb89a8442016-02-29 15:25:48 -0700311void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000312{
Simon Glass83ce5632016-02-29 15:25:47 -0700313 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000314
Kever Yang1c636242018-02-10 17:55:37 +0800315 drv = part_driver_lookup_type(dev_desc);
Simon Glass83ce5632016-02-29 15:25:47 -0700316 if (!drv) {
317 printf("## Unknown partition table type %x\n",
318 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000319 return;
wdenkaffae2b2002-08-17 09:36:01 +0000320 }
Simon Glass83ce5632016-02-29 15:25:47 -0700321
322 PRINTF("## Testing for valid %s partition ##\n", drv->name);
323 print_part_header(drv->name, dev_desc);
324 if (drv->print)
325 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000326}
327
Adam Fordb10ba902018-02-06 12:43:56 -0600328#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren07c5bff2012-09-21 12:46:54 +0000329
Simon Glassb89a8442016-02-29 15:25:48 -0700330int part_get_info(struct blk_desc *dev_desc, int part,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600331 struct disk_partition *info)
Stephen Warren07c5bff2012-09-21 12:46:54 +0000332{
Adam Fordb10ba902018-02-06 12:43:56 -0600333#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass83ce5632016-02-29 15:25:47 -0700334 struct part_driver *drv;
Stephen Warren07c5bff2012-09-21 12:46:54 +0000335
Patrick Delaunay73287092017-01-27 11:00:42 +0100336#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +0000337 /* The common case is no UUID support */
338 info->uuid[0] = 0;
339#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100340#ifdef CONFIG_PARTITION_TYPE_GUID
341 info->type_guid[0] = 0;
342#endif
Stephen Warrenc6c7b7a2012-09-21 09:50:59 +0000343
Kever Yang1c636242018-02-10 17:55:37 +0800344 drv = part_driver_lookup_type(dev_desc);
Simon Glass83ce5632016-02-29 15:25:47 -0700345 if (!drv) {
346 debug("## Unknown partition table type %x\n",
347 dev_desc->part_type);
348 return -EPROTONOSUPPORT;
349 }
350 if (!drv->get_info) {
Nishanth Menonef1851a2016-03-15 16:15:32 -0500351 PRINTF("## Driver %s does not have the get_info() method\n",
352 drv->name);
Simon Glass83ce5632016-02-29 15:25:47 -0700353 return -ENOSYS;
354 }
355 if (drv->get_info(dev_desc, part, info) == 0) {
356 PRINTF("## Valid %s partition found ##\n", drv->name);
357 return 0;
Stephen Warren07c5bff2012-09-21 12:46:54 +0000358 }
Adam Fordb10ba902018-02-06 12:43:56 -0600359#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren07c5bff2012-09-21 12:46:54 +0000360
Sean Andersone7bddea2021-02-05 09:38:55 -0500361 return -ENOENT;
Stephen Warren07c5bff2012-09-21 12:46:54 +0000362}
Rob Herringd586cec2012-09-21 04:08:17 +0000363
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600364int part_get_info_whole_disk(struct blk_desc *dev_desc,
365 struct disk_partition *info)
Rob Clark2b7bfd92017-09-09 13:15:55 -0400366{
367 info->start = 0;
368 info->size = dev_desc->lba;
369 info->blksz = dev_desc->blksz;
370 info->bootable = 0;
371 strcpy((char *)info->type, BOOT_PART_TYPE);
372 strcpy((char *)info->name, "Whole Disk");
373#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
374 info->uuid[0] = 0;
375#endif
376#ifdef CONFIG_PARTITION_TYPE_GUID
377 info->type_guid[0] = 0;
378#endif
379
380 return 0;
381}
382
Simon Glasse6649a62016-02-29 15:25:43 -0700383int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
384 struct blk_desc **dev_desc)
Stephen Warrenafd909c2012-09-21 09:50:56 +0000385{
386 char *ep;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600387 char *dup_str = NULL;
388 const char *dev_str, *hwpart_str;
389 int dev, hwpart;
390
391 hwpart_str = strchr(dev_hwpart_str, '.');
392 if (hwpart_str) {
393 dup_str = strdup(dev_hwpart_str);
394 dup_str[hwpart_str - dev_hwpart_str] = 0;
395 dev_str = dup_str;
396 hwpart_str++;
397 } else {
398 dev_str = dev_hwpart_str;
Stephen Warrenad17c0f2014-05-23 12:48:11 -0600399 hwpart = 0;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600400 }
Stephen Warrenafd909c2012-09-21 09:50:56 +0000401
Simon Glass3ff49ec2021-07-24 09:03:29 -0600402 dev = hextoul(dev_str, &ep);
Stephen Warrenafd909c2012-09-21 09:50:56 +0000403 if (*ep) {
404 printf("** Bad device specification %s %s **\n",
405 ifname, dev_str);
Simon Glass356e0e62016-05-01 13:52:36 -0600406 dev = -EINVAL;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600407 goto cleanup;
408 }
409
410 if (hwpart_str) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600411 hwpart = hextoul(hwpart_str, &ep);
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600412 if (*ep) {
413 printf("** Bad HW partition specification %s %s **\n",
414 ifname, hwpart_str);
Simon Glass356e0e62016-05-01 13:52:36 -0600415 dev = -EINVAL;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600416 goto cleanup;
417 }
Stephen Warrenafd909c2012-09-21 09:50:56 +0000418 }
419
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600420 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warrenafd909c2012-09-21 09:50:56 +0000421 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Sam Protsenko6839baf2018-07-30 19:19:27 +0300422 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Sean Andersone7bddea2021-02-05 09:38:55 -0500423 dev = -ENODEV;
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600424 goto cleanup;
Stephen Warrenafd909c2012-09-21 09:50:56 +0000425 }
426
Adam Fordb10ba902018-02-06 12:43:56 -0600427#ifdef CONFIG_HAVE_BLOCK_DEVICE
Erik Tideman8d11b8e2016-01-11 13:39:07 +0000428 /*
429 * Updates the partition table for the specified hw partition.
Robert Hancock219907e2019-06-18 09:53:04 -0600430 * Always should be done, otherwise hw partition 0 will return stale
431 * data after displaying a non-zero hw partition.
Erik Tideman8d11b8e2016-01-11 13:39:07 +0000432 */
AKASHI Takahiro96017752021-12-10 15:49:28 +0900433 if ((*dev_desc)->if_type == IF_TYPE_MMC)
434 part_init(*dev_desc);
Erik Tideman8d11b8e2016-01-11 13:39:07 +0000435#endif
436
Stephen Warrenaeca52f2014-05-07 12:19:01 -0600437cleanup:
438 free(dup_str);
Stephen Warrenafd909c2012-09-21 09:50:56 +0000439 return dev;
440}
441
Stephen Warrenc87ff222012-09-21 09:50:57 +0000442#define PART_UNSPECIFIED -2
443#define PART_AUTO -1
Simon Glasse76ee972016-02-29 15:25:44 -0700444int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glasse3394752016-02-29 15:25:34 -0700445 struct blk_desc **dev_desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600446 struct disk_partition *info, int allow_whole_dev)
Rob Herringd586cec2012-09-21 04:08:17 +0000447{
Sean Andersone7bddea2021-02-05 09:38:55 -0500448 int ret;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000449 const char *part_str;
450 char *dup_str = NULL;
451 const char *dev_str;
Rob Herringd586cec2012-09-21 04:08:17 +0000452 int dev;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000453 char *ep;
454 int p;
455 int part;
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600456 struct disk_partition tmpinfo;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000457
Sean Andersonc678b322022-03-22 16:59:20 -0400458#if IS_ENABLED(CONFIG_SANDBOX) || IS_ENABLED(CONFIG_SEMIHOSTING)
Stephen Warrenbff6c312014-06-12 10:28:32 -0600459 /*
Pavel Machek13334e72014-07-19 23:50:44 +0200460 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warrenbff6c312014-06-12 10:28:32 -0600461 * host's own filesystem.
462 */
463 if (0 == strcmp(ifname, "hostfs")) {
464 *dev_desc = NULL;
465 info->start = 0;
466 info->size = 0;
467 info->blksz = 0;
468 info->bootable = 0;
469 strcpy((char *)info->type, BOOT_PART_TYPE);
Sean Andersonc678b322022-03-22 16:59:20 -0400470 strcpy((char *)info->name, "Host filesystem");
Patrick Delaunay73287092017-01-27 11:00:42 +0100471#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warrenbff6c312014-06-12 10:28:32 -0600472 info->uuid[0] = 0;
473#endif
Patrick Delaunay8248c8d2015-10-27 11:00:27 +0100474#ifdef CONFIG_PARTITION_TYPE_GUID
475 info->type_guid[0] = 0;
476#endif
Stephen Warrenbff6c312014-06-12 10:28:32 -0600477
Hans de Goede690c7962015-09-17 18:46:58 -0400478 return 0;
479 }
480#endif
481
482#ifdef CONFIG_CMD_UBIFS
483 /*
Heinrich Schuchardta4388bb2019-04-10 18:59:26 +0200484 * Special-case ubi, ubi goes through a mtd, rather than through
Hans de Goede690c7962015-09-17 18:46:58 -0400485 * a regular block device.
486 */
487 if (0 == strcmp(ifname, "ubi")) {
488 if (!ubifs_is_mounted()) {
489 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
Sean Andersone7bddea2021-02-05 09:38:55 -0500490 return -EINVAL;
Hans de Goede690c7962015-09-17 18:46:58 -0400491 }
492
493 *dev_desc = NULL;
494 memset(info, 0, sizeof(*info));
495 strcpy((char *)info->type, BOOT_PART_TYPE);
496 strcpy((char *)info->name, "UBI");
Patrick Delaunay73287092017-01-27 11:00:42 +0100497#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede690c7962015-09-17 18:46:58 -0400498 info->uuid[0] = 0;
499#endif
Stephen Warrenbff6c312014-06-12 10:28:32 -0600500 return 0;
501 }
Hans de Goede4763ee32015-09-17 18:46:55 -0400502#endif
Stephen Warrenbff6c312014-06-12 10:28:32 -0600503
Stephen Warrenc87ff222012-09-21 09:50:57 +0000504 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena95af942012-09-28 05:34:09 +0000505 if (!dev_part_str || !strlen(dev_part_str) ||
506 !strcmp(dev_part_str, "-"))
Simon Glass64b723f2017-08-03 12:22:12 -0600507 dev_part_str = env_get("bootdevice");
Stephen Warrenc87ff222012-09-21 09:50:57 +0000508
509 /* If still no dev_part_str, it's an error */
510 if (!dev_part_str) {
511 printf("** No device specified **\n");
Sean Andersone7bddea2021-02-05 09:38:55 -0500512 ret = -ENODEV;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000513 goto cleanup;
514 }
515
516 /* Separate device and partition ID specification */
517 part_str = strchr(dev_part_str, ':');
518 if (part_str) {
519 dup_str = strdup(dev_part_str);
520 dup_str[part_str - dev_part_str] = 0;
521 dev_str = dup_str;
522 part_str++;
523 } else {
524 dev_str = dev_part_str;
525 }
Rob Herringd586cec2012-09-21 04:08:17 +0000526
Stephen Warrenc87ff222012-09-21 09:50:57 +0000527 /* Look up the device */
Simon Glasse6649a62016-02-29 15:25:43 -0700528 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Sean Andersone7bddea2021-02-05 09:38:55 -0500529 if (dev < 0) {
Oleksii Bidnichenko1c47ed22022-04-08 10:07:13 +0200530 printf("** Bad device specification %s %s **\n",
531 ifname, dev_str);
Sean Andersone7bddea2021-02-05 09:38:55 -0500532 ret = dev;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000533 goto cleanup;
Sean Andersone7bddea2021-02-05 09:38:55 -0500534 }
Rob Herringd586cec2012-09-21 04:08:17 +0000535
Stephen Warrenc87ff222012-09-21 09:50:57 +0000536 /* Convert partition ID string to number */
537 if (!part_str || !*part_str) {
538 part = PART_UNSPECIFIED;
539 } else if (!strcmp(part_str, "auto")) {
540 part = PART_AUTO;
541 } else {
542 /* Something specified -> use exactly that */
Simon Glass3ff49ec2021-07-24 09:03:29 -0600543 part = (int)hextoul(part_str, &ep);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000544 /*
545 * Less than whole string converted,
546 * or request for whole device, but caller requires partition.
547 */
548 if (*ep || (part == 0 && !allow_whole_dev)) {
549 printf("** Bad partition specification %s %s **\n",
550 ifname, dev_part_str);
Sean Andersone7bddea2021-02-05 09:38:55 -0500551 ret = -ENOENT;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000552 goto cleanup;
553 }
Rob Herringd586cec2012-09-21 04:08:17 +0000554 }
555
Stephen Warrenc87ff222012-09-21 09:50:57 +0000556 /*
557 * No partition table on device,
558 * or user requested partition 0 (entire device).
559 */
560 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
561 (part == 0)) {
562 if (!(*dev_desc)->lba) {
563 printf("** Bad device size - %s %s **\n", ifname,
564 dev_str);
Sean Andersone7bddea2021-02-05 09:38:55 -0500565 ret = -EINVAL;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000566 goto cleanup;
567 }
Rob Herringd586cec2012-09-21 04:08:17 +0000568
Stephen Warrenc87ff222012-09-21 09:50:57 +0000569 /*
570 * If user specified a partition ID other than 0,
571 * or the calling command only accepts partitions,
572 * it's an error.
573 */
574 if ((part > 0) || (!allow_whole_dev)) {
575 printf("** No partition table - %s %s **\n", ifname,
576 dev_str);
Sean Andersone7bddea2021-02-05 09:38:55 -0500577 ret = -EPROTONOSUPPORT;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000578 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000579 }
Stephen Warrenc87ff222012-09-21 09:50:57 +0000580
Lan Yixun (dlan)138914e2013-07-20 08:17:59 +0800581 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
582
Rob Clark2b7bfd92017-09-09 13:15:55 -0400583 part_get_info_whole_disk(*dev_desc, info);
Rob Herringd586cec2012-09-21 04:08:17 +0000584
Stephen Warrenc87ff222012-09-21 09:50:57 +0000585 ret = 0;
586 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000587 }
588
Stephen Warrenc87ff222012-09-21 09:50:57 +0000589 /*
590 * Now there's known to be a partition table,
591 * not specifying a partition means to pick partition 1.
592 */
593 if (part == PART_UNSPECIFIED)
594 part = 1;
Rob Herringd586cec2012-09-21 04:08:17 +0000595
Stephen Warrenc87ff222012-09-21 09:50:57 +0000596 /*
597 * If user didn't specify a partition number, or did specify something
598 * other than "auto", use that partition number directly.
599 */
600 if (part != PART_AUTO) {
Simon Glassb89a8442016-02-29 15:25:48 -0700601 ret = part_get_info(*dev_desc, part, info);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000602 if (ret) {
603 printf("** Invalid partition %d **\n", part);
604 goto cleanup;
605 }
606 } else {
607 /*
608 * Find the first bootable partition.
609 * If none are bootable, fall back to the first valid partition.
610 */
611 part = 0;
612 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glassb89a8442016-02-29 15:25:48 -0700613 ret = part_get_info(*dev_desc, p, info);
Stephen Warrenc87ff222012-09-21 09:50:57 +0000614 if (ret)
615 continue;
616
617 /*
618 * First valid partition, or new better partition?
619 * If so, save partition ID.
620 */
621 if (!part || info->bootable)
622 part = p;
623
624 /* Best possible partition? Stop searching. */
625 if (info->bootable)
626 break;
627
628 /*
629 * We now need to search further for best possible.
630 * If we what we just queried was the best so far,
631 * save the info since we over-write it next loop.
632 */
633 if (part == p)
634 tmpinfo = *info;
635 }
636 /* If we found any acceptable partition */
637 if (part) {
638 /*
639 * If we searched all possible partition IDs,
640 * return the first valid partition we found.
641 */
642 if (p == MAX_SEARCH_PARTITIONS + 1)
643 *info = tmpinfo;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000644 } else {
645 printf("** No valid partitions found **\n");
646 goto cleanup;
647 }
Rob Herringd586cec2012-09-21 04:08:17 +0000648 }
649 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
650 printf("** Invalid partition type \"%.32s\""
651 " (expect \"" BOOT_PART_TYPE "\")\n",
652 info->type);
Sean Andersone7bddea2021-02-05 09:38:55 -0500653 ret = -EINVAL;
Stephen Warrenc87ff222012-09-21 09:50:57 +0000654 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000655 }
656
Lan Yixun (dlan)138914e2013-07-20 08:17:59 +0800657 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
658
Stephen Warrenc87ff222012-09-21 09:50:57 +0000659 ret = part;
660 goto cleanup;
Rob Herringd586cec2012-09-21 04:08:17 +0000661
Stephen Warrenc87ff222012-09-21 09:50:57 +0000662cleanup:
663 free(dup_str);
664 return ret;
Rob Herringd586cec2012-09-21 04:08:17 +0000665}
Petr Kulhavy712257e2016-09-09 10:27:15 +0200666
Sam Protsenkodee80382017-09-22 01:51:58 +0300667int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600668 struct disk_partition *info, int part_type)
Petr Kulhavy712257e2016-09-09 10:27:15 +0200669{
Petr Kulhavy712257e2016-09-09 10:27:15 +0200670 struct part_driver *part_drv;
Kever Yang91829662018-02-10 17:55:38 +0800671 int ret;
672 int i;
Petr Kulhavy712257e2016-09-09 10:27:15 +0200673
Kever Yang91829662018-02-10 17:55:38 +0800674 part_drv = part_driver_lookup_type(dev_desc);
675 if (!part_drv)
676 return -1;
schspa669030a2021-10-20 20:15:55 +0800677
678 if (!part_drv->get_info) {
679 log_debug("## Driver %s does not have the get_info() method\n",
680 part_drv->name);
681 return -ENOSYS;
682 }
683
Kever Yang91829662018-02-10 17:55:38 +0800684 for (i = 1; i < part_drv->max_entries; i++) {
685 ret = part_drv->get_info(dev_desc, i, info);
686 if (ret != 0) {
687 /* no more entries in table */
688 break;
689 }
690 if (strcmp(name, (const char *)info->name) == 0) {
691 /* matched */
692 return i;
Petr Kulhavy712257e2016-09-09 10:27:15 +0200693 }
694 }
Kever Yang91829662018-02-10 17:55:38 +0800695
Sean Andersone7bddea2021-02-05 09:38:55 -0500696 return -ENOENT;
Petr Kulhavy712257e2016-09-09 10:27:15 +0200697}
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200698
Sam Protsenkodee80382017-09-22 01:51:58 +0300699int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600700 struct disk_partition *info)
Sam Protsenkodee80382017-09-22 01:51:58 +0300701{
702 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
703}
704
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300705/**
706 * Get partition info from device number and partition name.
707 *
708 * Parse a device number and partition name string in the form of
Sean Anderson2a1ced72021-02-05 09:38:57 -0500709 * "devicenum.hwpartnum#partition_name", for example "0.1#misc". devicenum and
710 * hwpartnum are both optional, defaulting to 0. If the partition is found,
711 * sets dev_desc and part_info accordingly with the information of the
712 * partition with the given partition_name.
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300713 *
714 * @param[in] dev_iface Device interface
Sean Anderson2a1ced72021-02-05 09:38:57 -0500715 * @param[in] dev_part_str Input string argument, like "0.1#misc"
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300716 * @param[out] dev_desc Place to store the device description pointer
717 * @param[out] part_info Place to store the partition information
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100718 * Return: 0 on success, or a negative on error
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300719 */
720static int part_get_info_by_dev_and_name(const char *dev_iface,
721 const char *dev_part_str,
722 struct blk_desc **dev_desc,
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600723 struct disk_partition *part_info)
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300724{
Sean Anderson2a1ced72021-02-05 09:38:57 -0500725 char *dup_str = NULL;
726 const char *dev_str, *part_str;
727 int ret;
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300728
Sean Anderson2a1ced72021-02-05 09:38:57 -0500729 /* Separate device and partition name specification */
Sean Andersoncecd47c2021-05-15 14:13:54 -0400730 if (dev_part_str)
731 part_str = strchr(dev_part_str, '#');
732 else
733 part_str = NULL;
734
Sean Anderson2a1ced72021-02-05 09:38:57 -0500735 if (part_str) {
736 dup_str = strdup(dev_part_str);
737 dup_str[part_str - dev_part_str] = 0;
738 dev_str = dup_str;
739 part_str++;
740 } else {
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300741 return -EINVAL;
742 }
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300743
Sean Anderson2a1ced72021-02-05 09:38:57 -0500744 ret = blk_get_device_by_str(dev_iface, dev_str, dev_desc);
Sean Andersoncb195232021-04-12 18:53:06 -0400745 if (ret < 0)
Sean Anderson2a1ced72021-02-05 09:38:57 -0500746 goto cleanup;
747
Sean Andersone7bddea2021-02-05 09:38:55 -0500748 ret = part_get_info_by_name(*dev_desc, part_str, part_info);
749 if (ret < 0)
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300750 printf("Could not find \"%s\" partition\n", part_str);
Sean Anderson2a1ced72021-02-05 09:38:57 -0500751
752cleanup:
753 free(dup_str);
Sean Andersone7bddea2021-02-05 09:38:55 -0500754 return ret;
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300755}
756
757int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
758 const char *dev_part_str,
759 struct blk_desc **dev_desc,
Sean Andersonc81028d2021-02-05 09:38:56 -0500760 struct disk_partition *part_info,
761 int allow_whole_dev)
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300762{
Sean Andersone7bddea2021-02-05 09:38:55 -0500763 int ret;
764
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300765 /* Split the part_name if passed as "$dev_num#part_name". */
Sean Andersone7bddea2021-02-05 09:38:55 -0500766 ret = part_get_info_by_dev_and_name(dev_iface, dev_part_str,
767 dev_desc, part_info);
768 if (ret >= 0)
769 return ret;
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300770 /*
771 * Couldn't lookup by name, try looking up the partition description
772 * directly.
773 */
Sean Andersone7bddea2021-02-05 09:38:55 -0500774 ret = blk_get_device_part_str(dev_iface, dev_part_str,
Sean Andersonc81028d2021-02-05 09:38:56 -0500775 dev_desc, part_info, allow_whole_dev);
Sean Andersone7bddea2021-02-05 09:38:55 -0500776 if (ret < 0)
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300777 printf("Couldn't find partition %s %s\n",
778 dev_iface, dev_part_str);
Sean Andersone7bddea2021-02-05 09:38:55 -0500779 return ret;
Ruslan Trofymenko5e171ef2019-07-05 15:37:31 +0300780}
781
Petr Kulhavy2e790d52016-09-09 10:27:17 +0200782void part_set_generic_name(const struct blk_desc *dev_desc,
783 int part_num, char *name)
784{
785 char *devtype;
786
787 switch (dev_desc->if_type) {
788 case IF_TYPE_IDE:
789 case IF_TYPE_SATA:
790 case IF_TYPE_ATAPI:
791 devtype = "hd";
792 break;
793 case IF_TYPE_SCSI:
794 devtype = "sd";
795 break;
796 case IF_TYPE_USB:
797 devtype = "usbd";
798 break;
799 case IF_TYPE_DOC:
800 devtype = "docd";
801 break;
802 case IF_TYPE_MMC:
803 case IF_TYPE_SD:
804 devtype = "mmcsd";
805 break;
806 default:
807 devtype = "xx";
808 break;
809 }
810
811 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
812}