aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2013-12-21 13:39:12 -0500
committerBrian Norris <computersforpeace@gmail.com>2014-01-07 13:07:37 -0500
commitf0501e81fbaa51cfc8c28c60bc3fc7965fde94f4 (patch)
tree7a280e4abc5182561764979c539bd55a706d0494
parent4f8aaf72287578c846ed7ac8c6114aacbf416e45 (diff)
mtd: bcm47xxpart: alternative MAGIC for board_data partition
Some devices (like WNDR3700v3) have board_data without MPFR magic, some extra header or extra NVRAM around 0x100. In such case we have to look for another magic which is BD 0B 0D BD (BD probably stands for Board Data). It's located "far far away", so instead of extending buffer add another mtd_read. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
-rw-r--r--drivers/mtd/bcm47xxpart.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/mtd/bcm47xxpart.c b/drivers/mtd/bcm47xxpart.c
index 877c17c7f5d3..de1eb92e42f5 100644
--- a/drivers/mtd/bcm47xxpart.c
+++ b/drivers/mtd/bcm47xxpart.c
@@ -27,6 +27,7 @@
27 27
28/* Magics */ 28/* Magics */
29#define BOARD_DATA_MAGIC 0x5246504D /* MPFR */ 29#define BOARD_DATA_MAGIC 0x5246504D /* MPFR */
30#define BOARD_DATA_MAGIC2 0xBD0D0BBD
30#define CFE_MAGIC 0x43464531 /* 1EFC */ 31#define CFE_MAGIC 0x43464531 /* 1EFC */
31#define FACTORY_MAGIC 0x59544346 /* FCTY */ 32#define FACTORY_MAGIC 0x59544346 /* FCTY */
32#define POT_MAGIC1 0x54544f50 /* POTT */ 33#define POT_MAGIC1 0x54544f50 /* POTT */
@@ -192,6 +193,21 @@ static int bcm47xxpart_parse(struct mtd_info *master,
192 offset, 0); 193 offset, 0);
193 continue; 194 continue;
194 } 195 }
196
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",
201 offset);
202 continue;
203 }
204
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);
209 continue;
210 }
195 } 211 }
196 212
197 /* Look for NVRAM at the end of the last block. */ 213 /* Look for NVRAM at the end of the last block. */