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