blob: 3fb3b161aea5231c3928904544c206f0856d08eb [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkfe8c2802002-11-03 00:38:21 +00006 */
7
8/*
9 * Support for harddisk partitions.
10 *
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
14 */
15
16#include <common.h>
17#include <command.h>
Simon Glasscf92e052015-09-02 17:24:58 -060018#include <memalign.h>
wdenkfe8c2802002-11-03 00:38:21 +000019#include <ide.h>
wdenkfe8c2802002-11-03 00:38:21 +000020#include "part_mac.h"
21
Stephen Warren2c1af9d2013-02-28 15:03:46 +000022#ifdef HAVE_BLOCK_DEVICE
wdenkfe8c2802002-11-03 00:38:21 +000023
24/* stdlib.h causes some compatibility problems; should fixe these! -- wd */
25#ifndef __ldiv_t_defined
26typedef struct {
27 long int quot; /* Quotient */
28 long int rem; /* Remainder */
29} ldiv_t;
30extern ldiv_t ldiv (long int __numer, long int __denom);
31# define __ldiv_t_defined 1
32#endif
33
34
Simon Glass4101f682016-02-29 15:25:34 -070035static int part_mac_read_ddb(struct blk_desc *dev_desc,
36 mac_driver_desc_t *ddb_p);
37static int part_mac_read_pdb(struct blk_desc *dev_desc, int part,
38 mac_partition_t *pdb_p);
wdenkfe8c2802002-11-03 00:38:21 +000039
40/*
41 * Test for a valid MAC partition
42 */
Simon Glass96e5b032016-02-29 15:25:47 -070043static int test_part_mac(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +000044{
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020045 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
46 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000047 ulong i, n;
48
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020049 if (part_mac_read_ddb (dev_desc, ddesc)) {
wdenkfe8c2802002-11-03 00:38:21 +000050 /* error reading Driver Desriptor Block, or no valid Signature */
51 return (-1);
52 }
53
54 n = 1; /* assuming at least one partition */
55 for (i=1; i<=n; ++i) {
Stephen Warren7c4213f2015-12-07 11:38:48 -070056 if ((dev_desc->block_read(dev_desc, i, 1,
57 (ulong *)mpart) != 1) ||
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020058 (mpart->signature != MAC_PARTITION_MAGIC) ) {
wdenkfe8c2802002-11-03 00:38:21 +000059 return (-1);
60 }
61 /* update partition count */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020062 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +000063 }
64 return (0);
65}
66
Simon Glass96e5b032016-02-29 15:25:47 -070067static void print_part_mac(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +000068{
69 ulong i, n;
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020070 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
71 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000072 ldiv_t mb, gb;
73
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020074 if (part_mac_read_ddb (dev_desc, ddesc)) {
wdenkfe8c2802002-11-03 00:38:21 +000075 /* error reading Driver Desriptor Block, or no valid Signature */
76 return;
77 }
78
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020079 n = ddesc->blk_count;
wdenkfe8c2802002-11-03 00:38:21 +000080
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020081 mb = ldiv(n, ((1024 * 1024) / ddesc->blk_size)); /* MB */
wdenkfe8c2802002-11-03 00:38:21 +000082 /* round to 1 digit */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020083 mb.rem *= 10 * ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +000084 mb.rem += 512 * 1024;
85 mb.rem /= 1024 * 1024;
86
87 gb = ldiv(10 * mb.quot + mb.rem, 10240);
88 gb.rem += 512;
89 gb.rem /= 1024;
90
91
92 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ébaudeau64a08a92012-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ébaudeau64a08a92012-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);
Stephen Warren7c4213f2015-12-07 11:38:48 -0700109 if (dev_desc->block_read(dev_desc, i, 1, (ulong *)mpart) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000110 printf ("** Can't read Partition Map on %d:%ld **\n",
111 dev_desc->dev, i);
112 return;
113 }
114
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200115 if (mpart->signature != MAC_PARTITION_MAGIC) {
wdenkfe8c2802002-11-03 00:38:21 +0000116 printf ("** Bad Signature on %d:%ld - "
117 "expected 0x%04x, got 0x%04x\n",
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200118 dev_desc->dev, i, MAC_PARTITION_MAGIC, mpart->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000119 return;
120 }
121
122 /* update partition count */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200123 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +0000124
125 c = 'k';
Benoît Thébaudeau64a08a92012-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ébaudeau64a08a92012-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
149
150/*
151 * Read Device Descriptor Block
152 */
Simon Glass4101f682016-02-29 15:25:34 -0700153static int part_mac_read_ddb(struct blk_desc *dev_desc,
154 mac_driver_desc_t *ddb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000155{
Stephen Warren7c4213f2015-12-07 11:38:48 -0700156 if (dev_desc->block_read(dev_desc, 0, 1, (ulong *)ddb_p) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000157 printf ("** Can't read Driver Desriptor Block **\n");
158 return (-1);
159 }
160
161 if (ddb_p->signature != MAC_DRIVER_MAGIC) {
162#if 0
163 printf ("** Bad Signature: expected 0x%04x, got 0x%04x\n",
164 MAC_DRIVER_MAGIC, ddb_p->signature);
165#endif
166 return (-1);
167 }
168 return (0);
169}
170
171/*
172 * Read Partition Descriptor Block
173 */
Simon Glass4101f682016-02-29 15:25:34 -0700174static int part_mac_read_pdb(struct blk_desc *dev_desc, int part,
175 mac_partition_t *pdb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000176{
177 int n = 1;
178
179 for (;;) {
180 /*
wdenk8bde7f72003-06-27 21:31:46 +0000181 * We must always read the descritpor block for
182 * partition 1 first since this is the only way to
183 * know how many partitions we have.
wdenkfe8c2802002-11-03 00:38:21 +0000184 */
Stephen Warren7c4213f2015-12-07 11:38:48 -0700185 if (dev_desc->block_read(dev_desc, n, 1, (ulong *)pdb_p) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000186 printf ("** Can't read Partition Map on %d:%d **\n",
187 dev_desc->dev, n);
188 return (-1);
189 }
190
191 if (pdb_p->signature != MAC_PARTITION_MAGIC) {
192 printf ("** Bad Signature on %d:%d: "
193 "expected 0x%04x, got 0x%04x\n",
194 dev_desc->dev, n, MAC_PARTITION_MAGIC, pdb_p->signature);
195 return (-1);
196 }
197
198 if (n == part)
199 return (0);
200
201 if ((part < 1) || (part > pdb_p->map_count)) {
202 printf ("** Invalid partition %d:%d [%d:1...%d:%d only]\n",
203 dev_desc->dev, part,
204 dev_desc->dev,
205 dev_desc->dev, pdb_p->map_count);
206 return (-1);
207 }
208
209 /* update partition count */
210 n = part;
211 }
212
213 /* NOTREACHED */
214}
215
Simon Glass96e5b032016-02-29 15:25:47 -0700216static int get_partition_info_mac(struct blk_desc *dev_desc, int part,
217 disk_partition_t *info)
wdenkfe8c2802002-11-03 00:38:21 +0000218{
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200219 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
220 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000221
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200222 if (part_mac_read_ddb (dev_desc, ddesc)) {
wdenkfe8c2802002-11-03 00:38:21 +0000223 return (-1);
224 }
225
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200226 info->blksz = ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +0000227
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200228 if (part_mac_read_pdb (dev_desc, part, mpart)) {
wdenkfe8c2802002-11-03 00:38:21 +0000229 return (-1);
230 }
231
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200232 info->start = mpart->start_block;
233 info->size = mpart->block_count;
234 memcpy (info->type, mpart->type, sizeof(info->type));
235 memcpy (info->name, mpart->name, sizeof(info->name));
wdenkfe8c2802002-11-03 00:38:21 +0000236
237 return (0);
238}
239
Simon Glass96e5b032016-02-29 15:25:47 -0700240U_BOOT_PART_TYPE(mac) = {
241 .name = "MAC",
242 .part_type = PART_TYPE_MAC,
243 .get_info = get_partition_info_mac,
244 .print = print_part_mac,
245 .test = test_part_mac,
246};
Jon Loeligercde5c642007-07-09 17:22:37 -0500247#endif