blob: db5e203be59257a4bb9d011cbd2fe93efaf45a09 [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
wdenkfe8c2802002-11-03 00:38:21 +000023/* stdlib.h causes some compatibility problems; should fixe these! -- wd */
24#ifndef __ldiv_t_defined
25typedef struct {
26 long int quot; /* Quotient */
27 long int rem; /* Remainder */
28} ldiv_t;
29extern ldiv_t ldiv (long int __numer, long int __denom);
30# define __ldiv_t_defined 1
31#endif
32
33
Simon Glass060148a2023-08-24 13:55:29 -060034static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p);
35static int part_mac_read_pdb(struct blk_desc *desc, int part,
Simon Glass4101f682016-02-29 15:25:34 -070036 mac_partition_t *pdb_p);
wdenkfe8c2802002-11-03 00:38:21 +000037
38/*
39 * Test for a valid MAC partition
40 */
Simon Glass060148a2023-08-24 13:55:29 -060041static int part_test_mac(struct blk_desc *desc)
wdenkfe8c2802002-11-03 00:38:21 +000042{
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020043 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
44 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000045 ulong i, n;
46
Simon Glass060148a2023-08-24 13:55:29 -060047 if (part_mac_read_ddb(desc, ddesc)) {
Heinrich Schuchardt5eae4662017-08-29 18:36:59 +020048 /*
49 * error reading Driver Descriptor Block,
50 * or no valid Signature
51 */
wdenkfe8c2802002-11-03 00:38:21 +000052 return (-1);
53 }
54
55 n = 1; /* assuming at least one partition */
56 for (i=1; i<=n; ++i) {
Simon Glass060148a2023-08-24 13:55:29 -060057 if ((blk_dread(desc, i, 1, (ulong *)mpart) != 1) ||
58 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 Glass060148a2023-08-24 13:55:29 -060067static void part_print_mac(struct blk_desc *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
Simon Glass060148a2023-08-24 13:55:29 -060074 if (part_mac_read_ddb(desc, ddesc)) {
Heinrich Schuchardt5eae4662017-08-29 18:36:59 +020075 /*
76 * error reading Driver Descriptor Block,
77 * or no valid Signature
78 */
wdenkfe8c2802002-11-03 00:38:21 +000079 return;
80 }
81
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020082 n = ddesc->blk_count;
wdenkfe8c2802002-11-03 00:38:21 +000083
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020084 mb = ldiv(n, ((1024 * 1024) / ddesc->blk_size)); /* MB */
wdenkfe8c2802002-11-03 00:38:21 +000085 /* round to 1 digit */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +020086 mb.rem *= 10 * ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +000087 mb.rem += 512 * 1024;
88 mb.rem /= 1024 * 1024;
89
90 gb = ldiv(10 * mb.quot + mb.rem, 10240);
91 gb.rem += 512;
92 gb.rem /= 1024;
93
94
95 printf ("Block Size=%d, Number of Blocks=%d, "
96 "Total Capacity: %ld.%ld MB = %ld.%ld GB\n"
97 "DeviceType=0x%x, DeviceId=0x%x\n\n"
98 " #: type name"
99 " length base (size)\n",
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200100 ddesc->blk_size,
101 ddesc->blk_count,
wdenkfe8c2802002-11-03 00:38:21 +0000102 mb.quot, mb.rem, gb.quot, gb.rem,
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200103 ddesc->dev_type, ddesc->dev_id
wdenkfe8c2802002-11-03 00:38:21 +0000104 );
105
106 n = 1; /* assuming at least one partition */
107 for (i=1; i<=n; ++i) {
108 ulong bytes;
109 char c;
110
111 printf ("%4ld: ", i);
Simon Glass060148a2023-08-24 13:55:29 -0600112 if (blk_dread(desc, i, 1, (ulong *)mpart) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000113 printf ("** Can't read Partition Map on %d:%ld **\n",
Simon Glass060148a2023-08-24 13:55:29 -0600114 desc->devnum, i);
wdenkfe8c2802002-11-03 00:38:21 +0000115 return;
116 }
117
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200118 if (mpart->signature != MAC_PARTITION_MAGIC) {
Simon Glassbcce53d2016-02-29 15:25:51 -0700119 printf("** Bad Signature on %d:%ld - expected 0x%04x, got 0x%04x\n",
Simon Glass060148a2023-08-24 13:55:29 -0600120 desc->devnum, i, MAC_PARTITION_MAGIC,
Simon Glassbcce53d2016-02-29 15:25:51 -0700121 mpart->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000122 return;
123 }
124
125 /* update partition count */
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200126 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +0000127
128 c = 'k';
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200129 bytes = mpart->block_count;
130 bytes /= (1024 / ddesc->blk_size); /* kB; assumes blk_size == 512 */
wdenkfe8c2802002-11-03 00:38:21 +0000131 if (bytes >= 1024) {
132 bytes >>= 10;
133 c = 'M';
134 }
135 if (bytes >= 1024) {
136 bytes >>= 10;
137 c = 'G';
138 }
139
140 printf ("%20.32s %-18.32s %10u @ %-10u (%3ld%c)\n",
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200141 mpart->type,
142 mpart->name,
143 mpart->block_count,
144 mpart->start_block,
wdenkfe8c2802002-11-03 00:38:21 +0000145 bytes, c
146 );
147 }
148
149 return;
150}
151
152
153/*
154 * Read Device Descriptor Block
155 */
Simon Glass060148a2023-08-24 13:55:29 -0600156static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000157{
Simon Glass060148a2023-08-24 13:55:29 -0600158 if (blk_dread(desc, 0, 1, (ulong *)ddb_p) != 1) {
Bin Meng337e3b82017-09-03 18:44:23 -0700159 debug("** Can't read Driver Descriptor Block **\n");
wdenkfe8c2802002-11-03 00:38:21 +0000160 return (-1);
161 }
162
163 if (ddb_p->signature != MAC_DRIVER_MAGIC) {
wdenkfe8c2802002-11-03 00:38:21 +0000164 return (-1);
165 }
166 return (0);
167}
168
169/*
170 * Read Partition Descriptor Block
171 */
Simon Glass060148a2023-08-24 13:55:29 -0600172static int part_mac_read_pdb(struct blk_desc *desc, int part,
Simon Glass4101f682016-02-29 15:25:34 -0700173 mac_partition_t *pdb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000174{
175 int n = 1;
176
177 for (;;) {
178 /*
wdenk8bde7f72003-06-27 21:31:46 +0000179 * We must always read the descritpor block for
180 * partition 1 first since this is the only way to
181 * know how many partitions we have.
wdenkfe8c2802002-11-03 00:38:21 +0000182 */
Simon Glass060148a2023-08-24 13:55:29 -0600183 if (blk_dread(desc, n, 1, (ulong *)pdb_p) != 1) {
184 printf("** Can't read Partition Map on %d:%d **\n",
185 desc->devnum, n);
wdenkfe8c2802002-11-03 00:38:21 +0000186 return (-1);
187 }
188
189 if (pdb_p->signature != MAC_PARTITION_MAGIC) {
Simon Glassbcce53d2016-02-29 15:25:51 -0700190 printf("** Bad Signature on %d:%d: expected 0x%04x, got 0x%04x\n",
Simon Glass060148a2023-08-24 13:55:29 -0600191 desc->devnum, n, MAC_PARTITION_MAGIC,
Simon Glassbcce53d2016-02-29 15:25:51 -0700192 pdb_p->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000193 return (-1);
194 }
195
196 if (n == part)
197 return (0);
198
199 if ((part < 1) || (part > pdb_p->map_count)) {
Simon Glass060148a2023-08-24 13:55:29 -0600200 printf("** Invalid partition %d:%d [%d:1...%d:%d only]\n",
201 desc->devnum, part, desc->devnum, desc->devnum,
202 pdb_p->map_count);
wdenkfe8c2802002-11-03 00:38:21 +0000203 return (-1);
204 }
205
206 /* update partition count */
207 n = part;
208 }
209
210 /* NOTREACHED */
211}
212
Simon Glass060148a2023-08-24 13:55:29 -0600213static int part_get_info_mac(struct blk_desc *desc, int part,
214 struct disk_partition *info)
wdenkfe8c2802002-11-03 00:38:21 +0000215{
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200216 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
217 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000218
Simon Glass060148a2023-08-24 13:55:29 -0600219 if (part_mac_read_ddb(desc, ddesc))
220 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000221
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200222 info->blksz = ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +0000223
Simon Glass060148a2023-08-24 13:55:29 -0600224 if (part_mac_read_pdb(desc, part, mpart))
225 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000226
Benoît Thébaudeau64a08a92012-07-13 21:31:03 +0200227 info->start = mpart->start_block;
228 info->size = mpart->block_count;
229 memcpy (info->type, mpart->type, sizeof(info->type));
230 memcpy (info->name, mpart->name, sizeof(info->name));
wdenkfe8c2802002-11-03 00:38:21 +0000231
232 return (0);
233}
234
Simon Glass96e5b032016-02-29 15:25:47 -0700235U_BOOT_PART_TYPE(mac) = {
236 .name = "MAC",
237 .part_type = PART_TYPE_MAC,
Petr Kulhavy87b85302016-09-09 10:27:15 +0200238 .max_entries = MAC_ENTRY_NUMBERS,
Simon Glass3e8bd462016-02-29 15:25:48 -0700239 .get_info = part_get_info_mac,
Simon Glass084bf4c2016-02-29 15:26:04 -0700240 .print = part_print_mac,
241 .test = part_test_mac,
Simon Glass96e5b032016-02-29 15:25:47 -0700242};