blob: 9266a09ec3f38d20855471680a70b8321ae9cdf7 [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>
8#include <command.h>
Simon Glass96e5b032016-02-29 15:25:47 -07009#include <errno.h>
wdenkaffae2b2002-08-17 09:36:01 +000010#include <ide.h>
Stephen Warren10a37fd2012-09-21 09:50:57 +000011#include <malloc.h>
Grant Likely735dd972007-02-20 09:04:34 +010012#include <part.h>
Hans de Goede251cee02015-09-17 18:46:58 -040013#include <ubifs_uboot.h>
wdenkaffae2b2002-08-17 09:36:01 +000014
15#undef PART_DEBUG
16
17#ifdef PART_DEBUG
18#define PRINTF(fmt,args...) printf (fmt ,##args)
19#else
20#define PRINTF(fmt,args...)
21#endif
22
Sam Protsenko30789092017-09-22 01:51:58 +030023/* Check all partition types */
24#define PART_TYPE_ALL -1
25
Kever Yangd4729262018-02-10 17:55:37 +080026static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
Simon Glass96e5b032016-02-29 15:25:47 -070027{
28 struct part_driver *drv =
29 ll_entry_start(struct part_driver, part_driver);
30 const int n_ents = ll_entry_count(struct part_driver, part_driver);
31 struct part_driver *entry;
32
Kever Yangd4729262018-02-10 17:55:37 +080033 if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
34 for (entry = drv; entry != drv + n_ents; entry++) {
35 int ret;
36
37 ret = entry->test(dev_desc);
38 if (!ret) {
39 dev_desc->part_type = entry->part_type;
40 return entry;
41 }
42 }
43 } else {
44 for (entry = drv; entry != drv + n_ents; entry++) {
45 if (dev_desc->part_type == entry->part_type)
46 return entry;
47 }
Simon Glass96e5b032016-02-29 15:25:47 -070048 }
49
50 /* Not found */
51 return NULL;
52}
53
Kever Yang56670d62018-02-10 17:55:38 +080054#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass4101f682016-02-29 15:25:34 -070055static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likely735dd972007-02-20 09:04:34 +010056{
Simon Glass6dd9faf2016-05-01 13:52:32 -060057 struct blk_desc *dev_desc;
58 int ret;
Grant Likely735dd972007-02-20 09:04:34 +010059
Simon Glass6dd9faf2016-05-01 13:52:32 -060060 dev_desc = blk_get_devnum_by_typename(ifname, dev);
61 if (!dev_desc) {
62 debug("%s: No device for iface '%s', dev %d\n", __func__,
63 ifname, dev);
Tim Kientzle7e71dc62012-03-27 11:43:25 +020064 return NULL;
Grant Likely735dd972007-02-20 09:04:34 +010065 }
Simon Glass6dd9faf2016-05-01 13:52:32 -060066 ret = blk_dselect_hwpart(dev_desc, hwpart);
67 if (ret) {
68 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
69 ret);
70 return NULL;
71 }
72
73 return dev_desc;
Grant Likely735dd972007-02-20 09:04:34 +010074}
Stephen Warren336b6f92014-05-07 12:19:01 -060075
Simon Glassdb1d9e72016-02-29 15:25:42 -070076struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warren336b6f92014-05-07 12:19:01 -060077{
Stephen Warrenecdd57e2014-05-23 12:48:11 -060078 return get_dev_hwpart(ifname, dev, 0);
Stephen Warren336b6f92014-05-07 12:19:01 -060079}
Grant Likely735dd972007-02-20 09:04:34 +010080#else
Simon Glass4101f682016-02-29 15:25:34 -070081struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warren336b6f92014-05-07 12:19:01 -060082{
83 return NULL;
84}
85
Simon Glassdb1d9e72016-02-29 15:25:42 -070086struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likely735dd972007-02-20 09:04:34 +010087{
88 return NULL;
89}
90#endif
91
Adam Ford1811a922018-02-06 12:43:56 -060092#ifdef CONFIG_HAVE_BLOCK_DEVICE
Grant Likely735dd972007-02-20 09:04:34 +010093
wdenkaffae2b2002-08-17 09:36:01 +000094/* ------------------------------------------------------------------------- */
95/*
96 * reports device info to the user
97 */
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +030098
99#ifdef CONFIG_LBA48
100typedef uint64_t lba512_t;
101#else
102typedef lbaint_t lba512_t;
103#endif
104
105/*
106 * Overflowless variant of (block_count * mul_by / div_by)
107 * when div_by > mul_by
108 */
Pavel Machek214b3f32014-09-09 15:19:42 +0200109static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300110{
111 lba512_t bc_quot, bc_rem;
112
113 /* x * m / d == x / d * m + (x % d) * m / d */
114 bc_quot = block_count / div_by;
115 bc_rem = block_count - div_by * bc_quot;
116 return bc_quot * mul_by + (bc_rem * mul_by) / div_by;
117}
118
Simon Glass4101f682016-02-29 15:25:34 -0700119void dev_print (struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000120{
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300121 lba512_t lba512; /* number of blocks if 512bytes block size */
wdenkaffae2b2002-08-17 09:36:01 +0000122
Wolfgang Denkaf75a452009-05-15 09:27:58 +0200123 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
124 puts ("not available\n");
125 return;
126 }
127
Tor Krill8ec6e332008-05-29 11:10:30 +0200128 switch (dev_desc->if_type) {
Detlev Zundel574b3192008-05-05 16:11:21 +0200129 case IF_TYPE_SCSI:
130 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
131 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000132 dev_desc->vendor,
133 dev_desc->product,
134 dev_desc->revision);
Detlev Zundel574b3192008-05-05 16:11:21 +0200135 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200136 case IF_TYPE_ATAPI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200137 case IF_TYPE_IDE:
138 case IF_TYPE_SATA:
139 printf ("Model: %s Firm: %s Ser#: %s\n",
140 dev_desc->vendor,
141 dev_desc->revision,
142 dev_desc->product);
143 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200144 case IF_TYPE_SD:
145 case IF_TYPE_MMC:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300146 case IF_TYPE_USB:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700147 case IF_TYPE_NVME:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300148 printf ("Vendor: %s Rev: %s Prod: %s\n",
149 dev_desc->vendor,
150 dev_desc->revision,
151 dev_desc->product);
152 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200153 case IF_TYPE_DOC:
154 puts("device type DOC\n");
155 return;
Tor Krill8ec6e332008-05-29 11:10:30 +0200156 case IF_TYPE_UNKNOWN:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200157 puts("device type unknown\n");
158 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200159 default:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200160 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundel574b3192008-05-05 16:11:21 +0200161 return;
wdenkaffae2b2002-08-17 09:36:01 +0000162 }
163 puts (" Type: ");
164 if (dev_desc->removable)
165 puts ("Removable ");
166 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200167 case DEV_TYPE_HARDDISK:
168 puts ("Hard Disk");
169 break;
170 case DEV_TYPE_CDROM:
171 puts ("CD ROM");
172 break;
173 case DEV_TYPE_OPDISK:
174 puts ("Optical Device");
175 break;
176 case DEV_TYPE_TAPE:
177 puts ("Tape");
178 break;
179 default:
180 printf ("# %02X #", dev_desc->type & 0x1F);
181 break;
wdenkaffae2b2002-08-17 09:36:01 +0000182 }
183 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000184 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000185 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000186 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000187
188 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000189
wdenkc40b2952004-03-13 23:29:43 +0000190 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000191 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200192 /* 2048 = (1024 * 1024) / 512 MB */
193 mb = lba512_muldiv(lba512, 10, 2048);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300194
wdenkaffae2b2002-08-17 09:36:01 +0000195 mb_quot = mb / 10;
196 mb_rem = mb - (10 * mb_quot);
197
198 gb = mb / 1024;
199 gb_quot = gb / 10;
200 gb_rem = gb - (10 * gb_quot);
wdenk42dfe7a2004-03-14 22:25:36 +0000201#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000202 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000203 printf (" Supports 48-bit addressing\n");
204#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100205#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100206 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkc40b2952004-03-13 23:29:43 +0000207 mb_quot, mb_rem,
208 gb_quot, gb_rem,
209 lba,
210 dev_desc->blksz);
211#else
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100212 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000213 mb_quot, mb_rem,
214 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000215 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000216 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000217#endif
wdenkaffae2b2002-08-17 09:36:01 +0000218 } else {
219 puts (" Capacity: not available\n");
220 }
221}
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500222#endif
wdenkaffae2b2002-08-17 09:36:01 +0000223
Adam Ford1811a922018-02-06 12:43:56 -0600224#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000225
Simon Glass3e8bd462016-02-29 15:25:48 -0700226void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000227{
Simon Glass96e5b032016-02-29 15:25:47 -0700228 struct part_driver *drv =
229 ll_entry_start(struct part_driver, part_driver);
230 const int n_ents = ll_entry_count(struct part_driver, part_driver);
231 struct part_driver *entry;
wdenkaffae2b2002-08-17 09:36:01 +0000232
Eric Nelsone40cf342016-03-28 10:05:44 -0700233 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
234
Rob Herring99d2c202012-09-21 04:08:17 +0000235 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700236 for (entry = drv; entry != drv + n_ents; entry++) {
237 int ret;
238
239 ret = entry->test(dev_desc);
240 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
241 if (!ret) {
242 dev_desc->part_type = entry->part_type;
243 break;
244 }
245 }
wdenkaffae2b2002-08-17 09:36:01 +0000246}
247
Simon Glass96e5b032016-02-29 15:25:47 -0700248static void print_part_header(const char *type, struct blk_desc *dev_desc)
249{
Patrick Delaunayf18fa312017-01-27 11:00:36 +0100250#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100251 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100252 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay863c5b62017-01-27 11:00:39 +0100253 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100254 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000255 puts ("\nPartition Map for ");
256 switch (dev_desc->if_type) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200257 case IF_TYPE_IDE:
258 puts ("IDE");
259 break;
260 case IF_TYPE_SATA:
261 puts ("SATA");
262 break;
263 case IF_TYPE_SCSI:
264 puts ("SCSI");
265 break;
266 case IF_TYPE_ATAPI:
267 puts ("ATAPI");
268 break;
269 case IF_TYPE_USB:
270 puts ("USB");
271 break;
272 case IF_TYPE_DOC:
273 puts ("DOC");
274 break;
Lei Wen8f3b9642010-09-13 22:07:28 +0800275 case IF_TYPE_MMC:
276 puts ("MMC");
277 break;
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700278 case IF_TYPE_HOST:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700279 puts ("HOST");
280 break;
281 case IF_TYPE_NVME:
282 puts ("NVMe");
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700283 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200284 default:
285 puts ("UNKNOWN");
286 break;
wdenkaffae2b2002-08-17 09:36:01 +0000287 }
288 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700289 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000290#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700291}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000292
Simon Glass3e8bd462016-02-29 15:25:48 -0700293void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000294{
Simon Glass96e5b032016-02-29 15:25:47 -0700295 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000296
Kever Yangd4729262018-02-10 17:55:37 +0800297 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700298 if (!drv) {
299 printf("## Unknown partition table type %x\n",
300 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000301 return;
wdenkaffae2b2002-08-17 09:36:01 +0000302 }
Simon Glass96e5b032016-02-29 15:25:47 -0700303
304 PRINTF("## Testing for valid %s partition ##\n", drv->name);
305 print_part_header(drv->name, dev_desc);
306 if (drv->print)
307 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000308}
309
Adam Ford1811a922018-02-06 12:43:56 -0600310#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000311
Simon Glass3e8bd462016-02-29 15:25:48 -0700312int part_get_info(struct blk_desc *dev_desc, int part,
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200313 disk_partition_t *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000314{
Adam Ford1811a922018-02-06 12:43:56 -0600315#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -0700316 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000317
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100318#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren894bfbb2012-09-21 09:50:59 +0000319 /* The common case is no UUID support */
320 info->uuid[0] = 0;
321#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100322#ifdef CONFIG_PARTITION_TYPE_GUID
323 info->type_guid[0] = 0;
324#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000325
Kever Yangd4729262018-02-10 17:55:37 +0800326 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700327 if (!drv) {
328 debug("## Unknown partition table type %x\n",
329 dev_desc->part_type);
330 return -EPROTONOSUPPORT;
331 }
332 if (!drv->get_info) {
Nishanth Menon2ae67ae2016-03-15 16:15:32 -0500333 PRINTF("## Driver %s does not have the get_info() method\n",
334 drv->name);
Simon Glass96e5b032016-02-29 15:25:47 -0700335 return -ENOSYS;
336 }
337 if (drv->get_info(dev_desc, part, info) == 0) {
338 PRINTF("## Valid %s partition found ##\n", drv->name);
339 return 0;
Stephen Warren2f501642012-09-21 12:46:54 +0000340 }
Adam Ford1811a922018-02-06 12:43:56 -0600341#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000342
343 return -1;
344}
Rob Herring99d2c202012-09-21 04:08:17 +0000345
Rob Clark4bbcc962017-09-09 13:15:55 -0400346int part_get_info_whole_disk(struct blk_desc *dev_desc, disk_partition_t *info)
347{
348 info->start = 0;
349 info->size = dev_desc->lba;
350 info->blksz = dev_desc->blksz;
351 info->bootable = 0;
352 strcpy((char *)info->type, BOOT_PART_TYPE);
353 strcpy((char *)info->name, "Whole Disk");
354#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
355 info->uuid[0] = 0;
356#endif
357#ifdef CONFIG_PARTITION_TYPE_GUID
358 info->type_guid[0] = 0;
359#endif
360
361 return 0;
362}
363
Simon Glassebac37c2016-02-29 15:25:43 -0700364int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
365 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000366{
367 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600368 char *dup_str = NULL;
369 const char *dev_str, *hwpart_str;
370 int dev, hwpart;
371
372 hwpart_str = strchr(dev_hwpart_str, '.');
373 if (hwpart_str) {
374 dup_str = strdup(dev_hwpart_str);
375 dup_str[hwpart_str - dev_hwpart_str] = 0;
376 dev_str = dup_str;
377 hwpart_str++;
378 } else {
379 dev_str = dev_hwpart_str;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600380 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600381 }
Stephen Warren2023e602012-09-21 09:50:56 +0000382
383 dev = simple_strtoul(dev_str, &ep, 16);
384 if (*ep) {
385 printf("** Bad device specification %s %s **\n",
386 ifname, dev_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600387 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600388 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000389 }
390
Stephen Warren336b6f92014-05-07 12:19:01 -0600391 if (hwpart_str) {
392 hwpart = simple_strtoul(hwpart_str, &ep, 16);
393 if (*ep) {
394 printf("** Bad HW partition specification %s %s **\n",
395 ifname, hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600396 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600397 goto cleanup;
398 }
399 }
400
401 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000402 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Stephen Warren336b6f92014-05-07 12:19:01 -0600403 printf("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600404 dev = -ENOENT;
Stephen Warren336b6f92014-05-07 12:19:01 -0600405 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000406 }
407
Adam Ford1811a922018-02-06 12:43:56 -0600408#ifdef CONFIG_HAVE_BLOCK_DEVICE
Erik Tideman99e7fc82016-01-11 13:39:07 +0000409 /*
410 * Updates the partition table for the specified hw partition.
411 * Does not need to be done for hwpart 0 since it is default and
412 * already loaded.
413 */
414 if(hwpart != 0)
Simon Glass3e8bd462016-02-29 15:25:48 -0700415 part_init(*dev_desc);
Erik Tideman99e7fc82016-01-11 13:39:07 +0000416#endif
417
Stephen Warren336b6f92014-05-07 12:19:01 -0600418cleanup:
419 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000420 return dev;
421}
422
Stephen Warren10a37fd2012-09-21 09:50:57 +0000423#define PART_UNSPECIFIED -2
424#define PART_AUTO -1
Simon Glasse35929e2016-02-29 15:25:44 -0700425int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700426 struct blk_desc **dev_desc,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000427 disk_partition_t *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000428{
Stephen Warren10a37fd2012-09-21 09:50:57 +0000429 int ret = -1;
430 const char *part_str;
431 char *dup_str = NULL;
432 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000433 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000434 char *ep;
435 int p;
436 int part;
437 disk_partition_t tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000438
Hans de Goedeafc17442015-09-17 18:46:55 -0400439#ifdef CONFIG_SANDBOX
Stephen Warren4d907022014-06-12 10:28:32 -0600440 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200441 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600442 * host's own filesystem.
443 */
444 if (0 == strcmp(ifname, "hostfs")) {
445 *dev_desc = NULL;
446 info->start = 0;
447 info->size = 0;
448 info->blksz = 0;
449 info->bootable = 0;
450 strcpy((char *)info->type, BOOT_PART_TYPE);
451 strcpy((char *)info->name, "Sandbox host");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100452#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren4d907022014-06-12 10:28:32 -0600453 info->uuid[0] = 0;
454#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100455#ifdef CONFIG_PARTITION_TYPE_GUID
456 info->type_guid[0] = 0;
457#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600458
459 return 0;
460 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400461#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600462
Hans de Goede251cee02015-09-17 18:46:58 -0400463#ifdef CONFIG_CMD_UBIFS
464 /*
465 * Special-case ubi, ubi goes through a mtd, rathen then through
466 * a regular block device.
467 */
468 if (0 == strcmp(ifname, "ubi")) {
469 if (!ubifs_is_mounted()) {
470 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
471 return -1;
472 }
473
474 *dev_desc = NULL;
475 memset(info, 0, sizeof(*info));
476 strcpy((char *)info->type, BOOT_PART_TYPE);
477 strcpy((char *)info->name, "UBI");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100478#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede251cee02015-09-17 18:46:58 -0400479 info->uuid[0] = 0;
480#endif
481 return 0;
482 }
483#endif
484
Stephen Warren10a37fd2012-09-21 09:50:57 +0000485 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000486 if (!dev_part_str || !strlen(dev_part_str) ||
487 !strcmp(dev_part_str, "-"))
Simon Glass00caae62017-08-03 12:22:12 -0600488 dev_part_str = env_get("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000489
Stephen Warren10a37fd2012-09-21 09:50:57 +0000490 /* If still no dev_part_str, it's an error */
491 if (!dev_part_str) {
492 printf("** No device specified **\n");
493 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000494 }
495
Stephen Warren10a37fd2012-09-21 09:50:57 +0000496 /* Separate device and partition ID specification */
497 part_str = strchr(dev_part_str, ':');
498 if (part_str) {
499 dup_str = strdup(dev_part_str);
500 dup_str[part_str - dev_part_str] = 0;
501 dev_str = dup_str;
502 part_str++;
503 } else {
504 dev_str = dev_part_str;
505 }
Rob Herring99d2c202012-09-21 04:08:17 +0000506
Stephen Warren10a37fd2012-09-21 09:50:57 +0000507 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700508 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000509 if (dev < 0)
510 goto cleanup;
511
512 /* Convert partition ID string to number */
513 if (!part_str || !*part_str) {
514 part = PART_UNSPECIFIED;
515 } else if (!strcmp(part_str, "auto")) {
516 part = PART_AUTO;
517 } else {
518 /* Something specified -> use exactly that */
519 part = (int)simple_strtoul(part_str, &ep, 16);
520 /*
521 * Less than whole string converted,
522 * or request for whole device, but caller requires partition.
523 */
524 if (*ep || (part == 0 && !allow_whole_dev)) {
525 printf("** Bad partition specification %s %s **\n",
526 ifname, dev_part_str);
527 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000528 }
Rob Herring99d2c202012-09-21 04:08:17 +0000529 }
530
Stephen Warren10a37fd2012-09-21 09:50:57 +0000531 /*
532 * No partition table on device,
533 * or user requested partition 0 (entire device).
534 */
535 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
536 (part == 0)) {
537 if (!(*dev_desc)->lba) {
538 printf("** Bad device size - %s %s **\n", ifname,
539 dev_str);
540 goto cleanup;
541 }
Rob Herring99d2c202012-09-21 04:08:17 +0000542
Stephen Warren10a37fd2012-09-21 09:50:57 +0000543 /*
544 * If user specified a partition ID other than 0,
545 * or the calling command only accepts partitions,
546 * it's an error.
547 */
548 if ((part > 0) || (!allow_whole_dev)) {
549 printf("** No partition table - %s %s **\n", ifname,
550 dev_str);
551 goto cleanup;
552 }
553
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800554 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
555
Rob Clark4bbcc962017-09-09 13:15:55 -0400556 part_get_info_whole_disk(*dev_desc, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000557
558 ret = 0;
559 goto cleanup;
560 }
561
562 /*
563 * Now there's known to be a partition table,
564 * not specifying a partition means to pick partition 1.
565 */
566 if (part == PART_UNSPECIFIED)
567 part = 1;
568
569 /*
570 * If user didn't specify a partition number, or did specify something
571 * other than "auto", use that partition number directly.
572 */
573 if (part != PART_AUTO) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700574 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000575 if (ret) {
576 printf("** Invalid partition %d **\n", part);
577 goto cleanup;
578 }
579 } else {
580 /*
581 * Find the first bootable partition.
582 * If none are bootable, fall back to the first valid partition.
583 */
584 part = 0;
585 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700586 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000587 if (ret)
588 continue;
589
590 /*
591 * First valid partition, or new better partition?
592 * If so, save partition ID.
593 */
594 if (!part || info->bootable)
595 part = p;
596
597 /* Best possible partition? Stop searching. */
598 if (info->bootable)
599 break;
600
601 /*
602 * We now need to search further for best possible.
603 * If we what we just queried was the best so far,
604 * save the info since we over-write it next loop.
605 */
606 if (part == p)
607 tmpinfo = *info;
608 }
609 /* If we found any acceptable partition */
610 if (part) {
611 /*
612 * If we searched all possible partition IDs,
613 * return the first valid partition we found.
614 */
615 if (p == MAX_SEARCH_PARTITIONS + 1)
616 *info = tmpinfo;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000617 } else {
618 printf("** No valid partitions found **\n");
Stephen Warren71bba422012-10-08 07:45:54 +0000619 ret = -1;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000620 goto cleanup;
621 }
Rob Herring99d2c202012-09-21 04:08:17 +0000622 }
623 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
624 printf("** Invalid partition type \"%.32s\""
625 " (expect \"" BOOT_PART_TYPE "\")\n",
626 info->type);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000627 ret = -1;
628 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000629 }
630
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800631 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
632
Stephen Warren10a37fd2012-09-21 09:50:57 +0000633 ret = part;
634 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000635
Stephen Warren10a37fd2012-09-21 09:50:57 +0000636cleanup:
637 free(dup_str);
638 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000639}
Petr Kulhavy87b85302016-09-09 10:27:15 +0200640
Sam Protsenko30789092017-09-22 01:51:58 +0300641int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
642 disk_partition_t *info, int part_type)
Petr Kulhavy87b85302016-09-09 10:27:15 +0200643{
Petr Kulhavy87b85302016-09-09 10:27:15 +0200644 struct part_driver *part_drv;
Kever Yang56670d62018-02-10 17:55:38 +0800645 int ret;
646 int i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200647
Kever Yang56670d62018-02-10 17:55:38 +0800648 part_drv = part_driver_lookup_type(dev_desc);
649 if (!part_drv)
650 return -1;
651 for (i = 1; i < part_drv->max_entries; i++) {
652 ret = part_drv->get_info(dev_desc, i, info);
653 if (ret != 0) {
654 /* no more entries in table */
655 break;
656 }
657 if (strcmp(name, (const char *)info->name) == 0) {
658 /* matched */
659 return i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200660 }
661 }
Kever Yang56670d62018-02-10 17:55:38 +0800662
Petr Kulhavy87b85302016-09-09 10:27:15 +0200663 return -1;
664}
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200665
Sam Protsenko30789092017-09-22 01:51:58 +0300666int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
667 disk_partition_t *info)
668{
669 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
670}
671
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200672void part_set_generic_name(const struct blk_desc *dev_desc,
673 int part_num, char *name)
674{
675 char *devtype;
676
677 switch (dev_desc->if_type) {
678 case IF_TYPE_IDE:
679 case IF_TYPE_SATA:
680 case IF_TYPE_ATAPI:
681 devtype = "hd";
682 break;
683 case IF_TYPE_SCSI:
684 devtype = "sd";
685 break;
686 case IF_TYPE_USB:
687 devtype = "usbd";
688 break;
689 case IF_TYPE_DOC:
690 devtype = "docd";
691 break;
692 case IF_TYPE_MMC:
693 case IF_TYPE_SD:
694 devtype = "mmcsd";
695 break;
696 default:
697 devtype = "xx";
698 break;
699 }
700
701 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
702}