blob: 8982ef3baed129f13ed8936eecb2380a334c9b0b [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 Glass7b51b572019-08-01 09:46:52 -06009#include <env.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
Kever Yangd4729262018-02-10 17:55:37 +080027static struct part_driver *part_driver_lookup_type(struct blk_desc *dev_desc)
Simon Glass96e5b032016-02-29 15:25:47 -070028{
29 struct part_driver *drv =
30 ll_entry_start(struct part_driver, part_driver);
31 const int n_ents = ll_entry_count(struct part_driver, part_driver);
32 struct part_driver *entry;
33
Kever Yangd4729262018-02-10 17:55:37 +080034 if (dev_desc->part_type == PART_TYPE_UNKNOWN) {
35 for (entry = drv; entry != drv + n_ents; entry++) {
36 int ret;
37
38 ret = entry->test(dev_desc);
39 if (!ret) {
40 dev_desc->part_type = entry->part_type;
41 return entry;
42 }
43 }
44 } else {
45 for (entry = drv; entry != drv + n_ents; entry++) {
46 if (dev_desc->part_type == entry->part_type)
47 return entry;
48 }
Simon Glass96e5b032016-02-29 15:25:47 -070049 }
50
51 /* Not found */
52 return NULL;
53}
54
Kever Yang56670d62018-02-10 17:55:38 +080055#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass4101f682016-02-29 15:25:34 -070056static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Grant Likely735dd972007-02-20 09:04:34 +010057{
Simon Glass6dd9faf2016-05-01 13:52:32 -060058 struct blk_desc *dev_desc;
59 int ret;
Grant Likely735dd972007-02-20 09:04:34 +010060
Simon Glass6dd9faf2016-05-01 13:52:32 -060061 dev_desc = blk_get_devnum_by_typename(ifname, dev);
62 if (!dev_desc) {
63 debug("%s: No device for iface '%s', dev %d\n", __func__,
64 ifname, dev);
Tim Kientzle7e71dc62012-03-27 11:43:25 +020065 return NULL;
Grant Likely735dd972007-02-20 09:04:34 +010066 }
Simon Glass6dd9faf2016-05-01 13:52:32 -060067 ret = blk_dselect_hwpart(dev_desc, hwpart);
68 if (ret) {
69 debug("%s: Failed to select h/w partition: err-%d\n", __func__,
70 ret);
71 return NULL;
72 }
73
74 return dev_desc;
Grant Likely735dd972007-02-20 09:04:34 +010075}
Stephen Warren336b6f92014-05-07 12:19:01 -060076
Simon Glassdb1d9e72016-02-29 15:25:42 -070077struct blk_desc *blk_get_dev(const char *ifname, int dev)
Stephen Warren336b6f92014-05-07 12:19:01 -060078{
Stephen Warrenecdd57e2014-05-23 12:48:11 -060079 return get_dev_hwpart(ifname, dev, 0);
Stephen Warren336b6f92014-05-07 12:19:01 -060080}
Grant Likely735dd972007-02-20 09:04:34 +010081#else
Simon Glass4101f682016-02-29 15:25:34 -070082struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart)
Stephen Warren336b6f92014-05-07 12:19:01 -060083{
84 return NULL;
85}
86
Simon Glassdb1d9e72016-02-29 15:25:42 -070087struct blk_desc *blk_get_dev(const char *ifname, int dev)
Grant Likely735dd972007-02-20 09:04:34 +010088{
89 return NULL;
90}
91#endif
92
Adam Ford1811a922018-02-06 12:43:56 -060093#ifdef CONFIG_HAVE_BLOCK_DEVICE
Grant Likely735dd972007-02-20 09:04:34 +010094
wdenkaffae2b2002-08-17 09:36:01 +000095/* ------------------------------------------------------------------------- */
96/*
97 * reports device info to the user
98 */
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +030099
100#ifdef CONFIG_LBA48
101typedef uint64_t lba512_t;
102#else
103typedef lbaint_t lba512_t;
104#endif
105
106/*
Heinrich Schuchardt17416ea2019-06-02 00:04:50 +0200107 * Overflowless variant of (block_count * mul_by / 2**div_by)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300108 * when div_by > mul_by
109 */
Heinrich Schuchardt17416ea2019-06-02 00:04:50 +0200110static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, int div_by)
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300111{
112 lba512_t bc_quot, bc_rem;
113
114 /* x * m / d == x / d * m + (x % d) * m / d */
Heinrich Schuchardt17416ea2019-06-02 00:04:50 +0200115 bc_quot = block_count >> div_by;
116 bc_rem = block_count - (bc_quot << div_by);
117 return bc_quot * mul_by + ((bc_rem * mul_by) >> div_by);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300118}
119
Simon Glass4101f682016-02-29 15:25:34 -0700120void dev_print (struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000121{
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300122 lba512_t lba512; /* number of blocks if 512bytes block size */
wdenkaffae2b2002-08-17 09:36:01 +0000123
Wolfgang Denkaf75a452009-05-15 09:27:58 +0200124 if (dev_desc->type == DEV_TYPE_UNKNOWN) {
125 puts ("not available\n");
126 return;
127 }
128
Tor Krill8ec6e332008-05-29 11:10:30 +0200129 switch (dev_desc->if_type) {
Detlev Zundel574b3192008-05-05 16:11:21 +0200130 case IF_TYPE_SCSI:
131 printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n",
132 dev_desc->target,dev_desc->lun,
wdenkaffae2b2002-08-17 09:36:01 +0000133 dev_desc->vendor,
134 dev_desc->product,
135 dev_desc->revision);
Detlev Zundel574b3192008-05-05 16:11:21 +0200136 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200137 case IF_TYPE_ATAPI:
Detlev Zundel574b3192008-05-05 16:11:21 +0200138 case IF_TYPE_IDE:
139 case IF_TYPE_SATA:
140 printf ("Model: %s Firm: %s Ser#: %s\n",
141 dev_desc->vendor,
142 dev_desc->revision,
143 dev_desc->product);
144 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200145 case IF_TYPE_SD:
146 case IF_TYPE_MMC:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300147 case IF_TYPE_USB:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700148 case IF_TYPE_NVME:
Nícolas Carneiro Lebedenco47bebe32008-09-04 15:35:46 -0300149 printf ("Vendor: %s Rev: %s Prod: %s\n",
150 dev_desc->vendor,
151 dev_desc->revision,
152 dev_desc->product);
153 break;
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700154 case IF_TYPE_VIRTIO:
155 printf("%s VirtIO Block Device\n", dev_desc->vendor);
156 break;
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200157 case IF_TYPE_DOC:
158 puts("device type DOC\n");
159 return;
Tor Krill8ec6e332008-05-29 11:10:30 +0200160 case IF_TYPE_UNKNOWN:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200161 puts("device type unknown\n");
162 return;
Detlev Zundel574b3192008-05-05 16:11:21 +0200163 default:
Remy Bohmer6e24a1e2008-09-19 13:30:06 +0200164 printf("Unhandled device type: %i\n", dev_desc->if_type);
Detlev Zundel574b3192008-05-05 16:11:21 +0200165 return;
wdenkaffae2b2002-08-17 09:36:01 +0000166 }
167 puts (" Type: ");
168 if (dev_desc->removable)
169 puts ("Removable ");
170 switch (dev_desc->type & 0x1F) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200171 case DEV_TYPE_HARDDISK:
172 puts ("Hard Disk");
173 break;
174 case DEV_TYPE_CDROM:
175 puts ("CD ROM");
176 break;
177 case DEV_TYPE_OPDISK:
178 puts ("Optical Device");
179 break;
180 case DEV_TYPE_TAPE:
181 puts ("Tape");
182 break;
183 default:
184 printf ("# %02X #", dev_desc->type & 0x1F);
185 break;
wdenkaffae2b2002-08-17 09:36:01 +0000186 }
187 puts ("\n");
Jerry Huang33699df2012-11-06 15:33:12 +0000188 if (dev_desc->lba > 0L && dev_desc->blksz > 0L) {
wdenkaffae2b2002-08-17 09:36:01 +0000189 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem;
wdenkc40b2952004-03-13 23:29:43 +0000190 lbaint_t lba;
wdenk6e592382004-04-18 17:39:38 +0000191
192 lba = dev_desc->lba;
wdenkaffae2b2002-08-17 09:36:01 +0000193
wdenkc40b2952004-03-13 23:29:43 +0000194 lba512 = (lba * (dev_desc->blksz/512));
wdenkaffae2b2002-08-17 09:36:01 +0000195 /* round to 1 digit */
Pavel Machek214b3f32014-09-09 15:19:42 +0200196 /* 2048 = (1024 * 1024) / 512 MB */
Heinrich Schuchardt17416ea2019-06-02 00:04:50 +0200197 mb = lba512_muldiv(lba512, 10, 11);
Sergei Trofimovich69a2a4d2010-08-08 15:05:39 +0300198
wdenkaffae2b2002-08-17 09:36:01 +0000199 mb_quot = mb / 10;
200 mb_rem = mb - (10 * mb_quot);
201
202 gb = mb / 1024;
203 gb_quot = gb / 10;
204 gb_rem = gb - (10 * gb_quot);
wdenk42dfe7a2004-03-14 22:25:36 +0000205#ifdef CONFIG_LBA48
wdenk6e592382004-04-18 17:39:38 +0000206 if (dev_desc->lba48)
wdenkc40b2952004-03-13 23:29:43 +0000207 printf (" Supports 48-bit addressing\n");
208#endif
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100209#if defined(CONFIG_SYS_64BIT_LBA)
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100210 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n",
wdenkc40b2952004-03-13 23:29:43 +0000211 mb_quot, mb_rem,
212 gb_quot, gb_rem,
213 lba,
214 dev_desc->blksz);
215#else
Jean-Jacques Hiblot139f7b12016-12-23 10:45:43 +0100216 printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n",
wdenkaffae2b2002-08-17 09:36:01 +0000217 mb_quot, mb_rem,
218 gb_quot, gb_rem,
wdenkc40b2952004-03-13 23:29:43 +0000219 (ulong)lba,
wdenkaffae2b2002-08-17 09:36:01 +0000220 dev_desc->blksz);
wdenkc40b2952004-03-13 23:29:43 +0000221#endif
wdenkaffae2b2002-08-17 09:36:01 +0000222 } else {
223 puts (" Capacity: not available\n");
224 }
225}
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500226#endif
wdenkaffae2b2002-08-17 09:36:01 +0000227
Adam Ford1811a922018-02-06 12:43:56 -0600228#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkaffae2b2002-08-17 09:36:01 +0000229
Simon Glass3e8bd462016-02-29 15:25:48 -0700230void part_init(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000231{
Simon Glass96e5b032016-02-29 15:25:47 -0700232 struct part_driver *drv =
233 ll_entry_start(struct part_driver, part_driver);
234 const int n_ents = ll_entry_count(struct part_driver, part_driver);
235 struct part_driver *entry;
wdenkaffae2b2002-08-17 09:36:01 +0000236
Eric Nelsone40cf342016-03-28 10:05:44 -0700237 blkcache_invalidate(dev_desc->if_type, dev_desc->devnum);
238
Rob Herring99d2c202012-09-21 04:08:17 +0000239 dev_desc->part_type = PART_TYPE_UNKNOWN;
Simon Glass96e5b032016-02-29 15:25:47 -0700240 for (entry = drv; entry != drv + n_ents; entry++) {
241 int ret;
242
243 ret = entry->test(dev_desc);
244 debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret);
245 if (!ret) {
246 dev_desc->part_type = entry->part_type;
247 break;
248 }
249 }
wdenkaffae2b2002-08-17 09:36:01 +0000250}
251
Simon Glass96e5b032016-02-29 15:25:47 -0700252static void print_part_header(const char *type, struct blk_desc *dev_desc)
253{
Patrick Delaunayf18fa312017-01-27 11:00:36 +0100254#if CONFIG_IS_ENABLED(MAC_PARTITION) || \
Patrick Delaunayb0cf7332017-01-27 11:00:37 +0100255 CONFIG_IS_ENABLED(DOS_PARTITION) || \
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100256 CONFIG_IS_ENABLED(ISO_PARTITION) || \
Patrick Delaunay863c5b62017-01-27 11:00:39 +0100257 CONFIG_IS_ENABLED(AMIGA_PARTITION) || \
Patrick Delaunaybd42a942017-01-27 11:00:41 +0100258 CONFIG_IS_ENABLED(EFI_PARTITION)
wdenkaffae2b2002-08-17 09:36:01 +0000259 puts ("\nPartition Map for ");
260 switch (dev_desc->if_type) {
Detlev Zundel726c0f12008-05-05 16:11:22 +0200261 case IF_TYPE_IDE:
262 puts ("IDE");
263 break;
264 case IF_TYPE_SATA:
265 puts ("SATA");
266 break;
267 case IF_TYPE_SCSI:
268 puts ("SCSI");
269 break;
270 case IF_TYPE_ATAPI:
271 puts ("ATAPI");
272 break;
273 case IF_TYPE_USB:
274 puts ("USB");
275 break;
276 case IF_TYPE_DOC:
277 puts ("DOC");
278 break;
Lei Wen8f3b9642010-09-13 22:07:28 +0800279 case IF_TYPE_MMC:
280 puts ("MMC");
281 break;
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700282 case IF_TYPE_HOST:
Zhikang Zhangffab6942017-08-03 02:30:56 -0700283 puts ("HOST");
284 break;
285 case IF_TYPE_NVME:
286 puts ("NVMe");
Henrik Nordströmf4d8de42013-11-10 10:26:56 -0700287 break;
Tuomas Tynkkynen4ad54ec2018-10-15 02:21:10 -0700288 case IF_TYPE_VIRTIO:
289 puts("VirtIO");
290 break;
Detlev Zundel726c0f12008-05-05 16:11:22 +0200291 default:
292 puts ("UNKNOWN");
293 break;
wdenkaffae2b2002-08-17 09:36:01 +0000294 }
295 printf (" device %d -- Partition Type: %s\n\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700296 dev_desc->devnum, type);
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000297#endif /* any CONFIG_..._PARTITION */
Simon Glass96e5b032016-02-29 15:25:47 -0700298}
Gabe Black0c9c8fb2012-10-12 14:26:08 +0000299
Simon Glass3e8bd462016-02-29 15:25:48 -0700300void part_print(struct blk_desc *dev_desc)
wdenkaffae2b2002-08-17 09:36:01 +0000301{
Simon Glass96e5b032016-02-29 15:25:47 -0700302 struct part_driver *drv;
wdenkaffae2b2002-08-17 09:36:01 +0000303
Kever Yangd4729262018-02-10 17:55:37 +0800304 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700305 if (!drv) {
306 printf("## Unknown partition table type %x\n",
307 dev_desc->part_type);
wdenkaffae2b2002-08-17 09:36:01 +0000308 return;
wdenkaffae2b2002-08-17 09:36:01 +0000309 }
Simon Glass96e5b032016-02-29 15:25:47 -0700310
311 PRINTF("## Testing for valid %s partition ##\n", drv->name);
312 print_part_header(drv->name, dev_desc);
313 if (drv->print)
314 drv->print(dev_desc);
wdenkaffae2b2002-08-17 09:36:01 +0000315}
316
Adam Ford1811a922018-02-06 12:43:56 -0600317#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000318
Simon Glass3e8bd462016-02-29 15:25:48 -0700319int part_get_info(struct blk_desc *dev_desc, int part,
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200320 disk_partition_t *info)
Stephen Warren2f501642012-09-21 12:46:54 +0000321{
Adam Ford1811a922018-02-06 12:43:56 -0600322#ifdef CONFIG_HAVE_BLOCK_DEVICE
Simon Glass96e5b032016-02-29 15:25:47 -0700323 struct part_driver *drv;
Stephen Warren2f501642012-09-21 12:46:54 +0000324
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100325#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren894bfbb2012-09-21 09:50:59 +0000326 /* The common case is no UUID support */
327 info->uuid[0] = 0;
328#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100329#ifdef CONFIG_PARTITION_TYPE_GUID
330 info->type_guid[0] = 0;
331#endif
Stephen Warren894bfbb2012-09-21 09:50:59 +0000332
Kever Yangd4729262018-02-10 17:55:37 +0800333 drv = part_driver_lookup_type(dev_desc);
Simon Glass96e5b032016-02-29 15:25:47 -0700334 if (!drv) {
335 debug("## Unknown partition table type %x\n",
336 dev_desc->part_type);
337 return -EPROTONOSUPPORT;
338 }
339 if (!drv->get_info) {
Nishanth Menon2ae67ae2016-03-15 16:15:32 -0500340 PRINTF("## Driver %s does not have the get_info() method\n",
341 drv->name);
Simon Glass96e5b032016-02-29 15:25:47 -0700342 return -ENOSYS;
343 }
344 if (drv->get_info(dev_desc, part, info) == 0) {
345 PRINTF("## Valid %s partition found ##\n", drv->name);
346 return 0;
Stephen Warren2f501642012-09-21 12:46:54 +0000347 }
Adam Ford1811a922018-02-06 12:43:56 -0600348#endif /* CONFIG_HAVE_BLOCK_DEVICE */
Stephen Warren2f501642012-09-21 12:46:54 +0000349
350 return -1;
351}
Rob Herring99d2c202012-09-21 04:08:17 +0000352
Rob Clark4bbcc962017-09-09 13:15:55 -0400353int part_get_info_whole_disk(struct blk_desc *dev_desc, disk_partition_t *info)
354{
355 info->start = 0;
356 info->size = dev_desc->lba;
357 info->blksz = dev_desc->blksz;
358 info->bootable = 0;
359 strcpy((char *)info->type, BOOT_PART_TYPE);
360 strcpy((char *)info->name, "Whole Disk");
361#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
362 info->uuid[0] = 0;
363#endif
364#ifdef CONFIG_PARTITION_TYPE_GUID
365 info->type_guid[0] = 0;
366#endif
367
368 return 0;
369}
370
Simon Glassebac37c2016-02-29 15:25:43 -0700371int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str,
372 struct blk_desc **dev_desc)
Stephen Warren2023e602012-09-21 09:50:56 +0000373{
374 char *ep;
Stephen Warren336b6f92014-05-07 12:19:01 -0600375 char *dup_str = NULL;
376 const char *dev_str, *hwpart_str;
377 int dev, hwpart;
378
379 hwpart_str = strchr(dev_hwpart_str, '.');
380 if (hwpart_str) {
381 dup_str = strdup(dev_hwpart_str);
382 dup_str[hwpart_str - dev_hwpart_str] = 0;
383 dev_str = dup_str;
384 hwpart_str++;
385 } else {
386 dev_str = dev_hwpart_str;
Stephen Warrenecdd57e2014-05-23 12:48:11 -0600387 hwpart = 0;
Stephen Warren336b6f92014-05-07 12:19:01 -0600388 }
Stephen Warren2023e602012-09-21 09:50:56 +0000389
390 dev = simple_strtoul(dev_str, &ep, 16);
391 if (*ep) {
392 printf("** Bad device specification %s %s **\n",
393 ifname, dev_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600394 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600395 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000396 }
397
Stephen Warren336b6f92014-05-07 12:19:01 -0600398 if (hwpart_str) {
399 hwpart = simple_strtoul(hwpart_str, &ep, 16);
400 if (*ep) {
401 printf("** Bad HW partition specification %s %s **\n",
402 ifname, hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600403 dev = -EINVAL;
Stephen Warren336b6f92014-05-07 12:19:01 -0600404 goto cleanup;
405 }
406 }
407
408 *dev_desc = get_dev_hwpart(ifname, dev, hwpart);
Stephen Warren2023e602012-09-21 09:50:56 +0000409 if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) {
Sam Protsenko8f690842018-07-30 19:19:27 +0300410 debug("** Bad device %s %s **\n", ifname, dev_hwpart_str);
Simon Glass1598dfc2016-05-01 13:52:36 -0600411 dev = -ENOENT;
Stephen Warren336b6f92014-05-07 12:19:01 -0600412 goto cleanup;
Stephen Warren2023e602012-09-21 09:50:56 +0000413 }
414
Adam Ford1811a922018-02-06 12:43:56 -0600415#ifdef CONFIG_HAVE_BLOCK_DEVICE
Erik Tideman99e7fc82016-01-11 13:39:07 +0000416 /*
417 * Updates the partition table for the specified hw partition.
Robert Hancock4edfabd2019-06-18 09:53:04 -0600418 * Always should be done, otherwise hw partition 0 will return stale
419 * data after displaying a non-zero hw partition.
Erik Tideman99e7fc82016-01-11 13:39:07 +0000420 */
Robert Hancock4edfabd2019-06-18 09:53:04 -0600421 part_init(*dev_desc);
Erik Tideman99e7fc82016-01-11 13:39:07 +0000422#endif
423
Stephen Warren336b6f92014-05-07 12:19:01 -0600424cleanup:
425 free(dup_str);
Stephen Warren2023e602012-09-21 09:50:56 +0000426 return dev;
427}
428
Stephen Warren10a37fd2012-09-21 09:50:57 +0000429#define PART_UNSPECIFIED -2
430#define PART_AUTO -1
Simon Glasse35929e2016-02-29 15:25:44 -0700431int blk_get_device_part_str(const char *ifname, const char *dev_part_str,
Simon Glass4101f682016-02-29 15:25:34 -0700432 struct blk_desc **dev_desc,
Stephen Warren10a37fd2012-09-21 09:50:57 +0000433 disk_partition_t *info, int allow_whole_dev)
Rob Herring99d2c202012-09-21 04:08:17 +0000434{
Stephen Warren10a37fd2012-09-21 09:50:57 +0000435 int ret = -1;
436 const char *part_str;
437 char *dup_str = NULL;
438 const char *dev_str;
Rob Herring99d2c202012-09-21 04:08:17 +0000439 int dev;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000440 char *ep;
441 int p;
442 int part;
443 disk_partition_t tmpinfo;
Rob Herring99d2c202012-09-21 04:08:17 +0000444
Hans de Goedeafc17442015-09-17 18:46:55 -0400445#ifdef CONFIG_SANDBOX
Stephen Warren4d907022014-06-12 10:28:32 -0600446 /*
Pavel Machek3f9eb6e2014-07-19 23:50:44 +0200447 * Special-case a pseudo block device "hostfs", to allow access to the
Stephen Warren4d907022014-06-12 10:28:32 -0600448 * host's own filesystem.
449 */
450 if (0 == strcmp(ifname, "hostfs")) {
451 *dev_desc = NULL;
452 info->start = 0;
453 info->size = 0;
454 info->blksz = 0;
455 info->bootable = 0;
456 strcpy((char *)info->type, BOOT_PART_TYPE);
457 strcpy((char *)info->name, "Sandbox host");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100458#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Stephen Warren4d907022014-06-12 10:28:32 -0600459 info->uuid[0] = 0;
460#endif
Patrick Delaunay7561b252015-10-27 11:00:27 +0100461#ifdef CONFIG_PARTITION_TYPE_GUID
462 info->type_guid[0] = 0;
463#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600464
465 return 0;
466 }
Hans de Goedeafc17442015-09-17 18:46:55 -0400467#endif
Stephen Warren4d907022014-06-12 10:28:32 -0600468
Hans de Goede251cee02015-09-17 18:46:58 -0400469#ifdef CONFIG_CMD_UBIFS
470 /*
Heinrich Schuchardt3174caf2019-04-10 18:59:26 +0200471 * Special-case ubi, ubi goes through a mtd, rather than through
Hans de Goede251cee02015-09-17 18:46:58 -0400472 * a regular block device.
473 */
474 if (0 == strcmp(ifname, "ubi")) {
475 if (!ubifs_is_mounted()) {
476 printf("UBIFS not mounted, use ubifsmount to mount volume first!\n");
477 return -1;
478 }
479
480 *dev_desc = NULL;
481 memset(info, 0, sizeof(*info));
482 strcpy((char *)info->type, BOOT_PART_TYPE);
483 strcpy((char *)info->name, "UBI");
Patrick Delaunayb331cd62017-01-27 11:00:42 +0100484#if CONFIG_IS_ENABLED(PARTITION_UUIDS)
Hans de Goede251cee02015-09-17 18:46:58 -0400485 info->uuid[0] = 0;
486#endif
487 return 0;
488 }
489#endif
490
Stephen Warren10a37fd2012-09-21 09:50:57 +0000491 /* If no dev_part_str, use bootdevice environment variable */
Stephen Warrena10973e2012-09-28 05:34:09 +0000492 if (!dev_part_str || !strlen(dev_part_str) ||
493 !strcmp(dev_part_str, "-"))
Simon Glass00caae62017-08-03 12:22:12 -0600494 dev_part_str = env_get("bootdevice");
Rob Herring99d2c202012-09-21 04:08:17 +0000495
Stephen Warren10a37fd2012-09-21 09:50:57 +0000496 /* If still no dev_part_str, it's an error */
497 if (!dev_part_str) {
498 printf("** No device specified **\n");
499 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000500 }
501
Stephen Warren10a37fd2012-09-21 09:50:57 +0000502 /* Separate device and partition ID specification */
503 part_str = strchr(dev_part_str, ':');
504 if (part_str) {
505 dup_str = strdup(dev_part_str);
506 dup_str[part_str - dev_part_str] = 0;
507 dev_str = dup_str;
508 part_str++;
509 } else {
510 dev_str = dev_part_str;
511 }
Rob Herring99d2c202012-09-21 04:08:17 +0000512
Stephen Warren10a37fd2012-09-21 09:50:57 +0000513 /* Look up the device */
Simon Glassebac37c2016-02-29 15:25:43 -0700514 dev = blk_get_device_by_str(ifname, dev_str, dev_desc);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000515 if (dev < 0)
516 goto cleanup;
517
518 /* Convert partition ID string to number */
519 if (!part_str || !*part_str) {
520 part = PART_UNSPECIFIED;
521 } else if (!strcmp(part_str, "auto")) {
522 part = PART_AUTO;
523 } else {
524 /* Something specified -> use exactly that */
525 part = (int)simple_strtoul(part_str, &ep, 16);
526 /*
527 * Less than whole string converted,
528 * or request for whole device, but caller requires partition.
529 */
530 if (*ep || (part == 0 && !allow_whole_dev)) {
531 printf("** Bad partition specification %s %s **\n",
532 ifname, dev_part_str);
533 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000534 }
Rob Herring99d2c202012-09-21 04:08:17 +0000535 }
536
Stephen Warren10a37fd2012-09-21 09:50:57 +0000537 /*
538 * No partition table on device,
539 * or user requested partition 0 (entire device).
540 */
541 if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) ||
542 (part == 0)) {
543 if (!(*dev_desc)->lba) {
544 printf("** Bad device size - %s %s **\n", ifname,
545 dev_str);
546 goto cleanup;
547 }
Rob Herring99d2c202012-09-21 04:08:17 +0000548
Stephen Warren10a37fd2012-09-21 09:50:57 +0000549 /*
550 * If user specified a partition ID other than 0,
551 * or the calling command only accepts partitions,
552 * it's an error.
553 */
554 if ((part > 0) || (!allow_whole_dev)) {
555 printf("** No partition table - %s %s **\n", ifname,
556 dev_str);
557 goto cleanup;
558 }
559
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800560 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
561
Rob Clark4bbcc962017-09-09 13:15:55 -0400562 part_get_info_whole_disk(*dev_desc, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000563
564 ret = 0;
565 goto cleanup;
566 }
567
568 /*
569 * Now there's known to be a partition table,
570 * not specifying a partition means to pick partition 1.
571 */
572 if (part == PART_UNSPECIFIED)
573 part = 1;
574
575 /*
576 * If user didn't specify a partition number, or did specify something
577 * other than "auto", use that partition number directly.
578 */
579 if (part != PART_AUTO) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700580 ret = part_get_info(*dev_desc, part, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000581 if (ret) {
582 printf("** Invalid partition %d **\n", part);
583 goto cleanup;
584 }
585 } else {
586 /*
587 * Find the first bootable partition.
588 * If none are bootable, fall back to the first valid partition.
589 */
590 part = 0;
591 for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700592 ret = part_get_info(*dev_desc, p, info);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000593 if (ret)
594 continue;
595
596 /*
597 * First valid partition, or new better partition?
598 * If so, save partition ID.
599 */
600 if (!part || info->bootable)
601 part = p;
602
603 /* Best possible partition? Stop searching. */
604 if (info->bootable)
605 break;
606
607 /*
608 * We now need to search further for best possible.
609 * If we what we just queried was the best so far,
610 * save the info since we over-write it next loop.
611 */
612 if (part == p)
613 tmpinfo = *info;
614 }
615 /* If we found any acceptable partition */
616 if (part) {
617 /*
618 * If we searched all possible partition IDs,
619 * return the first valid partition we found.
620 */
621 if (p == MAX_SEARCH_PARTITIONS + 1)
622 *info = tmpinfo;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000623 } else {
624 printf("** No valid partitions found **\n");
Stephen Warren71bba422012-10-08 07:45:54 +0000625 ret = -1;
Stephen Warren10a37fd2012-09-21 09:50:57 +0000626 goto cleanup;
627 }
Rob Herring99d2c202012-09-21 04:08:17 +0000628 }
629 if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) {
630 printf("** Invalid partition type \"%.32s\""
631 " (expect \"" BOOT_PART_TYPE "\")\n",
632 info->type);
Stephen Warren10a37fd2012-09-21 09:50:57 +0000633 ret = -1;
634 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000635 }
636
Lan Yixun (dlan)50ffc3b2013-07-20 08:17:59 +0800637 (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz);
638
Stephen Warren10a37fd2012-09-21 09:50:57 +0000639 ret = part;
640 goto cleanup;
Rob Herring99d2c202012-09-21 04:08:17 +0000641
Stephen Warren10a37fd2012-09-21 09:50:57 +0000642cleanup:
643 free(dup_str);
644 return ret;
Rob Herring99d2c202012-09-21 04:08:17 +0000645}
Petr Kulhavy87b85302016-09-09 10:27:15 +0200646
Sam Protsenko30789092017-09-22 01:51:58 +0300647int part_get_info_by_name_type(struct blk_desc *dev_desc, const char *name,
648 disk_partition_t *info, int part_type)
Petr Kulhavy87b85302016-09-09 10:27:15 +0200649{
Petr Kulhavy87b85302016-09-09 10:27:15 +0200650 struct part_driver *part_drv;
Kever Yang56670d62018-02-10 17:55:38 +0800651 int ret;
652 int i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200653
Kever Yang56670d62018-02-10 17:55:38 +0800654 part_drv = part_driver_lookup_type(dev_desc);
655 if (!part_drv)
656 return -1;
657 for (i = 1; i < part_drv->max_entries; i++) {
658 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 */
665 return i;
Petr Kulhavy87b85302016-09-09 10:27:15 +0200666 }
667 }
Kever Yang56670d62018-02-10 17:55:38 +0800668
Petr Kulhavy87b85302016-09-09 10:27:15 +0200669 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
Ruslan Trofymenko6eccd1f2019-07-05 15:37:31 +0300678/**
679 * Get partition info from device number and partition name.
680 *
681 * Parse a device number and partition name string in the form of
682 * "device_num#partition_name", for example "0#misc". If the partition
683 * is found, sets dev_desc and part_info accordingly with the information
684 * of the partition with the given partition_name.
685 *
686 * @param[in] dev_iface Device interface
687 * @param[in] dev_part_str Input string argument, like "0#misc"
688 * @param[out] dev_desc Place to store the device description pointer
689 * @param[out] part_info Place to store the partition information
690 * @return 0 on success, or a negative on error
691 */
692static int part_get_info_by_dev_and_name(const char *dev_iface,
693 const char *dev_part_str,
694 struct blk_desc **dev_desc,
695 disk_partition_t *part_info)
696{
697 char *ep;
698 const char *part_str;
699 int dev_num;
700
701 part_str = strchr(dev_part_str, '#');
702 if (!part_str || part_str == dev_part_str)
703 return -EINVAL;
704
705 dev_num = simple_strtoul(dev_part_str, &ep, 16);
706 if (ep != part_str) {
707 /* Not all the first part before the # was parsed. */
708 return -EINVAL;
709 }
710 part_str++;
711
712 *dev_desc = blk_get_dev(dev_iface, dev_num);
713 if (!*dev_desc) {
714 printf("Could not find %s %d\n", dev_iface, dev_num);
715 return -EINVAL;
716 }
717 if (part_get_info_by_name(*dev_desc, part_str, part_info) < 0) {
718 printf("Could not find \"%s\" partition\n", part_str);
719 return -EINVAL;
720 }
721 return 0;
722}
723
724int part_get_info_by_dev_and_name_or_num(const char *dev_iface,
725 const char *dev_part_str,
726 struct blk_desc **dev_desc,
727 disk_partition_t *part_info)
728{
729 /* Split the part_name if passed as "$dev_num#part_name". */
730 if (!part_get_info_by_dev_and_name(dev_iface, dev_part_str,
731 dev_desc, part_info))
732 return 0;
733 /*
734 * Couldn't lookup by name, try looking up the partition description
735 * directly.
736 */
737 if (blk_get_device_part_str(dev_iface, dev_part_str,
738 dev_desc, part_info, 1) < 0) {
739 printf("Couldn't find partition %s %s\n",
740 dev_iface, dev_part_str);
741 return -EINVAL;
742 }
743 return 0;
744}
745
Petr Kulhavyda2ee242016-09-09 10:27:17 +0200746void part_set_generic_name(const struct blk_desc *dev_desc,
747 int part_num, char *name)
748{
749 char *devtype;
750
751 switch (dev_desc->if_type) {
752 case IF_TYPE_IDE:
753 case IF_TYPE_SATA:
754 case IF_TYPE_ATAPI:
755 devtype = "hd";
756 break;
757 case IF_TYPE_SCSI:
758 devtype = "sd";
759 break;
760 case IF_TYPE_USB:
761 devtype = "usbd";
762 break;
763 case IF_TYPE_DOC:
764 devtype = "docd";
765 break;
766 case IF_TYPE_MMC:
767 case IF_TYPE_SD:
768 devtype = "mmcsd";
769 break;
770 default:
771 devtype = "xx";
772 break;
773 }
774
775 sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num);
776}