blob: 16de7a2c3139d6deeedd61b2c080edd4a8a33ca1 [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
Adam Ford1811a922018-02-06 12:43:56 -060029#ifdef CONFIG_HAVE_BLOCK_DEVICE
Kever Yangd4729262018-02-10 17:55:37 +080030static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
Simon Glass96e5b032016-02-29 15:25:47 -070031{
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
Kever Yangd4729262018-02-10 17:55:37 +080037 if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
38 for (entry = drv; entry != drv + n_ents; entry++) {
39 int ret;
40
41 ret = entry->test(dev_desc);
42 if (!ret) {
43 dev_desc->part_type = entry->part_type;
44 return entry;
45 }
46 }
47 } else {
48 for (entry = drv; entry != drv + n_ents; entry++) {
49 if (dev_desc->part_type == entry->part_type)
50 return entry;
51 }
Simon Glass96e5b032016-02-29 15:25:47 -070052 }
53
54 /* Not found */
55 return NULL;
56}
57
Simon Glass4101f682016-02-29 15:25:34 -070058static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likely735dd972007-02-20 09:04:34 +010059{
Simon Glass6dd9faf2016-05-01 13:52:32 -060060 struct blk_desc *dev_desc;
61 int ret;
Grant Likely735dd972007-02-20 09:04:34 +010062
Simon Glass6dd9faf2016-05-01 13:52:32 -060063 dev_desc = blk_get_devnum_by_typename(ifname, dev);
64 if (!dev_desc) {
65 debug("%s: No device for iface '%s', dev %d\n", __func__,
66 ifname, dev);
Tim Kientzle7e71dc62012-03-27 11:43:25 +020067 return NULL;
Grant Likely735dd972007-02-20 09:04:34 +010068 }
Simon Glass6dd9faf2016-05-01 13:52:32 -060069 ret = blk_dselect_hwpart(dev_desc, hwpart);
70 if (ret) {
71 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
72 ret);
73 return NULL;
74 }
75
76 return dev_desc;
Grant Likely735dd972007-02-20 09:04:34 +010077}
Stephen Warren336b6f92014-05-07 12:19:01 -060078
Simon Glassdb1d9e72016-02-29 15:25:42 -070079struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warren336b6f92014-05-07 12:19:01 -060080{
Stephen Warrenecdd57e2014-05-23 12:48:11 -060081 return get_dev_hwpart(ifname, dev, 0);
Stephen Warren336b6f92014-05-07 12:19:01 -060082}
Grant Likely735dd972007-02-20 09:04:34 +010083#else
Simon Glass4101f682016-02-29 15:25:34 -070084struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warren336b6f92014-05-07 12:19:01 -060085{
86 return NULL;
87}
88
Simon Glassdb1d9e72016-02-29 15:25:42 -070089struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likely735dd972007-02-20 09:04:34 +010090{
91 return NULL;
92}
93#endif
94
Adam Ford1811a922018-02-06 12:43:56 -060095#ifdef CONFIG_HAVE_BLOCK_DEVICE
Grant Likely735dd972007-02-20 09:04:34 +010096
wdenkaffae2b2002-08-17 09:36:01 +000097/* ------------------------------------------------------------------------- */
98/*
99 * reports device info to the user
100 */
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300101
102#ifdef CONFIG_LBA48
103typedef uint64_t lba512_t;
104#else
105typedef lbaint_t lba512_t;
106#endif
107
108/*
109 * Overflowless variant of (block_count * mul_by / div_by)
110 * when div_by > mul_by
111 */
Pavel Machek214b3f32014-09-09 15:19:42 +0200112static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300113{
114 lba512_t bc_quot, bc_rem;
115
116 /* x * m / d == x / d * m + (x % d) * m / d */
117 bc_quot = block_count / div_by;
118 bc_rem = block_count - div_by * bc_quot;
119 return bc_quot * mul_by + (bc_rem * mul_by) / div_by;
120}
121
Simon Glass4101f682016-02-29 15:25:34 -0700122void dev_print (struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000123{
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300124 lba512_t lba512; /* number of blocks if 512bytes block size */
wdenkaffae2b2002-08-17 09:36:01 +0000125
Wolfgang Denkaf75a452009-05-15 09:27:58 +0200126 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
127 puts ("not available\n");
128 return;
129 }
130
Tor Krill8ec6e332008-05-29 11:10:30 +0200131 switch (dev_desc->if_type) {
Detlev Zundel574b3192008-05-05 16:11:21 +0200132 case IF_TYPE_SCSI:
133 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
134 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000135 dev_desc->vendor,
136 dev_desc->product,
137 dev_desc->revision);
Detlev Zundel574b3192008-05-05 16:11:21 +0200138 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200139 case IF_TYPE_ATAPI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200140 case IF_TYPE_IDE:
141 case IF_TYPE_SATA:
142 printf ("Model: %s Firm: %s Ser#: %s\n",
143 dev_desc->vendor,
144 dev_desc->revision,
145 dev_desc->product);
146 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200147 case IF_TYPE_SD:
148 case IF_TYPE_MMC:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300149 case IF_TYPE_USB:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700150 case IF_TYPE_NVME:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300151 printf ("Vendor: %s Rev: %s Prod: %s\n",
152 dev_desc->vendor,
153 dev_desc->revision,
154 dev_desc->product);
155 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200156 case IF_TYPE_DOC:
157 puts("device type DOC\n");
158 return;
Tor Krill8ec6e332008-05-29 11:10:30 +0200159 case IF_TYPE_UNKNOWN:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200160 puts("device type unknown\n");
161 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200162 default:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200163 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundel574b3192008-05-05 16:11:21 +0200164 return;
wdenkaffae2b2002-08-17 09:36:01 +0000165 }
166 puts (" Type: ");
167 if (dev_desc->removable)
168 puts ("Removable ");
169 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200170 case DEV_TYPE_HARDDISK:
171 puts ("Hard Disk");
172 break;
173 case DEV_TYPE_CDROM:
174 puts ("CD ROM");
175 break;
176 case DEV_TYPE_OPDISK:
177 puts ("Optical Device");
178 break;
179 case DEV_TYPE_TAPE:
180 puts ("Tape");
181 break;
182 default:
183 printf ("# %02X #", dev_desc->type & 0x1F);
184 break;
wdenkaffae2b2002-08-17 09:36:01 +0000185 }
186 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000187 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000188 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000189 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000190
191 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000192
wdenkc40b2952004-03-13 23:29:43 +0000193 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000194 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200195 /* 2048 = (1024 * 1024) / 512 MB */
196 mb = lba512_muldiv(lba512, 10, 2048);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300197
wdenkaffae2b2002-08-17 09:36:01 +0000198 mb_quot = mb / 10;
199 mb_rem = mb - (10 * mb_quot);
200
201 gb = mb / 1024;
202 gb_quot = gb / 10;
203 gb_rem = gb - (10 * gb_quot);
wdenk42dfe7a2004-03-14 22:25:36 +0000204#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000205 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000206 printf (" Supports 48-bit addressing\n");
207#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100208#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100209 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkc40b2952004-03-13 23:29:43 +0000210 mb_quot, mb_rem,
211 gb_quot, gb_rem,
212 lba,
213 dev_desc->blksz);
214#else
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100215 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000216 mb_quot, mb_rem,
217 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000218 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000219 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000220#endif
wdenkaffae2b2002-08-17 09:36:01 +0000221 } else {
222 puts (" Capacity: not available\n");
223 }
224}
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500225#endif
wdenkaffae2b2002-08-17 09:36:01 +0000226
Adam Ford1811a922018-02-06 12:43:56 -0600227#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000228
Simon Glass3e8bd462016-02-29 15:25:48 -0700229void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000230{
Simon Glass96e5b032016-02-29 15:25:47 -0700231 struct part_driver *drv =
232 ll_entry_start(struct part_driver, part_driver);
233 const int n_ents = ll_entry_count(struct part_driver, part_driver);
234 struct part_driver *entry;
wdenkaffae2b2002-08-17 09:36:01 +0000235
Eric Nelsone40cf342016-03-28 10:05:44 -0700236 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
237
Rob Herring99d2c202012-09-21 04:08:17 +0000238 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700239 for (entry = drv; entry != drv + n_ents; entry++) {
240 int ret;
241
242 ret = entry->test(dev_desc);
243 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
244 if (!ret) {
245 dev_desc->part_type = entry->part_type;
246 break;
247 }
248 }
wdenkaffae2b2002-08-17 09:36:01 +0000249}
250
Simon Glass96e5b032016-02-29 15:25:47 -0700251static void print_part_header(const char *type, struct blk_desc *dev_desc)
252{
Patrick Delaunayf18fa312017-01-27 11:00:36 +0100253#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100254 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100255 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay863c5b62017-01-27 11:00:39 +0100256 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100257 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000258 puts ("\nPartition Map for ");
259 switch (dev_desc->if_type) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200260 case IF_TYPE_IDE:
261 puts ("IDE");
262 break;
263 case IF_TYPE_SATA:
264 puts ("SATA");
265 break;
266 case IF_TYPE_SCSI:
267 puts ("SCSI");
268 break;
269 case IF_TYPE_ATAPI:
270 puts ("ATAPI");
271 break;
272 case IF_TYPE_USB:
273 puts ("USB");
274 break;
275 case IF_TYPE_DOC:
276 puts ("DOC");
277 break;
Lei Wen8f3b9642010-09-13 22:07:28 +0800278 case IF_TYPE_MMC:
279 puts ("MMC");
280 break;
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700281 case IF_TYPE_HOST:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700282 puts ("HOST");
283 break;
284 case IF_TYPE_NVME:
285 puts ("NVMe");
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700286 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200287 default:
288 puts ("UNKNOWN");
289 break;
wdenkaffae2b2002-08-17 09:36:01 +0000290 }
291 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700292 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000293#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700294}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000295
Simon Glass3e8bd462016-02-29 15:25:48 -0700296void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000297{
Simon Glass96e5b032016-02-29 15:25:47 -0700298 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000299
Kever Yangd4729262018-02-10 17:55:37 +0800300 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700301 if (!drv) {
302 printf("## Unknown partition table type %x\n",
303 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000304 return;
wdenkaffae2b2002-08-17 09:36:01 +0000305 }
Simon Glass96e5b032016-02-29 15:25:47 -0700306
307 PRINTF("## Testing for valid %s partition ##\n", drv->name);
308 print_part_header(drv->name, dev_desc);
309 if (drv->print)
310 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000311}
312
Adam Ford1811a922018-02-06 12:43:56 -0600313#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000314
Simon Glass3e8bd462016-02-29 15:25:48 -0700315int part_get_info(struct blk_desc *dev_desc, int part,
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200316 disk_partition_t *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000317{
Adam Ford1811a922018-02-06 12:43:56 -0600318#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -0700319 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000320
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100321#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren894bfbb2012-09-21 09:50:59 +0000322 /* The common case is no UUID support */
323 info->uuid[0] = 0;
324#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100325#ifdef CONFIG_PARTITION_TYPE_GUID
326 info->type_guid[0] = 0;
327#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000328
Kever Yangd4729262018-02-10 17:55:37 +0800329 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700330 if (!drv) {
331 debug("## Unknown partition table type %x\n",
332 dev_desc->part_type);
333 return -EPROTONOSUPPORT;
334 }
335 if (!drv->get_info) {
Nishanth Menon2ae67ae2016-03-15 16:15:32 -0500336 PRINTF("## Driver %s does not have the get_info() method\n",
337 drv->name);
Simon Glass96e5b032016-02-29 15:25:47 -0700338 return -ENOSYS;
339 }
340 if (drv->get_info(dev_desc, part, info) == 0) {
341 PRINTF("## Valid %s partition found ##\n", drv->name);
342 return 0;
Stephen Warren2f501642012-09-21 12:46:54 +0000343 }
Adam Ford1811a922018-02-06 12:43:56 -0600344#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000345
346 return -1;
347}
Rob Herring99d2c202012-09-21 04:08:17 +0000348
Rob Clark4bbcc962017-09-09 13:15:55 -0400349int part_get_info_whole_disk(struct blk_desc *dev_desc, disk_partition_t *info)
350{
351 info->start = 0;
352 info->size = dev_desc->lba;
353 info->blksz = dev_desc->blksz;
354 info->bootable = 0;
355 strcpy((char *)info->type, BOOT_PART_TYPE);
356 strcpy((char *)info->name, "Whole Disk");
357#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
358 info->uuid[0] = 0;
359#endif
360#ifdef CONFIG_PARTITION_TYPE_GUID
361 info->type_guid[0] = 0;
362#endif
363
364 return 0;
365}
366
Simon Glassebac37c2016-02-29 15:25:43 -0700367int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
368 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000369{
370 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600371 char *dup_str = NULL;
372 const char *dev_str, *hwpart_str;
373 int dev, hwpart;
374
375 hwpart_str = strchr(dev_hwpart_str, '.');
376 if (hwpart_str) {
377 dup_str = strdup(dev_hwpart_str);
378 dup_str[hwpart_str - dev_hwpart_str] = 0;
379 dev_str = dup_str;
380 hwpart_str++;
381 } else {
382 dev_str = dev_hwpart_str;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600383 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600384 }
Stephen Warren2023e602012-09-21 09:50:56 +0000385
386 dev = simple_strtoul(dev_str, &ep, 16);
387 if (*ep) {
388 printf("** Bad device specification %s %s **\n",
389 ifname, dev_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600390 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600391 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000392 }
393
Stephen Warren336b6f92014-05-07 12:19:01 -0600394 if (hwpart_str) {
395 hwpart = simple_strtoul(hwpart_str, &ep, 16);
396 if (*ep) {
397 printf("** Bad HW partition specification %s %s **\n",
398 ifname, hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600399 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600400 goto cleanup;
401 }
402 }
403
404 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000405 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Stephen Warren336b6f92014-05-07 12:19:01 -0600406 printf("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600407 dev = -ENOENT;
Stephen Warren336b6f92014-05-07 12:19:01 -0600408 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000409 }
410
Adam Ford1811a922018-02-06 12:43:56 -0600411#ifdef CONFIG_HAVE_BLOCK_DEVICE
Erik Tideman99e7fc82016-01-11 13:39:07 +0000412 /*
413 * Updates the partition table for the specified hw partition.
414 * Does not need to be done for hwpart 0 since it is default and
415 * already loaded.
416 */
417 if(hwpart != 0)
Simon Glass3e8bd462016-02-29 15:25:48 -0700418 part_init(*dev_desc);
Erik Tideman99e7fc82016-01-11 13:39:07 +0000419#endif
420
Stephen Warren336b6f92014-05-07 12:19:01 -0600421cleanup:
422 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000423 return dev;
424}
425
Stephen Warren10a37fd2012-09-21 09:50:57 +0000426#define PART_UNSPECIFIED -2
427#define PART_AUTO -1
Simon Glasse35929e2016-02-29 15:25:44 -0700428int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700429 struct blk_desc **dev_desc,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000430 disk_partition_t *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000431{
Stephen Warren10a37fd2012-09-21 09:50:57 +0000432 int ret = -1;
433 const char *part_str;
434 char *dup_str = NULL;
435 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000436 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000437 char *ep;
438 int p;
439 int part;
440 disk_partition_t tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000441
Hans de Goedeafc17442015-09-17 18:46:55 -0400442#ifdef CONFIG_SANDBOX
Stephen Warren4d907022014-06-12 10:28:32 -0600443 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200444 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600445 * host's own filesystem.
446 */
447 if (0 == strcmp(ifname, "hostfs")) {
448 *dev_desc = NULL;
449 info->start = 0;
450 info->size = 0;
451 info->blksz = 0;
452 info->bootable = 0;
453 strcpy((char *)info->type, BOOT_PART_TYPE);
454 strcpy((char *)info->name, "Sandbox host");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100455#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren4d907022014-06-12 10:28:32 -0600456 info->uuid[0] = 0;
457#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100458#ifdef CONFIG_PARTITION_TYPE_GUID
459 info->type_guid[0] = 0;
460#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600461
462 return 0;
463 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400464#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600465
Hans de Goede251cee02015-09-17 18:46:58 -0400466#ifdef CONFIG_CMD_UBIFS
467 /*
468 * Special-case ubi, ubi goes through a mtd, rathen then through
469 * a regular block device.
470 */
471 if (0 == strcmp(ifname, "ubi")) {
472 if (!ubifs_is_mounted()) {
473 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
474 return -1;
475 }
476
477 *dev_desc = NULL;
478 memset(info, 0, sizeof(*info));
479 strcpy((char *)info->type, BOOT_PART_TYPE);
480 strcpy((char *)info->name, "UBI");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100481#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede251cee02015-09-17 18:46:58 -0400482 info->uuid[0] = 0;
483#endif
484 return 0;
485 }
486#endif
487
Stephen Warren10a37fd2012-09-21 09:50:57 +0000488 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000489 if (!dev_part_str || !strlen(dev_part_str) ||
490 !strcmp(dev_part_str, "-"))
Simon Glass00caae62017-08-03 12:22:12 -0600491 dev_part_str = env_get("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000492
Stephen Warren10a37fd2012-09-21 09:50:57 +0000493 /* If still no dev_part_str, it's an error */
494 if (!dev_part_str) {
495 printf("** No device specified **\n");
496 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000497 }
498
Stephen Warren10a37fd2012-09-21 09:50:57 +0000499 /* Separate device and partition ID specification */
500 part_str = strchr(dev_part_str, ':');
501 if (part_str) {
502 dup_str = strdup(dev_part_str);
503 dup_str[part_str - dev_part_str] = 0;
504 dev_str = dup_str;
505 part_str++;
506 } else {
507 dev_str = dev_part_str;
508 }
Rob Herring99d2c202012-09-21 04:08:17 +0000509
Stephen Warren10a37fd2012-09-21 09:50:57 +0000510 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700511 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000512 if (dev < 0)
513 goto cleanup;
514
515 /* Convert partition ID string to number */
516 if (!part_str || !*part_str) {
517 part = PART_UNSPECIFIED;
518 } else if (!strcmp(part_str, "auto")) {
519 part = PART_AUTO;
520 } else {
521 /* Something specified -> use exactly that */
522 part = (int)simple_strtoul(part_str, &ep, 16);
523 /*
524 * Less than whole string converted,
525 * or request for whole device, but caller requires partition.
526 */
527 if (*ep || (part == 0 && !allow_whole_dev)) {
528 printf("** Bad partition specification %s %s **\n",
529 ifname, dev_part_str);
530 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000531 }
Rob Herring99d2c202012-09-21 04:08:17 +0000532 }
533
Stephen Warren10a37fd2012-09-21 09:50:57 +0000534 /*
535 * No partition table on device,
536 * or user requested partition 0 (entire device).
537 */
538 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
539 (part == 0)) {
540 if (!(*dev_desc)->lba) {
541 printf("** Bad device size - %s %s **\n", ifname,
542 dev_str);
543 goto cleanup;
544 }
Rob Herring99d2c202012-09-21 04:08:17 +0000545
Stephen Warren10a37fd2012-09-21 09:50:57 +0000546 /*
547 * If user specified a partition ID other than 0,
548 * or the calling command only accepts partitions,
549 * it's an error.
550 */
551 if ((part > 0) || (!allow_whole_dev)) {
552 printf("** No partition table - %s %s **\n", ifname,
553 dev_str);
554 goto cleanup;
555 }
556
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800557 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
558
Rob Clark4bbcc962017-09-09 13:15:55 -0400559 part_get_info_whole_disk(*dev_desc, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000560
561 ret = 0;
562 goto cleanup;
563 }
564
565 /*
566 * Now there's known to be a partition table,
567 * not specifying a partition means to pick partition 1.
568 */
569 if (part == PART_UNSPECIFIED)
570 part = 1;
571
572 /*
573 * If user didn't specify a partition number, or did specify something
574 * other than "auto", use that partition number directly.
575 */
576 if (part != PART_AUTO) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700577 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000578 if (ret) {
579 printf("** Invalid partition %d **\n", part);
580 goto cleanup;
581 }
582 } else {
583 /*
584 * Find the first bootable partition.
585 * If none are bootable, fall back to the first valid partition.
586 */
587 part = 0;
588 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700589 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000590 if (ret)
591 continue;
592
593 /*
594 * First valid partition, or new better partition?
595 * If so, save partition ID.
596 */
597 if (!part || info->bootable)
598 part = p;
599
600 /* Best possible partition? Stop searching. */
601 if (info->bootable)
602 break;
603
604 /*
605 * We now need to search further for best possible.
606 * If we what we just queried was the best so far,
607 * save the info since we over-write it next loop.
608 */
609 if (part == p)
610 tmpinfo = *info;
611 }
612 /* If we found any acceptable partition */
613 if (part) {
614 /*
615 * If we searched all possible partition IDs,
616 * return the first valid partition we found.
617 */
618 if (p == MAX_SEARCH_PARTITIONS + 1)
619 *info = tmpinfo;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000620 } else {
621 printf("** No valid partitions found **\n");
Stephen Warren71bba422012-10-08 07:45:54 +0000622 ret = -1;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000623 goto cleanup;
624 }
Rob Herring99d2c202012-09-21 04:08:17 +0000625 }
626 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
627 printf("** Invalid partition type \"%.32s\""
628 " (expect \"" BOOT_PART_TYPE "\")\n",
629 info->type);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000630 ret = -1;
631 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000632 }
633
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800634 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
635
Stephen Warren10a37fd2012-09-21 09:50:57 +0000636 ret = part;
637 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000638
Stephen Warren10a37fd2012-09-21 09:50:57 +0000639cleanup:
640 free(dup_str);
641 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000642}
Petr Kulhavy87b85302016-09-09 10:27:15 +0200643
Sam Protsenko30789092017-09-22 01:51:58 +0300644int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
645 disk_partition_t *info, int part_type)
Petr Kulhavy87b85302016-09-09 10:27:15 +0200646{
647 struct part_driver *first_drv =
648 ll_entry_start(struct part_driver, part_driver);
649 const int n_drvs = ll_entry_count(struct part_driver, part_driver);
650 struct part_driver *part_drv;
651
652 for (part_drv = first_drv; part_drv != first_drv + n_drvs; part_drv++) {
653 int ret;
654 int i;
655 for (i = 1; i < part_drv->max_entries; i++) {
Sam Protsenko30789092017-09-22 01:51:58 +0300656 if (part_type >= 0 && part_type != part_drv->part_type)
657 break;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200658 ret = part_drv->get_info(dev_desc, i, info);
659 if (ret != 0) {
660 /* no more entries in table */
661 break;
662 }
663 if (strcmp(name, (const char *)info->name) == 0) {
664 /* matched */
Alex Deymo88b63292017-04-02 01:49:50 -0700665 return i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200666 }
667 }
668 }
669 return -1;
670}
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200671
Sam Protsenko30789092017-09-22 01:51:58 +0300672int part_get_info_by_name(struct blk_desc *dev_desc, const char *name,
673 disk_partition_t *info)
674{
675 return part_get_info_by_name_type(dev_desc, name, info, PART_TYPE_ALL);
676}
677
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200678void part_set_generic_name(const struct blk_desc *dev_desc,
679 int part_num, char *name)
680{
681 char *devtype;
682
683 switch (dev_desc->if_type) {
684 case IF_TYPE_IDE:
685 case IF_TYPE_SATA:
686 case IF_TYPE_ATAPI:
687 devtype = "hd";
688 break;
689 case IF_TYPE_SCSI:
690 devtype = "sd";
691 break;
692 case IF_TYPE_USB:
693 devtype = "usbd";
694 break;
695 case IF_TYPE_DOC:
696 devtype = "docd";
697 break;
698 case IF_TYPE_MMC:
699 case IF_TYPE_SD:
700 devtype = "mmcsd";
701 break;
702 default:
703 devtype = "xx";
704 break;
705 }
706
707 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
708}