blob: 81a65823be9939d72b4441d3e3c462b95e236c21 [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
32
Simon Glasse7762912023-08-24 13:55:29 -060033static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p);
34static int part_mac_read_pdb(struct blk_desc *desc, int part,
Simon Glasse3394752016-02-29 15:25:34 -070035 mac_partition_t *pdb_p);
wdenkfe8c2802002-11-03 00:38:21 +000036
37/*
38 * Test for a valid MAC partition
39 */
Simon Glasse7762912023-08-24 13:55:29 -060040static int part_test_mac(struct blk_desc *desc)
wdenkfe8c2802002-11-03 00:38:21 +000041{
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020042 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
43 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +000044 ulong i, n;
45
Simon Glasse7762912023-08-24 13:55:29 -060046 if (part_mac_read_ddb(desc, ddesc)) {
Heinrich Schuchardtf6237c92017-08-29 18:36:59 +020047 /*
48 * error reading Driver Descriptor Block,
49 * or no valid Signature
50 */
wdenkfe8c2802002-11-03 00:38:21 +000051 return (-1);
52 }
53
54 n = 1; /* assuming at least one partition */
55 for (i=1; i<=n; ++i) {
Simon Glasse7762912023-08-24 13:55:29 -060056 if ((blk_dread(desc, i, 1, (ulong *)mpart) != 1) ||
57 mpart->signature != MAC_PARTITION_MAGIC) {
wdenkfe8c2802002-11-03 00:38:21 +000058 return (-1);
59 }
60 /* update partition count */
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020061 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +000062 }
63 return (0);
64}
65
Simon Glasse7762912023-08-24 13:55:29 -060066static void part_print_mac(struct blk_desc *desc)
wdenkfe8c2802002-11-03 00:38:21 +000067{
68 ulong i, n;
Benoît Thébaudeaubca93832012-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
Simon Glasse7762912023-08-24 13:55:29 -060073 if (part_mac_read_ddb(desc, ddesc)) {
Heinrich Schuchardtf6237c92017-08-29 18:36:59 +020074 /*
75 * error reading Driver Descriptor Block,
76 * or no valid Signature
77 */
wdenkfe8c2802002-11-03 00:38:21 +000078 return;
79 }
80
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020081 n = ddesc->blk_count;
wdenkfe8c2802002-11-03 00:38:21 +000082
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020083 mb = ldiv(n, ((1024 * 1024) / ddesc->blk_size)); /* MB */
wdenkfe8c2802002-11-03 00:38:21 +000084 /* round to 1 digit */
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020085 mb.rem *= 10 * ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +000086 mb.rem += 512 * 1024;
87 mb.rem /= 1024 * 1024;
88
89 gb = ldiv(10 * mb.quot + mb.rem, 10240);
90 gb.rem += 512;
91 gb.rem /= 1024;
92
93
94 printf ("Block Size=%d, Number of Blocks=%d, "
95 "Total Capacity: %ld.%ld MB = %ld.%ld GB\n"
96 "DeviceType=0x%x, DeviceId=0x%x\n\n"
97 " #: type name"
98 " length base (size)\n",
Benoît Thébaudeaubca93832012-07-13 21:31:03 +020099 ddesc->blk_size,
100 ddesc->blk_count,
wdenkfe8c2802002-11-03 00:38:21 +0000101 mb.quot, mb.rem, gb.quot, gb.rem,
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200102 ddesc->dev_type, ddesc->dev_id
wdenkfe8c2802002-11-03 00:38:21 +0000103 );
104
105 n = 1; /* assuming at least one partition */
106 for (i=1; i<=n; ++i) {
107 ulong bytes;
108 char c;
109
110 printf ("%4ld: ", i);
Simon Glasse7762912023-08-24 13:55:29 -0600111 if (blk_dread(desc, i, 1, (ulong *)mpart) != 1) {
wdenkfe8c2802002-11-03 00:38:21 +0000112 printf ("** Can't read Partition Map on %d:%ld **\n",
Simon Glasse7762912023-08-24 13:55:29 -0600113 desc->devnum, i);
wdenkfe8c2802002-11-03 00:38:21 +0000114 return;
115 }
116
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200117 if (mpart->signature != MAC_PARTITION_MAGIC) {
Simon Glass2f26fff2016-02-29 15:25:51 -0700118 printf("** Bad Signature on %d:%ld - expected 0x%04x, got 0x%04x\n",
Simon Glasse7762912023-08-24 13:55:29 -0600119 desc->devnum, i, MAC_PARTITION_MAGIC,
Simon Glass2f26fff2016-02-29 15:25:51 -0700120 mpart->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000121 return;
122 }
123
124 /* update partition count */
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200125 n = mpart->map_count;
wdenkfe8c2802002-11-03 00:38:21 +0000126
127 c = 'k';
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200128 bytes = mpart->block_count;
129 bytes /= (1024 / ddesc->blk_size); /* kB; assumes blk_size == 512 */
wdenkfe8c2802002-11-03 00:38:21 +0000130 if (bytes >= 1024) {
131 bytes >>= 10;
132 c = 'M';
133 }
134 if (bytes >= 1024) {
135 bytes >>= 10;
136 c = 'G';
137 }
138
139 printf ("%20.32s %-18.32s %10u @ %-10u (%3ld%c)\n",
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200140 mpart->type,
141 mpart->name,
142 mpart->block_count,
143 mpart->start_block,
wdenkfe8c2802002-11-03 00:38:21 +0000144 bytes, c
145 );
146 }
147
148 return;
149}
150
151
152/*
153 * Read Device Descriptor Block
154 */
Simon Glasse7762912023-08-24 13:55:29 -0600155static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000156{
Simon Glasse7762912023-08-24 13:55:29 -0600157 if (blk_dread(desc, 0, 1, (ulong *)ddb_p) != 1) {
Bin Meng78ac30a2017-09-03 18:44:23 -0700158 debug("** Can't read Driver Descriptor Block **\n");
wdenkfe8c2802002-11-03 00:38:21 +0000159 return (-1);
160 }
161
162 if (ddb_p->signature != MAC_DRIVER_MAGIC) {
wdenkfe8c2802002-11-03 00:38:21 +0000163 return (-1);
164 }
165 return (0);
166}
167
168/*
169 * Read Partition Descriptor Block
170 */
Simon Glasse7762912023-08-24 13:55:29 -0600171static int part_mac_read_pdb(struct blk_desc *desc, int part,
Simon Glasse3394752016-02-29 15:25:34 -0700172 mac_partition_t *pdb_p)
wdenkfe8c2802002-11-03 00:38:21 +0000173{
174 int n = 1;
175
176 for (;;) {
177 /*
wdenk57b2d802003-06-27 21:31:46 +0000178 * We must always read the descritpor block for
179 * partition 1 first since this is the only way to
180 * know how many partitions we have.
wdenkfe8c2802002-11-03 00:38:21 +0000181 */
Simon Glasse7762912023-08-24 13:55:29 -0600182 if (blk_dread(desc, n, 1, (ulong *)pdb_p) != 1) {
183 printf("** Can't read Partition Map on %d:%d **\n",
184 desc->devnum, n);
wdenkfe8c2802002-11-03 00:38:21 +0000185 return (-1);
186 }
187
188 if (pdb_p->signature != MAC_PARTITION_MAGIC) {
Simon Glass2f26fff2016-02-29 15:25:51 -0700189 printf("** Bad Signature on %d:%d: expected 0x%04x, got 0x%04x\n",
Simon Glasse7762912023-08-24 13:55:29 -0600190 desc->devnum, n, MAC_PARTITION_MAGIC,
Simon Glass2f26fff2016-02-29 15:25:51 -0700191 pdb_p->signature);
wdenkfe8c2802002-11-03 00:38:21 +0000192 return (-1);
193 }
194
195 if (n == part)
196 return (0);
197
198 if ((part < 1) || (part > pdb_p->map_count)) {
Simon Glasse7762912023-08-24 13:55:29 -0600199 printf("** Invalid partition %d:%d [%d:1...%d:%d only]\n",
200 desc->devnum, part, desc->devnum, desc->devnum,
201 pdb_p->map_count);
wdenkfe8c2802002-11-03 00:38:21 +0000202 return (-1);
203 }
204
205 /* update partition count */
206 n = part;
207 }
208
209 /* NOTREACHED */
210}
211
Simon Glasse7762912023-08-24 13:55:29 -0600212static int part_get_info_mac(struct blk_desc *desc, int part,
213 struct disk_partition *info)
wdenkfe8c2802002-11-03 00:38:21 +0000214{
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200215 ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1);
216 ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000217
Simon Glasse7762912023-08-24 13:55:29 -0600218 if (part_mac_read_ddb(desc, ddesc))
219 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000220
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200221 info->blksz = ddesc->blk_size;
wdenkfe8c2802002-11-03 00:38:21 +0000222
Simon Glasse7762912023-08-24 13:55:29 -0600223 if (part_mac_read_pdb(desc, part, mpart))
224 return -1;
wdenkfe8c2802002-11-03 00:38:21 +0000225
Benoît Thébaudeaubca93832012-07-13 21:31:03 +0200226 info->start = mpart->start_block;
227 info->size = mpart->block_count;
228 memcpy (info->type, mpart->type, sizeof(info->type));
229 memcpy (info->name, mpart->name, sizeof(info->name));
wdenkfe8c2802002-11-03 00:38:21 +0000230
231 return (0);
232}
233
Simon Glass83ce5632016-02-29 15:25:47 -0700234U_BOOT_PART_TYPE(mac) = {
235 .name = "MAC",
236 .part_type = PART_TYPE_MAC,
Petr Kulhavy712257e2016-09-09 10:27:15 +0200237 .max_entries = MAC_ENTRY_NUMBERS,
Simon Glassb89a8442016-02-29 15:25:48 -0700238 .get_info = part_get_info_mac,
Simon Glass0f1c9522016-02-29 15:26:04 -0700239 .print = part_print_mac,
240 .test = part_test_mac,
Simon Glass83ce5632016-02-29 15:25:47 -0700241};