wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <command.h> |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 10 | #include <errno.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 11 | #include <ide.h> |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 12 | #include <malloc.h> |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 13 | #include <part.h> |
Hans de Goede | 690c796 | 2015-09-17 18:46:58 -0400 | [diff] [blame] | 14 | #include <ubifs_uboot.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 15 | |
| 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 | |
Stefan Roese | 61ddee4 | 2007-02-20 13:21:57 +0100 | [diff] [blame] | 24 | DECLARE_GLOBAL_DATA_PTR; |
Stefan Roese | 61ddee4 | 2007-02-20 13:21:57 +0100 | [diff] [blame] | 25 | |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 26 | #ifdef HAVE_BLOCK_DEVICE |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 27 | static struct part_driver *part_driver_lookup_type(int part_type) |
| 28 | { |
| 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 | |
| 34 | for (entry = drv; entry != drv + n_ents; entry++) { |
| 35 | if (part_type == entry->part_type) |
| 36 | return entry; |
| 37 | } |
| 38 | |
| 39 | /* Not found */ |
| 40 | return NULL; |
| 41 | } |
| 42 | |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 43 | static struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart) |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 44 | { |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 45 | struct blk_desc *dev_desc; |
| 46 | int ret; |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 47 | |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 48 | dev_desc = blk_get_devnum_by_typename(ifname, dev); |
| 49 | if (!dev_desc) { |
| 50 | debug("%s: No device for iface '%s', dev %d\n", __func__, |
| 51 | ifname, dev); |
Tim Kientzle | 47e444c | 2012-03-27 11:43:25 +0200 | [diff] [blame] | 52 | return NULL; |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 53 | } |
Simon Glass | e3dfa91 | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 54 | ret = blk_dselect_hwpart(dev_desc, hwpart); |
| 55 | if (ret) { |
| 56 | debug("%s: Failed to select h/w partition: err-%d\n", __func__, |
| 57 | ret); |
| 58 | return NULL; |
| 59 | } |
| 60 | |
| 61 | return dev_desc; |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 62 | } |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 63 | |
Simon Glass | be1e9bb | 2016-02-29 15:25:42 -0700 | [diff] [blame] | 64 | struct blk_desc *blk_get_dev(const char *ifname, int dev) |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 65 | { |
Stephen Warren | ad17c0f | 2014-05-23 12:48:11 -0600 | [diff] [blame] | 66 | return get_dev_hwpart(ifname, dev, 0); |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 67 | } |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 68 | #else |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 69 | struct blk_desc *get_dev_hwpart(const char *ifname, int dev, int hwpart) |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 70 | { |
| 71 | return NULL; |
| 72 | } |
| 73 | |
Simon Glass | be1e9bb | 2016-02-29 15:25:42 -0700 | [diff] [blame] | 74 | struct blk_desc *blk_get_dev(const char *ifname, int dev) |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 75 | { |
| 76 | return NULL; |
| 77 | } |
| 78 | #endif |
| 79 | |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 80 | #ifdef HAVE_BLOCK_DEVICE |
Grant Likely | ffc2dd7 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 81 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 82 | /* ------------------------------------------------------------------------- */ |
| 83 | /* |
| 84 | * reports device info to the user |
| 85 | */ |
Sergei Trofimovich | 89d935b | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 86 | |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 87 | #ifdef CONFIG_LBA48 |
Sergei Trofimovich | 89d935b | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 88 | typedef uint64_t lba512_t; |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 89 | #else |
Sergei Trofimovich | 89d935b | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 90 | typedef lbaint_t lba512_t; |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 91 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 92 | |
Sergei Trofimovich | 89d935b | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 93 | /* |
| 94 | * Overflowless variant of (block_count * mul_by / div_by) |
| 95 | * when div_by > mul_by |
| 96 | */ |
Pavel Machek | a4264e1 | 2014-09-09 15:19:42 +0200 | [diff] [blame] | 97 | static lba512_t lba512_muldiv(lba512_t block_count, lba512_t mul_by, lba512_t div_by) |
Sergei Trofimovich | 89d935b | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 98 | { |
| 99 | lba512_t bc_quot, bc_rem; |
| 100 | |
| 101 | /* x * m / d == x / d * m + (x % d) * m / d */ |
| 102 | bc_quot = block_count / div_by; |
| 103 | bc_rem = block_count - div_by * bc_quot; |
| 104 | return bc_quot * mul_by + (bc_rem * mul_by) / div_by; |
| 105 | } |
| 106 | |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 107 | void dev_print (struct blk_desc *dev_desc) |
Sergei Trofimovich | 89d935b | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 108 | { |
| 109 | lba512_t lba512; /* number of blocks if 512bytes block size */ |
| 110 | |
Wolfgang Denk | 8561e71 | 2009-05-15 09:27:58 +0200 | [diff] [blame] | 111 | if (dev_desc->type == DEV_TYPE_UNKNOWN) { |
| 112 | puts ("not available\n"); |
| 113 | return; |
| 114 | } |
| 115 | |
Tor Krill | 03ff330 | 2008-05-29 11:10:30 +0200 | [diff] [blame] | 116 | switch (dev_desc->if_type) { |
Detlev Zundel | bec6b32 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 117 | case IF_TYPE_SCSI: |
| 118 | printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n", |
| 119 | dev_desc->target,dev_desc->lun, |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 120 | dev_desc->vendor, |
Detlev Zundel | bec6b32 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 121 | dev_desc->product, |
| 122 | dev_desc->revision); |
| 123 | break; |
Remy Bohmer | f9f718b | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 124 | case IF_TYPE_ATAPI: |
Detlev Zundel | bec6b32 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 125 | case IF_TYPE_IDE: |
| 126 | case IF_TYPE_SATA: |
Dave Liu | 76596ba | 2008-03-26 22:49:44 +0800 | [diff] [blame] | 127 | printf ("Model: %s Firm: %s Ser#: %s\n", |
| 128 | dev_desc->vendor, |
| 129 | dev_desc->revision, |
| 130 | dev_desc->product); |
Detlev Zundel | bec6b32 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 131 | break; |
Remy Bohmer | f9f718b | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 132 | case IF_TYPE_SD: |
| 133 | case IF_TYPE_MMC: |
NÃcolas Carneiro Lebedenco | ef3edd4 | 2008-09-04 15:35:46 -0300 | [diff] [blame] | 134 | case IF_TYPE_USB: |
Zhikang Zhang | 182fccd | 2017-08-03 02:30:56 -0700 | [diff] [blame] | 135 | case IF_TYPE_NVME: |
NÃcolas Carneiro Lebedenco | ef3edd4 | 2008-09-04 15:35:46 -0300 | [diff] [blame] | 136 | printf ("Vendor: %s Rev: %s Prod: %s\n", |
| 137 | dev_desc->vendor, |
| 138 | dev_desc->revision, |
| 139 | dev_desc->product); |
| 140 | break; |
Remy Bohmer | f9f718b | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 141 | case IF_TYPE_DOC: |
| 142 | puts("device type DOC\n"); |
| 143 | return; |
Tor Krill | 03ff330 | 2008-05-29 11:10:30 +0200 | [diff] [blame] | 144 | case IF_TYPE_UNKNOWN: |
Remy Bohmer | f9f718b | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 145 | puts("device type unknown\n"); |
| 146 | return; |
Detlev Zundel | bec6b32 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 147 | default: |
Remy Bohmer | f9f718b | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 148 | printf("Unhandled device type: %i\n", dev_desc->if_type); |
Detlev Zundel | bec6b32 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 149 | return; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 150 | } |
| 151 | puts (" Type: "); |
| 152 | if (dev_desc->removable) |
| 153 | puts ("Removable "); |
| 154 | switch (dev_desc->type & 0x1F) { |
Detlev Zundel | 0e11cc6 | 2008-05-05 16:11:22 +0200 | [diff] [blame] | 155 | case DEV_TYPE_HARDDISK: |
| 156 | puts ("Hard Disk"); |
| 157 | break; |
| 158 | case DEV_TYPE_CDROM: |
| 159 | puts ("CD ROM"); |
| 160 | break; |
| 161 | case DEV_TYPE_OPDISK: |
| 162 | puts ("Optical Device"); |
| 163 | break; |
| 164 | case DEV_TYPE_TAPE: |
| 165 | puts ("Tape"); |
| 166 | break; |
| 167 | default: |
| 168 | printf ("# %02X #", dev_desc->type & 0x1F); |
| 169 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 170 | } |
| 171 | puts ("\n"); |
Jerry Huang | 6a4feb4 | 2012-11-06 15:33:12 +0000 | [diff] [blame] | 172 | if (dev_desc->lba > 0L && dev_desc->blksz > 0L) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 173 | ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem; |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 174 | lbaint_t lba; |
wdenk | 0593920 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 175 | |
| 176 | lba = dev_desc->lba; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 177 | |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 178 | lba512 = (lba * (dev_desc->blksz/512)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 179 | /* round to 1 digit */ |
Pavel Machek | a4264e1 | 2014-09-09 15:19:42 +0200 | [diff] [blame] | 180 | /* 2048 = (1024 * 1024) / 512 MB */ |
| 181 | mb = lba512_muldiv(lba512, 10, 2048); |
Sergei Trofimovich | 89d935b | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 182 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 183 | mb_quot = mb / 10; |
| 184 | mb_rem = mb - (10 * mb_quot); |
| 185 | |
| 186 | gb = mb / 1024; |
| 187 | gb_quot = gb / 10; |
| 188 | gb_rem = gb - (10 * gb_quot); |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 189 | #ifdef CONFIG_LBA48 |
wdenk | 0593920 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 190 | if (dev_desc->lba48) |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 191 | printf (" Supports 48-bit addressing\n"); |
| 192 | #endif |
Heiko Schocher | 0f602e1 | 2009-12-03 11:21:21 +0100 | [diff] [blame] | 193 | #if defined(CONFIG_SYS_64BIT_LBA) |
Jean-Jacques Hiblot | ccbb915 | 2016-12-23 10:45:43 +0100 | [diff] [blame] | 194 | printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%llu x %lu)\n", |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 195 | mb_quot, mb_rem, |
| 196 | gb_quot, gb_rem, |
| 197 | lba, |
| 198 | dev_desc->blksz); |
| 199 | #else |
Jean-Jacques Hiblot | ccbb915 | 2016-12-23 10:45:43 +0100 | [diff] [blame] | 200 | printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n", |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 201 | mb_quot, mb_rem, |
| 202 | gb_quot, gb_rem, |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 203 | (ulong)lba, |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 204 | dev_desc->blksz); |
wdenk | f602aa0 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 205 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 206 | } else { |
| 207 | puts (" Capacity: not available\n"); |
| 208 | } |
| 209 | } |
Jon Loeliger | 1670a5b | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 210 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 211 | |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 212 | #ifdef HAVE_BLOCK_DEVICE |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 213 | |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 214 | void part_init(struct blk_desc *dev_desc) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 215 | { |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 216 | struct part_driver *drv = |
| 217 | ll_entry_start(struct part_driver, part_driver); |
| 218 | const int n_ents = ll_entry_count(struct part_driver, part_driver); |
| 219 | struct part_driver *entry; |
richardretanubun | e674559 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 220 | |
Eric Nelson | faf4f05 | 2016-03-28 10:05:44 -0700 | [diff] [blame] | 221 | blkcache_invalidate(dev_desc->if_type, dev_desc->devnum); |
| 222 | |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 223 | dev_desc->part_type = PART_TYPE_UNKNOWN; |
| 224 | for (entry = drv; entry != drv + n_ents; entry++) { |
| 225 | int ret; |
wdenk | 452cfd6 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 226 | |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 227 | ret = entry->test(dev_desc); |
| 228 | debug("%s: try '%s': ret=%d\n", __func__, entry->name, ret); |
| 229 | if (!ret) { |
| 230 | dev_desc->part_type = entry->part_type; |
| 231 | break; |
| 232 | } |
wdenk | 452cfd6 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 233 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 236 | static void print_part_header(const char *type, struct blk_desc *dev_desc) |
| 237 | { |
Patrick Delaunay | c4bbbec | 2017-01-27 11:00:36 +0100 | [diff] [blame] | 238 | #if CONFIG_IS_ENABLED(MAC_PARTITION) || \ |
Patrick Delaunay | f7e0772 | 2017-01-27 11:00:37 +0100 | [diff] [blame] | 239 | CONFIG_IS_ENABLED(DOS_PARTITION) || \ |
Patrick Delaunay | 21d3bce | 2017-01-27 11:00:38 +0100 | [diff] [blame] | 240 | CONFIG_IS_ENABLED(ISO_PARTITION) || \ |
Patrick Delaunay | 1aa32a8 | 2017-01-27 11:00:39 +0100 | [diff] [blame] | 241 | CONFIG_IS_ENABLED(AMIGA_PARTITION) || \ |
Patrick Delaunay | 8a4f2bd | 2017-01-27 11:00:41 +0100 | [diff] [blame] | 242 | CONFIG_IS_ENABLED(EFI_PARTITION) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 243 | puts ("\nPartition Map for "); |
| 244 | switch (dev_desc->if_type) { |
Detlev Zundel | 0e11cc6 | 2008-05-05 16:11:22 +0200 | [diff] [blame] | 245 | case IF_TYPE_IDE: |
| 246 | puts ("IDE"); |
| 247 | break; |
| 248 | case IF_TYPE_SATA: |
| 249 | puts ("SATA"); |
| 250 | break; |
| 251 | case IF_TYPE_SCSI: |
| 252 | puts ("SCSI"); |
| 253 | break; |
| 254 | case IF_TYPE_ATAPI: |
| 255 | puts ("ATAPI"); |
| 256 | break; |
| 257 | case IF_TYPE_USB: |
| 258 | puts ("USB"); |
| 259 | break; |
| 260 | case IF_TYPE_DOC: |
| 261 | puts ("DOC"); |
| 262 | break; |
Lei Wen | 61dba93 | 2010-09-13 22:07:28 +0800 | [diff] [blame] | 263 | case IF_TYPE_MMC: |
| 264 | puts ("MMC"); |
| 265 | break; |
Henrik Nordström | 26f9a6c | 2013-11-10 10:26:56 -0700 | [diff] [blame] | 266 | case IF_TYPE_HOST: |
Zhikang Zhang | 182fccd | 2017-08-03 02:30:56 -0700 | [diff] [blame] | 267 | puts ("HOST"); |
| 268 | break; |
| 269 | case IF_TYPE_NVME: |
| 270 | puts ("NVMe"); |
Henrik Nordström | 26f9a6c | 2013-11-10 10:26:56 -0700 | [diff] [blame] | 271 | break; |
Detlev Zundel | 0e11cc6 | 2008-05-05 16:11:22 +0200 | [diff] [blame] | 272 | default: |
| 273 | puts ("UNKNOWN"); |
| 274 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 275 | } |
| 276 | printf (" device %d -- Partition Type: %s\n\n", |
Simon Glass | 2f26fff | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 277 | dev_desc->devnum, type); |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 278 | #endif /* any CONFIG_..._PARTITION */ |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 279 | } |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 280 | |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 281 | void part_print(struct blk_desc *dev_desc) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 282 | { |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 283 | struct part_driver *drv; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 284 | |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 285 | drv = part_driver_lookup_type(dev_desc->part_type); |
| 286 | if (!drv) { |
| 287 | printf("## Unknown partition table type %x\n", |
| 288 | dev_desc->part_type); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 289 | return; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 290 | } |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 291 | |
| 292 | PRINTF("## Testing for valid %s partition ##\n", drv->name); |
| 293 | print_part_header(drv->name, dev_desc); |
| 294 | if (drv->print) |
| 295 | drv->print(dev_desc); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 296 | } |
| 297 | |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 298 | #endif /* HAVE_BLOCK_DEVICE */ |
Stephen Warren | 07c5bff | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 299 | |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 300 | int part_get_info(struct blk_desc *dev_desc, int part, |
Pavel Machek | 13334e7 | 2014-07-19 23:50:44 +0200 | [diff] [blame] | 301 | disk_partition_t *info) |
Stephen Warren | 07c5bff | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 302 | { |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 303 | #ifdef HAVE_BLOCK_DEVICE |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 304 | struct part_driver *drv; |
Stephen Warren | 07c5bff | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 305 | |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 306 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Stephen Warren | c6c7b7a | 2012-09-21 09:50:59 +0000 | [diff] [blame] | 307 | /* The common case is no UUID support */ |
| 308 | info->uuid[0] = 0; |
| 309 | #endif |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 310 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 311 | info->type_guid[0] = 0; |
| 312 | #endif |
Stephen Warren | c6c7b7a | 2012-09-21 09:50:59 +0000 | [diff] [blame] | 313 | |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 314 | drv = part_driver_lookup_type(dev_desc->part_type); |
| 315 | if (!drv) { |
| 316 | debug("## Unknown partition table type %x\n", |
| 317 | dev_desc->part_type); |
| 318 | return -EPROTONOSUPPORT; |
| 319 | } |
| 320 | if (!drv->get_info) { |
Nishanth Menon | ef1851a | 2016-03-15 16:15:32 -0500 | [diff] [blame] | 321 | PRINTF("## Driver %s does not have the get_info() method\n", |
| 322 | drv->name); |
Simon Glass | 83ce563 | 2016-02-29 15:25:47 -0700 | [diff] [blame] | 323 | return -ENOSYS; |
| 324 | } |
| 325 | if (drv->get_info(dev_desc, part, info) == 0) { |
| 326 | PRINTF("## Valid %s partition found ##\n", drv->name); |
| 327 | return 0; |
Stephen Warren | 07c5bff | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 328 | } |
Gabe Black | 0fc71b5 | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 329 | #endif /* HAVE_BLOCK_DEVICE */ |
Stephen Warren | 07c5bff | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 330 | |
| 331 | return -1; |
| 332 | } |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 333 | |
Simon Glass | e6649a6 | 2016-02-29 15:25:43 -0700 | [diff] [blame] | 334 | int blk_get_device_by_str(const char *ifname, const char *dev_hwpart_str, |
| 335 | struct blk_desc **dev_desc) |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 336 | { |
| 337 | char *ep; |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 338 | char *dup_str = NULL; |
| 339 | const char *dev_str, *hwpart_str; |
| 340 | int dev, hwpart; |
| 341 | |
| 342 | hwpart_str = strchr(dev_hwpart_str, '.'); |
| 343 | if (hwpart_str) { |
| 344 | dup_str = strdup(dev_hwpart_str); |
| 345 | dup_str[hwpart_str - dev_hwpart_str] = 0; |
| 346 | dev_str = dup_str; |
| 347 | hwpart_str++; |
| 348 | } else { |
| 349 | dev_str = dev_hwpart_str; |
Stephen Warren | ad17c0f | 2014-05-23 12:48:11 -0600 | [diff] [blame] | 350 | hwpart = 0; |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 351 | } |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 352 | |
| 353 | dev = simple_strtoul(dev_str, &ep, 16); |
| 354 | if (*ep) { |
| 355 | printf("** Bad device specification %s %s **\n", |
| 356 | ifname, dev_str); |
Simon Glass | 356e0e6 | 2016-05-01 13:52:36 -0600 | [diff] [blame] | 357 | dev = -EINVAL; |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 358 | goto cleanup; |
| 359 | } |
| 360 | |
| 361 | if (hwpart_str) { |
| 362 | hwpart = simple_strtoul(hwpart_str, &ep, 16); |
| 363 | if (*ep) { |
| 364 | printf("** Bad HW partition specification %s %s **\n", |
| 365 | ifname, hwpart_str); |
Simon Glass | 356e0e6 | 2016-05-01 13:52:36 -0600 | [diff] [blame] | 366 | dev = -EINVAL; |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 367 | goto cleanup; |
| 368 | } |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 371 | *dev_desc = get_dev_hwpart(ifname, dev, hwpart); |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 372 | if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) { |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 373 | printf("** Bad device %s %s **\n", ifname, dev_hwpart_str); |
Simon Glass | 356e0e6 | 2016-05-01 13:52:36 -0600 | [diff] [blame] | 374 | dev = -ENOENT; |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 375 | goto cleanup; |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 376 | } |
| 377 | |
Erik Tideman | 8d11b8e | 2016-01-11 13:39:07 +0000 | [diff] [blame] | 378 | #ifdef HAVE_BLOCK_DEVICE |
| 379 | /* |
| 380 | * Updates the partition table for the specified hw partition. |
| 381 | * Does not need to be done for hwpart 0 since it is default and |
| 382 | * already loaded. |
| 383 | */ |
| 384 | if(hwpart != 0) |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 385 | part_init(*dev_desc); |
Erik Tideman | 8d11b8e | 2016-01-11 13:39:07 +0000 | [diff] [blame] | 386 | #endif |
| 387 | |
Stephen Warren | aeca52f | 2014-05-07 12:19:01 -0600 | [diff] [blame] | 388 | cleanup: |
| 389 | free(dup_str); |
Stephen Warren | afd909c | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 390 | return dev; |
| 391 | } |
| 392 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 393 | #define PART_UNSPECIFIED -2 |
| 394 | #define PART_AUTO -1 |
Simon Glass | e76ee97 | 2016-02-29 15:25:44 -0700 | [diff] [blame] | 395 | int blk_get_device_part_str(const char *ifname, const char *dev_part_str, |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 396 | struct blk_desc **dev_desc, |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 397 | disk_partition_t *info, int allow_whole_dev) |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 398 | { |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 399 | int ret = -1; |
| 400 | const char *part_str; |
| 401 | char *dup_str = NULL; |
| 402 | const char *dev_str; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 403 | int dev; |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 404 | char *ep; |
| 405 | int p; |
| 406 | int part; |
| 407 | disk_partition_t tmpinfo; |
| 408 | |
Hans de Goede | 4763ee3 | 2015-09-17 18:46:55 -0400 | [diff] [blame] | 409 | #ifdef CONFIG_SANDBOX |
Stephen Warren | bff6c31 | 2014-06-12 10:28:32 -0600 | [diff] [blame] | 410 | /* |
Pavel Machek | 13334e7 | 2014-07-19 23:50:44 +0200 | [diff] [blame] | 411 | * Special-case a pseudo block device "hostfs", to allow access to the |
Stephen Warren | bff6c31 | 2014-06-12 10:28:32 -0600 | [diff] [blame] | 412 | * host's own filesystem. |
| 413 | */ |
| 414 | if (0 == strcmp(ifname, "hostfs")) { |
| 415 | *dev_desc = NULL; |
| 416 | info->start = 0; |
| 417 | info->size = 0; |
| 418 | info->blksz = 0; |
| 419 | info->bootable = 0; |
| 420 | strcpy((char *)info->type, BOOT_PART_TYPE); |
| 421 | strcpy((char *)info->name, "Sandbox host"); |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 422 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Stephen Warren | bff6c31 | 2014-06-12 10:28:32 -0600 | [diff] [blame] | 423 | info->uuid[0] = 0; |
| 424 | #endif |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 425 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 426 | info->type_guid[0] = 0; |
| 427 | #endif |
Stephen Warren | bff6c31 | 2014-06-12 10:28:32 -0600 | [diff] [blame] | 428 | |
Hans de Goede | 690c796 | 2015-09-17 18:46:58 -0400 | [diff] [blame] | 429 | return 0; |
| 430 | } |
| 431 | #endif |
| 432 | |
| 433 | #ifdef CONFIG_CMD_UBIFS |
| 434 | /* |
| 435 | * Special-case ubi, ubi goes through a mtd, rathen then through |
| 436 | * a regular block device. |
| 437 | */ |
| 438 | if (0 == strcmp(ifname, "ubi")) { |
| 439 | if (!ubifs_is_mounted()) { |
| 440 | printf("UBIFS not mounted, use ubifsmount to mount volume first!\n"); |
| 441 | return -1; |
| 442 | } |
| 443 | |
| 444 | *dev_desc = NULL; |
| 445 | memset(info, 0, sizeof(*info)); |
| 446 | strcpy((char *)info->type, BOOT_PART_TYPE); |
| 447 | strcpy((char *)info->name, "UBI"); |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 448 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Hans de Goede | 690c796 | 2015-09-17 18:46:58 -0400 | [diff] [blame] | 449 | info->uuid[0] = 0; |
| 450 | #endif |
Stephen Warren | bff6c31 | 2014-06-12 10:28:32 -0600 | [diff] [blame] | 451 | return 0; |
| 452 | } |
Hans de Goede | 4763ee3 | 2015-09-17 18:46:55 -0400 | [diff] [blame] | 453 | #endif |
Stephen Warren | bff6c31 | 2014-06-12 10:28:32 -0600 | [diff] [blame] | 454 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 455 | /* If no dev_part_str, use bootdevice environment variable */ |
Stephen Warren | a95af94 | 2012-09-28 05:34:09 +0000 | [diff] [blame] | 456 | if (!dev_part_str || !strlen(dev_part_str) || |
| 457 | !strcmp(dev_part_str, "-")) |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 458 | dev_part_str = env_get("bootdevice"); |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 459 | |
| 460 | /* If still no dev_part_str, it's an error */ |
| 461 | if (!dev_part_str) { |
| 462 | printf("** No device specified **\n"); |
| 463 | goto cleanup; |
| 464 | } |
| 465 | |
| 466 | /* Separate device and partition ID specification */ |
| 467 | part_str = strchr(dev_part_str, ':'); |
| 468 | if (part_str) { |
| 469 | dup_str = strdup(dev_part_str); |
| 470 | dup_str[part_str - dev_part_str] = 0; |
| 471 | dev_str = dup_str; |
| 472 | part_str++; |
| 473 | } else { |
| 474 | dev_str = dev_part_str; |
| 475 | } |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 476 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 477 | /* Look up the device */ |
Simon Glass | e6649a6 | 2016-02-29 15:25:43 -0700 | [diff] [blame] | 478 | dev = blk_get_device_by_str(ifname, dev_str, dev_desc); |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 479 | if (dev < 0) |
| 480 | goto cleanup; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 481 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 482 | /* Convert partition ID string to number */ |
| 483 | if (!part_str || !*part_str) { |
| 484 | part = PART_UNSPECIFIED; |
| 485 | } else if (!strcmp(part_str, "auto")) { |
| 486 | part = PART_AUTO; |
| 487 | } else { |
| 488 | /* Something specified -> use exactly that */ |
| 489 | part = (int)simple_strtoul(part_str, &ep, 16); |
| 490 | /* |
| 491 | * Less than whole string converted, |
| 492 | * or request for whole device, but caller requires partition. |
| 493 | */ |
| 494 | if (*ep || (part == 0 && !allow_whole_dev)) { |
| 495 | printf("** Bad partition specification %s %s **\n", |
| 496 | ifname, dev_part_str); |
| 497 | goto cleanup; |
| 498 | } |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 501 | /* |
| 502 | * No partition table on device, |
| 503 | * or user requested partition 0 (entire device). |
| 504 | */ |
| 505 | if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) || |
| 506 | (part == 0)) { |
| 507 | if (!(*dev_desc)->lba) { |
| 508 | printf("** Bad device size - %s %s **\n", ifname, |
| 509 | dev_str); |
| 510 | goto cleanup; |
| 511 | } |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 512 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 513 | /* |
| 514 | * If user specified a partition ID other than 0, |
| 515 | * or the calling command only accepts partitions, |
| 516 | * it's an error. |
| 517 | */ |
| 518 | if ((part > 0) || (!allow_whole_dev)) { |
| 519 | printf("** No partition table - %s %s **\n", ifname, |
| 520 | dev_str); |
| 521 | goto cleanup; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 522 | } |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 523 | |
Lan Yixun (dlan) | 138914e | 2013-07-20 08:17:59 +0800 | [diff] [blame] | 524 | (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz); |
| 525 | |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 526 | info->start = 0; |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 527 | info->size = (*dev_desc)->lba; |
| 528 | info->blksz = (*dev_desc)->blksz; |
| 529 | info->bootable = 0; |
Stephen Warren | 65be849 | 2012-10-10 07:57:51 +0000 | [diff] [blame] | 530 | strcpy((char *)info->type, BOOT_PART_TYPE); |
| 531 | strcpy((char *)info->name, "Whole Disk"); |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 532 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 533 | info->uuid[0] = 0; |
| 534 | #endif |
Patrick Delaunay | 8248c8d | 2015-10-27 11:00:27 +0100 | [diff] [blame] | 535 | #ifdef CONFIG_PARTITION_TYPE_GUID |
| 536 | info->type_guid[0] = 0; |
| 537 | #endif |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 538 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 539 | ret = 0; |
| 540 | goto cleanup; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 541 | } |
| 542 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 543 | /* |
| 544 | * Now there's known to be a partition table, |
| 545 | * not specifying a partition means to pick partition 1. |
| 546 | */ |
| 547 | if (part == PART_UNSPECIFIED) |
| 548 | part = 1; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 549 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 550 | /* |
| 551 | * If user didn't specify a partition number, or did specify something |
| 552 | * other than "auto", use that partition number directly. |
| 553 | */ |
| 554 | if (part != PART_AUTO) { |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 555 | ret = part_get_info(*dev_desc, part, info); |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 556 | if (ret) { |
| 557 | printf("** Invalid partition %d **\n", part); |
| 558 | goto cleanup; |
| 559 | } |
| 560 | } else { |
| 561 | /* |
| 562 | * Find the first bootable partition. |
| 563 | * If none are bootable, fall back to the first valid partition. |
| 564 | */ |
| 565 | part = 0; |
| 566 | for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) { |
Simon Glass | b89a844 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 567 | ret = part_get_info(*dev_desc, p, info); |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 568 | if (ret) |
| 569 | continue; |
| 570 | |
| 571 | /* |
| 572 | * First valid partition, or new better partition? |
| 573 | * If so, save partition ID. |
| 574 | */ |
| 575 | if (!part || info->bootable) |
| 576 | part = p; |
| 577 | |
| 578 | /* Best possible partition? Stop searching. */ |
| 579 | if (info->bootable) |
| 580 | break; |
| 581 | |
| 582 | /* |
| 583 | * We now need to search further for best possible. |
| 584 | * If we what we just queried was the best so far, |
| 585 | * save the info since we over-write it next loop. |
| 586 | */ |
| 587 | if (part == p) |
| 588 | tmpinfo = *info; |
| 589 | } |
| 590 | /* If we found any acceptable partition */ |
| 591 | if (part) { |
| 592 | /* |
| 593 | * If we searched all possible partition IDs, |
| 594 | * return the first valid partition we found. |
| 595 | */ |
| 596 | if (p == MAX_SEARCH_PARTITIONS + 1) |
| 597 | *info = tmpinfo; |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 598 | } else { |
| 599 | printf("** No valid partitions found **\n"); |
Stephen Warren | 3c28be9 | 2012-10-08 07:45:54 +0000 | [diff] [blame] | 600 | ret = -1; |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 601 | goto cleanup; |
| 602 | } |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 603 | } |
| 604 | if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) { |
| 605 | printf("** Invalid partition type \"%.32s\"" |
| 606 | " (expect \"" BOOT_PART_TYPE "\")\n", |
| 607 | info->type); |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 608 | ret = -1; |
| 609 | goto cleanup; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 610 | } |
| 611 | |
Lan Yixun (dlan) | 138914e | 2013-07-20 08:17:59 +0800 | [diff] [blame] | 612 | (*dev_desc)->log2blksz = LOG2((*dev_desc)->blksz); |
| 613 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 614 | ret = part; |
| 615 | goto cleanup; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 616 | |
Stephen Warren | c87ff22 | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 617 | cleanup: |
| 618 | free(dup_str); |
| 619 | return ret; |
Rob Herring | d586cec | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 620 | } |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 621 | |
| 622 | int part_get_info_by_name(struct blk_desc *dev_desc, const char *name, |
| 623 | disk_partition_t *info) |
| 624 | { |
| 625 | struct part_driver *first_drv = |
| 626 | ll_entry_start(struct part_driver, part_driver); |
| 627 | const int n_drvs = ll_entry_count(struct part_driver, part_driver); |
| 628 | struct part_driver *part_drv; |
| 629 | |
| 630 | for (part_drv = first_drv; part_drv != first_drv + n_drvs; part_drv++) { |
| 631 | int ret; |
| 632 | int i; |
| 633 | for (i = 1; i < part_drv->max_entries; i++) { |
| 634 | ret = part_drv->get_info(dev_desc, i, info); |
| 635 | if (ret != 0) { |
| 636 | /* no more entries in table */ |
| 637 | break; |
| 638 | } |
| 639 | if (strcmp(name, (const char *)info->name) == 0) { |
| 640 | /* matched */ |
Alex Deymo | e2f689f | 2017-04-02 01:49:50 -0700 | [diff] [blame] | 641 | return i; |
Petr Kulhavy | 712257e | 2016-09-09 10:27:15 +0200 | [diff] [blame] | 642 | } |
| 643 | } |
| 644 | } |
| 645 | return -1; |
| 646 | } |
Petr Kulhavy | 2e790d5 | 2016-09-09 10:27:17 +0200 | [diff] [blame] | 647 | |
| 648 | void part_set_generic_name(const struct blk_desc *dev_desc, |
| 649 | int part_num, char *name) |
| 650 | { |
| 651 | char *devtype; |
| 652 | |
| 653 | switch (dev_desc->if_type) { |
| 654 | case IF_TYPE_IDE: |
| 655 | case IF_TYPE_SATA: |
| 656 | case IF_TYPE_ATAPI: |
| 657 | devtype = "hd"; |
| 658 | break; |
| 659 | case IF_TYPE_SCSI: |
| 660 | devtype = "sd"; |
| 661 | break; |
| 662 | case IF_TYPE_USB: |
| 663 | devtype = "usbd"; |
| 664 | break; |
| 665 | case IF_TYPE_DOC: |
| 666 | devtype = "docd"; |
| 667 | break; |
| 668 | case IF_TYPE_MMC: |
| 669 | case IF_TYPE_SD: |
| 670 | devtype = "mmcsd"; |
| 671 | break; |
| 672 | default: |
| 673 | devtype = "xx"; |
| 674 | break; |
| 675 | } |
| 676 | |
| 677 | sprintf(name, "%s%c%d", devtype, 'a' + dev_desc->devnum, part_num); |
| 678 | } |