blob: 21c85942fd840b0e590e0ebc979cd2927ee781bd [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkfe8c2802002-11-03 00:38:21 +00002/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkfe8c2802002-11-03 00:38:21 +00005 */
6
7/*
8 * Support for harddisk partitions.
9 *
10 * To be compatible with LinuxPPC and Apple we use the standard Apple
11 * SCSI disk partitioning scheme. For more information see:
12 * http://developer.apple.com/techpubs/mac/Devices/Devices-126.html#MARKER-14-92
13 */
14
wdenkfe8c2802002-11-03 00:38:21 +000015#include <command.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060017#include <memalign.h>
wdenkfe8c2802002-11-03 00:38:21 +000018#include <ide.h>
wdenkfe8c2802002-11-03 00:38:21 +000019#include "part_mac.h"
Simon Glass655306c2020-05-10 11:39:58 -060020#include <part.h>
wdenkfe8c2802002-11-03 00:38:21 +000021
wdenkfe8c2802002-11-03 00:38:21 +000022/* stdlib.h causes some compatibility problems; should fixe these! -- wd */
23#ifndef __ldiv_t_defined
24typedef struct {
25 long int quot; /* Quotient */
26 long int rem; /* Remainder */
27} ldiv_t;
28extern ldiv_t ldiv (long int __numer, long int __denom);
29# define __ldiv_t_defined 1
30#endif
31
Simon Glasse7762912023-08-24 13:55:29 -060032static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p);
33static int part_mac_read_pdb(struct blk_desc *desc, int part,
Simon Glasse3394752016-02-29 15:25:34 -070034 mac_partition_t *pdb_p);
wdenkfe8c2802002-11-03 00:38:21 +000035
36/*
37 * Test for a valid MAC partition
38 */
Simon Glasse7762912023-08-24 13:55:29 -060039static int part_test_mac(struct blk_desc *desc)
wdenkfe8c2802002-11-03 00:38:21 +000040{
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020041 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
42 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000043 ulong i, n;
44
Simon Glasse7762912023-08-24 13:55:29 -060045 if (part_mac_read_ddb(desc, ddesc)) {
Heinrich Schuchardtf6237c92017-08-29 18:36:59 +020046 /*
47 * error reading Driver Descriptor Block,
48 * or no valid Signature
49 */
wdenkfe8c2802002-11-03 00:38:21 +000050 return (-1);
51 }
52
53 n = 1; /* assuming at least one partition */
54 for (i=1; i<=n; ++i) {
Simon Glasse7762912023-08-24 13:55:29 -060055 if ((blk_dread(desc, i, 1, (ulong *)mpart) != 1) ||
56 mpart->signature != MAC_PARTITION_MAGIC) {
wdenkfe8c2802002-11-03 00:38:21 +000057 return (-1);
58 }
59 /* update partition count */
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020060 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +000061 }
62 return (0);
63}
64
Simon Glasse7762912023-08-24 13:55:29 -060065static void part_print_mac(struct blk_desc *desc)
wdenkfe8c2802002-11-03 00:38:21 +000066{
67 ulong i, n;
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020068 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
69 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000070 ldiv_t mb, gb;
71
Simon Glasse7762912023-08-24 13:55:29 -060072 if (part_mac_read_ddb(desc, ddesc)) {
Heinrich Schuchardtf6237c92017-08-29 18:36:59 +020073 /*
74 * error reading Driver Descriptor Block,
75 * or no valid Signature
76 */
wdenkfe8c2802002-11-03 00:38:21 +000077 return;
78 }
79
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020080 n = ddesc->blk_count;
wdenkfe8c2802002-11-03 00:38:21 +000081
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020082 mb = ldiv(n, ((1024 * 1024) / ddesc->blk_size)); /* MB */
wdenkfe8c2802002-11-03 00:38:21 +000083 /* round to 1 digit */
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020084 mb.rem *= 10 * ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +000085 mb.rem += 512 * 1024;
86 mb.rem /= 1024 * 1024;
87
88 gb = ldiv(10 * mb.quot + mb.rem, 10240);
89 gb.rem += 512;
90 gb.rem /= 1024;
91
wdenkfe8c2802002-11-03 00:38:21 +000092 printf ("Block Size=%d, Number of Blocks=%d, "
93 "Total Capacity: %ld.%ld MB = %ld.%ld GB\n"
94 "DeviceType=0x%x, DeviceId=0x%x\n\n"
95 " #: type name"
96 " length base (size)\n",
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020097 ddesc->blk_size,
98 ddesc->blk_count,
wdenkfe8c2802002-11-03 00:38:21 +000099 mb.quot, mb.rem, gb.quot, gb.rem,
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200100 ddesc->dev_type, ddesc->dev_id
wdenkfe8c2802002-11-03 00:38:21 +0000101 );
102
103 n = 1; /* assuming at least one partition */
104 for (i=1; i<=n; ++i) {
105 ulong bytes;
106 char c;
107
108 printf ("%4ld: ", i);
Simon Glasse7762912023-08-24 13:55:29 -0600109 if (blk_dread(desc, i, 1, (ulong *)mpart) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000110 printf ("** Can't read Partition Map on %d:%ld **\n",
Simon Glasse7762912023-08-24 13:55:29 -0600111 desc->devnum, i);
wdenkfe8c2802002-11-03 00:38:21 +0000112 return;
113 }
114
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200115 if (mpart->signature != MAC_PARTITION_MAGIC) {
Simon Glass2f26fff2016-02-29 15:25:51 -0700116 printf("** Bad Signature on %d:%ld - expected 0x%04x, got 0x%04x\n",
Simon Glasse7762912023-08-24 13:55:29 -0600117 desc->devnum, i, MAC_PARTITION_MAGIC,
Simon Glass2f26fff2016-02-29 15:25:51 -0700118 mpart->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000119 return;
120 }
121
122 /* update partition count */
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200123 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +0000124
125 c = 'k';
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200126 bytes = mpart->block_count;
127 bytes /= (1024 / ddesc->blk_size); /* kB; assumes blk_size == 512 */
wdenkfe8c2802002-11-03 00:38:21 +0000128 if (bytes >= 1024) {
129 bytes >>= 10;
130 c = 'M';
131 }
132 if (bytes >= 1024) {
133 bytes >>= 10;
134 c = 'G';
135 }
136
137 printf ("%20.32s %-18.32s %10u @ %-10u (%3ld%c)\n",
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200138 mpart->type,
139 mpart->name,
140 mpart->block_count,
141 mpart->start_block,
wdenkfe8c2802002-11-03 00:38:21 +0000142 bytes, c
143 );
144 }
145
146 return;
147}
148
wdenkfe8c2802002-11-03 00:38:21 +0000149/*
150 * Read Device Descriptor Block
151 */
Simon Glasse7762912023-08-24 13:55:29 -0600152static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000153{
Simon Glasse7762912023-08-24 13:55:29 -0600154 if (blk_dread(desc, 0, 1, (ulong *)ddb_p) != 1) {
Bin Meng78ac30a2017-09-03 18:44:23 -0700155 debug("** Can't read Driver Descriptor Block **\n");
wdenkfe8c2802002-11-03 00:38:21 +0000156 return (-1);
157 }
158
159 if (ddb_p->signature != MAC_DRIVER_MAGIC) {
wdenkfe8c2802002-11-03 00:38:21 +0000160 return (-1);
161 }
162 return (0);
163}
164
165/*
166 * Read Partition Descriptor Block
167 */
Simon Glasse7762912023-08-24 13:55:29 -0600168static int part_mac_read_pdb(struct blk_desc *desc, int part,
Simon Glasse3394752016-02-29 15:25:34 -0700169 mac_partition_t *pdb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000170{
171 int n = 1;
172
173 for (;;) {
174 /*
wdenk57b2d802003-06-27 21:31:46 +0000175 * We must always read the descritpor block for
176 * partition 1 first since this is the only way to
177 * know how many partitions we have.
wdenkfe8c2802002-11-03 00:38:21 +0000178 */
Simon Glasse7762912023-08-24 13:55:29 -0600179 if (blk_dread(desc, n, 1, (ulong *)pdb_p) != 1) {
180 printf("** Can't read Partition Map on %d:%d **\n",
181 desc->devnum, n);
wdenkfe8c2802002-11-03 00:38:21 +0000182 return (-1);
183 }
184
185 if (pdb_p->signature != MAC_PARTITION_MAGIC) {
Simon Glass2f26fff2016-02-29 15:25:51 -0700186 printf("** Bad Signature on %d:%d: expected 0x%04x, got 0x%04x\n",
Simon Glasse7762912023-08-24 13:55:29 -0600187 desc->devnum, n, MAC_PARTITION_MAGIC,
Simon Glass2f26fff2016-02-29 15:25:51 -0700188 pdb_p->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000189 return (-1);
190 }
191
192 if (n == part)
193 return (0);
194
195 if ((part < 1) || (part > pdb_p->map_count)) {
Simon Glasse7762912023-08-24 13:55:29 -0600196 printf("** Invalid partition %d:%d [%d:1...%d:%d only]\n",
197 desc->devnum, part, desc->devnum, desc->devnum,
198 pdb_p->map_count);
wdenkfe8c2802002-11-03 00:38:21 +0000199 return (-1);
200 }
201
202 /* update partition count */
203 n = part;
204 }
205
206 /* NOTREACHED */
207}
208
Simon Glasse7762912023-08-24 13:55:29 -0600209static int part_get_info_mac(struct blk_desc *desc, int part,
210 struct disk_partition *info)
wdenkfe8c2802002-11-03 00:38:21 +0000211{
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200212 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
213 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000214
Simon Glasse7762912023-08-24 13:55:29 -0600215 if (part_mac_read_ddb(desc, ddesc))
216 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000217
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200218 info->blksz = ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +0000219
Simon Glasse7762912023-08-24 13:55:29 -0600220 if (part_mac_read_pdb(desc, part, mpart))
221 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000222
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200223 info->start = mpart->start_block;
224 info->size = mpart->block_count;
225 memcpy (info->type, mpart->type, sizeof(info->type));
226 memcpy (info->name, mpart->name, sizeof(info->name));
wdenkfe8c2802002-11-03 00:38:21 +0000227
228 return (0);
229}
230
Simon Glass83ce5632016-02-29 15:25:47 -0700231U_BOOT_PART_TYPE(mac) = {
232 .name = "MAC",
233 .part_type = PART_TYPE_MAC,
Petr Kulhavy712257e2016-09-09 10:27:15 +0200234 .max_entries = MAC_ENTRY_NUMBERS,
Simon Glassb89a8442016-02-29 15:25:48 -0700235 .get_info = part_get_info_mac,
Simon Glass0f1c9522016-02-29 15:26:04 -0700236 .print = part_print_mac,
237 .test = part_test_mac,
Simon Glass83ce5632016-02-29 15:25:47 -0700238};