]>
Commit | Line | Data |
---|---|---|
3cf7f131 RM |
1 | /* |
2 | * BCM47XX MTD partitioning | |
3 | * | |
4 | * Copyright © 2012 Rafał Miłecki <[email protected]> | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License version 2 as | |
8 | * published by the Free Software Foundation. | |
9 | * | |
10 | */ | |
11 | ||
12 | #include <linux/module.h> | |
13 | #include <linux/kernel.h> | |
14 | #include <linux/slab.h> | |
15 | #include <linux/mtd/mtd.h> | |
16 | #include <linux/mtd/partitions.h> | |
3cf7f131 RM |
17 | |
18 | /* 10 parts were found on sflash on Netgear WNDR4500 */ | |
19 | #define BCM47XXPART_MAX_PARTS 12 | |
20 | ||
5ca1088f RM |
21 | /* |
22 | * Amount of bytes we read when analyzing each block of flash memory. | |
23 | * Set it big enough to allow detecting partition and reading important data. | |
24 | */ | |
4f8aaf72 | 25 | #define BCM47XXPART_BYTES_TO_READ 0x4e8 |
5ca1088f | 26 | |
3cf7f131 RM |
27 | /* Magics */ |
28 | #define BOARD_DATA_MAGIC 0x5246504D /* MPFR */ | |
f0501e81 | 29 | #define BOARD_DATA_MAGIC2 0xBD0D0BBD |
4f8aaf72 | 30 | #define CFE_MAGIC 0x43464531 /* 1EFC */ |
33094c73 | 31 | #define FACTORY_MAGIC 0x59544346 /* FCTY */ |
9e3afa5f | 32 | #define NVRAM_HEADER 0x48534C46 /* FLSH */ |
3cf7f131 RM |
33 | #define POT_MAGIC1 0x54544f50 /* POTT */ |
34 | #define POT_MAGIC2 0x504f /* OP */ | |
35 | #define ML_MAGIC1 0x39685a42 | |
36 | #define ML_MAGIC2 0x26594131 | |
37 | #define TRX_MAGIC 0x30524448 | |
020c6bcf | 38 | #define SQSH_MAGIC 0x71736873 /* shsq */ |
3cf7f131 RM |
39 | |
40 | struct trx_header { | |
41 | uint32_t magic; | |
42 | uint32_t length; | |
43 | uint32_t crc32; | |
44 | uint16_t flags; | |
45 | uint16_t version; | |
46 | uint32_t offset[3]; | |
47 | } __packed; | |
48 | ||
49 | static void bcm47xxpart_add_part(struct mtd_partition *part, char *name, | |
50 | u64 offset, uint32_t mask_flags) | |
51 | { | |
52 | part->name = name; | |
53 | part->offset = offset; | |
54 | part->mask_flags = mask_flags; | |
55 | } | |
56 | ||
57 | static int bcm47xxpart_parse(struct mtd_info *master, | |
58 | struct mtd_partition **pparts, | |
59 | struct mtd_part_parser_data *data) | |
60 | { | |
61 | struct mtd_partition *parts; | |
62 | uint8_t i, curr_part = 0; | |
63 | uint32_t *buf; | |
64 | size_t bytes_read; | |
65 | uint32_t offset; | |
25bad1d3 | 66 | uint32_t blocksize = master->erasesize; |
3cf7f131 | 67 | struct trx_header *trx; |
396afe55 RM |
68 | int trx_part = -1; |
69 | int last_trx_part = -1; | |
91d542f4 | 70 | int possible_nvram_sizes[] = { 0x8000, 0xF000, 0x10000, }; |
3cf7f131 | 71 | |
25bad1d3 HM |
72 | if (blocksize <= 0x10000) |
73 | blocksize = 0x10000; | |
3cf7f131 RM |
74 | |
75 | /* Alloc */ | |
76 | parts = kzalloc(sizeof(struct mtd_partition) * BCM47XXPART_MAX_PARTS, | |
77 | GFP_KERNEL); | |
99b1d188 HM |
78 | if (!parts) |
79 | return -ENOMEM; | |
80 | ||
5ca1088f | 81 | buf = kzalloc(BCM47XXPART_BYTES_TO_READ, GFP_KERNEL); |
99b1d188 HM |
82 | if (!buf) { |
83 | kfree(parts); | |
84 | return -ENOMEM; | |
85 | } | |
3cf7f131 RM |
86 | |
87 | /* Parse block by block looking for magics */ | |
88 | for (offset = 0; offset <= master->size - blocksize; | |
89 | offset += blocksize) { | |
90 | /* Nothing more in higher memory */ | |
91 | if (offset >= 0x2000000) | |
92 | break; | |
93 | ||
00b79860 | 94 | if (curr_part >= BCM47XXPART_MAX_PARTS) { |
3cf7f131 RM |
95 | pr_warn("Reached maximum number of partitions, scanning stopped!\n"); |
96 | break; | |
97 | } | |
98 | ||
99 | /* Read beginning of the block */ | |
5ca1088f | 100 | if (mtd_read(master, offset, BCM47XXPART_BYTES_TO_READ, |
3cf7f131 RM |
101 | &bytes_read, (uint8_t *)buf) < 0) { |
102 | pr_err("mtd_read error while parsing (offset: 0x%X)!\n", | |
103 | offset); | |
104 | continue; | |
105 | } | |
106 | ||
4f8aaf72 RM |
107 | /* Magic or small NVRAM at 0x400 */ |
108 | if ((buf[0x4e0 / 4] == CFE_MAGIC && buf[0x4e4 / 4] == CFE_MAGIC) || | |
109 | (buf[0x400 / 4] == NVRAM_HEADER)) { | |
3cf7f131 RM |
110 | bcm47xxpart_add_part(&parts[curr_part++], "boot", |
111 | offset, MTD_WRITEABLE); | |
112 | continue; | |
113 | } | |
114 | ||
3cf7f131 RM |
115 | /* |
116 | * board_data starts with board_id which differs across boards, | |
117 | * but we can use 'MPFR' (hopefully) magic at 0x100 | |
118 | */ | |
119 | if (buf[0x100 / 4] == BOARD_DATA_MAGIC) { | |
120 | bcm47xxpart_add_part(&parts[curr_part++], "board_data", | |
121 | offset, MTD_WRITEABLE); | |
122 | continue; | |
123 | } | |
124 | ||
33094c73 RM |
125 | /* Found on Huawei E970 */ |
126 | if (buf[0x000 / 4] == FACTORY_MAGIC) { | |
127 | bcm47xxpart_add_part(&parts[curr_part++], "factory", | |
128 | offset, MTD_WRITEABLE); | |
129 | continue; | |
130 | } | |
131 | ||
3cf7f131 RM |
132 | /* POT(TOP) */ |
133 | if (buf[0x000 / 4] == POT_MAGIC1 && | |
134 | (buf[0x004 / 4] & 0xFFFF) == POT_MAGIC2) { | |
135 | bcm47xxpart_add_part(&parts[curr_part++], "POT", offset, | |
136 | MTD_WRITEABLE); | |
137 | continue; | |
138 | } | |
139 | ||
140 | /* ML */ | |
141 | if (buf[0x010 / 4] == ML_MAGIC1 && | |
142 | buf[0x014 / 4] == ML_MAGIC2) { | |
143 | bcm47xxpart_add_part(&parts[curr_part++], "ML", offset, | |
144 | MTD_WRITEABLE); | |
145 | continue; | |
146 | } | |
147 | ||
148 | /* TRX */ | |
149 | if (buf[0x000 / 4] == TRX_MAGIC) { | |
108ebcd8 RM |
150 | if (BCM47XXPART_MAX_PARTS - curr_part < 4) { |
151 | pr_warn("Not enough partitions left to register trx, scanning stopped!\n"); | |
152 | break; | |
153 | } | |
154 | ||
3cf7f131 RM |
155 | trx = (struct trx_header *)buf; |
156 | ||
396afe55 RM |
157 | trx_part = curr_part; |
158 | bcm47xxpart_add_part(&parts[curr_part++], "firmware", | |
159 | offset, 0); | |
160 | ||
3cf7f131 RM |
161 | i = 0; |
162 | /* We have LZMA loader if offset[2] points to sth */ | |
163 | if (trx->offset[2]) { | |
164 | bcm47xxpart_add_part(&parts[curr_part++], | |
165 | "loader", | |
166 | offset + trx->offset[i], | |
167 | 0); | |
168 | i++; | |
169 | } | |
170 | ||
171 | bcm47xxpart_add_part(&parts[curr_part++], "linux", | |
172 | offset + trx->offset[i], 0); | |
173 | i++; | |
174 | ||
175 | /* | |
176 | * Pure rootfs size is known and can be calculated as: | |
177 | * trx->length - trx->offset[i]. We don't fill it as | |
178 | * we want to have jffs2 (overlay) in the same mtd. | |
179 | */ | |
180 | bcm47xxpart_add_part(&parts[curr_part++], "rootfs", | |
181 | offset + trx->offset[i], 0); | |
182 | i++; | |
183 | ||
396afe55 RM |
184 | last_trx_part = curr_part - 1; |
185 | ||
3cf7f131 RM |
186 | /* |
187 | * We have whole TRX scanned, skip to the next part. Use | |
188 | * roundown (not roundup), as the loop will increase | |
189 | * offset in next step. | |
190 | */ | |
191 | offset = rounddown(offset + trx->length, blocksize); | |
192 | continue; | |
193 | } | |
020c6bcf RM |
194 | |
195 | /* Squashfs on devices not using TRX */ | |
196 | if (buf[0x000 / 4] == SQSH_MAGIC) { | |
197 | bcm47xxpart_add_part(&parts[curr_part++], "rootfs", | |
198 | offset, 0); | |
199 | continue; | |
024629fd RM |
200 | } |
201 | ||
202 | /* | |
203 | * New (ARM?) devices may have NVRAM in some middle block. Last | |
204 | * block will be checked later, so skip it. | |
205 | */ | |
206 | if (offset != master->size - blocksize && | |
207 | buf[0x000 / 4] == NVRAM_HEADER) { | |
208 | bcm47xxpart_add_part(&parts[curr_part++], "nvram", | |
209 | offset, 0); | |
210 | continue; | |
020c6bcf | 211 | } |
f0501e81 RM |
212 | |
213 | /* Read middle of the block */ | |
214 | if (mtd_read(master, offset + 0x8000, 0x4, | |
215 | &bytes_read, (uint8_t *)buf) < 0) { | |
216 | pr_err("mtd_read error while parsing (offset: 0x%X)!\n", | |
217 | offset); | |
218 | continue; | |
219 | } | |
220 | ||
221 | /* Some devices (ex. WNDR3700v3) don't have a standard 'MPFR' */ | |
222 | if (buf[0x000 / 4] == BOARD_DATA_MAGIC2) { | |
223 | bcm47xxpart_add_part(&parts[curr_part++], "board_data", | |
224 | offset, MTD_WRITEABLE); | |
225 | continue; | |
226 | } | |
3cf7f131 | 227 | } |
91d542f4 RM |
228 | |
229 | /* Look for NVRAM at the end of the last block. */ | |
230 | for (i = 0; i < ARRAY_SIZE(possible_nvram_sizes); i++) { | |
00b79860 | 231 | if (curr_part >= BCM47XXPART_MAX_PARTS) { |
91d542f4 RM |
232 | pr_warn("Reached maximum number of partitions, scanning stopped!\n"); |
233 | break; | |
234 | } | |
235 | ||
236 | offset = master->size - possible_nvram_sizes[i]; | |
237 | if (mtd_read(master, offset, 0x4, &bytes_read, | |
238 | (uint8_t *)buf) < 0) { | |
239 | pr_err("mtd_read error while reading at offset 0x%X!\n", | |
240 | offset); | |
241 | continue; | |
242 | } | |
243 | ||
244 | /* Standard NVRAM */ | |
245 | if (buf[0] == NVRAM_HEADER) { | |
246 | bcm47xxpart_add_part(&parts[curr_part++], "nvram", | |
247 | master->size - blocksize, 0); | |
248 | break; | |
249 | } | |
250 | } | |
251 | ||
3cf7f131 RM |
252 | kfree(buf); |
253 | ||
254 | /* | |
255 | * Assume that partitions end at the beginning of the one they are | |
256 | * followed by. | |
257 | */ | |
648bdbee RM |
258 | for (i = 0; i < curr_part; i++) { |
259 | u64 next_part_offset = (i < curr_part - 1) ? | |
260 | parts[i + 1].offset : master->size; | |
261 | ||
262 | parts[i].size = next_part_offset - parts[i].offset; | |
396afe55 RM |
263 | if (i == last_trx_part && trx_part >= 0) |
264 | parts[trx_part].size = next_part_offset - | |
265 | parts[trx_part].offset; | |
648bdbee | 266 | } |
3cf7f131 RM |
267 | |
268 | *pparts = parts; | |
269 | return curr_part; | |
270 | }; | |
271 | ||
272 | static struct mtd_part_parser bcm47xxpart_mtd_parser = { | |
273 | .owner = THIS_MODULE, | |
274 | .parse_fn = bcm47xxpart_parse, | |
275 | .name = "bcm47xxpart", | |
276 | }; | |
277 | ||
278 | static int __init bcm47xxpart_init(void) | |
279 | { | |
6e14a61d AL |
280 | register_mtd_parser(&bcm47xxpart_mtd_parser); |
281 | return 0; | |
3cf7f131 RM |
282 | } |
283 | ||
284 | static void __exit bcm47xxpart_exit(void) | |
285 | { | |
286 | deregister_mtd_parser(&bcm47xxpart_mtd_parser); | |
287 | } | |
288 | ||
289 | module_init(bcm47xxpart_init); | |
290 | module_exit(bcm47xxpart_exit); | |
291 | ||
292 | MODULE_LICENSE("GPL"); | |
293 | MODULE_DESCRIPTION("MTD partitioning for BCM47XX flash memories"); |