blob: 5f8d949b84c7a680c33ce29e296ea0174cf87727 [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 */
Stefan Monnierd29892b2015-08-25 15:24:13 -040029static inline unsigned int le32_to_int(unsigned char *le32)
wdenkfe8c2802002-11-03 00:38:21 +000030{
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
Stefan Monnierd29892b2015-08-25 15:24:13 -040050static void print_one_part(dos_partition_t *p, lbaint_t ext_part_sector,
Stephen Warrene2e9b372012-10-08 08:14:40 +000051 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +000052{
Stefan Monnierd29892b2015-08-25 15:24:13 -040053 lbaint_t lba_start = ext_part_sector + le32_to_int (p->start4);
54 lbaint_t lba_size = le32_to_int (p->size4);
wdenkfe8c2802002-11-03 00:38:21 +000055
Stefan Monnierd29892b2015-08-25 15:24:13 -040056 printf("%3d\t%-10" LBAFlength "u\t%-10" LBAFlength
57 "u\t%08x-%02x\t%02x%s%s\n",
Stephen Warrene2e9b372012-10-08 08:14:40 +000058 part_num, lba_start, lba_size, disksig, part_num, p->sys_ind,
Rob Herring40e0e562012-08-23 11:31:43 +000059 (is_extended(p->sys_ind) ? " Extd" : ""),
60 (is_bootable(p) ? " Boot" : ""));
wdenkfe8c2802002-11-03 00:38:21 +000061}
62
wdenk7205e402003-09-10 22:30:53 +000063static int test_block_type(unsigned char *buffer)
64{
Egbert Eich9d956e02013-04-09 05:46:14 +000065 int slot;
66 struct dos_partition *p;
67
wdenk7205e402003-09-10 22:30:53 +000068 if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
69 (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
70 return (-1);
71 } /* no DOS Signature at all */
Egbert Eich9d956e02013-04-09 05:46:14 +000072 p = (struct dos_partition *)&buffer[DOS_PART_TBL_OFFSET];
73 for (slot = 0; slot < 3; slot++) {
74 if (p->boot_ind != 0 && p->boot_ind != 0x80) {
75 if (!slot &&
76 (strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],
77 "FAT", 3) == 0 ||
78 strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],
79 "FAT32", 5) == 0)) {
80 return DOS_PBR; /* is PBR */
81 } else {
82 return -1;
83 }
84 }
Wolfgang Denk66c2d732010-07-19 11:36:57 +020085 }
wdenk7205e402003-09-10 22:30:53 +000086 return DOS_MBR; /* Is MBR */
87}
88
wdenkfe8c2802002-11-03 00:38:21 +000089
Simon Glass96e5b032016-02-29 15:25:47 -070090static int test_part_dos(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +000091{
Eric Nelsondec049d2012-03-03 12:02:20 +000092 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +000093
Stephen Warren7c4213f2015-12-07 11:38:48 -070094 if (dev_desc->block_read(dev_desc, 0, 1, (ulong *)buffer) != 1)
Stephen Warrend1efb642012-10-05 13:17:40 +000095 return -1;
96
97 if (test_block_type(buffer) != DOS_MBR)
98 return -1;
99
100 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000101}
102
103/* Print a partition that is relative to its Extended partition table
104 */
Simon Glass4101f682016-02-29 15:25:34 -0700105static void print_partition_extended(struct blk_desc *dev_desc,
Stefan Monnierd29892b2015-08-25 15:24:13 -0400106 lbaint_t ext_part_sector,
107 lbaint_t relative,
Stephen Warrene2e9b372012-10-08 08:14:40 +0000108 int part_num, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000109{
Eric Nelsondec049d2012-03-03 12:02:20 +0000110 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +0000111 dos_partition_t *pt;
112 int i;
113
Stephen Warren7c4213f2015-12-07 11:38:48 -0700114 if (dev_desc->block_read(dev_desc, ext_part_sector, 1,
115 (ulong *)buffer) != 1) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400116 printf ("** Can't read partition table on %d:" LBAFU " **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700117 dev_desc->devnum, ext_part_sector);
wdenkfe8c2802002-11-03 00:38:21 +0000118 return;
119 }
wdenk7205e402003-09-10 22:30:53 +0000120 i=test_block_type(buffer);
Stephen Warrend1efb642012-10-05 13:17:40 +0000121 if (i != DOS_MBR) {
wdenkfe8c2802002-11-03 00:38:21 +0000122 printf ("bad MBR sector signature 0x%02x%02x\n",
123 buffer[DOS_PART_MAGIC_OFFSET],
124 buffer[DOS_PART_MAGIC_OFFSET + 1]);
125 return;
126 }
Stephen Warrend1efb642012-10-05 13:17:40 +0000127
Stephen Warrene2e9b372012-10-08 08:14:40 +0000128 if (!ext_part_sector)
129 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
130
wdenkfe8c2802002-11-03 00:38:21 +0000131 /* Print all primary/logical partitions */
132 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
133 for (i = 0; i < 4; i++, pt++) {
134 /*
wdenk8bde7f72003-06-27 21:31:46 +0000135 * fdisk does not show the extended partitions that
wdenkfe8c2802002-11-03 00:38:21 +0000136 * are not in the MBR
137 */
138
139 if ((pt->sys_ind != 0) &&
140 (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
Stephen Warrene2e9b372012-10-08 08:14:40 +0000141 print_one_part(pt, ext_part_sector, part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000142 }
143
144 /* Reverse engr the fdisk part# assignment rule! */
145 if ((ext_part_sector == 0) ||
146 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
147 part_num++;
148 }
149 }
150
151 /* Follows the extended partitions */
152 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
153 for (i = 0; i < 4; i++, pt++) {
154 if (is_extended (pt->sys_ind)) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400155 lbaint_t lba_start
156 = le32_to_int (pt->start4) + relative;
wdenkfe8c2802002-11-03 00:38:21 +0000157
Stephen Warren304b5712012-10-08 08:14:38 +0000158 print_partition_extended(dev_desc, lba_start,
159 ext_part_sector == 0 ? lba_start : relative,
Stephen Warrene2e9b372012-10-08 08:14:40 +0000160 part_num, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000161 }
162 }
163
164 return;
165}
166
167
168/* Print a partition that is relative to its Extended partition table
169 */
Simon Glass3e8bd462016-02-29 15:25:48 -0700170static int part_get_info_extended(struct blk_desc *dev_desc,
171 lbaint_t ext_part_sector, lbaint_t relative,
172 int part_num, int which_part,
173 disk_partition_t *info, unsigned int disksig)
wdenkfe8c2802002-11-03 00:38:21 +0000174{
Eric Nelsondec049d2012-03-03 12:02:20 +0000175 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
wdenkfe8c2802002-11-03 00:38:21 +0000176 dos_partition_t *pt;
177 int i;
Darwin Dingel4a36be92014-06-06 15:48:26 +1200178 int dos_type;
wdenkfe8c2802002-11-03 00:38:21 +0000179
Stephen Warren7c4213f2015-12-07 11:38:48 -0700180 if (dev_desc->block_read(dev_desc, ext_part_sector, 1,
181 (ulong *)buffer) != 1) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400182 printf ("** Can't read partition table on %d:" LBAFU " **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700183 dev_desc->devnum, ext_part_sector);
wdenkfe8c2802002-11-03 00:38:21 +0000184 return -1;
185 }
186 if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
187 buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
188 printf ("bad MBR sector signature 0x%02x%02x\n",
189 buffer[DOS_PART_MAGIC_OFFSET],
190 buffer[DOS_PART_MAGIC_OFFSET + 1]);
191 return -1;
192 }
193
Stephen Warrend27b5f92012-09-21 09:51:00 +0000194#ifdef CONFIG_PARTITION_UUIDS
195 if (!ext_part_sector)
196 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
197#endif
198
wdenkfe8c2802002-11-03 00:38:21 +0000199 /* Print all primary/logical partitions */
200 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
201 for (i = 0; i < 4; i++, pt++) {
202 /*
wdenk8bde7f72003-06-27 21:31:46 +0000203 * fdisk does not show the extended partitions that
204 * are not in the MBR
wdenkfe8c2802002-11-03 00:38:21 +0000205 */
Daniel Mack78f4ca72009-09-28 11:40:38 +0200206 if (((pt->boot_ind & ~0x80) == 0) &&
207 (pt->sys_ind != 0) &&
wdenk7f70e852003-05-20 14:25:27 +0000208 (part_num == which_part) &&
209 (is_extended(pt->sys_ind) == 0)) {
Darwin Dingel4a36be92014-06-06 15:48:26 +1200210 info->blksz = DOS_PART_DEFAULT_SECTOR;
Steve Raee04350d2014-05-26 11:52:23 -0700211 info->start = (lbaint_t)(ext_part_sector +
212 le32_to_int(pt->start4));
213 info->size = (lbaint_t)le32_to_int(pt->size4);
wdenkfe8c2802002-11-03 00:38:21 +0000214 switch(dev_desc->if_type) {
215 case IF_TYPE_IDE:
Dave Liuc7057b52008-03-26 22:49:44 +0800216 case IF_TYPE_SATA:
wdenkfe8c2802002-11-03 00:38:21 +0000217 case IF_TYPE_ATAPI:
Simon Glassbcce53d2016-02-29 15:25:51 -0700218 sprintf((char *)info->name, "hd%c%d",
219 'a' + dev_desc->devnum,
220 part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000221 break;
222 case IF_TYPE_SCSI:
Simon Glassbcce53d2016-02-29 15:25:51 -0700223 sprintf((char *)info->name, "sd%c%d",
224 'a' + dev_desc->devnum,
225 part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000226 break;
227 case IF_TYPE_USB:
Simon Glassbcce53d2016-02-29 15:25:51 -0700228 sprintf((char *)info->name, "usbd%c%d",
229 'a' + dev_desc->devnum,
230 part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000231 break;
232 case IF_TYPE_DOC:
Simon Glassbcce53d2016-02-29 15:25:51 -0700233 sprintf((char *)info->name, "docd%c%d",
234 'a' + dev_desc->devnum,
235 part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000236 break;
237 default:
Simon Glassbcce53d2016-02-29 15:25:51 -0700238 sprintf((char *)info->name, "xx%c%d",
239 'a' + dev_desc->devnum,
240 part_num);
wdenkfe8c2802002-11-03 00:38:21 +0000241 break;
242 }
243 /* sprintf(info->type, "%d, pt->sys_ind); */
Ben Whitten192bc692015-12-30 13:05:58 +0000244 strcpy((char *)info->type, "U-Boot");
Rob Herring40e0e562012-08-23 11:31:43 +0000245 info->bootable = is_bootable(pt);
Stephen Warrend27b5f92012-09-21 09:51:00 +0000246#ifdef CONFIG_PARTITION_UUIDS
247 sprintf(info->uuid, "%08x-%02x", disksig, part_num);
248#endif
wdenkfe8c2802002-11-03 00:38:21 +0000249 return 0;
250 }
251
252 /* Reverse engr the fdisk part# assignment rule! */
253 if ((ext_part_sector == 0) ||
254 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
255 part_num++;
256 }
257 }
258
259 /* Follows the extended partitions */
260 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
261 for (i = 0; i < 4; i++, pt++) {
262 if (is_extended (pt->sys_ind)) {
Stefan Monnierd29892b2015-08-25 15:24:13 -0400263 lbaint_t lba_start
264 = le32_to_int (pt->start4) + relative;
wdenkfe8c2802002-11-03 00:38:21 +0000265
Simon Glass3e8bd462016-02-29 15:25:48 -0700266 return part_get_info_extended(dev_desc, lba_start,
wdenkfe8c2802002-11-03 00:38:21 +0000267 ext_part_sector == 0 ? lba_start : relative,
Stephen Warrend27b5f92012-09-21 09:51:00 +0000268 part_num, which_part, info, disksig);
wdenkfe8c2802002-11-03 00:38:21 +0000269 }
270 }
Darwin Dingel4a36be92014-06-06 15:48:26 +1200271
272 /* Check for DOS PBR if no partition is found */
273 dos_type = test_block_type(buffer);
274
275 if (dos_type == DOS_PBR) {
276 info->start = 0;
277 info->size = dev_desc->lba;
278 info->blksz = DOS_PART_DEFAULT_SECTOR;
279 info->bootable = 0;
Ben Whitten192bc692015-12-30 13:05:58 +0000280 strcpy((char *)info->type, "U-Boot");
Darwin Dingel4a36be92014-06-06 15:48:26 +1200281#ifdef CONFIG_PARTITION_UUIDS
282 info->uuid[0] = 0;
283#endif
284 return 0;
285 }
286
wdenkfe8c2802002-11-03 00:38:21 +0000287 return -1;
288}
289
Simon Glass4101f682016-02-29 15:25:34 -0700290void print_part_dos(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +0000291{
Stephen Warrene2e9b372012-10-08 08:14:40 +0000292 printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n");
293 print_partition_extended(dev_desc, 0, 0, 1, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000294}
295
Simon Glass3e8bd462016-02-29 15:25:48 -0700296int part_get_info_dos(struct blk_desc *dev_desc, int part,
297 disk_partition_t *info)
wdenkfe8c2802002-11-03 00:38:21 +0000298{
Simon Glass3e8bd462016-02-29 15:25:48 -0700299 return part_get_info_extended(dev_desc, 0, 0, 1, part, info, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000300}
301
Simon Glass96e5b032016-02-29 15:25:47 -0700302U_BOOT_PART_TYPE(dos) = {
303 .name = "DOS",
304 .part_type = PART_TYPE_DOS,
Simon Glass3e8bd462016-02-29 15:25:48 -0700305 .get_info = part_get_info_ptr(part_get_info_dos),
Simon Glass96e5b032016-02-29 15:25:47 -0700306 .print = part_print_ptr(print_part_dos),
307 .test = test_part_dos,
308};
wdenkfe8c2802002-11-03 00:38:21 +0000309
Jon Loeligercde5c642007-07-09 17:22:37 -0500310#endif