wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Raymond Lo, lo@routefree.com |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * Support for harddisk partitions. |
| 27 | * |
| 28 | * To be compatible with LinuxPPC and Apple we use the standard Apple |
| 29 | * SCSI disk partitioning scheme. For more information see: |
| 30 | * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92 |
| 31 | */ |
| 32 | |
| 33 | #include <common.h> |
| 34 | #include <command.h> |
| 35 | #include <ide.h> |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 36 | #include "part_dos.h" |
| 37 | |
Stephen Warren | 2c1af9d | 2013-02-28 15:03:46 +0000 | [diff] [blame] | 38 | #ifdef HAVE_BLOCK_DEVICE |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 39 | |
| 40 | /* Convert char[4] in little endian format to the host format integer |
| 41 | */ |
| 42 | static inline int le32_to_int(unsigned char *le32) |
| 43 | { |
| 44 | return ((le32[3] << 24) + |
| 45 | (le32[2] << 16) + |
| 46 | (le32[1] << 8) + |
| 47 | le32[0] |
| 48 | ); |
| 49 | } |
| 50 | |
| 51 | static inline int is_extended(int part_type) |
| 52 | { |
| 53 | return (part_type == 0x5 || |
| 54 | part_type == 0xf || |
| 55 | part_type == 0x85); |
| 56 | } |
| 57 | |
Rob Herring | 40e0e56 | 2012-08-23 11:31:43 +0000 | [diff] [blame] | 58 | static inline int is_bootable(dos_partition_t *p) |
| 59 | { |
| 60 | return p->boot_ind == 0x80; |
| 61 | } |
| 62 | |
Stephen Warren | 304b571 | 2012-10-08 08:14:38 +0000 | [diff] [blame] | 63 | static void print_one_part(dos_partition_t *p, int ext_part_sector, |
Stephen Warren | e2e9b37 | 2012-10-08 08:14:40 +0000 | [diff] [blame] | 64 | int part_num, unsigned int disksig) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 65 | { |
| 66 | int lba_start = ext_part_sector + le32_to_int (p->start4); |
| 67 | int lba_size = le32_to_int (p->size4); |
| 68 | |
Stephen Warren | e2e9b37 | 2012-10-08 08:14:40 +0000 | [diff] [blame] | 69 | printf("%3d\t%-10d\t%-10d\t%08x-%02x\t%02x%s%s\n", |
| 70 | part_num, lba_start, lba_size, disksig, part_num, p->sys_ind, |
Rob Herring | 40e0e56 | 2012-08-23 11:31:43 +0000 | [diff] [blame] | 71 | (is_extended(p->sys_ind) ? " Extd" : ""), |
| 72 | (is_bootable(p) ? " Boot" : "")); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 73 | } |
| 74 | |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 75 | static int test_block_type(unsigned char *buffer) |
| 76 | { |
| 77 | if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) || |
| 78 | (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) { |
| 79 | return (-1); |
| 80 | } /* no DOS Signature at all */ |
Wolfgang Denk | 66c2d73 | 2010-07-19 11:36:57 +0200 | [diff] [blame] | 81 | if (strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],"FAT",3)==0 || |
| 82 | strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],"FAT32",5)==0) { |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 83 | return DOS_PBR; /* is PBR */ |
Wolfgang Denk | 66c2d73 | 2010-07-19 11:36:57 +0200 | [diff] [blame] | 84 | } |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 85 | return DOS_MBR; /* Is MBR */ |
| 86 | } |
| 87 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 88 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 89 | int test_part_dos (block_dev_desc_t *dev_desc) |
| 90 | { |
Eric Nelson | dec049d | 2012-03-03 12:02:20 +0000 | [diff] [blame] | 91 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 92 | |
Stephen Warren | d1efb64 | 2012-10-05 13:17:40 +0000 | [diff] [blame] | 93 | if (dev_desc->block_read(dev_desc->dev, 0, 1, (ulong *) buffer) != 1) |
| 94 | return -1; |
| 95 | |
| 96 | if (test_block_type(buffer) != DOS_MBR) |
| 97 | return -1; |
| 98 | |
| 99 | return 0; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | /* Print a partition that is relative to its Extended partition table |
| 103 | */ |
Stephen Warren | 304b571 | 2012-10-08 08:14:38 +0000 | [diff] [blame] | 104 | static void print_partition_extended(block_dev_desc_t *dev_desc, |
| 105 | int ext_part_sector, int relative, |
Stephen Warren | e2e9b37 | 2012-10-08 08:14:40 +0000 | [diff] [blame] | 106 | int part_num, unsigned int disksig) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 107 | { |
Eric Nelson | dec049d | 2012-03-03 12:02:20 +0000 | [diff] [blame] | 108 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 109 | dos_partition_t *pt; |
| 110 | int i; |
| 111 | |
| 112 | if (dev_desc->block_read(dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) { |
| 113 | printf ("** Can't read partition table on %d:%d **\n", |
| 114 | dev_desc->dev, ext_part_sector); |
| 115 | return; |
| 116 | } |
wdenk | 7205e40 | 2003-09-10 22:30:53 +0000 | [diff] [blame] | 117 | i=test_block_type(buffer); |
Stephen Warren | d1efb64 | 2012-10-05 13:17:40 +0000 | [diff] [blame] | 118 | if (i != DOS_MBR) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 119 | printf ("bad MBR sector signature 0x%02x%02x\n", |
| 120 | buffer[DOS_PART_MAGIC_OFFSET], |
| 121 | buffer[DOS_PART_MAGIC_OFFSET + 1]); |
| 122 | return; |
| 123 | } |
Stephen Warren | d1efb64 | 2012-10-05 13:17:40 +0000 | [diff] [blame] | 124 | |
Stephen Warren | e2e9b37 | 2012-10-08 08:14:40 +0000 | [diff] [blame] | 125 | if (!ext_part_sector) |
| 126 | disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]); |
| 127 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 128 | /* Print all primary/logical partitions */ |
| 129 | pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET); |
| 130 | for (i = 0; i < 4; i++, pt++) { |
| 131 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 132 | * fdisk does not show the extended partitions that |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 133 | * are not in the MBR |
| 134 | */ |
| 135 | |
| 136 | if ((pt->sys_ind != 0) && |
| 137 | (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) { |
Stephen Warren | e2e9b37 | 2012-10-08 08:14:40 +0000 | [diff] [blame] | 138 | print_one_part(pt, ext_part_sector, part_num, disksig); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | /* Reverse engr the fdisk part# assignment rule! */ |
| 142 | if ((ext_part_sector == 0) || |
| 143 | (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) { |
| 144 | part_num++; |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | /* Follows the extended partitions */ |
| 149 | pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET); |
| 150 | for (i = 0; i < 4; i++, pt++) { |
| 151 | if (is_extended (pt->sys_ind)) { |
| 152 | int lba_start = le32_to_int (pt->start4) + relative; |
| 153 | |
Stephen Warren | 304b571 | 2012-10-08 08:14:38 +0000 | [diff] [blame] | 154 | print_partition_extended(dev_desc, lba_start, |
| 155 | ext_part_sector == 0 ? lba_start : relative, |
Stephen Warren | e2e9b37 | 2012-10-08 08:14:40 +0000 | [diff] [blame] | 156 | part_num, disksig); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | |
| 160 | return; |
| 161 | } |
| 162 | |
| 163 | |
| 164 | /* Print a partition that is relative to its Extended partition table |
| 165 | */ |
| 166 | static int get_partition_info_extended (block_dev_desc_t *dev_desc, int ext_part_sector, |
| 167 | int relative, int part_num, |
Stephen Warren | d27b5f9 | 2012-09-21 09:51:00 +0000 | [diff] [blame] | 168 | int which_part, disk_partition_t *info, |
| 169 | unsigned int disksig) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 170 | { |
Eric Nelson | dec049d | 2012-03-03 12:02:20 +0000 | [diff] [blame] | 171 | ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 172 | dos_partition_t *pt; |
| 173 | int i; |
| 174 | |
| 175 | if (dev_desc->block_read (dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) { |
| 176 | printf ("** Can't read partition table on %d:%d **\n", |
| 177 | dev_desc->dev, ext_part_sector); |
| 178 | return -1; |
| 179 | } |
| 180 | if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 || |
| 181 | buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) { |
| 182 | printf ("bad MBR sector signature 0x%02x%02x\n", |
| 183 | buffer[DOS_PART_MAGIC_OFFSET], |
| 184 | buffer[DOS_PART_MAGIC_OFFSET + 1]); |
| 185 | return -1; |
| 186 | } |
| 187 | |
Stephen Warren | d27b5f9 | 2012-09-21 09:51:00 +0000 | [diff] [blame] | 188 | #ifdef CONFIG_PARTITION_UUIDS |
| 189 | if (!ext_part_sector) |
| 190 | disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]); |
| 191 | #endif |
| 192 | |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 193 | /* Print all primary/logical partitions */ |
| 194 | pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET); |
| 195 | for (i = 0; i < 4; i++, pt++) { |
| 196 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 197 | * fdisk does not show the extended partitions that |
| 198 | * are not in the MBR |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 199 | */ |
Daniel Mack | 78f4ca7 | 2009-09-28 11:40:38 +0200 | [diff] [blame] | 200 | if (((pt->boot_ind & ~0x80) == 0) && |
| 201 | (pt->sys_ind != 0) && |
wdenk | 7f70e85 | 2003-05-20 14:25:27 +0000 | [diff] [blame] | 202 | (part_num == which_part) && |
| 203 | (is_extended(pt->sys_ind) == 0)) { |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 204 | info->blksz = 512; |
| 205 | info->start = ext_part_sector + le32_to_int (pt->start4); |
| 206 | info->size = le32_to_int (pt->size4); |
| 207 | switch(dev_desc->if_type) { |
| 208 | case IF_TYPE_IDE: |
Dave Liu | c7057b5 | 2008-03-26 22:49:44 +0800 | [diff] [blame] | 209 | case IF_TYPE_SATA: |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 210 | case IF_TYPE_ATAPI: |
Wolfgang Denk | 7166552 | 2009-07-28 22:35:39 +0200 | [diff] [blame] | 211 | sprintf ((char *)info->name, "hd%c%d", |
| 212 | 'a' + dev_desc->dev, part_num); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 213 | break; |
| 214 | case IF_TYPE_SCSI: |
Wolfgang Denk | 7166552 | 2009-07-28 22:35:39 +0200 | [diff] [blame] | 215 | sprintf ((char *)info->name, "sd%c%d", |
| 216 | 'a' + dev_desc->dev, part_num); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 217 | break; |
| 218 | case IF_TYPE_USB: |
Wolfgang Denk | 7166552 | 2009-07-28 22:35:39 +0200 | [diff] [blame] | 219 | sprintf ((char *)info->name, "usbd%c%d", |
| 220 | 'a' + dev_desc->dev, part_num); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 221 | break; |
| 222 | case IF_TYPE_DOC: |
Wolfgang Denk | 7166552 | 2009-07-28 22:35:39 +0200 | [diff] [blame] | 223 | sprintf ((char *)info->name, "docd%c%d", |
| 224 | 'a' + dev_desc->dev, part_num); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 225 | break; |
| 226 | default: |
Wolfgang Denk | 7166552 | 2009-07-28 22:35:39 +0200 | [diff] [blame] | 227 | sprintf ((char *)info->name, "xx%c%d", |
| 228 | 'a' + dev_desc->dev, part_num); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 229 | break; |
| 230 | } |
| 231 | /* sprintf(info->type, "%d, pt->sys_ind); */ |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 232 | sprintf ((char *)info->type, "U-Boot"); |
Rob Herring | 40e0e56 | 2012-08-23 11:31:43 +0000 | [diff] [blame] | 233 | info->bootable = is_bootable(pt); |
Stephen Warren | d27b5f9 | 2012-09-21 09:51:00 +0000 | [diff] [blame] | 234 | #ifdef CONFIG_PARTITION_UUIDS |
| 235 | sprintf(info->uuid, "%08x-%02x", disksig, part_num); |
| 236 | #endif |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 237 | return 0; |
| 238 | } |
| 239 | |
| 240 | /* Reverse engr the fdisk part# assignment rule! */ |
| 241 | if ((ext_part_sector == 0) || |
| 242 | (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) { |
| 243 | part_num++; |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | /* Follows the extended partitions */ |
| 248 | pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET); |
| 249 | for (i = 0; i < 4; i++, pt++) { |
| 250 | if (is_extended (pt->sys_ind)) { |
| 251 | int lba_start = le32_to_int (pt->start4) + relative; |
| 252 | |
| 253 | return get_partition_info_extended (dev_desc, lba_start, |
| 254 | ext_part_sector == 0 ? lba_start : relative, |
Stephen Warren | d27b5f9 | 2012-09-21 09:51:00 +0000 | [diff] [blame] | 255 | part_num, which_part, info, disksig); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 256 | } |
| 257 | } |
| 258 | return -1; |
| 259 | } |
| 260 | |
| 261 | void print_part_dos (block_dev_desc_t *dev_desc) |
| 262 | { |
Stephen Warren | e2e9b37 | 2012-10-08 08:14:40 +0000 | [diff] [blame] | 263 | printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n"); |
| 264 | print_partition_extended(dev_desc, 0, 0, 1, 0); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | int get_partition_info_dos (block_dev_desc_t *dev_desc, int part, disk_partition_t * info) |
| 268 | { |
Stephen Warren | d27b5f9 | 2012-09-21 09:51:00 +0000 | [diff] [blame] | 269 | return get_partition_info_extended(dev_desc, 0, 0, 1, part, info, 0); |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | |
Jon Loeliger | cde5c64 | 2007-07-09 17:22:37 -0500 | [diff] [blame] | 273 | #endif |