blob: 89263d38aaa03c609f4aa1ec3da83913832dee3d [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2 * (C) Copyright 2001
3 * Raymond Lo, lo@routefree.com
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenkfe8c2802002-11-03 00:38:21 +00007 */
8
9/*
10 * Support for harddisk partitions.
11 *
12 * To be compatible with LinuxPPC and Apple we use the standard Apple
13 * SCSI disk partitioning scheme. For more information see:
14 * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92
15 */
16
17#include <common.h>
18#include <command.h>
19#include <ide.h>
Simon Glasscf92e052015-09-02 17:24:58 -060020#include <memalign.h>
wdenkfe8c2802002-11-03 00:38:21 +000021#include "part_dos.h"
22
Stephen Warren2c1af9d2013-02-28 15:03:46 +000023#ifdef HAVE_BLOCK_DEVICE
wdenkfe8c2802002-11-03 00:38:21 +000024
Darwin Dingel4a36be92014-06-06 15:48:26 +120025#define DOS_PART_DEFAULT_SECTOR 512
26
wdenkfe8c2802002-11-03 00:38:21 +000027/* Convert char[4] in little endian format to the host format integer
28 */
29static inline int le32_to_int(unsigned char *le32)
30{
31 return ((le32[3] << 24) +
32 (le32[2] << 16) +
33 (le32[1] << 8) +
34 le32[0]
35 );
36}
37
38static inline int is_extended(int part_type)
39{
40 return (part_type == 0x5 ||
41 part_type == 0xf ||
42 part_type == 0x85);
43}
44
Rob Herring40e0e562012-08-23 11:31:43 +000045static inline int is_bootable(dos_partition_t *p)
46{
47 return p->boot_ind == 0x80;
48}
49
Stephen Warren304b5712012-10-08 08:14:38 +000050static void print_one_part(dos_partition_t *p, int ext_part_sector,
Stephen Warrene2e9b372012-10-08 08:14:40 +000051 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +000052{
53 int lba_start = ext_part_sector + le32_to_int (p->start4);
54 int lba_size = le32_to_int (p->size4);
55
Stephen Warrene2e9b372012-10-08 08:14:40 +000056 printf("%3d\t%-10d\t%-10d\t%08x-%02x\t%02x%s%s\n",
57 part_num, lba_start, lba_size, disksig, part_num, p->sys_ind,
Rob Herring40e0e562012-08-23 11:31:43 +000058 (is_extended(p->sys_ind) ? " Extd" : ""),
59 (is_bootable(p) ? " Boot" : ""));
wdenkfe8c2802002-11-03 00:38:21 +000060}
61
wdenk7205e402003-09-10 22:30:53 +000062static int test_block_type(unsigned char *buffer)
63{
Egbert Eich9d956e02013-04-09 05:46:14 +000064 int slot;
65 struct dos_partition *p;
66
wdenk7205e402003-09-10 22:30:53 +000067 if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
68 (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
69 return (-1);
70 } /* no DOS Signature at all */
Egbert Eich9d956e02013-04-09 05:46:14 +000071 p = (struct dos_partition *)&buffer[DOS_PART_TBL_OFFSET];
72 for (slot = 0; slot < 3; slot++) {
73 if (p->boot_ind != 0 && p->boot_ind != 0x80) {
74 if (!slot &&
75 (strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],
76 "FAT", 3) == 0 ||
77 strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],
78 "FAT32", 5) == 0)) {
79 return DOS_PBR; /* is PBR */
80 } else {
81 return -1;
82 }
83 }
Wolfgang Denk66c2d732010-07-19 11:36:57 +020084 }
wdenk7205e402003-09-10 22:30:53 +000085 return DOS_MBR; /* Is MBR */
86}
87
wdenkfe8c2802002-11-03 00:38:21 +000088
wdenkfe8c2802002-11-03 00:38:21 +000089int test_part_dos (block_dev_desc_t *dev_desc)
90{
Eric Nelsondec049d2012-03-03 12:02:20 +000091 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +000092
Stephen Warrend1efb642012-10-05 13:17:40 +000093 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;
wdenkfe8c2802002-11-03 00:38:21 +0000100}
101
102/* Print a partition that is relative to its Extended partition table
103 */
Stephen Warren304b5712012-10-08 08:14:38 +0000104static void print_partition_extended(block_dev_desc_t *dev_desc,
105 int ext_part_sector, int relative,
Stephen Warrene2e9b372012-10-08 08:14:40 +0000106 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000107{
Eric Nelsondec049d2012-03-03 12:02:20 +0000108 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +0000109 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 }
wdenk7205e402003-09-10 22:30:53 +0000117 i=test_block_type(buffer);
Stephen Warrend1efb642012-10-05 13:17:40 +0000118 if (i != DOS_MBR) {
wdenkfe8c2802002-11-03 00:38:21 +0000119 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 Warrend1efb642012-10-05 13:17:40 +0000124
Stephen Warrene2e9b372012-10-08 08:14:40 +0000125 if (!ext_part_sector)
126 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
127
wdenkfe8c2802002-11-03 00:38:21 +0000128 /* Print all primary/logical partitions */
129 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
130 for (i = 0; i < 4; i++, pt++) {
131 /*
wdenk8bde7f72003-06-27 21:31:46 +0000132 * fdisk does not show the extended partitions that
wdenkfe8c2802002-11-03 00:38:21 +0000133 * are not in the MBR
134 */
135
136 if ((pt->sys_ind != 0) &&
137 (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
Stephen Warrene2e9b372012-10-08 08:14:40 +0000138 print_one_part(pt, ext_part_sector, part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000139 }
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 Warren304b5712012-10-08 08:14:38 +0000154 print_partition_extended(dev_desc, lba_start,
155 ext_part_sector == 0 ? lba_start : relative,
Stephen Warrene2e9b372012-10-08 08:14:40 +0000156 part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000157 }
158 }
159
160 return;
161}
162
163
164/* Print a partition that is relative to its Extended partition table
165 */
166static int get_partition_info_extended (block_dev_desc_t *dev_desc, int ext_part_sector,
167 int relative, int part_num,
Stephen Warrend27b5f92012-09-21 09:51:00 +0000168 int which_part, disk_partition_t *info,
169 unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000170{
Eric Nelsondec049d2012-03-03 12:02:20 +0000171 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +0000172 dos_partition_t *pt;
173 int i;
Darwin Dingel4a36be92014-06-06 15:48:26 +1200174 int dos_type;
wdenkfe8c2802002-11-03 00:38:21 +0000175
176 if (dev_desc->block_read (dev_desc->dev, ext_part_sector, 1, (ulong *) buffer) != 1) {
177 printf ("** Can't read partition table on %d:%d **\n",
178 dev_desc->dev, ext_part_sector);
179 return -1;
180 }
181 if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
182 buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
183 printf ("bad MBR sector signature 0x%02x%02x\n",
184 buffer[DOS_PART_MAGIC_OFFSET],
185 buffer[DOS_PART_MAGIC_OFFSET + 1]);
186 return -1;
187 }
188
Stephen Warrend27b5f92012-09-21 09:51:00 +0000189#ifdef CONFIG_PARTITION_UUIDS
190 if (!ext_part_sector)
191 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
192#endif
193
wdenkfe8c2802002-11-03 00:38:21 +0000194 /* Print all primary/logical partitions */
195 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
196 for (i = 0; i < 4; i++, pt++) {
197 /*
wdenk8bde7f72003-06-27 21:31:46 +0000198 * fdisk does not show the extended partitions that
199 * are not in the MBR
wdenkfe8c2802002-11-03 00:38:21 +0000200 */
Daniel Mack78f4ca72009-09-28 11:40:38 +0200201 if (((pt->boot_ind & ~0x80) == 0) &&
202 (pt->sys_ind != 0) &&
wdenk7f70e852003-05-20 14:25:27 +0000203 (part_num == which_part) &&
204 (is_extended(pt->sys_ind) == 0)) {
Darwin Dingel4a36be92014-06-06 15:48:26 +1200205 info->blksz = DOS_PART_DEFAULT_SECTOR;
Steve Raee04350d2014-05-26 11:52:23 -0700206 info->start = (lbaint_t)(ext_part_sector +
207 le32_to_int(pt->start4));
208 info->size = (lbaint_t)le32_to_int(pt->size4);
wdenkfe8c2802002-11-03 00:38:21 +0000209 switch(dev_desc->if_type) {
210 case IF_TYPE_IDE:
Dave Liuc7057b52008-03-26 22:49:44 +0800211 case IF_TYPE_SATA:
wdenkfe8c2802002-11-03 00:38:21 +0000212 case IF_TYPE_ATAPI:
Wolfgang Denk71665522009-07-28 22:35:39 +0200213 sprintf ((char *)info->name, "hd%c%d",
214 'a' + dev_desc->dev, part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000215 break;
216 case IF_TYPE_SCSI:
Wolfgang Denk71665522009-07-28 22:35:39 +0200217 sprintf ((char *)info->name, "sd%c%d",
218 'a' + dev_desc->dev, part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000219 break;
220 case IF_TYPE_USB:
Wolfgang Denk71665522009-07-28 22:35:39 +0200221 sprintf ((char *)info->name, "usbd%c%d",
222 'a' + dev_desc->dev, part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000223 break;
224 case IF_TYPE_DOC:
Wolfgang Denk71665522009-07-28 22:35:39 +0200225 sprintf ((char *)info->name, "docd%c%d",
226 'a' + dev_desc->dev, part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000227 break;
228 default:
Wolfgang Denk71665522009-07-28 22:35:39 +0200229 sprintf ((char *)info->name, "xx%c%d",
230 'a' + dev_desc->dev, part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000231 break;
232 }
233 /* sprintf(info->type, "%d, pt->sys_ind); */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200234 sprintf ((char *)info->type, "U-Boot");
Rob Herring40e0e562012-08-23 11:31:43 +0000235 info->bootable = is_bootable(pt);
Stephen Warrend27b5f92012-09-21 09:51:00 +0000236#ifdef CONFIG_PARTITION_UUIDS
237 sprintf(info->uuid, "%08x-%02x", disksig, part_num);
238#endif
wdenkfe8c2802002-11-03 00:38:21 +0000239 return 0;
240 }
241
242 /* Reverse engr the fdisk part# assignment rule! */
243 if ((ext_part_sector == 0) ||
244 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
245 part_num++;
246 }
247 }
248
249 /* Follows the extended partitions */
250 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
251 for (i = 0; i < 4; i++, pt++) {
252 if (is_extended (pt->sys_ind)) {
253 int lba_start = le32_to_int (pt->start4) + relative;
254
255 return get_partition_info_extended (dev_desc, lba_start,
256 ext_part_sector == 0 ? lba_start : relative,
Stephen Warrend27b5f92012-09-21 09:51:00 +0000257 part_num, which_part, info, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000258 }
259 }
Darwin Dingel4a36be92014-06-06 15:48:26 +1200260
261 /* Check for DOS PBR if no partition is found */
262 dos_type = test_block_type(buffer);
263
264 if (dos_type == DOS_PBR) {
265 info->start = 0;
266 info->size = dev_desc->lba;
267 info->blksz = DOS_PART_DEFAULT_SECTOR;
268 info->bootable = 0;
269 sprintf ((char *)info->type, "U-Boot");
270#ifdef CONFIG_PARTITION_UUIDS
271 info->uuid[0] = 0;
272#endif
273 return 0;
274 }
275
wdenkfe8c2802002-11-03 00:38:21 +0000276 return -1;
277}
278
279void print_part_dos (block_dev_desc_t *dev_desc)
280{
Stephen Warrene2e9b372012-10-08 08:14:40 +0000281 printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n");
282 print_partition_extended(dev_desc, 0, 0, 1, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000283}
284
285int get_partition_info_dos (block_dev_desc_t *dev_desc, int part, disk_partition_t * info)
286{
Stephen Warrend27b5f92012-09-21 09:51:00 +0000287 return get_partition_info_extended(dev_desc, 0, 0, 1, part, info, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000288}
289
290
Jon Loeligercde5c642007-07-09 17:22:37 -0500291#endif