blob: 3952b8d37932cb9d894e475590ed20e097151a75 [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 Glass084bf4c2016-02-29 15:26:04 -070043static int part_test_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) {
Simon Glass2a981dc2016-02-29 15:25:52 -070056 if ((blk_dread(dev_desc, i, 1, (ulong *)mpart) != 1) ||
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020057 (mpart->signature != MAC_PARTITION_MAGIC) ) {
wdenkfe8c2802002-11-03 00:38:21 +000058 return (-1);
59 }
60 /* update partition count */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020061 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +000062 }
63 return (0);
64}
65
Simon Glass084bf4c2016-02-29 15:26:04 -070066static void part_print_mac(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +000067{
68 ulong i, n;
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020069 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
70 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000071 ldiv_t mb, gb;
72
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020073 if (part_mac_read_ddb (dev_desc, ddesc)) {
wdenkfe8c2802002-11-03 00:38:21 +000074 /* error reading Driver Desriptor Block, or no valid Signature */
75 return;
76 }
77
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020078 n = ddesc->blk_count;
wdenkfe8c2802002-11-03 00:38:21 +000079
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020080 mb = ldiv(n, ((1024 * 1024) / ddesc->blk_size)); /* MB */
wdenkfe8c2802002-11-03 00:38:21 +000081 /* round to 1 digit */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020082 mb.rem *= 10 * ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +000083 mb.rem += 512 * 1024;
84 mb.rem /= 1024 * 1024;
85
86 gb = ldiv(10 * mb.quot + mb.rem, 10240);
87 gb.rem += 512;
88 gb.rem /= 1024;
89
90
91 printf ("Block Size=%d, Number of Blocks=%d, "
92 "Total Capacity: %ld.%ld MB = %ld.%ld GB\n"
93 "DeviceType=0x%x, DeviceId=0x%x\n\n"
94 " #: type name"
95 " length base (size)\n",
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020096 ddesc->blk_size,
97 ddesc->blk_count,
wdenkfe8c2802002-11-03 00:38:21 +000098 mb.quot, mb.rem, gb.quot, gb.rem,
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020099 ddesc->dev_type, ddesc->dev_id
wdenkfe8c2802002-11-03 00:38:21 +0000100 );
101
102 n = 1; /* assuming at least one partition */
103 for (i=1; i<=n; ++i) {
104 ulong bytes;
105 char c;
106
107 printf ("%4ld: ", i);
Simon Glass2a981dc2016-02-29 15:25:52 -0700108 if (blk_dread(dev_desc, i, 1, (ulong *)mpart) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000109 printf ("** Can't read Partition Map on %d:%ld **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700110 dev_desc->devnum, i);
wdenkfe8c2802002-11-03 00:38:21 +0000111 return;
112 }
113
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200114 if (mpart->signature != MAC_PARTITION_MAGIC) {
Simon Glassbcce53d2016-02-29 15:25:51 -0700115 printf("** Bad Signature on %d:%ld - expected 0x%04x, got 0x%04x\n",
116 dev_desc->devnum, i, MAC_PARTITION_MAGIC,
117 mpart->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000118 return;
119 }
120
121 /* update partition count */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200122 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +0000123
124 c = 'k';
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200125 bytes = mpart->block_count;
126 bytes /= (1024 / ddesc->blk_size); /* kB; assumes blk_size == 512 */
wdenkfe8c2802002-11-03 00:38:21 +0000127 if (bytes >= 1024) {
128 bytes >>= 10;
129 c = 'M';
130 }
131 if (bytes >= 1024) {
132 bytes >>= 10;
133 c = 'G';
134 }
135
136 printf ("%20.32s %-18.32s %10u @ %-10u (%3ld%c)\n",
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200137 mpart->type,
138 mpart->name,
139 mpart->block_count,
140 mpart->start_block,
wdenkfe8c2802002-11-03 00:38:21 +0000141 bytes, c
142 );
143 }
144
145 return;
146}
147
148
149/*
150 * Read Device Descriptor Block
151 */
Simon Glass4101f682016-02-29 15:25:34 -0700152static int part_mac_read_ddb(struct blk_desc *dev_desc,
153 mac_driver_desc_t *ddb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000154{
Simon Glass2a981dc2016-02-29 15:25:52 -0700155 if (blk_dread(dev_desc, 0, 1, (ulong *)ddb_p) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000156 printf ("** Can't read Driver Desriptor Block **\n");
157 return (-1);
158 }
159
160 if (ddb_p->signature != MAC_DRIVER_MAGIC) {
161#if 0
162 printf ("** Bad Signature: expected 0x%04x, got 0x%04x\n",
163 MAC_DRIVER_MAGIC, ddb_p->signature);
164#endif
165 return (-1);
166 }
167 return (0);
168}
169
170/*
171 * Read Partition Descriptor Block
172 */
Simon Glass4101f682016-02-29 15:25:34 -0700173static int part_mac_read_pdb(struct blk_desc *dev_desc, int part,
174 mac_partition_t *pdb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000175{
176 int n = 1;
177
178 for (;;) {
179 /*
wdenk8bde7f72003-06-27 21:31:46 +0000180 * We must always read the descritpor block for
181 * partition 1 first since this is the only way to
182 * know how many partitions we have.
wdenkfe8c2802002-11-03 00:38:21 +0000183 */
Simon Glass2a981dc2016-02-29 15:25:52 -0700184 if (blk_dread(dev_desc, n, 1, (ulong *)pdb_p) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000185 printf ("** Can't read Partition Map on %d:%d **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700186 dev_desc->devnum, n);
wdenkfe8c2802002-11-03 00:38:21 +0000187 return (-1);
188 }
189
190 if (pdb_p->signature != MAC_PARTITION_MAGIC) {
Simon Glassbcce53d2016-02-29 15:25:51 -0700191 printf("** Bad Signature on %d:%d: expected 0x%04x, got 0x%04x\n",
192 dev_desc->devnum, n, MAC_PARTITION_MAGIC,
193 pdb_p->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000194 return (-1);
195 }
196
197 if (n == part)
198 return (0);
199
200 if ((part < 1) || (part > pdb_p->map_count)) {
201 printf ("** Invalid partition %d:%d [%d:1...%d:%d only]\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700202 dev_desc->devnum, part,
203 dev_desc->devnum,
204 dev_desc->devnum, pdb_p->map_count);
wdenkfe8c2802002-11-03 00:38:21 +0000205 return (-1);
206 }
207
208 /* update partition count */
209 n = part;
210 }
211
212 /* NOTREACHED */
213}
214
Simon Glass3e8bd462016-02-29 15:25:48 -0700215static int part_get_info_mac(struct blk_desc *dev_desc, int part,
Simon Glass96e5b032016-02-29 15:25:47 -0700216 disk_partition_t *info)
wdenkfe8c2802002-11-03 00:38:21 +0000217{
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200218 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
219 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000220
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200221 if (part_mac_read_ddb (dev_desc, ddesc)) {
wdenkfe8c2802002-11-03 00:38:21 +0000222 return (-1);
223 }
224
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200225 info->blksz = ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +0000226
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200227 if (part_mac_read_pdb (dev_desc, part, mpart)) {
wdenkfe8c2802002-11-03 00:38:21 +0000228 return (-1);
229 }
230
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200231 info->start = mpart->start_block;
232 info->size = mpart->block_count;
233 memcpy (info->type, mpart->type, sizeof(info->type));
234 memcpy (info->name, mpart->name, sizeof(info->name));
wdenkfe8c2802002-11-03 00:38:21 +0000235
236 return (0);
237}
238
Simon Glass96e5b032016-02-29 15:25:47 -0700239U_BOOT_PART_TYPE(mac) = {
240 .name = "MAC",
241 .part_type = PART_TYPE_MAC,
Simon Glass3e8bd462016-02-29 15:25:48 -0700242 .get_info = part_get_info_mac,
Simon Glass084bf4c2016-02-29 15:26:04 -0700243 .print = part_print_mac,
244 .test = part_test_mac,
Simon Glass96e5b032016-02-29 15:25:47 -0700245};
Jon Loeligercde5c642007-07-09 17:22:37 -0500246#endif