1 // SPDX-License-Identifier: GPL-2.0+
4 * Raymond Lo, lo@routefree.com
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 * Support for harddisk partitions.
11 * To be compatible with LinuxPPC and Apple we use the standard Apple
12 * SCSI disk partitioning scheme. For more information see:
13 * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92
22 #ifdef CONFIG_HAVE_BLOCK_DEVICE
24 #define DOS_PART_DEFAULT_SECTOR 512
26 /* should this be configurable? It looks like it's not very common at all
27 * to use large numbers of partitions */
28 #define MAX_EXT_PARTS 256
30 /* Convert char[4] in little endian format to the host format integer
32 static inline unsigned int le32_to_int(unsigned char *le32)
34 return ((le32[3] << 24) +
41 static inline int is_extended(int part_type)
43 return (part_type == 0x5 ||
48 static inline int is_bootable(dos_partition_t *p)
50 return (p->sys_ind == 0xef) || (p->boot_ind == 0x80);
53 static void print_one_part(dos_partition_t *p, lbaint_t ext_part_sector,
54 int part_num, unsigned int disksig)
56 lbaint_t lba_start = ext_part_sector + le32_to_int (p->start4);
57 lbaint_t lba_size = le32_to_int (p->size4);
59 printf("%3d\t%-10" LBAFlength "u\t%-10" LBAFlength
60 "u\t%08x-%02x\t%02x%s%s\n",
61 part_num, lba_start, lba_size, disksig, part_num, p->sys_ind,
62 (is_extended(p->sys_ind) ? " Extd" : ""),
63 (is_bootable(p) ? " Boot" : ""));
66 static int test_block_type(unsigned char *buffer)
69 struct dos_partition *p;
71 if((buffer[DOS_PART_MAGIC_OFFSET + 0] != 0x55) ||
72 (buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) ) {
74 } /* no DOS Signature at all */
75 p = (struct dos_partition *)&buffer[DOS_PART_TBL_OFFSET];
76 for (slot = 0; slot < 3; slot++) {
77 if (p->boot_ind != 0 && p->boot_ind != 0x80) {
79 (strncmp((char *)&buffer[DOS_PBR_FSTYPE_OFFSET],
81 strncmp((char *)&buffer[DOS_PBR32_FSTYPE_OFFSET],
83 return DOS_PBR; /* is PBR */
89 return DOS_MBR; /* Is MBR */
93 static int part_test_dos(struct blk_desc *dev_desc)
95 #ifndef CONFIG_SPL_BUILD
96 ALLOC_CACHE_ALIGN_BUFFER(legacy_mbr, mbr,
97 DIV_ROUND_UP(dev_desc->blksz, sizeof(legacy_mbr)));
99 if (blk_dread(dev_desc, 0, 1, (ulong *)mbr) != 1)
102 if (test_block_type((unsigned char *)mbr) != DOS_MBR)
105 if (dev_desc->sig_type == SIG_TYPE_NONE &&
106 mbr->unique_mbr_signature != 0) {
107 dev_desc->sig_type = SIG_TYPE_MBR;
108 dev_desc->mbr_sig = mbr->unique_mbr_signature;
111 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
113 if (blk_dread(dev_desc, 0, 1, (ulong *)buffer) != 1)
116 if (test_block_type(buffer) != DOS_MBR)
123 /* Print a partition that is relative to its Extended partition table
125 static void print_partition_extended(struct blk_desc *dev_desc,
126 lbaint_t ext_part_sector,
128 int part_num, unsigned int disksig)
130 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
134 /* set a maximum recursion level */
135 if (part_num > MAX_EXT_PARTS)
137 printf("** Nested DOS partitions detected, stopping **\n");
141 if (blk_dread(dev_desc, ext_part_sector, 1, (ulong *)buffer) != 1) {
142 printf ("** Can't read partition table on %d:" LBAFU " **\n",
143 dev_desc->devnum, ext_part_sector);
146 i=test_block_type(buffer);
148 printf ("bad MBR sector signature 0x%02x%02x\n",
149 buffer[DOS_PART_MAGIC_OFFSET],
150 buffer[DOS_PART_MAGIC_OFFSET + 1]);
154 if (!ext_part_sector)
155 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
157 /* Print all primary/logical partitions */
158 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
159 for (i = 0; i < 4; i++, pt++) {
161 * fdisk does not show the extended partitions that
165 if ((pt->sys_ind != 0) &&
166 (ext_part_sector == 0 || !is_extended (pt->sys_ind)) ) {
167 print_one_part(pt, ext_part_sector, part_num, disksig);
170 /* Reverse engr the fdisk part# assignment rule! */
171 if ((ext_part_sector == 0) ||
172 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
177 /* Follows the extended partitions */
178 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
179 for (i = 0; i < 4; i++, pt++) {
180 if (is_extended (pt->sys_ind)) {
182 = le32_to_int (pt->start4) + relative;
184 print_partition_extended(dev_desc, lba_start,
185 ext_part_sector == 0 ? lba_start : relative,
194 /* Print a partition that is relative to its Extended partition table
196 static int part_get_info_extended(struct blk_desc *dev_desc,
197 lbaint_t ext_part_sector, lbaint_t relative,
198 int part_num, int which_part,
199 disk_partition_t *info, unsigned int disksig)
201 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, buffer, dev_desc->blksz);
206 /* set a maximum recursion level */
207 if (part_num > MAX_EXT_PARTS)
209 printf("** Nested DOS partitions detected, stopping **\n");
213 if (blk_dread(dev_desc, ext_part_sector, 1, (ulong *)buffer) != 1) {
214 printf ("** Can't read partition table on %d:" LBAFU " **\n",
215 dev_desc->devnum, ext_part_sector);
218 if (buffer[DOS_PART_MAGIC_OFFSET] != 0x55 ||
219 buffer[DOS_PART_MAGIC_OFFSET + 1] != 0xaa) {
220 printf ("bad MBR sector signature 0x%02x%02x\n",
221 buffer[DOS_PART_MAGIC_OFFSET],
222 buffer[DOS_PART_MAGIC_OFFSET + 1]);
226 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
227 if (!ext_part_sector)
228 disksig = le32_to_int(&buffer[DOS_PART_DISKSIG_OFFSET]);
231 /* Print all primary/logical partitions */
232 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
233 for (i = 0; i < 4; i++, pt++) {
235 * fdisk does not show the extended partitions that
238 if (((pt->boot_ind & ~0x80) == 0) &&
239 (pt->sys_ind != 0) &&
240 (part_num == which_part) &&
241 (ext_part_sector == 0 || is_extended(pt->sys_ind) == 0)) {
242 info->blksz = DOS_PART_DEFAULT_SECTOR;
243 info->start = (lbaint_t)(ext_part_sector +
244 le32_to_int(pt->start4));
245 info->size = (lbaint_t)le32_to_int(pt->size4);
246 part_set_generic_name(dev_desc, part_num,
248 /* sprintf(info->type, "%d, pt->sys_ind); */
249 strcpy((char *)info->type, "U-Boot");
250 info->bootable = is_bootable(pt);
251 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
252 sprintf(info->uuid, "%08x-%02x", disksig, part_num);
254 info->sys_ind = pt->sys_ind;
258 /* Reverse engr the fdisk part# assignment rule! */
259 if ((ext_part_sector == 0) ||
260 (pt->sys_ind != 0 && !is_extended (pt->sys_ind)) ) {
265 /* Follows the extended partitions */
266 pt = (dos_partition_t *) (buffer + DOS_PART_TBL_OFFSET);
267 for (i = 0; i < 4; i++, pt++) {
268 if (is_extended (pt->sys_ind)) {
270 = le32_to_int (pt->start4) + relative;
272 return part_get_info_extended(dev_desc, lba_start,
273 ext_part_sector == 0 ? lba_start : relative,
274 part_num, which_part, info, disksig);
278 /* Check for DOS PBR if no partition is found */
279 dos_type = test_block_type(buffer);
281 if (dos_type == DOS_PBR) {
283 info->size = dev_desc->lba;
284 info->blksz = DOS_PART_DEFAULT_SECTOR;
286 strcpy((char *)info->type, "U-Boot");
287 #if CONFIG_IS_ENABLED(PARTITION_UUIDS)
296 void part_print_dos(struct blk_desc *dev_desc)
298 printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n");
299 print_partition_extended(dev_desc, 0, 0, 1, 0);
302 int part_get_info_dos(struct blk_desc *dev_desc, int part,
303 disk_partition_t *info)
305 return part_get_info_extended(dev_desc, 0, 0, 1, part, info, 0);
308 int is_valid_dos_buf(void *buf)
310 return test_block_type(buf) == DOS_MBR ? 0 : -1;
313 int write_mbr_partition(struct blk_desc *dev_desc, void *buf)
315 if (is_valid_dos_buf(buf))
319 if (blk_dwrite(dev_desc, 0, 1, buf) != 1) {
320 printf("%s: failed writing '%s' (1 blks at 0x0)\n",
328 U_BOOT_PART_TYPE(dos) = {
330 .part_type = PART_TYPE_DOS,
331 .max_entries = DOS_ENTRY_NUMBERS,
332 .get_info = part_get_info_ptr(part_get_info_dos),
333 .print = part_print_ptr(part_print_dos),
334 .test = part_test_dos,