blob: 66b8101f98c7616410d7e1b97f5f68023cb035c9 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkaffae2b2002-08-17 09:36:01 +00006 */
7
8#include <common.h>
9#include <command.h>
Simon Glass96e5b032016-02-29 15:25:47 -070010#include <errno.h>
wdenkaffae2b2002-08-17 09:36:01 +000011#include <ide.h>
Stephen Warren10a37fd2012-09-21 09:50:57 +000012#include <malloc.h>
Grant Likely735dd972007-02-20 09:04:34 +010013#include <part.h>
Hans de Goede251cee02015-09-17 18:46:58 -040014#include <ubifs_uboot.h>
wdenkaffae2b2002-08-17 09:36:01 +000015
16#undef PART_DEBUG
17
18#ifdef PART_DEBUG
19#define PRINTF(fmt,args...) printf (fmt ,##args)
20#else
21#define PRINTF(fmt,args...)
22#endif
23
Sam Protsenko30789092017-09-22 01:51:58 +030024/* Check all partition types */
25#define PART_TYPE_ALL -1
26
Stefan Roese751bb572007-02-20 13:21:57 +010027DECLARE_GLOBAL_DATA_PTR;
Stefan Roese751bb572007-02-20 13:21:57 +010028
Gabe Black0c9c8fb2012-10-12 14:26:08 +000029#ifdef HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -070030static struct part_driver *part_driver_lookup_type(int part_type)
31{
32 struct part_driver *drv =
33 ll_entry_start(struct part_driver, part_driver);
34 const int n_ents = ll_entry_count(struct part_driver, part_driver);
35 struct part_driver *entry;
36
37 for (entry = drv; entry != drv + n_ents; entry++) {
38 if (part_type == entry->part_type)
39 return entry;
40 }
41
42 /* Not found */
43 return NULL;
44}
45
Simon Glass4101f682016-02-29 15:25:34 -070046static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likely735dd972007-02-20 09:04:34 +010047{
Simon Glass6dd9faf2016-05-01 13:52:32 -060048 struct blk_desc *dev_desc;
49 int ret;
Grant Likely735dd972007-02-20 09:04:34 +010050
Simon Glass6dd9faf2016-05-01 13:52:32 -060051 dev_desc = blk_get_devnum_by_typename(ifname, dev);
52 if (!dev_desc) {
53 debug("%s: No device for iface '%s', dev %d\n", __func__,
54 ifname, dev);
Tim Kientzle7e71dc62012-03-27 11:43:25 +020055 return NULL;
Grant Likely735dd972007-02-20 09:04:34 +010056 }
Simon Glass6dd9faf2016-05-01 13:52:32 -060057 ret = blk_dselect_hwpart(dev_desc, hwpart);
58 if (ret) {
59 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
60 ret);
61 return NULL;
62 }
63
64 return dev_desc;
Grant Likely735dd972007-02-20 09:04:34 +010065}
Stephen Warren336b6f92014-05-07 12:19:01 -060066
Simon Glassdb1d9e72016-02-29 15:25:42 -070067struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warren336b6f92014-05-07 12:19:01 -060068{
Stephen Warrenecdd57e2014-05-23 12:48:11 -060069 return get_dev_hwpart(ifname, dev, 0);
Stephen Warren336b6f92014-05-07 12:19:01 -060070}
Grant Likely735dd972007-02-20 09:04:34 +010071#else
Simon Glass4101f682016-02-29 15:25:34 -070072struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warren336b6f92014-05-07 12:19:01 -060073{
74 return NULL;
75}
76
Simon Glassdb1d9e72016-02-29 15:25:42 -070077struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likely735dd972007-02-20 09:04:34 +010078{
79 return NULL;
80}
81#endif
82
Gabe Black0c9c8fb2012-10-12 14:26:08 +000083#ifdef HAVE_BLOCK_DEVICE
Grant Likely735dd972007-02-20 09:04:34 +010084
wdenkaffae2b2002-08-17 09:36:01 +000085/* ------------------------------------------------------------------------- */
86/*
87 * reports device info to the user
88 */
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +030089
90#ifdef CONFIG_LBA48
91typedef uint64_t lba512_t;
92#else
93typedef lbaint_t lba512_t;
94#endif
95
96/*
97 * Overflowless variant of (block_count * mul_by / div_by)
98 * when div_by > mul_by
99 */
Pavel Machek214b3f32014-09-09 15:19:42 +0200100static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300101{
102 lba512_t bc_quot, bc_rem;
103
104 /* x * m / d == x / d * m + (x % d) * m / d */
105 bc_quot = block_count / div_by;
106 bc_rem = block_count - div_by * bc_quot;
107 return bc_quot * mul_by + (bc_rem * mul_by) / div_by;
108}
109
Simon Glass4101f682016-02-29 15:25:34 -0700110void dev_print (struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000111{
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300112 lba512_t lba512; /* number of blocks if 512bytes block size */
wdenkaffae2b2002-08-17 09:36:01 +0000113
Wolfgang Denkaf75a452009-05-15 09:27:58 +0200114 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
115 puts ("not available\n");
116 return;
117 }
118
Tor Krill8ec6e332008-05-29 11:10:30 +0200119 switch (dev_desc->if_type) {
Detlev Zundel574b3192008-05-05 16:11:21 +0200120 case IF_TYPE_SCSI:
121 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
122 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000123 dev_desc->vendor,
124 dev_desc->product,
125 dev_desc->revision);
Detlev Zundel574b3192008-05-05 16:11:21 +0200126 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200127 case IF_TYPE_ATAPI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200128 case IF_TYPE_IDE:
129 case IF_TYPE_SATA:
130 printf ("Model: %s Firm: %s Ser#: %s\n",
131 dev_desc->vendor,
132 dev_desc->revision,
133 dev_desc->product);
134 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200135 case IF_TYPE_SD:
136 case IF_TYPE_MMC:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300137 case IF_TYPE_USB:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700138 case IF_TYPE_NVME:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300139 printf ("Vendor: %s Rev: %s Prod: %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_DOC:
145 puts("device type DOC\n");
146 return;
Tor Krill8ec6e332008-05-29 11:10:30 +0200147 case IF_TYPE_UNKNOWN:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200148 puts("device type unknown\n");
149 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200150 default:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200151 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundel574b3192008-05-05 16:11:21 +0200152 return;
wdenkaffae2b2002-08-17 09:36:01 +0000153 }
154 puts (" Type: ");
155 if (dev_desc->removable)
156 puts ("Removable ");
157 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200158 case DEV_TYPE_HARDDISK:
159 puts ("Hard Disk");
160 break;
161 case DEV_TYPE_CDROM:
162 puts ("CD ROM");
163 break;
164 case DEV_TYPE_OPDISK:
165 puts ("Optical Device");
166 break;
167 case DEV_TYPE_TAPE:
168 puts ("Tape");
169 break;
170 default:
171 printf ("# %02X #", dev_desc->type & 0x1F);
172 break;
wdenkaffae2b2002-08-17 09:36:01 +0000173 }
174 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000175 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000176 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000177 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000178
179 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000180
wdenkc40b2952004-03-13 23:29:43 +0000181 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000182 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200183 /* 2048 = (1024 * 1024) / 512 MB */
184 mb = lba512_muldiv(lba512, 10, 2048);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300185
wdenkaffae2b2002-08-17 09:36:01 +0000186 mb_quot = mb / 10;
187 mb_rem = mb - (10 * mb_quot);
188
189 gb = mb / 1024;
190 gb_quot = gb / 10;
191 gb_rem = gb - (10 * gb_quot);
wdenk42dfe7a2004-03-14 22:25:36 +0000192#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000193 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000194 printf (" Supports 48-bit addressing\n");
195#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100196#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100197 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkc40b2952004-03-13 23:29:43 +0000198 mb_quot, mb_rem,
199 gb_quot, gb_rem,
200 lba,
201 dev_desc->blksz);
202#else
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100203 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000204 mb_quot, mb_rem,
205 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000206 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000207 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000208#endif
wdenkaffae2b2002-08-17 09:36:01 +0000209 } else {
210 puts (" Capacity: not available\n");
211 }
212}
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500213#endif
wdenkaffae2b2002-08-17 09:36:01 +0000214
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000215#ifdef HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000216
Simon Glass3e8bd462016-02-29 15:25:48 -0700217void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000218{
Simon Glass96e5b032016-02-29 15:25:47 -0700219 struct part_driver *drv =
220 ll_entry_start(struct part_driver, part_driver);
221 const int n_ents = ll_entry_count(struct part_driver, part_driver);
222 struct part_driver *entry;
wdenkaffae2b2002-08-17 09:36:01 +0000223
Eric Nelsone40cf342016-03-28 10:05:44 -0700224 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
225
Rob Herring99d2c202012-09-21 04:08:17 +0000226 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700227 for (entry = drv; entry != drv + n_ents; entry++) {
228 int ret;
229
230 ret = entry->test(dev_desc);
231 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
232 if (!ret) {
233 dev_desc->part_type = entry->part_type;
234 break;
235 }
236 }
wdenkaffae2b2002-08-17 09:36:01 +0000237}
238
Simon Glass96e5b032016-02-29 15:25:47 -0700239static void print_part_header(const char *type, struct blk_desc *dev_desc)
240{
Patrick Delaunayf18fa312017-01-27 11:00:36 +0100241#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100242 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100243 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay863c5b62017-01-27 11:00:39 +0100244 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100245 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000246 puts ("\nPartition Map for ");
247 switch (dev_desc->if_type) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200248 case IF_TYPE_IDE:
249 puts ("IDE");
250 break;
251 case IF_TYPE_SATA:
252 puts ("SATA");
253 break;
254 case IF_TYPE_SCSI:
255 puts ("SCSI");
256 break;
257 case IF_TYPE_ATAPI:
258 puts ("ATAPI");
259 break;
260 case IF_TYPE_USB:
261 puts ("USB");
262 break;
263 case IF_TYPE_DOC:
264 puts ("DOC");
265 break;
Lei Wen8f3b9642010-09-13 22:07:28 +0800266 case IF_TYPE_MMC:
267 puts ("MMC");
268 break;
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700269 case IF_TYPE_HOST:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700270 puts ("HOST");
271 break;
272 case IF_TYPE_NVME:
273 puts ("NVMe");
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700274 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200275 default:
276 puts ("UNKNOWN");
277 break;
wdenkaffae2b2002-08-17 09:36:01 +0000278 }
279 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700280 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000281#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700282}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000283
Simon Glass3e8bd462016-02-29 15:25:48 -0700284void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000285{
Simon Glass96e5b032016-02-29 15:25:47 -0700286 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000287
Simon Glass96e5b032016-02-29 15:25:47 -0700288 drv = part_driver_lookup_type(dev_desc->part_type);
289 if (!drv) {
290 printf("## Unknown partition table type %x\n",
291 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000292 return;
wdenkaffae2b2002-08-17 09:36:01 +0000293 }
Simon Glass96e5b032016-02-29 15:25:47 -0700294
295 PRINTF("## Testing for valid %s partition ##\n", drv->name);
296 print_part_header(drv->name, dev_desc);
297 if (drv->print)
298 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000299}
300
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000301#endif /* HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000302
Simon Glass3e8bd462016-02-29 15:25:48 -0700303int part_get_info(struct blk_desc *dev_desc, int part,
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200304 disk_partition_t *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000305{
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000306#ifdef HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -0700307 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000308
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100309#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren894bfbb2012-09-21 09:50:59 +0000310 /* The common case is no UUID support */
311 info->uuid[0] = 0;
312#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100313#ifdef CONFIG_PARTITION_TYPE_GUID
314 info->type_guid[0] = 0;
315#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000316
Simon Glass96e5b032016-02-29 15:25:47 -0700317 drv = part_driver_lookup_type(dev_desc->part_type);
318 if (!drv) {
319 debug("## Unknown partition table type %x\n",
320 dev_desc->part_type);
321 return -EPROTONOSUPPORT;
322 }
323 if (!drv->get_info) {
Nishanth Menon2ae67ae2016-03-15 16:15:32 -0500324 PRINTF("## Driver %s does not have the get_info() method\n",
325 drv->name);
Simon Glass96e5b032016-02-29 15:25:47 -0700326 return -ENOSYS;
327 }
328 if (drv->get_info(dev_desc, part, info) == 0) {
329 PRINTF("## Valid %s partition found ##\n", drv->name);
330 return 0;
Stephen Warren2f501642012-09-21 12:46:54 +0000331 }
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000332#endif /* HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000333
334 return -1;
335}
Rob Herring99d2c202012-09-21 04:08:17 +0000336
Rob Clark4bbcc962017-09-09 13:15:55 -0400337int part_get_info_whole_disk(struct blk_desc *dev_desc, disk_partition_t *info)
338{
339 info->start = 0;
340 info->size = dev_desc->lba;
341 info->blksz = dev_desc->blksz;
342 info->bootable = 0;
343 strcpy((char *)info->type, BOOT_PART_TYPE);
344 strcpy((char *)info->name, "Whole Disk");
345#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
346 info->uuid[0] = 0;
347#endif
348#ifdef CONFIG_PARTITION_TYPE_GUID
349 info->type_guid[0] = 0;
350#endif
351
352 return 0;
353}
354
Simon Glassebac37c2016-02-29 15:25:43 -0700355int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
356 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000357{
358 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600359 char *dup_str = NULL;
360 const char *dev_str, *hwpart_str;
361 int dev, hwpart;
362
363 hwpart_str = strchr(dev_hwpart_str, '.');
364 if (hwpart_str) {
365 dup_str = strdup(dev_hwpart_str);
366 dup_str[hwpart_str - dev_hwpart_str] = 0;
367 dev_str = dup_str;
368 hwpart_str++;
369 } else {
370 dev_str = dev_hwpart_str;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600371 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600372 }
Stephen Warren2023e602012-09-21 09:50:56 +0000373
374 dev = simple_strtoul(dev_str, &ep, 16);
375 if (*ep) {
376 printf("** Bad device specification %s %s **\n",
377 ifname, dev_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600378 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600379 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000380 }
381
Stephen Warren336b6f92014-05-07 12:19:01 -0600382 if (hwpart_str) {
383 hwpart = simple_strtoul(hwpart_str, &ep, 16);
384 if (*ep) {
385 printf("** Bad HW partition specification %s %s **\n",
386 ifname, hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600387 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600388 goto cleanup;
389 }
390 }
391
392 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000393 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Stephen Warren336b6f92014-05-07 12:19:01 -0600394 printf("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600395 dev = -ENOENT;
Stephen Warren336b6f92014-05-07 12:19:01 -0600396 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000397 }
398
Erik Tideman99e7fc82016-01-11 13:39:07 +0000399#ifdef HAVE_BLOCK_DEVICE
400 /*
401 * Updates the partition table for the specified hw partition.
402 * Does not need to be done for hwpart 0 since it is default and
403 * already loaded.
404 */
405 if(hwpart != 0)
Simon Glass3e8bd462016-02-29 15:25:48 -0700406 part_init(*dev_desc);
Erik Tideman99e7fc82016-01-11 13:39:07 +0000407#endif
408
Stephen Warren336b6f92014-05-07 12:19:01 -0600409cleanup:
410 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000411 return dev;
412}
413
Stephen Warren10a37fd2012-09-21 09:50:57 +0000414#define PART_UNSPECIFIED -2
415#define PART_AUTO -1
Simon Glasse35929e2016-02-29 15:25:44 -0700416int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700417 struct blk_desc **dev_desc,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000418 disk_partition_t *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000419{
Stephen Warren10a37fd2012-09-21 09:50:57 +0000420 int ret = -1;
421 const char *part_str;
422 char *dup_str = NULL;
423 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000424 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000425 char *ep;
426 int p;
427 int part;
428 disk_partition_t tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000429
Hans de Goedeafc17442015-09-17 18:46:55 -0400430#ifdef CONFIG_SANDBOX
Stephen Warren4d907022014-06-12 10:28:32 -0600431 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200432 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600433 * host's own filesystem.
434 */
435 if (0 == strcmp(ifname, "hostfs")) {
436 *dev_desc = NULL;
437 info->start = 0;
438 info->size = 0;
439 info->blksz = 0;
440 info->bootable = 0;
441 strcpy((char *)info->type, BOOT_PART_TYPE);
442 strcpy((char *)info->name, "Sandbox host");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100443#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren4d907022014-06-12 10:28:32 -0600444 info->uuid[0] = 0;
445#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100446#ifdef CONFIG_PARTITION_TYPE_GUID
447 info->type_guid[0] = 0;
448#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600449
450 return 0;
451 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400452#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600453
Hans de Goede251cee02015-09-17 18:46:58 -0400454#ifdef CONFIG_CMD_UBIFS
455 /*
456 * Special-case ubi, ubi goes through a mtd, rathen then through
457 * a regular block device.
458 */
459 if (0 == strcmp(ifname, "ubi")) {
460 if (!ubifs_is_mounted()) {
461 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
462 return -1;
463 }
464
465 *dev_desc = NULL;
466 memset(info, 0, sizeof(*info));
467 strcpy((char *)info->type, BOOT_PART_TYPE);
468 strcpy((char *)info->name, "UBI");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100469#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede251cee02015-09-17 18:46:58 -0400470 info->uuid[0] = 0;
471#endif
472 return 0;
473 }
474#endif
475
Stephen Warren10a37fd2012-09-21 09:50:57 +0000476 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000477 if (!dev_part_str || !strlen(dev_part_str) ||
478 !strcmp(dev_part_str, "-"))
Simon Glass00caae62017-08-03 12:22:12 -0600479 dev_part_str = env_get("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000480
Stephen Warren10a37fd2012-09-21 09:50:57 +0000481 /* If still no dev_part_str, it's an error */
482 if (!dev_part_str) {
483 printf("** No device specified **\n");
484 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000485 }
486
Stephen Warren10a37fd2012-09-21 09:50:57 +0000487 /* Separate device and partition ID specification */
488 part_str = strchr(dev_part_str, ':');
489 if (part_str) {
490 dup_str = strdup(dev_part_str);
491 dup_str[part_str - dev_part_str] = 0;
492 dev_str = dup_str;
493 part_str++;
494 } else {
495 dev_str = dev_part_str;
496 }
Rob Herring99d2c202012-09-21 04:08:17 +0000497
Stephen Warren10a37fd2012-09-21 09:50:57 +0000498 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700499 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000500 if (dev < 0)
501 goto cleanup;
502
503 /* Convert partition ID string to number */
504 if (!part_str || !*part_str) {
505 part = PART_UNSPECIFIED;
506 } else if (!strcmp(part_str, "auto")) {
507 part = PART_AUTO;
508 } else {
509 /* Something specified -> use exactly that */
510 part = (int)simple_strtoul(part_str, &ep, 16);
511 /*
512 * Less than whole string converted,
513 * or request for whole device, but caller requires partition.
514 */
515 if (*ep || (part == 0 && !allow_whole_dev)) {
516 printf("** Bad partition specification %s %s **\n",
517 ifname, dev_part_str);
518 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000519 }
Rob Herring99d2c202012-09-21 04:08:17 +0000520 }
521
Stephen Warren10a37fd2012-09-21 09:50:57 +0000522 /*
523 * No partition table on device,
524 * or user requested partition 0 (entire device).
525 */
526 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
527 (part == 0)) {
528 if (!(*dev_desc)->lba) {
529 printf("** Bad device size - %s %s **\n", ifname,
530 dev_str);
531 goto cleanup;
532 }
Rob Herring99d2c202012-09-21 04:08:17 +0000533
Stephen Warren10a37fd2012-09-21 09:50:57 +0000534 /*
535 * If user specified a partition ID other than 0,
536 * or the calling command only accepts partitions,
537 * it's an error.
538 */
539 if ((part > 0) || (!allow_whole_dev)) {
540 printf("** No partition table - %s %s **\n", ifname,
541 dev_str);
542 goto cleanup;
543 }
544
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800545 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
546
Rob Clark4bbcc962017-09-09 13:15:55 -0400547 part_get_info_whole_disk(*dev_desc, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000548
549 ret = 0;
550 goto cleanup;
551 }
552
553 /*
554 * Now there's known to be a partition table,
555 * not specifying a partition means to pick partition 1.
556 */
557 if (part == PART_UNSPECIFIED)
558 part = 1;
559
560 /*
561 * If user didn't specify a partition number, or did specify something
562 * other than "auto", use that partition number directly.
563 */
564 if (part != PART_AUTO) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700565 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000566 if (ret) {
567 printf("** Invalid partition %d **\n", part);
568 goto cleanup;
569 }
570 } else {
571 /*
572 * Find the first bootable partition.
573 * If none are bootable, fall back to the first valid partition.
574 */
575 part = 0;
576 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700577 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000578 if (ret)
579 continue;
580
581 /*
582 * First valid partition, or new better partition?
583 * If so, save partition ID.
584 */
585 if (!part || info->bootable)
586 part = p;
587
588 /* Best possible partition? Stop searching. */
589 if (info->bootable)
590 break;
591
592 /*
593 * We now need to search further for best possible.
594 * If we what we just queried was the best so far,
595 * save the info since we over-write it next loop.
596 */
597 if (part == p)
598 tmpinfo = *info;
599 }
600 /* If we found any acceptable partition */
601 if (part) {
602 /*
603 * If we searched all possible partition IDs,
604 * return the first valid partition we found.
605 */
606 if (p == MAX_SEARCH_PARTITIONS + 1)
607 *info = tmpinfo;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000608 } else {
609 printf("** No valid partitions found **\n");
Stephen Warren71bba422012-10-08 07:45:54 +0000610 ret = -1;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000611 goto cleanup;
612 }
Rob Herring99d2c202012-09-21 04:08:17 +0000613 }
614 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
615 printf("** Invalid partition type \"%.32s\""
616 " (expect \"" BOOT_PART_TYPE "\")\n",
617 info->type);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000618 ret = -1;
619 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000620 }
621
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800622 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
623
Stephen Warren10a37fd2012-09-21 09:50:57 +0000624 ret = part;
625 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000626
Stephen Warren10a37fd2012-09-21 09:50:57 +0000627cleanup:
628 free(dup_str);
629 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000630}
Petr Kulhavy87b85302016-09-09 10:27:15 +0200631
Sam Protsenko30789092017-09-22 01:51:58 +0300632int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
633 disk_partition_t *info, int part_type)
Petr Kulhavy87b85302016-09-09 10:27:15 +0200634{
635 struct part_driver *first_drv =
636 ll_entry_start(struct part_driver, part_driver);
637 const int n_drvs = ll_entry_count(struct part_driver, part_driver);
638 struct part_driver *part_drv;
639
640 for (part_drv = first_drv; part_drv != first_drv + n_drvs; part_drv++) {
641 int ret;
642 int i;
643 for (i = 1; i < part_drv->max_entries; i++) {
Sam Protsenko30789092017-09-22 01:51:58 +0300644 if (part_type >= 0 && part_type != part_drv->part_type)
645 break;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200646 ret = part_drv->get_info(dev_desc, i, info);
647 if (ret != 0) {
648 /* no more entries in table */
649 break;
650 }
651 if (strcmp(name, (const char *)info->name) == 0) {
652 /* matched */
Alex Deymo88b63292017-04-02 01:49:50 -0700653 return i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200654 }
655 }
656 }
657 return -1;
658}
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200659
Sam Protsenko30789092017-09-22 01:51:58 +0300660int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
661 disk_partition_t *info)
662{
663 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
664}
665
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200666void part_set_generic_name(const struct blk_desc *dev_desc,
667 int part_num, char *name)
668{
669 char *devtype;
670
671 switch (dev_desc->if_type) {
672 case IF_TYPE_IDE:
673 case IF_TYPE_SATA:
674 case IF_TYPE_ATAPI:
675 devtype = "hd";
676 break;
677 case IF_TYPE_SCSI:
678 devtype = "sd";
679 break;
680 case IF_TYPE_USB:
681 devtype = "usbd";
682 break;
683 case IF_TYPE_DOC:
684 devtype = "docd";
685 break;
686 case IF_TYPE_MMC:
687 case IF_TYPE_SD:
688 devtype = "mmcsd";
689 break;
690 default:
691 devtype = "xx";
692 break;
693 }
694
695 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
696}