blob: e01ae7456618edc7427037077f1f4695107ca90f [file] [log] [blame]
Tom Rini83d290c2018-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
15#include <common.h>
16#include <command.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060017#include <log.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"
Simon Glasse6f6f9e2020-05-10 11:39:58 -060021#include <part.h>
wdenkfe8c2802002-11-03 00:38:21 +000022
Adam Ford1811a922018-02-06 12:43:56 -060023#ifdef CONFIG_HAVE_BLOCK_DEVICE
wdenkfe8c2802002-11-03 00:38:21 +000024
25/* stdlib.h causes some compatibility problems; should fixe these! -- wd */
26#ifndef __ldiv_t_defined
27typedef struct {
28 long int quot; /* Quotient */
29 long int rem; /* Remainder */
30} ldiv_t;
31extern ldiv_t ldiv (long int __numer, long int __denom);
32# define __ldiv_t_defined 1
33#endif
34
35
Simon Glass4101f682016-02-29 15:25:34 -070036static int part_mac_read_ddb(struct blk_desc *dev_desc,
37 mac_driver_desc_t *ddb_p);
38static int part_mac_read_pdb(struct blk_desc *dev_desc, int part,
39 mac_partition_t *pdb_p);
wdenkfe8c2802002-11-03 00:38:21 +000040
41/*
42 * Test for a valid MAC partition
43 */
Simon Glass084bf4c2016-02-29 15:26:04 -070044static int part_test_mac(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +000045{
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020046 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
47 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000048 ulong i, n;
49
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020050 if (part_mac_read_ddb (dev_desc, ddesc)) {
Heinrich Schuchardt5eae4662017-08-29 18:36:59 +020051 /*
52 * error reading Driver Descriptor Block,
53 * or no valid Signature
54 */
wdenkfe8c2802002-11-03 00:38:21 +000055 return (-1);
56 }
57
58 n = 1; /* assuming at least one partition */
59 for (i=1; i<=n; ++i) {
Simon Glass2a981dc2016-02-29 15:25:52 -070060 if ((blk_dread(dev_desc, i, 1, (ulong *)mpart) != 1) ||
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020061 (mpart->signature != MAC_PARTITION_MAGIC) ) {
wdenkfe8c2802002-11-03 00:38:21 +000062 return (-1);
63 }
64 /* update partition count */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020065 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +000066 }
67 return (0);
68}
69
Simon Glass084bf4c2016-02-29 15:26:04 -070070static void part_print_mac(struct blk_desc *dev_desc)
wdenkfe8c2802002-11-03 00:38:21 +000071{
72 ulong i, n;
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020073 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
74 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000075 ldiv_t mb, gb;
76
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020077 if (part_mac_read_ddb (dev_desc, ddesc)) {
Heinrich Schuchardt5eae4662017-08-29 18:36:59 +020078 /*
79 * error reading Driver Descriptor Block,
80 * or no valid Signature
81 */
wdenkfe8c2802002-11-03 00:38:21 +000082 return;
83 }
84
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020085 n = ddesc->blk_count;
wdenkfe8c2802002-11-03 00:38:21 +000086
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020087 mb = ldiv(n, ((1024 * 1024) / ddesc->blk_size)); /* MB */
wdenkfe8c2802002-11-03 00:38:21 +000088 /* round to 1 digit */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020089 mb.rem *= 10 * ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +000090 mb.rem += 512 * 1024;
91 mb.rem /= 1024 * 1024;
92
93 gb = ldiv(10 * mb.quot + mb.rem, 10240);
94 gb.rem += 512;
95 gb.rem /= 1024;
96
97
98 printf ("Block Size=%d, Number of Blocks=%d, "
99 "Total Capacity: %ld.%ld MB = %ld.%ld GB\n"
100 "DeviceType=0x%x, DeviceId=0x%x\n\n"
101 " #: type name"
102 " length base (size)\n",
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200103 ddesc->blk_size,
104 ddesc->blk_count,
wdenkfe8c2802002-11-03 00:38:21 +0000105 mb.quot, mb.rem, gb.quot, gb.rem,
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200106 ddesc->dev_type, ddesc->dev_id
wdenkfe8c2802002-11-03 00:38:21 +0000107 );
108
109 n = 1; /* assuming at least one partition */
110 for (i=1; i<=n; ++i) {
111 ulong bytes;
112 char c;
113
114 printf ("%4ld: ", i);
Simon Glass2a981dc2016-02-29 15:25:52 -0700115 if (blk_dread(dev_desc, i, 1, (ulong *)mpart) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000116 printf ("** Can't read Partition Map on %d:%ld **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700117 dev_desc->devnum, i);
wdenkfe8c2802002-11-03 00:38:21 +0000118 return;
119 }
120
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200121 if (mpart->signature != MAC_PARTITION_MAGIC) {
Simon Glassbcce53d2016-02-29 15:25:51 -0700122 printf("** Bad Signature on %d:%ld - expected 0x%04x, got 0x%04x\n",
123 dev_desc->devnum, i, MAC_PARTITION_MAGIC,
124 mpart->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000125 return;
126 }
127
128 /* update partition count */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200129 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +0000130
131 c = 'k';
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200132 bytes = mpart->block_count;
133 bytes /= (1024 / ddesc->blk_size); /* kB; assumes blk_size == 512 */
wdenkfe8c2802002-11-03 00:38:21 +0000134 if (bytes >= 1024) {
135 bytes >>= 10;
136 c = 'M';
137 }
138 if (bytes >= 1024) {
139 bytes >>= 10;
140 c = 'G';
141 }
142
143 printf ("%20.32s %-18.32s %10u @ %-10u (%3ld%c)\n",
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200144 mpart->type,
145 mpart->name,
146 mpart->block_count,
147 mpart->start_block,
wdenkfe8c2802002-11-03 00:38:21 +0000148 bytes, c
149 );
150 }
151
152 return;
153}
154
155
156/*
157 * Read Device Descriptor Block
158 */
Simon Glass4101f682016-02-29 15:25:34 -0700159static int part_mac_read_ddb(struct blk_desc *dev_desc,
160 mac_driver_desc_t *ddb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000161{
Simon Glass2a981dc2016-02-29 15:25:52 -0700162 if (blk_dread(dev_desc, 0, 1, (ulong *)ddb_p) != 1) {
Bin Meng337e3b82017-09-03 18:44:23 -0700163 debug("** Can't read Driver Descriptor Block **\n");
wdenkfe8c2802002-11-03 00:38:21 +0000164 return (-1);
165 }
166
167 if (ddb_p->signature != MAC_DRIVER_MAGIC) {
wdenkfe8c2802002-11-03 00:38:21 +0000168 return (-1);
169 }
170 return (0);
171}
172
173/*
174 * Read Partition Descriptor Block
175 */
Simon Glass4101f682016-02-29 15:25:34 -0700176static int part_mac_read_pdb(struct blk_desc *dev_desc, int part,
177 mac_partition_t *pdb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000178{
179 int n = 1;
180
181 for (;;) {
182 /*
wdenk8bde7f72003-06-27 21:31:46 +0000183 * We must always read the descritpor block for
184 * partition 1 first since this is the only way to
185 * know how many partitions we have.
wdenkfe8c2802002-11-03 00:38:21 +0000186 */
Simon Glass2a981dc2016-02-29 15:25:52 -0700187 if (blk_dread(dev_desc, n, 1, (ulong *)pdb_p) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000188 printf ("** Can't read Partition Map on %d:%d **\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700189 dev_desc->devnum, n);
wdenkfe8c2802002-11-03 00:38:21 +0000190 return (-1);
191 }
192
193 if (pdb_p->signature != MAC_PARTITION_MAGIC) {
Simon Glassbcce53d2016-02-29 15:25:51 -0700194 printf("** Bad Signature on %d:%d: expected 0x%04x, got 0x%04x\n",
195 dev_desc->devnum, n, MAC_PARTITION_MAGIC,
196 pdb_p->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000197 return (-1);
198 }
199
200 if (n == part)
201 return (0);
202
203 if ((part < 1) || (part > pdb_p->map_count)) {
204 printf ("** Invalid partition %d:%d [%d:1...%d:%d only]\n",
Simon Glassbcce53d2016-02-29 15:25:51 -0700205 dev_desc->devnum, part,
206 dev_desc->devnum,
207 dev_desc->devnum, pdb_p->map_count);
wdenkfe8c2802002-11-03 00:38:21 +0000208 return (-1);
209 }
210
211 /* update partition count */
212 n = part;
213 }
214
215 /* NOTREACHED */
216}
217
Simon Glass3e8bd462016-02-29 15:25:48 -0700218static int part_get_info_mac(struct blk_desc *dev_desc, int part,
Simon Glass05289792020-05-10 11:39:57 -0600219 struct disk_partition *info)
wdenkfe8c2802002-11-03 00:38:21 +0000220{
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200221 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
222 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000223
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200224 if (part_mac_read_ddb (dev_desc, ddesc)) {
wdenkfe8c2802002-11-03 00:38:21 +0000225 return (-1);
226 }
227
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200228 info->blksz = ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +0000229
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200230 if (part_mac_read_pdb (dev_desc, part, mpart)) {
wdenkfe8c2802002-11-03 00:38:21 +0000231 return (-1);
232 }
233
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200234 info->start = mpart->start_block;
235 info->size = mpart->block_count;
236 memcpy (info->type, mpart->type, sizeof(info->type));
237 memcpy (info->name, mpart->name, sizeof(info->name));
wdenkfe8c2802002-11-03 00:38:21 +0000238
239 return (0);
240}
241
Simon Glass96e5b032016-02-29 15:25:47 -0700242U_BOOT_PART_TYPE(mac) = {
243 .name = "MAC",
244 .part_type = PART_TYPE_MAC,
Petr Kulhavy87b85302016-09-09 10:27:15 +0200245 .max_entries = MAC_ENTRY_NUMBERS,
Simon Glass3e8bd462016-02-29 15:25:48 -0700246 .get_info = part_get_info_mac,
Simon Glass084bf4c2016-02-29 15:26:04 -0700247 .print = part_print_mac,
248 .test = part_test_mac,
Simon Glass96e5b032016-02-29 15:25:47 -0700249};
Jon Loeligercde5c642007-07-09 17:22:37 -0500250#endif