]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
fe8c2806 WD |
2 | /* |
3 | * (C) Copyright 2000 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
fe8c2806 WD |
5 | */ |
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 | ||
fe8c2806 | 15 | #include <command.h> |
f7ae49fc | 16 | #include <log.h> |
cf92e05c | 17 | #include <memalign.h> |
fe8c2806 | 18 | #include <ide.h> |
fe8c2806 | 19 | #include "part_mac.h" |
e6f6f9e6 | 20 | #include <part.h> |
fe8c2806 | 21 | |
fe8c2806 WD |
22 | /* stdlib.h causes some compatibility problems; should fixe these! -- wd */ |
23 | #ifndef __ldiv_t_defined | |
24 | typedef struct { | |
25 | long int quot; /* Quotient */ | |
26 | long int rem; /* Remainder */ | |
27 | } ldiv_t; | |
28 | extern ldiv_t ldiv (long int __numer, long int __denom); | |
29 | # define __ldiv_t_defined 1 | |
30 | #endif | |
31 | ||
060148a3 SG |
32 | static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p); |
33 | static int part_mac_read_pdb(struct blk_desc *desc, int part, | |
4101f687 | 34 | mac_partition_t *pdb_p); |
fe8c2806 WD |
35 | |
36 | /* | |
37 | * Test for a valid MAC partition | |
38 | */ | |
060148a3 | 39 | static int part_test_mac(struct blk_desc *desc) |
fe8c2806 | 40 | { |
64a08a9f BT |
41 | ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1); |
42 | ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1); | |
fe8c2806 WD |
43 | ulong i, n; |
44 | ||
060148a3 | 45 | if (part_mac_read_ddb(desc, ddesc)) { |
5eae466e HS |
46 | /* |
47 | * error reading Driver Descriptor Block, | |
48 | * or no valid Signature | |
49 | */ | |
fe8c2806 WD |
50 | return (-1); |
51 | } | |
52 | ||
53 | n = 1; /* assuming at least one partition */ | |
54 | for (i=1; i<=n; ++i) { | |
060148a3 SG |
55 | if ((blk_dread(desc, i, 1, (ulong *)mpart) != 1) || |
56 | mpart->signature != MAC_PARTITION_MAGIC) { | |
fe8c2806 WD |
57 | return (-1); |
58 | } | |
59 | /* update partition count */ | |
64a08a9f | 60 | n = mpart->map_count; |
fe8c2806 WD |
61 | } |
62 | return (0); | |
63 | } | |
64 | ||
060148a3 | 65 | static void part_print_mac(struct blk_desc *desc) |
fe8c2806 WD |
66 | { |
67 | ulong i, n; | |
64a08a9f BT |
68 | ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1); |
69 | ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1); | |
fe8c2806 WD |
70 | ldiv_t mb, gb; |
71 | ||
060148a3 | 72 | if (part_mac_read_ddb(desc, ddesc)) { |
5eae466e HS |
73 | /* |
74 | * error reading Driver Descriptor Block, | |
75 | * or no valid Signature | |
76 | */ | |
fe8c2806 WD |
77 | return; |
78 | } | |
79 | ||
64a08a9f | 80 | n = ddesc->blk_count; |
fe8c2806 | 81 | |
64a08a9f | 82 | mb = ldiv(n, ((1024 * 1024) / ddesc->blk_size)); /* MB */ |
fe8c2806 | 83 | /* round to 1 digit */ |
64a08a9f | 84 | mb.rem *= 10 * ddesc->blk_size; |
fe8c2806 WD |
85 | mb.rem += 512 * 1024; |
86 | mb.rem /= 1024 * 1024; | |
87 | ||
88 | gb = ldiv(10 * mb.quot + mb.rem, 10240); | |
89 | gb.rem += 512; | |
90 | gb.rem /= 1024; | |
91 | ||
fe8c2806 WD |
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", | |
64a08a9f BT |
97 | ddesc->blk_size, |
98 | ddesc->blk_count, | |
fe8c2806 | 99 | mb.quot, mb.rem, gb.quot, gb.rem, |
64a08a9f | 100 | ddesc->dev_type, ddesc->dev_id |
fe8c2806 WD |
101 | ); |
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); | |
060148a3 | 109 | if (blk_dread(desc, i, 1, (ulong *)mpart) != 1) { |
fe8c2806 | 110 | printf ("** Can't read Partition Map on %d:%ld **\n", |
060148a3 | 111 | desc->devnum, i); |
fe8c2806 WD |
112 | return; |
113 | } | |
114 | ||
64a08a9f | 115 | if (mpart->signature != MAC_PARTITION_MAGIC) { |
bcce53d0 | 116 | printf("** Bad Signature on %d:%ld - expected 0x%04x, got 0x%04x\n", |
060148a3 | 117 | desc->devnum, i, MAC_PARTITION_MAGIC, |
bcce53d0 | 118 | mpart->signature); |
fe8c2806 WD |
119 | return; |
120 | } | |
121 | ||
122 | /* update partition count */ | |
64a08a9f | 123 | n = mpart->map_count; |
fe8c2806 WD |
124 | |
125 | c = 'k'; | |
64a08a9f BT |
126 | bytes = mpart->block_count; |
127 | bytes /= (1024 / ddesc->blk_size); /* kB; assumes blk_size == 512 */ | |
fe8c2806 WD |
128 | 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", | |
64a08a9f BT |
138 | mpart->type, |
139 | mpart->name, | |
140 | mpart->block_count, | |
141 | mpart->start_block, | |
fe8c2806 WD |
142 | bytes, c |
143 | ); | |
144 | } | |
145 | ||
146 | return; | |
147 | } | |
148 | ||
fe8c2806 WD |
149 | /* |
150 | * Read Device Descriptor Block | |
151 | */ | |
060148a3 | 152 | static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p) |
fe8c2806 | 153 | { |
060148a3 | 154 | if (blk_dread(desc, 0, 1, (ulong *)ddb_p) != 1) { |
337e3b89 | 155 | debug("** Can't read Driver Descriptor Block **\n"); |
fe8c2806 WD |
156 | return (-1); |
157 | } | |
158 | ||
159 | if (ddb_p->signature != MAC_DRIVER_MAGIC) { | |
fe8c2806 WD |
160 | return (-1); |
161 | } | |
162 | return (0); | |
163 | } | |
164 | ||
165 | /* | |
166 | * Read Partition Descriptor Block | |
167 | */ | |
060148a3 | 168 | static int part_mac_read_pdb(struct blk_desc *desc, int part, |
4101f687 | 169 | mac_partition_t *pdb_p) |
fe8c2806 WD |
170 | { |
171 | int n = 1; | |
172 | ||
173 | for (;;) { | |
174 | /* | |
8bde7f77 WD |
175 | * We must always read the descritpor block for |
176 | * partition 1 first since this is the only way to | |
177 | * know how many partitions we have. | |
fe8c2806 | 178 | */ |
060148a3 SG |
179 | if (blk_dread(desc, n, 1, (ulong *)pdb_p) != 1) { |
180 | printf("** Can't read Partition Map on %d:%d **\n", | |
181 | desc->devnum, n); | |
fe8c2806 WD |
182 | return (-1); |
183 | } | |
184 | ||
185 | if (pdb_p->signature != MAC_PARTITION_MAGIC) { | |
bcce53d0 | 186 | printf("** Bad Signature on %d:%d: expected 0x%04x, got 0x%04x\n", |
060148a3 | 187 | desc->devnum, n, MAC_PARTITION_MAGIC, |
bcce53d0 | 188 | pdb_p->signature); |
fe8c2806 WD |
189 | return (-1); |
190 | } | |
191 | ||
192 | if (n == part) | |
193 | return (0); | |
194 | ||
195 | if ((part < 1) || (part > pdb_p->map_count)) { | |
060148a3 SG |
196 | printf("** Invalid partition %d:%d [%d:1...%d:%d only]\n", |
197 | desc->devnum, part, desc->devnum, desc->devnum, | |
198 | pdb_p->map_count); | |
fe8c2806 WD |
199 | return (-1); |
200 | } | |
201 | ||
202 | /* update partition count */ | |
203 | n = part; | |
204 | } | |
205 | ||
206 | /* NOTREACHED */ | |
207 | } | |
208 | ||
060148a3 SG |
209 | static int part_get_info_mac(struct blk_desc *desc, int part, |
210 | struct disk_partition *info) | |
fe8c2806 | 211 | { |
64a08a9f BT |
212 | ALLOC_CACHE_ALIGN_BUFFER(mac_driver_desc_t, ddesc, 1); |
213 | ALLOC_CACHE_ALIGN_BUFFER(mac_partition_t, mpart, 1); | |
fe8c2806 | 214 | |
060148a3 SG |
215 | if (part_mac_read_ddb(desc, ddesc)) |
216 | return -1; | |
fe8c2806 | 217 | |
64a08a9f | 218 | info->blksz = ddesc->blk_size; |
fe8c2806 | 219 | |
060148a3 SG |
220 | if (part_mac_read_pdb(desc, part, mpart)) |
221 | return -1; | |
fe8c2806 | 222 | |
64a08a9f BT |
223 | info->start = mpart->start_block; |
224 | info->size = mpart->block_count; | |
225 | memcpy (info->type, mpart->type, sizeof(info->type)); | |
226 | memcpy (info->name, mpart->name, sizeof(info->name)); | |
fe8c2806 WD |
227 | |
228 | return (0); | |
229 | } | |
230 | ||
96e5b03c SG |
231 | U_BOOT_PART_TYPE(mac) = { |
232 | .name = "MAC", | |
233 | .part_type = PART_TYPE_MAC, | |
87b8530f | 234 | .max_entries = MAC_ENTRY_NUMBERS, |
3e8bd469 | 235 | .get_info = part_get_info_mac, |
084bf4c2 SG |
236 | .print = part_print_mac, |
237 | .test = part_test_mac, | |
96e5b03c | 238 | }; |