2 * BCM47XX MTD partitioning
4 * Copyright © 2012 Rafał Miłecki <zajec5@gmail.com>
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.
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>
17 #include <bcm47xx_nvram.h>
19 /* 10 parts were found on sflash on Netgear WNDR4500 */
20 #define BCM47XXPART_MAX_PARTS 12
23 * Amount of bytes we read when analyzing each block of flash memory.
24 * Set it big enough to allow detecting partition and reading important data.
26 #define BCM47XXPART_BYTES_TO_READ 0x4e8
29 #define BOARD_DATA_MAGIC 0x5246504D /* MPFR */
30 #define BOARD_DATA_MAGIC2 0xBD0D0BBD
31 #define CFE_MAGIC 0x43464531 /* 1EFC */
32 #define FACTORY_MAGIC 0x59544346 /* FCTY */
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
38 #define SQSH_MAGIC 0x71736873 /* shsq */
49 static void bcm47xxpart_add_part(struct mtd_partition
*part
, char *name
,
50 u64 offset
, uint32_t mask_flags
)
53 part
->offset
= offset
;
54 part
->mask_flags
= mask_flags
;
57 static int bcm47xxpart_parse(struct mtd_info
*master
,
58 struct mtd_partition
**pparts
,
59 struct mtd_part_parser_data
*data
)
61 struct mtd_partition
*parts
;
62 uint8_t i
, curr_part
= 0;
66 uint32_t blocksize
= master
->erasesize
;
67 struct trx_header
*trx
;
69 int last_trx_part
= -1;
70 int possible_nvram_sizes
[] = { 0x8000, 0xF000, 0x10000, };
72 if (blocksize
<= 0x10000)
76 parts
= kzalloc(sizeof(struct mtd_partition
) * BCM47XXPART_MAX_PARTS
,
81 buf
= kzalloc(BCM47XXPART_BYTES_TO_READ
, GFP_KERNEL
);
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)
94 if (curr_part
> BCM47XXPART_MAX_PARTS
) {
95 pr_warn("Reached maximum number of partitions, scanning stopped!\n");
99 /* Read beginning of the block */
100 if (mtd_read(master
, offset
, BCM47XXPART_BYTES_TO_READ
,
101 &bytes_read
, (uint8_t *)buf
) < 0) {
102 pr_err("mtd_read error while parsing (offset: 0x%X)!\n",
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
)) {
110 bcm47xxpart_add_part(&parts
[curr_part
++], "boot",
111 offset
, MTD_WRITEABLE
);
116 * board_data starts with board_id which differs across boards,
117 * but we can use 'MPFR' (hopefully) magic at 0x100
119 if (buf
[0x100 / 4] == BOARD_DATA_MAGIC
) {
120 bcm47xxpart_add_part(&parts
[curr_part
++], "board_data",
121 offset
, MTD_WRITEABLE
);
125 /* Found on Huawei E970 */
126 if (buf
[0x000 / 4] == FACTORY_MAGIC
) {
127 bcm47xxpart_add_part(&parts
[curr_part
++], "factory",
128 offset
, MTD_WRITEABLE
);
133 if (buf
[0x000 / 4] == POT_MAGIC1
&&
134 (buf
[0x004 / 4] & 0xFFFF) == POT_MAGIC2
) {
135 bcm47xxpart_add_part(&parts
[curr_part
++], "POT", offset
,
141 if (buf
[0x010 / 4] == ML_MAGIC1
&&
142 buf
[0x014 / 4] == ML_MAGIC2
) {
143 bcm47xxpart_add_part(&parts
[curr_part
++], "ML", offset
,
149 if (buf
[0x000 / 4] == TRX_MAGIC
) {
150 trx
= (struct trx_header
*)buf
;
152 trx_part
= curr_part
;
153 bcm47xxpart_add_part(&parts
[curr_part
++], "firmware",
157 /* We have LZMA loader if offset[2] points to sth */
158 if (trx
->offset
[2]) {
159 bcm47xxpart_add_part(&parts
[curr_part
++],
161 offset
+ trx
->offset
[i
],
166 bcm47xxpart_add_part(&parts
[curr_part
++], "linux",
167 offset
+ trx
->offset
[i
], 0);
171 * Pure rootfs size is known and can be calculated as:
172 * trx->length - trx->offset[i]. We don't fill it as
173 * we want to have jffs2 (overlay) in the same mtd.
175 bcm47xxpart_add_part(&parts
[curr_part
++], "rootfs",
176 offset
+ trx
->offset
[i
], 0);
179 last_trx_part
= curr_part
- 1;
182 * We have whole TRX scanned, skip to the next part. Use
183 * roundown (not roundup), as the loop will increase
184 * offset in next step.
186 offset
= rounddown(offset
+ trx
->length
, blocksize
);
190 /* Squashfs on devices not using TRX */
191 if (buf
[0x000 / 4] == SQSH_MAGIC
) {
192 bcm47xxpart_add_part(&parts
[curr_part
++], "rootfs",
197 /* Read middle of the block */
198 if (mtd_read(master
, offset
+ 0x8000, 0x4,
199 &bytes_read
, (uint8_t *)buf
) < 0) {
200 pr_err("mtd_read error while parsing (offset: 0x%X)!\n",
205 /* Some devices (ex. WNDR3700v3) don't have a standard 'MPFR' */
206 if (buf
[0x000 / 4] == BOARD_DATA_MAGIC2
) {
207 bcm47xxpart_add_part(&parts
[curr_part
++], "board_data",
208 offset
, MTD_WRITEABLE
);
213 /* Look for NVRAM at the end of the last block. */
214 for (i
= 0; i
< ARRAY_SIZE(possible_nvram_sizes
); i
++) {
215 if (curr_part
> BCM47XXPART_MAX_PARTS
) {
216 pr_warn("Reached maximum number of partitions, scanning stopped!\n");
220 offset
= master
->size
- possible_nvram_sizes
[i
];
221 if (mtd_read(master
, offset
, 0x4, &bytes_read
,
222 (uint8_t *)buf
) < 0) {
223 pr_err("mtd_read error while reading at offset 0x%X!\n",
229 if (buf
[0] == NVRAM_HEADER
) {
230 bcm47xxpart_add_part(&parts
[curr_part
++], "nvram",
231 master
->size
- blocksize
, 0);
239 * Assume that partitions end at the beginning of the one they are
242 for (i
= 0; i
< curr_part
; i
++) {
243 u64 next_part_offset
= (i
< curr_part
- 1) ?
244 parts
[i
+ 1].offset
: master
->size
;
246 parts
[i
].size
= next_part_offset
- parts
[i
].offset
;
247 if (i
== last_trx_part
&& trx_part
>= 0)
248 parts
[trx_part
].size
= next_part_offset
-
249 parts
[trx_part
].offset
;
256 static struct mtd_part_parser bcm47xxpart_mtd_parser
= {
257 .owner
= THIS_MODULE
,
258 .parse_fn
= bcm47xxpart_parse
,
259 .name
= "bcm47xxpart",
262 static int __init
bcm47xxpart_init(void)
264 register_mtd_parser(&bcm47xxpart_mtd_parser
);
268 static void __exit
bcm47xxpart_exit(void)
270 deregister_mtd_parser(&bcm47xxpart_mtd_parser
);
273 module_init(bcm47xxpart_init
);
274 module_exit(bcm47xxpart_exit
);
276 MODULE_LICENSE("GPL");
277 MODULE_DESCRIPTION("MTD partitioning for BCM47XX flash memories");