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 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | #include <command.h> |
| 26 | #include <ide.h> |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 27 | #include <malloc.h> |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 28 | #include <part.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 29 | |
| 30 | #undef PART_DEBUG |
| 31 | |
| 32 | #ifdef PART_DEBUG |
| 33 | #define PRINTF(fmt,args...) printf (fmt ,##args) |
| 34 | #else |
| 35 | #define PRINTF(fmt,args...) |
| 36 | #endif |
| 37 | |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 38 | /* Rather than repeat this expression each time, add a define for it */ |
Jon Loeliger | cde5c64 | 2007-07-09 17:22:37 -0500 | [diff] [blame] | 39 | #if (defined(CONFIG_CMD_IDE) || \ |
Dave Liu | c7057b5 | 2008-03-26 22:49:44 +0800 | [diff] [blame] | 40 | defined(CONFIG_CMD_SATA) || \ |
Jon Loeliger | cde5c64 | 2007-07-09 17:22:37 -0500 | [diff] [blame] | 41 | defined(CONFIG_CMD_SCSI) || \ |
| 42 | defined(CONFIG_CMD_USB) || \ |
wdenk | 1968e61 | 2005-02-24 23:23:29 +0000 | [diff] [blame] | 43 | defined(CONFIG_MMC) || \ |
| 44 | defined(CONFIG_SYSTEMACE) ) |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 45 | #define HAVE_BLOCK_DEVICE |
| 46 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 47 | |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 48 | struct block_drvr { |
| 49 | char *name; |
| 50 | block_dev_desc_t* (*get_dev)(int dev); |
| 51 | }; |
| 52 | |
| 53 | static const struct block_drvr block_drvr[] = { |
Jon Loeliger | cde5c64 | 2007-07-09 17:22:37 -0500 | [diff] [blame] | 54 | #if defined(CONFIG_CMD_IDE) |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 55 | { .name = "ide", .get_dev = ide_get_dev, }, |
| 56 | #endif |
Dave Liu | c7057b5 | 2008-03-26 22:49:44 +0800 | [diff] [blame] | 57 | #if defined(CONFIG_CMD_SATA) |
| 58 | {.name = "sata", .get_dev = sata_get_dev, }, |
| 59 | #endif |
Jon Loeliger | cde5c64 | 2007-07-09 17:22:37 -0500 | [diff] [blame] | 60 | #if defined(CONFIG_CMD_SCSI) |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 61 | { .name = "scsi", .get_dev = scsi_get_dev, }, |
| 62 | #endif |
Jon Loeliger | cde5c64 | 2007-07-09 17:22:37 -0500 | [diff] [blame] | 63 | #if defined(CONFIG_CMD_USB) && defined(CONFIG_USB_STORAGE) |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 64 | { .name = "usb", .get_dev = usb_stor_get_dev, }, |
| 65 | #endif |
| 66 | #if defined(CONFIG_MMC) |
| 67 | { .name = "mmc", .get_dev = mmc_get_dev, }, |
| 68 | #endif |
| 69 | #if defined(CONFIG_SYSTEMACE) |
| 70 | { .name = "ace", .get_dev = systemace_get_dev, }, |
| 71 | #endif |
| 72 | { }, |
| 73 | }; |
| 74 | |
Stefan Roese | 751bb57 | 2007-02-20 13:21:57 +0100 | [diff] [blame] | 75 | DECLARE_GLOBAL_DATA_PTR; |
Stefan Roese | 751bb57 | 2007-02-20 13:21:57 +0100 | [diff] [blame] | 76 | |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 77 | #ifdef HAVE_BLOCK_DEVICE |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 78 | block_dev_desc_t *get_dev(const char *ifname, int dev) |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 79 | { |
| 80 | const struct block_drvr *drvr = block_drvr; |
Stefan Roese | 6c7cac8 | 2007-02-22 07:43:34 +0100 | [diff] [blame] | 81 | block_dev_desc_t* (*reloc_get_dev)(int dev); |
Heiko Schocher | 23090da | 2010-09-17 13:10:36 +0200 | [diff] [blame] | 82 | char *name; |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 83 | |
Tim Kientzle | 7e71dc6 | 2012-03-27 11:43:25 +0200 | [diff] [blame] | 84 | if (!ifname) |
| 85 | return NULL; |
| 86 | |
Heiko Schocher | 23090da | 2010-09-17 13:10:36 +0200 | [diff] [blame] | 87 | name = drvr->name; |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 88 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
Heiko Schocher | 23090da | 2010-09-17 13:10:36 +0200 | [diff] [blame] | 89 | name += gd->reloc_off; |
| 90 | #endif |
Lei Wen | b16aadf | 2011-02-15 16:56:40 +0800 | [diff] [blame] | 91 | while (drvr->name) { |
Heiko Schocher | 23090da | 2010-09-17 13:10:36 +0200 | [diff] [blame] | 92 | name = drvr->name; |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 93 | reloc_get_dev = drvr->get_dev; |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 94 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
Heiko Schocher | 23090da | 2010-09-17 13:10:36 +0200 | [diff] [blame] | 95 | name += gd->reloc_off; |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 96 | reloc_get_dev += gd->reloc_off; |
| 97 | #endif |
Heiko Schocher | 23090da | 2010-09-17 13:10:36 +0200 | [diff] [blame] | 98 | if (strncmp(ifname, name, strlen(name)) == 0) |
Stefan Roese | 751bb57 | 2007-02-20 13:21:57 +0100 | [diff] [blame] | 99 | return reloc_get_dev(dev); |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 100 | drvr++; |
| 101 | } |
| 102 | return NULL; |
| 103 | } |
| 104 | #else |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 105 | block_dev_desc_t *get_dev(const char *ifname, int dev) |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 106 | { |
| 107 | return NULL; |
| 108 | } |
| 109 | #endif |
| 110 | |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 111 | #ifdef HAVE_BLOCK_DEVICE |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 112 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 113 | /* ------------------------------------------------------------------------- */ |
| 114 | /* |
| 115 | * reports device info to the user |
| 116 | */ |
Sergei Trofimovich | 69a2a4d | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 117 | |
| 118 | #ifdef CONFIG_LBA48 |
| 119 | typedef uint64_t lba512_t; |
| 120 | #else |
| 121 | typedef lbaint_t lba512_t; |
| 122 | #endif |
| 123 | |
| 124 | /* |
| 125 | * Overflowless variant of (block_count * mul_by / div_by) |
| 126 | * when div_by > mul_by |
| 127 | */ |
| 128 | static lba512_t lba512_muldiv (lba512_t block_count, lba512_t mul_by, lba512_t div_by) |
| 129 | { |
| 130 | lba512_t bc_quot, bc_rem; |
| 131 | |
| 132 | /* x * m / d == x / d * m + (x % d) * m / d */ |
| 133 | bc_quot = block_count / div_by; |
| 134 | bc_rem = block_count - div_by * bc_quot; |
| 135 | return bc_quot * mul_by + (bc_rem * mul_by) / div_by; |
| 136 | } |
| 137 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 138 | void dev_print (block_dev_desc_t *dev_desc) |
| 139 | { |
Sergei Trofimovich | 69a2a4d | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 140 | lba512_t lba512; /* number of blocks if 512bytes block size */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 141 | |
Wolfgang Denk | af75a45 | 2009-05-15 09:27:58 +0200 | [diff] [blame] | 142 | if (dev_desc->type == DEV_TYPE_UNKNOWN) { |
| 143 | puts ("not available\n"); |
| 144 | return; |
| 145 | } |
| 146 | |
Tor Krill | 8ec6e33 | 2008-05-29 11:10:30 +0200 | [diff] [blame] | 147 | switch (dev_desc->if_type) { |
Detlev Zundel | 574b319 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 148 | case IF_TYPE_SCSI: |
| 149 | printf ("(%d:%d) Vendor: %s Prod.: %s Rev: %s\n", |
| 150 | dev_desc->target,dev_desc->lun, |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 151 | dev_desc->vendor, |
| 152 | dev_desc->product, |
| 153 | dev_desc->revision); |
Detlev Zundel | 574b319 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 154 | break; |
Remy Bohmer | 6e24a1e | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 155 | case IF_TYPE_ATAPI: |
Detlev Zundel | 574b319 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 156 | case IF_TYPE_IDE: |
| 157 | case IF_TYPE_SATA: |
| 158 | printf ("Model: %s Firm: %s Ser#: %s\n", |
| 159 | dev_desc->vendor, |
| 160 | dev_desc->revision, |
| 161 | dev_desc->product); |
| 162 | break; |
Remy Bohmer | 6e24a1e | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 163 | case IF_TYPE_SD: |
| 164 | case IF_TYPE_MMC: |
NÃcolas Carneiro Lebedenco | 47bebe3 | 2008-09-04 15:35:46 -0300 | [diff] [blame] | 165 | case IF_TYPE_USB: |
| 166 | printf ("Vendor: %s Rev: %s Prod: %s\n", |
| 167 | dev_desc->vendor, |
| 168 | dev_desc->revision, |
| 169 | dev_desc->product); |
| 170 | break; |
Remy Bohmer | 6e24a1e | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 171 | case IF_TYPE_DOC: |
| 172 | puts("device type DOC\n"); |
| 173 | return; |
Tor Krill | 8ec6e33 | 2008-05-29 11:10:30 +0200 | [diff] [blame] | 174 | case IF_TYPE_UNKNOWN: |
Remy Bohmer | 6e24a1e | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 175 | puts("device type unknown\n"); |
| 176 | return; |
Detlev Zundel | 574b319 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 177 | default: |
Remy Bohmer | 6e24a1e | 2008-09-19 13:30:06 +0200 | [diff] [blame] | 178 | printf("Unhandled device type: %i\n", dev_desc->if_type); |
Detlev Zundel | 574b319 | 2008-05-05 16:11:21 +0200 | [diff] [blame] | 179 | return; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 180 | } |
| 181 | puts (" Type: "); |
| 182 | if (dev_desc->removable) |
| 183 | puts ("Removable "); |
| 184 | switch (dev_desc->type & 0x1F) { |
Detlev Zundel | 726c0f1 | 2008-05-05 16:11:22 +0200 | [diff] [blame] | 185 | case DEV_TYPE_HARDDISK: |
| 186 | puts ("Hard Disk"); |
| 187 | break; |
| 188 | case DEV_TYPE_CDROM: |
| 189 | puts ("CD ROM"); |
| 190 | break; |
| 191 | case DEV_TYPE_OPDISK: |
| 192 | puts ("Optical Device"); |
| 193 | break; |
| 194 | case DEV_TYPE_TAPE: |
| 195 | puts ("Tape"); |
| 196 | break; |
| 197 | default: |
| 198 | printf ("# %02X #", dev_desc->type & 0x1F); |
| 199 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 200 | } |
| 201 | puts ("\n"); |
| 202 | if ((dev_desc->lba * dev_desc->blksz)>0L) { |
| 203 | ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem; |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 204 | lbaint_t lba; |
wdenk | 6e59238 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 205 | |
| 206 | lba = dev_desc->lba; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 207 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 208 | lba512 = (lba * (dev_desc->blksz/512)); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 209 | /* round to 1 digit */ |
Sergei Trofimovich | 69a2a4d | 2010-08-08 15:05:39 +0300 | [diff] [blame] | 210 | mb = lba512_muldiv(lba512, 10, 2048); /* 2048 = (1024 * 1024) / 512 MB */ |
| 211 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 212 | mb_quot = mb / 10; |
| 213 | mb_rem = mb - (10 * mb_quot); |
| 214 | |
| 215 | gb = mb / 1024; |
| 216 | gb_quot = gb / 10; |
| 217 | gb_rem = gb - (10 * gb_quot); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 218 | #ifdef CONFIG_LBA48 |
wdenk | 6e59238 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 219 | if (dev_desc->lba48) |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 220 | printf (" Supports 48-bit addressing\n"); |
| 221 | #endif |
Heiko Schocher | 4b142fe | 2009-12-03 11:21:21 +0100 | [diff] [blame] | 222 | #if defined(CONFIG_SYS_64BIT_LBA) |
Mike Frysinger | 6c6166f | 2009-02-16 23:21:36 -0500 | [diff] [blame] | 223 | printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%Ld x %ld)\n", |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 224 | mb_quot, mb_rem, |
| 225 | gb_quot, gb_rem, |
| 226 | lba, |
| 227 | dev_desc->blksz); |
| 228 | #else |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 229 | printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%ld x %ld)\n", |
| 230 | mb_quot, mb_rem, |
| 231 | gb_quot, gb_rem, |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 232 | (ulong)lba, |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 233 | dev_desc->blksz); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 234 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 235 | } else { |
| 236 | puts (" Capacity: not available\n"); |
| 237 | } |
| 238 | } |
Jon Loeliger | b3aff0c | 2007-07-10 11:19:50 -0500 | [diff] [blame] | 239 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 240 | |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 241 | #ifdef HAVE_BLOCK_DEVICE |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 242 | |
| 243 | void init_part (block_dev_desc_t * dev_desc) |
| 244 | { |
| 245 | #ifdef CONFIG_ISO_PARTITION |
| 246 | if (test_part_iso(dev_desc) == 0) { |
| 247 | dev_desc->part_type = PART_TYPE_ISO; |
| 248 | return; |
| 249 | } |
| 250 | #endif |
| 251 | |
| 252 | #ifdef CONFIG_MAC_PARTITION |
| 253 | if (test_part_mac(dev_desc) == 0) { |
| 254 | dev_desc->part_type = PART_TYPE_MAC; |
| 255 | return; |
| 256 | } |
| 257 | #endif |
| 258 | |
richardretanubun | 07f3d78 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 259 | /* must be placed before DOS partition detection */ |
| 260 | #ifdef CONFIG_EFI_PARTITION |
| 261 | if (test_part_efi(dev_desc) == 0) { |
| 262 | dev_desc->part_type = PART_TYPE_EFI; |
| 263 | return; |
| 264 | } |
| 265 | #endif |
| 266 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 267 | #ifdef CONFIG_DOS_PARTITION |
| 268 | if (test_part_dos(dev_desc) == 0) { |
| 269 | dev_desc->part_type = PART_TYPE_DOS; |
| 270 | return; |
| 271 | } |
| 272 | #endif |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 273 | |
| 274 | #ifdef CONFIG_AMIGA_PARTITION |
| 275 | if (test_part_amiga(dev_desc) == 0) { |
| 276 | dev_desc->part_type = PART_TYPE_AMIGA; |
| 277 | return; |
| 278 | } |
| 279 | #endif |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 280 | dev_desc->part_type = PART_TYPE_UNKNOWN; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 284 | #if defined(CONFIG_MAC_PARTITION) || \ |
| 285 | defined(CONFIG_DOS_PARTITION) || \ |
| 286 | defined(CONFIG_ISO_PARTITION) || \ |
| 287 | defined(CONFIG_AMIGA_PARTITION) || \ |
| 288 | defined(CONFIG_EFI_PARTITION) |
| 289 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 290 | static void print_part_header (const char *type, block_dev_desc_t * dev_desc) |
| 291 | { |
| 292 | puts ("\nPartition Map for "); |
| 293 | switch (dev_desc->if_type) { |
Detlev Zundel | 726c0f1 | 2008-05-05 16:11:22 +0200 | [diff] [blame] | 294 | case IF_TYPE_IDE: |
| 295 | puts ("IDE"); |
| 296 | break; |
| 297 | case IF_TYPE_SATA: |
| 298 | puts ("SATA"); |
| 299 | break; |
| 300 | case IF_TYPE_SCSI: |
| 301 | puts ("SCSI"); |
| 302 | break; |
| 303 | case IF_TYPE_ATAPI: |
| 304 | puts ("ATAPI"); |
| 305 | break; |
| 306 | case IF_TYPE_USB: |
| 307 | puts ("USB"); |
| 308 | break; |
| 309 | case IF_TYPE_DOC: |
| 310 | puts ("DOC"); |
| 311 | break; |
Lei Wen | 8f3b964 | 2010-09-13 22:07:28 +0800 | [diff] [blame] | 312 | case IF_TYPE_MMC: |
| 313 | puts ("MMC"); |
| 314 | break; |
Detlev Zundel | 726c0f1 | 2008-05-05 16:11:22 +0200 | [diff] [blame] | 315 | default: |
| 316 | puts ("UNKNOWN"); |
| 317 | break; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 318 | } |
| 319 | printf (" device %d -- Partition Type: %s\n\n", |
| 320 | dev_desc->dev, type); |
| 321 | } |
| 322 | |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 323 | #endif /* any CONFIG_..._PARTITION */ |
| 324 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 325 | void print_part (block_dev_desc_t * dev_desc) |
| 326 | { |
| 327 | |
| 328 | switch (dev_desc->part_type) { |
| 329 | #ifdef CONFIG_MAC_PARTITION |
| 330 | case PART_TYPE_MAC: |
| 331 | PRINTF ("## Testing for valid MAC partition ##\n"); |
| 332 | print_part_header ("MAC", dev_desc); |
| 333 | print_part_mac (dev_desc); |
| 334 | return; |
| 335 | #endif |
| 336 | #ifdef CONFIG_DOS_PARTITION |
| 337 | case PART_TYPE_DOS: |
| 338 | PRINTF ("## Testing for valid DOS partition ##\n"); |
| 339 | print_part_header ("DOS", dev_desc); |
| 340 | print_part_dos (dev_desc); |
| 341 | return; |
| 342 | #endif |
| 343 | |
| 344 | #ifdef CONFIG_ISO_PARTITION |
| 345 | case PART_TYPE_ISO: |
| 346 | PRINTF ("## Testing for valid ISO Boot partition ##\n"); |
| 347 | print_part_header ("ISO", dev_desc); |
| 348 | print_part_iso (dev_desc); |
| 349 | return; |
| 350 | #endif |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 351 | |
| 352 | #ifdef CONFIG_AMIGA_PARTITION |
| 353 | case PART_TYPE_AMIGA: |
| 354 | PRINTF ("## Testing for a valid Amiga partition ##\n"); |
| 355 | print_part_header ("AMIGA", dev_desc); |
| 356 | print_part_amiga (dev_desc); |
| 357 | return; |
| 358 | #endif |
richardretanubun | 07f3d78 | 2008-09-26 11:13:22 -0400 | [diff] [blame] | 359 | |
| 360 | #ifdef CONFIG_EFI_PARTITION |
| 361 | case PART_TYPE_EFI: |
| 362 | PRINTF ("## Testing for valid EFI partition ##\n"); |
| 363 | print_part_header ("EFI", dev_desc); |
| 364 | print_part_efi (dev_desc); |
| 365 | return; |
| 366 | #endif |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 367 | } |
| 368 | puts ("## Unknown partition table\n"); |
| 369 | } |
| 370 | |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 371 | #endif /* HAVE_BLOCK_DEVICE */ |
Stephen Warren | 2f50164 | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 372 | |
| 373 | int get_partition_info(block_dev_desc_t *dev_desc, int part |
| 374 | , disk_partition_t *info) |
| 375 | { |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 376 | #ifdef HAVE_BLOCK_DEVICE |
Stephen Warren | 2f50164 | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 377 | |
Stephen Warren | 894bfbb | 2012-09-21 09:50:59 +0000 | [diff] [blame] | 378 | #ifdef CONFIG_PARTITION_UUIDS |
| 379 | /* The common case is no UUID support */ |
| 380 | info->uuid[0] = 0; |
| 381 | #endif |
| 382 | |
Stephen Warren | 2f50164 | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 383 | switch (dev_desc->part_type) { |
| 384 | #ifdef CONFIG_MAC_PARTITION |
| 385 | case PART_TYPE_MAC: |
| 386 | if (get_partition_info_mac(dev_desc, part, info) == 0) { |
| 387 | PRINTF("## Valid MAC partition found ##\n"); |
| 388 | return 0; |
| 389 | } |
| 390 | break; |
| 391 | #endif |
| 392 | |
| 393 | #ifdef CONFIG_DOS_PARTITION |
| 394 | case PART_TYPE_DOS: |
| 395 | if (get_partition_info_dos(dev_desc, part, info) == 0) { |
| 396 | PRINTF("## Valid DOS partition found ##\n"); |
| 397 | return 0; |
| 398 | } |
| 399 | break; |
| 400 | #endif |
| 401 | |
| 402 | #ifdef CONFIG_ISO_PARTITION |
| 403 | case PART_TYPE_ISO: |
| 404 | if (get_partition_info_iso(dev_desc, part, info) == 0) { |
| 405 | PRINTF("## Valid ISO boot partition found ##\n"); |
| 406 | return 0; |
| 407 | } |
| 408 | break; |
| 409 | #endif |
| 410 | |
| 411 | #ifdef CONFIG_AMIGA_PARTITION |
| 412 | case PART_TYPE_AMIGA: |
| 413 | if (get_partition_info_amiga(dev_desc, part, info) == 0) { |
| 414 | PRINTF("## Valid Amiga partition found ##\n"); |
| 415 | return 0; |
| 416 | } |
| 417 | break; |
| 418 | #endif |
| 419 | |
| 420 | #ifdef CONFIG_EFI_PARTITION |
| 421 | case PART_TYPE_EFI: |
| 422 | if (get_partition_info_efi(dev_desc, part, info) == 0) { |
| 423 | PRINTF("## Valid EFI partition found ##\n"); |
| 424 | return 0; |
| 425 | } |
| 426 | break; |
| 427 | #endif |
| 428 | default: |
| 429 | break; |
| 430 | } |
Gabe Black | 0c9c8fb | 2012-10-12 14:26:08 +0000 | [diff] [blame] | 431 | #endif /* HAVE_BLOCK_DEVICE */ |
Stephen Warren | 2f50164 | 2012-09-21 12:46:54 +0000 | [diff] [blame] | 432 | |
| 433 | return -1; |
| 434 | } |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 435 | |
Stephen Warren | 2023e60 | 2012-09-21 09:50:56 +0000 | [diff] [blame] | 436 | int get_device(const char *ifname, const char *dev_str, |
| 437 | block_dev_desc_t **dev_desc) |
| 438 | { |
| 439 | char *ep; |
| 440 | int dev; |
| 441 | |
| 442 | dev = simple_strtoul(dev_str, &ep, 16); |
| 443 | if (*ep) { |
| 444 | printf("** Bad device specification %s %s **\n", |
| 445 | ifname, dev_str); |
| 446 | return -1; |
| 447 | } |
| 448 | |
| 449 | *dev_desc = get_dev(ifname, dev); |
| 450 | if (!(*dev_desc) || ((*dev_desc)->type == DEV_TYPE_UNKNOWN)) { |
| 451 | printf("** Bad device %s %s **\n", ifname, dev_str); |
| 452 | return -1; |
| 453 | } |
| 454 | |
| 455 | return dev; |
| 456 | } |
| 457 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 458 | #define PART_UNSPECIFIED -2 |
| 459 | #define PART_AUTO -1 |
| 460 | #define MAX_SEARCH_PARTITIONS 16 |
| 461 | int get_device_and_partition(const char *ifname, const char *dev_part_str, |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 462 | block_dev_desc_t **dev_desc, |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 463 | disk_partition_t *info, int allow_whole_dev) |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 464 | { |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 465 | int ret = -1; |
| 466 | const char *part_str; |
| 467 | char *dup_str = NULL; |
| 468 | const char *dev_str; |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 469 | int dev; |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 470 | char *ep; |
| 471 | int p; |
| 472 | int part; |
| 473 | disk_partition_t tmpinfo; |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 474 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 475 | /* If no dev_part_str, use bootdevice environment variable */ |
Stephen Warren | a10973e | 2012-09-28 05:34:09 +0000 | [diff] [blame] | 476 | if (!dev_part_str || !strlen(dev_part_str) || |
| 477 | !strcmp(dev_part_str, "-")) |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 478 | dev_part_str = getenv("bootdevice"); |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 479 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 480 | /* If still no dev_part_str, it's an error */ |
| 481 | if (!dev_part_str) { |
| 482 | printf("** No device specified **\n"); |
| 483 | goto cleanup; |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 484 | } |
| 485 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 486 | /* Separate device and partition ID specification */ |
| 487 | part_str = strchr(dev_part_str, ':'); |
| 488 | if (part_str) { |
| 489 | dup_str = strdup(dev_part_str); |
| 490 | dup_str[part_str - dev_part_str] = 0; |
| 491 | dev_str = dup_str; |
| 492 | part_str++; |
| 493 | } else { |
| 494 | dev_str = dev_part_str; |
| 495 | } |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 496 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 497 | /* Look up the device */ |
| 498 | dev = get_device(ifname, dev_str, dev_desc); |
| 499 | if (dev < 0) |
| 500 | goto cleanup; |
| 501 | |
| 502 | /* Convert partition ID string to number */ |
| 503 | if (!part_str || !*part_str) { |
| 504 | part = PART_UNSPECIFIED; |
| 505 | } else if (!strcmp(part_str, "auto")) { |
| 506 | part = PART_AUTO; |
| 507 | } else { |
| 508 | /* Something specified -> use exactly that */ |
| 509 | part = (int)simple_strtoul(part_str, &ep, 16); |
| 510 | /* |
| 511 | * Less than whole string converted, |
| 512 | * or request for whole device, but caller requires partition. |
| 513 | */ |
| 514 | if (*ep || (part == 0 && !allow_whole_dev)) { |
| 515 | printf("** Bad partition specification %s %s **\n", |
| 516 | ifname, dev_part_str); |
| 517 | goto cleanup; |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 518 | } |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 521 | /* |
| 522 | * No partition table on device, |
| 523 | * or user requested partition 0 (entire device). |
| 524 | */ |
| 525 | if (((*dev_desc)->part_type == PART_TYPE_UNKNOWN) || |
| 526 | (part == 0)) { |
| 527 | if (!(*dev_desc)->lba) { |
| 528 | printf("** Bad device size - %s %s **\n", ifname, |
| 529 | dev_str); |
| 530 | goto cleanup; |
| 531 | } |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 532 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 533 | /* |
| 534 | * If user specified a partition ID other than 0, |
| 535 | * or the calling command only accepts partitions, |
| 536 | * it's an error. |
| 537 | */ |
| 538 | if ((part > 0) || (!allow_whole_dev)) { |
| 539 | printf("** No partition table - %s %s **\n", ifname, |
| 540 | dev_str); |
| 541 | goto cleanup; |
| 542 | } |
| 543 | |
| 544 | info->start = 0; |
| 545 | info->size = (*dev_desc)->lba; |
| 546 | info->blksz = (*dev_desc)->blksz; |
| 547 | info->bootable = 0; |
Stephen Warren | 6ab6a65 | 2012-10-10 07:57:51 +0000 | [diff] [blame] | 548 | strcpy((char *)info->type, BOOT_PART_TYPE); |
| 549 | strcpy((char *)info->name, "Whole Disk"); |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 550 | #ifdef CONFIG_PARTITION_UUIDS |
| 551 | info->uuid[0] = 0; |
| 552 | #endif |
| 553 | |
| 554 | ret = 0; |
| 555 | goto cleanup; |
| 556 | } |
| 557 | |
| 558 | /* |
| 559 | * Now there's known to be a partition table, |
| 560 | * not specifying a partition means to pick partition 1. |
| 561 | */ |
| 562 | if (part == PART_UNSPECIFIED) |
| 563 | part = 1; |
| 564 | |
| 565 | /* |
| 566 | * If user didn't specify a partition number, or did specify something |
| 567 | * other than "auto", use that partition number directly. |
| 568 | */ |
| 569 | if (part != PART_AUTO) { |
| 570 | ret = get_partition_info(*dev_desc, part, info); |
| 571 | if (ret) { |
| 572 | printf("** Invalid partition %d **\n", part); |
| 573 | goto cleanup; |
| 574 | } |
| 575 | } else { |
| 576 | /* |
| 577 | * Find the first bootable partition. |
| 578 | * If none are bootable, fall back to the first valid partition. |
| 579 | */ |
| 580 | part = 0; |
| 581 | for (p = 1; p <= MAX_SEARCH_PARTITIONS; p++) { |
| 582 | ret = get_partition_info(*dev_desc, p, info); |
| 583 | if (ret) |
| 584 | continue; |
| 585 | |
| 586 | /* |
| 587 | * First valid partition, or new better partition? |
| 588 | * If so, save partition ID. |
| 589 | */ |
| 590 | if (!part || info->bootable) |
| 591 | part = p; |
| 592 | |
| 593 | /* Best possible partition? Stop searching. */ |
| 594 | if (info->bootable) |
| 595 | break; |
| 596 | |
| 597 | /* |
| 598 | * We now need to search further for best possible. |
| 599 | * If we what we just queried was the best so far, |
| 600 | * save the info since we over-write it next loop. |
| 601 | */ |
| 602 | if (part == p) |
| 603 | tmpinfo = *info; |
| 604 | } |
| 605 | /* If we found any acceptable partition */ |
| 606 | if (part) { |
| 607 | /* |
| 608 | * If we searched all possible partition IDs, |
| 609 | * return the first valid partition we found. |
| 610 | */ |
| 611 | if (p == MAX_SEARCH_PARTITIONS + 1) |
| 612 | *info = tmpinfo; |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 613 | } else { |
| 614 | printf("** No valid partitions found **\n"); |
Stephen Warren | 71bba42 | 2012-10-08 07:45:54 +0000 | [diff] [blame] | 615 | ret = -1; |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 616 | goto cleanup; |
| 617 | } |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 618 | } |
| 619 | if (strncmp((char *)info->type, BOOT_PART_TYPE, sizeof(info->type)) != 0) { |
| 620 | printf("** Invalid partition type \"%.32s\"" |
| 621 | " (expect \"" BOOT_PART_TYPE "\")\n", |
| 622 | info->type); |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 623 | ret = -1; |
| 624 | goto cleanup; |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 627 | ret = part; |
| 628 | goto cleanup; |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 629 | |
Stephen Warren | 10a37fd | 2012-09-21 09:50:57 +0000 | [diff] [blame] | 630 | cleanup: |
| 631 | free(dup_str); |
| 632 | return ret; |
Rob Herring | 99d2c20 | 2012-09-21 04:08:17 +0000 | [diff] [blame] | 633 | } |