blob: 2a460503922cda45f8c9546178375d945c59c956 [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
Grant Likely735dd972007-02-20 09:04:34 +010024struct block_drvr {
25 char *name;
Simon Glass4101f682016-02-29 15:25:34 -070026 struct blk_desc* (*get_dev)(int dev);
Stephen Warren336b6f92014-05-07 12:19:01 -060027 int (*select_hwpart)(int dev_num, int hwpart);
Grant Likely735dd972007-02-20 09:04:34 +010028};
29
30static const struct block_drvr block_drvr[] = {
Jon Loeligercde5c642007-07-09 17:22:37 -050031#if defined(CONFIG_CMD_IDE)
Grant Likely735dd972007-02-20 09:04:34 +010032 { .name = "ide", .get_dev = ide_get_dev, },
33#endif
Dave Liuc7057b52008-03-26 22:49:44 +080034#if defined(CONFIG_CMD_SATA)
35 {.name = "sata", .get_dev = sata_get_dev, },
36#endif
Jon Loeligercde5c642007-07-09 17:22:37 -050037#if defined(CONFIG_CMD_SCSI)
Grant Likely735dd972007-02-20 09:04:34 +010038 { .name = "scsi", .get_dev = scsi_get_dev, },
39#endif
Jon Loeligercde5c642007-07-09 17:22:37 -050040#if defined(CONFIG_CMD_USB) && defined(CONFIG_USB_STORAGE)
Grant Likely735dd972007-02-20 09:04:34 +010041 { .name = "usb", .get_dev = usb_stor_get_dev, },
42#endif
43#if defined(CONFIG_MMC)
Stephen Warrend2356282014-05-07 12:19:02 -060044 {
45 .name = "mmc",
46 .get_dev = mmc_get_dev,
47 .select_hwpart = mmc_select_hwpart,
48 },
Grant Likely735dd972007-02-20 09:04:34 +010049#endif
50#if defined(CONFIG_SYSTEMACE)
51 { .name = "ace", .get_dev = systemace_get_dev, },
52#endif
Henrik Nordströmf4d8de42013-11-10 10:26:56 -070053#if defined(CONFIG_SANDBOX)
54 { .name = "host", .get_dev = host_get_dev, },
55#endif
Grant Likely735dd972007-02-20 09:04:34 +010056 { },
57};
58
Stefan Roese751bb572007-02-20 13:21:57 +010059DECLARE_GLOBAL_DATA_PTR;
Stefan Roese751bb572007-02-20 13:21:57 +010060
Gabe Black0c9c8fb2012-10-12 14:26:08 +000061#ifdef HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -070062static struct part_driver *part_driver_lookup_type(int part_type)
63{
64 struct part_driver *drv =
65 ll_entry_start(struct part_driver, part_driver);
66 const int n_ents = ll_entry_count(struct part_driver, part_driver);
67 struct part_driver *entry;
68
69 for (entry = drv; entry != drv + n_ents; entry++) {
70 if (part_type == entry->part_type)
71 return entry;
72 }
73
74 /* Not found */
75 return NULL;
76}
77
Simon Glass4101f682016-02-29 15:25:34 -070078static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likely735dd972007-02-20 09:04:34 +010079{
80 const struct block_drvr *drvr = block_drvr;
Simon Glass4101f682016-02-29 15:25:34 -070081 struct blk_desc* (*reloc_get_dev)(int dev);
Stephen Warren336b6f92014-05-07 12:19:01 -060082 int (*select_hwpart)(int dev_num, int hwpart);
Heiko Schocher23090da2010-09-17 13:10:36 +020083 char *name;
Stephen Warren336b6f92014-05-07 12:19:01 -060084 int ret;
Grant Likely735dd972007-02-20 09:04:34 +010085
Tim Kientzle7e71dc62012-03-27 11:43:25 +020086 if (!ifname)
87 return NULL;
88
Heiko Schocher23090da2010-09-17 13:10:36 +020089 name = drvr->name;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +020090#ifdef CONFIG_NEEDS_MANUAL_RELOC
Heiko Schocher23090da2010-09-17 13:10:36 +020091 name += gd->reloc_off;
92#endif
Lei Wenb16aadf2011-02-15 16:56:40 +080093 while (drvr->name) {
Heiko Schocher23090da2010-09-17 13:10:36 +020094 name = drvr->name;
Peter Tyser521af042009-09-21 11:20:36 -050095 reloc_get_dev = drvr->get_dev;
Stephen Warren336b6f92014-05-07 12:19:01 -060096 select_hwpart = drvr->select_hwpart;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +020097#ifdef CONFIG_NEEDS_MANUAL_RELOC
Heiko Schocher23090da2010-09-17 13:10:36 +020098 name += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -050099 reloc_get_dev += gd->reloc_off;
Stephen Warren336b6f92014-05-07 12:19:01 -0600100 if (select_hwpart)
101 select_hwpart += gd->reloc_off;
Peter Tyser521af042009-09-21 11:20:36 -0500102#endif
Stephen Warren336b6f92014-05-07 12:19:01 -0600103 if (strncmp(ifname, name, strlen(name)) == 0) {
Simon Glass4101f682016-02-29 15:25:34 -0700104 struct blk_desc *dev_desc = reloc_get_dev(dev);
Stephen Warren336b6f92014-05-07 12:19:01 -0600105 if (!dev_desc)
106 return NULL;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600107 if (hwpart == 0 && !select_hwpart)
Stephen Warren336b6f92014-05-07 12:19:01 -0600108 return dev_desc;
109 if (!select_hwpart)
110 return NULL;
Simon Glassbcce53d2016-02-29 15:25:51 -0700111 ret = select_hwpart(dev_desc->devnum, hwpart);
Stephen Warren336b6f92014-05-07 12:19:01 -0600112 if (ret < 0)
113 return NULL;
114 return dev_desc;
115 }
Grant Likely735dd972007-02-20 09:04:34 +0100116 drvr++;
117 }
118 return NULL;
119}
Stephen Warren336b6f92014-05-07 12:19:01 -0600120
Simon Glassdb1d9e72016-02-29 15:25:42 -0700121struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warren336b6f92014-05-07 12:19:01 -0600122{
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600123 return get_dev_hwpart(ifname, dev, 0);
Stephen Warren336b6f92014-05-07 12:19:01 -0600124}
Grant Likely735dd972007-02-20 09:04:34 +0100125#else
Simon Glass4101f682016-02-29 15:25:34 -0700126struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warren336b6f92014-05-07 12:19:01 -0600127{
128 return NULL;
129}
130
Simon Glassdb1d9e72016-02-29 15:25:42 -0700131struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likely735dd972007-02-20 09:04:34 +0100132{
133 return NULL;
134}
135#endif
136
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000137#ifdef HAVE_BLOCK_DEVICE
Grant Likely735dd972007-02-20 09:04:34 +0100138
wdenkaffae2b2002-08-17 09:36:01 +0000139/* ------------------------------------------------------------------------- */
140/*
141 * reports device info to the user
142 */
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300143
144#ifdef CONFIG_LBA48
145typedef uint64_t lba512_t;
146#else
147typedef lbaint_t lba512_t;
148#endif
149
150/*
151 * Overflowless variant of (block_count * mul_by / div_by)
152 * when div_by > mul_by
153 */
Pavel Machek214b3f32014-09-09 15:19:42 +0200154static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300155{
156 lba512_t bc_quot, bc_rem;
157
158 /* x * m / d == x / d * m + (x % d) * m / d */
159 bc_quot = block_count / div_by;
160 bc_rem = block_count - div_by * bc_quot;
161 return bc_quot * mul_by + (bc_rem * mul_by) / div_by;
162}
163
Simon Glass4101f682016-02-29 15:25:34 -0700164void dev_print (struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000165{
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300166 lba512_t lba512; /* number of blocks if 512bytes block size */
wdenkaffae2b2002-08-17 09:36:01 +0000167
Wolfgang Denkaf75a452009-05-15 09:27:58 +0200168 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
169 puts ("not available\n");
170 return;
171 }
172
Tor Krill8ec6e332008-05-29 11:10:30 +0200173 switch (dev_desc->if_type) {
Detlev Zundel574b3192008-05-05 16:11:21 +0200174 case IF_TYPE_SCSI:
175 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
176 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000177 dev_desc->vendor,
178 dev_desc->product,
179 dev_desc->revision);
Detlev Zundel574b3192008-05-05 16:11:21 +0200180 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200181 case IF_TYPE_ATAPI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200182 case IF_TYPE_IDE:
183 case IF_TYPE_SATA:
184 printf ("Model: %s Firm: %s Ser#: %s\n",
185 dev_desc->vendor,
186 dev_desc->revision,
187 dev_desc->product);
188 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200189 case IF_TYPE_SD:
190 case IF_TYPE_MMC:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300191 case IF_TYPE_USB:
192 printf ("Vendor: %s Rev: %s Prod: %s\n",
193 dev_desc->vendor,
194 dev_desc->revision,
195 dev_desc->product);
196 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200197 case IF_TYPE_DOC:
198 puts("device type DOC\n");
199 return;
Tor Krill8ec6e332008-05-29 11:10:30 +0200200 case IF_TYPE_UNKNOWN:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200201 puts("device type unknown\n");
202 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200203 default:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200204 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundel574b3192008-05-05 16:11:21 +0200205 return;
wdenkaffae2b2002-08-17 09:36:01 +0000206 }
207 puts (" Type: ");
208 if (dev_desc->removable)
209 puts ("Removable ");
210 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200211 case DEV_TYPE_HARDDISK:
212 puts ("Hard Disk");
213 break;
214 case DEV_TYPE_CDROM:
215 puts ("CD ROM");
216 break;
217 case DEV_TYPE_OPDISK:
218 puts ("Optical Device");
219 break;
220 case DEV_TYPE_TAPE:
221 puts ("Tape");
222 break;
223 default:
224 printf ("# %02X #", dev_desc->type & 0x1F);
225 break;
wdenkaffae2b2002-08-17 09:36:01 +0000226 }
227 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000228 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000229 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000230 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000231
232 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000233
wdenkc40b2952004-03-13 23:29:43 +0000234 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000235 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200236 /* 2048 = (1024 * 1024) / 512 MB */
237 mb = lba512_muldiv(lba512, 10, 2048);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300238
wdenkaffae2b2002-08-17 09:36:01 +0000239 mb_quot = mb / 10;
240 mb_rem = mb - (10 * mb_quot);
241
242 gb = mb / 1024;
243 gb_quot = gb / 10;
244 gb_rem = gb - (10 * gb_quot);
wdenk42dfe7a2004-03-14 22:25:36 +0000245#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000246 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000247 printf (" Supports 48-bit addressing\n");
248#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100249#if defined(CONFIG_SYS_64BIT_LBA)
Mike Frysinger6c6166f2009-02-16 23:21:36 -0500250 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%Ld x %ld)\n",
wdenkc40b2952004-03-13 23:29:43 +0000251 mb_quot, mb_rem,
252 gb_quot, gb_rem,
253 lba,
254 dev_desc->blksz);
255#else
wdenkaffae2b2002-08-17 09:36:01 +0000256 printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%ld x %ld)\n",
257 mb_quot, mb_rem,
258 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000259 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000260 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000261#endif
wdenkaffae2b2002-08-17 09:36:01 +0000262 } else {
263 puts (" Capacity: not available\n");
264 }
265}
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500266#endif
wdenkaffae2b2002-08-17 09:36:01 +0000267
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000268#ifdef HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000269
Simon Glass3e8bd462016-02-29 15:25:48 -0700270void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000271{
Simon Glass96e5b032016-02-29 15:25:47 -0700272 struct part_driver *drv =
273 ll_entry_start(struct part_driver, part_driver);
274 const int n_ents = ll_entry_count(struct part_driver, part_driver);
275 struct part_driver *entry;
wdenkaffae2b2002-08-17 09:36:01 +0000276
Rob Herring99d2c202012-09-21 04:08:17 +0000277 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700278 for (entry = drv; entry != drv + n_ents; entry++) {
279 int ret;
280
281 ret = entry->test(dev_desc);
282 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
283 if (!ret) {
284 dev_desc->part_type = entry->part_type;
285 break;
286 }
287 }
wdenkaffae2b2002-08-17 09:36:01 +0000288}
289
Simon Glass96e5b032016-02-29 15:25:47 -0700290static void print_part_header(const char *type, struct blk_desc *dev_desc)
291{
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000292#if defined(CONFIG_MAC_PARTITION) || \
293 defined(CONFIG_DOS_PARTITION) || \
294 defined(CONFIG_ISO_PARTITION) || \
295 defined(CONFIG_AMIGA_PARTITION) || \
296 defined(CONFIG_EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000297 puts ("\nPartition Map for ");
298 switch (dev_desc->if_type) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200299 case IF_TYPE_IDE:
300 puts ("IDE");
301 break;
302 case IF_TYPE_SATA:
303 puts ("SATA");
304 break;
305 case IF_TYPE_SCSI:
306 puts ("SCSI");
307 break;
308 case IF_TYPE_ATAPI:
309 puts ("ATAPI");
310 break;
311 case IF_TYPE_USB:
312 puts ("USB");
313 break;
314 case IF_TYPE_DOC:
315 puts ("DOC");
316 break;
Lei Wen8f3b9642010-09-13 22:07:28 +0800317 case IF_TYPE_MMC:
318 puts ("MMC");
319 break;
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700320 case IF_TYPE_HOST:
321 puts("HOST");
322 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200323 default:
324 puts ("UNKNOWN");
325 break;
wdenkaffae2b2002-08-17 09:36:01 +0000326 }
327 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700328 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000329#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700330}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000331
Simon Glass3e8bd462016-02-29 15:25:48 -0700332void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000333{
Simon Glass96e5b032016-02-29 15:25:47 -0700334 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000335
Simon Glass96e5b032016-02-29 15:25:47 -0700336 drv = part_driver_lookup_type(dev_desc->part_type);
337 if (!drv) {
338 printf("## Unknown partition table type %x\n",
339 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000340 return;
wdenkaffae2b2002-08-17 09:36:01 +0000341 }
Simon Glass96e5b032016-02-29 15:25:47 -0700342
343 PRINTF("## Testing for valid %s partition ##\n", drv->name);
344 print_part_header(drv->name, dev_desc);
345 if (drv->print)
346 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000347}
348
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000349#endif /* HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000350
Simon Glass3e8bd462016-02-29 15:25:48 -0700351int part_get_info(struct blk_desc *dev_desc, int part,
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200352 disk_partition_t *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000353{
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000354#ifdef HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -0700355 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000356
Stephen Warren894bfbb2012-09-21 09:50:59 +0000357#ifdef CONFIG_PARTITION_UUIDS
358 /* The common case is no UUID support */
359 info->uuid[0] = 0;
360#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100361#ifdef CONFIG_PARTITION_TYPE_GUID
362 info->type_guid[0] = 0;
363#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000364
Simon Glass96e5b032016-02-29 15:25:47 -0700365 drv = part_driver_lookup_type(dev_desc->part_type);
366 if (!drv) {
367 debug("## Unknown partition table type %x\n",
368 dev_desc->part_type);
369 return -EPROTONOSUPPORT;
370 }
371 if (!drv->get_info) {
372 PRINTF("## Driver %s does not have the get_info() method\n");
373 return -ENOSYS;
374 }
375 if (drv->get_info(dev_desc, part, info) == 0) {
376 PRINTF("## Valid %s partition found ##\n", drv->name);
377 return 0;
Stephen Warren2f501642012-09-21 12:46:54 +0000378 }
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000379#endif /* HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000380
381 return -1;
382}
Rob Herring99d2c202012-09-21 04:08:17 +0000383
Simon Glassebac37c2016-02-29 15:25:43 -0700384int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
385 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000386{
387 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600388 char *dup_str = NULL;
389 const char *dev_str, *hwpart_str;
390 int dev, hwpart;
391
392 hwpart_str = strchr(dev_hwpart_str, '.');
393 if (hwpart_str) {
394 dup_str = strdup(dev_hwpart_str);
395 dup_str[hwpart_str - dev_hwpart_str] = 0;
396 dev_str = dup_str;
397 hwpart_str++;
398 } else {
399 dev_str = dev_hwpart_str;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600400 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600401 }
Stephen Warren2023e602012-09-21 09:50:56 +0000402
403 dev = simple_strtoul(dev_str, &ep, 16);
404 if (*ep) {
405 printf("** Bad device specification %s %s **\n",
406 ifname, dev_str);
Stephen Warren336b6f92014-05-07 12:19:01 -0600407 dev = -1;
408 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000409 }
410
Stephen Warren336b6f92014-05-07 12:19:01 -0600411 if (hwpart_str) {
412 hwpart = simple_strtoul(hwpart_str, &ep, 16);
413 if (*ep) {
414 printf("** Bad HW partition specification %s %s **\n",
415 ifname, hwpart_str);
416 dev = -1;
417 goto cleanup;
418 }
419 }
420
421 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000422 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Stephen Warren336b6f92014-05-07 12:19:01 -0600423 printf("** Bad device %s %s **\n", ifname, dev_hwpart_str);
424 dev = -1;
425 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000426 }
427
Erik Tideman99e7fc82016-01-11 13:39:07 +0000428#ifdef HAVE_BLOCK_DEVICE
429 /*
430 * Updates the partition table for the specified hw partition.
431 * Does not need to be done for hwpart 0 since it is default and
432 * already loaded.
433 */
434 if(hwpart != 0)
Simon Glass3e8bd462016-02-29 15:25:48 -0700435 part_init(*dev_desc);
Erik Tideman99e7fc82016-01-11 13:39:07 +0000436#endif
437
Stephen Warren336b6f92014-05-07 12:19:01 -0600438cleanup:
439 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000440 return dev;
441}
442
Stephen Warren10a37fd2012-09-21 09:50:57 +0000443#define PART_UNSPECIFIED -2
444#define PART_AUTO -1
445#define MAX_SEARCH_PARTITIONS 16
Simon Glasse35929e2016-02-29 15:25:44 -0700446int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700447 struct blk_desc **dev_desc,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000448 disk_partition_t *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000449{
Stephen Warren10a37fd2012-09-21 09:50:57 +0000450 int ret = -1;
451 const char *part_str;
452 char *dup_str = NULL;
453 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000454 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000455 char *ep;
456 int p;
457 int part;
458 disk_partition_t tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000459
Hans de Goedeafc17442015-09-17 18:46:55 -0400460#ifdef CONFIG_SANDBOX
Stephen Warren4d907022014-06-12 10:28:32 -0600461 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200462 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600463 * host's own filesystem.
464 */
465 if (0 == strcmp(ifname, "hostfs")) {
466 *dev_desc = NULL;
467 info->start = 0;
468 info->size = 0;
469 info->blksz = 0;
470 info->bootable = 0;
471 strcpy((char *)info->type, BOOT_PART_TYPE);
472 strcpy((char *)info->name, "Sandbox host");
473#ifdef CONFIG_PARTITION_UUIDS
474 info->uuid[0] = 0;
475#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100476#ifdef CONFIG_PARTITION_TYPE_GUID
477 info->type_guid[0] = 0;
478#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600479
480 return 0;
481 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400482#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600483
Hans de Goede251cee02015-09-17 18:46:58 -0400484#ifdef CONFIG_CMD_UBIFS
485 /*
486 * Special-case ubi, ubi goes through a mtd, rathen then through
487 * a regular block device.
488 */
489 if (0 == strcmp(ifname, "ubi")) {
490 if (!ubifs_is_mounted()) {
491 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
492 return -1;
493 }
494
495 *dev_desc = NULL;
496 memset(info, 0, sizeof(*info));
497 strcpy((char *)info->type, BOOT_PART_TYPE);
498 strcpy((char *)info->name, "UBI");
499#ifdef CONFIG_PARTITION_UUIDS
500 info->uuid[0] = 0;
501#endif
502 return 0;
503 }
504#endif
505
Stephen Warren10a37fd2012-09-21 09:50:57 +0000506 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000507 if (!dev_part_str || !strlen(dev_part_str) ||
508 !strcmp(dev_part_str, "-"))
Stephen Warren10a37fd2012-09-21 09:50:57 +0000509 dev_part_str = getenv("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000510
Stephen Warren10a37fd2012-09-21 09:50:57 +0000511 /* If still no dev_part_str, it's an error */
512 if (!dev_part_str) {
513 printf("** No device specified **\n");
514 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000515 }
516
Stephen Warren10a37fd2012-09-21 09:50:57 +0000517 /* Separate device and partition ID specification */
518 part_str = strchr(dev_part_str, ':');
519 if (part_str) {
520 dup_str = strdup(dev_part_str);
521 dup_str[part_str - dev_part_str] = 0;
522 dev_str = dup_str;
523 part_str++;
524 } else {
525 dev_str = dev_part_str;
526 }
Rob Herring99d2c202012-09-21 04:08:17 +0000527
Stephen Warren10a37fd2012-09-21 09:50:57 +0000528 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700529 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000530 if (dev < 0)
531 goto cleanup;
532
533 /* Convert partition ID string to number */
534 if (!part_str || !*part_str) {
535 part = PART_UNSPECIFIED;
536 } else if (!strcmp(part_str, "auto")) {
537 part = PART_AUTO;
538 } else {
539 /* Something specified -> use exactly that */
540 part = (int)simple_strtoul(part_str, &ep, 16);
541 /*
542 * Less than whole string converted,
543 * or request for whole device, but caller requires partition.
544 */
545 if (*ep || (part == 0 && !allow_whole_dev)) {
546 printf("** Bad partition specification %s %s **\n",
547 ifname, dev_part_str);
548 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000549 }
Rob Herring99d2c202012-09-21 04:08:17 +0000550 }
551
Stephen Warren10a37fd2012-09-21 09:50:57 +0000552 /*
553 * No partition table on device,
554 * or user requested partition 0 (entire device).
555 */
556 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
557 (part == 0)) {
558 if (!(*dev_desc)->lba) {
559 printf("** Bad device size - %s %s **\n", ifname,
560 dev_str);
561 goto cleanup;
562 }
Rob Herring99d2c202012-09-21 04:08:17 +0000563
Stephen Warren10a37fd2012-09-21 09:50:57 +0000564 /*
565 * If user specified a partition ID other than 0,
566 * or the calling command only accepts partitions,
567 * it's an error.
568 */
569 if ((part > 0) || (!allow_whole_dev)) {
570 printf("** No partition table - %s %s **\n", ifname,
571 dev_str);
572 goto cleanup;
573 }
574
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800575 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
576
Stephen Warren10a37fd2012-09-21 09:50:57 +0000577 info->start = 0;
578 info->size = (*dev_desc)->lba;
579 info->blksz = (*dev_desc)->blksz;
580 info->bootable = 0;
Stephen Warren6ab6a652012-10-10 07:57:51 +0000581 strcpy((char *)info->type, BOOT_PART_TYPE);
582 strcpy((char *)info->name, "Whole Disk");
Stephen Warren10a37fd2012-09-21 09:50:57 +0000583#ifdef CONFIG_PARTITION_UUIDS
584 info->uuid[0] = 0;
585#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100586#ifdef CONFIG_PARTITION_TYPE_GUID
587 info->type_guid[0] = 0;
588#endif
Stephen Warren10a37fd2012-09-21 09:50:57 +0000589
590 ret = 0;
591 goto cleanup;
592 }
593
594 /*
595 * Now there's known to be a partition table,
596 * not specifying a partition means to pick partition 1.
597 */
598 if (part == PART_UNSPECIFIED)
599 part = 1;
600
601 /*
602 * If user didn't specify a partition number, or did specify something
603 * other than "auto", use that partition number directly.
604 */
605 if (part != PART_AUTO) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700606 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000607 if (ret) {
608 printf("** Invalid partition %d **\n", part);
609 goto cleanup;
610 }
611 } else {
612 /*
613 * Find the first bootable partition.
614 * If none are bootable, fall back to the first valid partition.
615 */
616 part = 0;
617 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700618 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000619 if (ret)
620 continue;
621
622 /*
623 * First valid partition, or new better partition?
624 * If so, save partition ID.
625 */
626 if (!part || info->bootable)
627 part = p;
628
629 /* Best possible partition? Stop searching. */
630 if (info->bootable)
631 break;
632
633 /*
634 * We now need to search further for best possible.
635 * If we what we just queried was the best so far,
636 * save the info since we over-write it next loop.
637 */
638 if (part == p)
639 tmpinfo = *info;
640 }
641 /* If we found any acceptable partition */
642 if (part) {
643 /*
644 * If we searched all possible partition IDs,
645 * return the first valid partition we found.
646 */
647 if (p == MAX_SEARCH_PARTITIONS + 1)
648 *info = tmpinfo;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000649 } else {
650 printf("** No valid partitions found **\n");
Stephen Warren71bba422012-10-08 07:45:54 +0000651 ret = -1;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000652 goto cleanup;
653 }
Rob Herring99d2c202012-09-21 04:08:17 +0000654 }
655 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
656 printf("** Invalid partition type \"%.32s\""
657 " (expect \"" BOOT_PART_TYPE "\")\n",
658 info->type);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000659 ret = -1;
660 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000661 }
662
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800663 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
664
Stephen Warren10a37fd2012-09-21 09:50:57 +0000665 ret = part;
666 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000667
Stephen Warren10a37fd2012-09-21 09:50:57 +0000668cleanup:
669 free(dup_str);
670 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000671}