summaryrefslogtreecommitdiffstats
path: root/arch/mips/bcm47xx/nvram.c
diff options
context:
space:
mode:
authorHauke Mehrtens2012-12-26 20:51:11 +0100
committerJohn Crispin2013-02-15 19:01:56 +0100
commitc4485671fbbb6fc453c2fb2dbb4bfc374770b0e7 (patch)
treeffd9297eb38fba7ffcefc4dd32e441ef81a4b7e6 /arch/mips/bcm47xx/nvram.c
parentMIPS: BCM47XX: return error when init of nvram failed (diff)
downloadkernel-qcow2-linux-c4485671fbbb6fc453c2fb2dbb4bfc374770b0e7.tar.gz
kernel-qcow2-linux-c4485671fbbb6fc453c2fb2dbb4bfc374770b0e7.tar.xz
kernel-qcow2-linux-c4485671fbbb6fc453c2fb2dbb4bfc374770b0e7.zip
MIPS: BCM47XX: nvram add nand flash support
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Patchwork: http://patchwork.linux-mips.org/patch/4741/ Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'arch/mips/bcm47xx/nvram.c')
-rw-r--r--arch/mips/bcm47xx/nvram.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/mips/bcm47xx/nvram.c b/arch/mips/bcm47xx/nvram.c
index 80e352e0c995..42e527121314 100644
--- a/arch/mips/bcm47xx/nvram.c
+++ b/arch/mips/bcm47xx/nvram.c
@@ -30,6 +30,7 @@ static int nvram_find_and_copy(u32 base, u32 lim)
u32 off;
u32 *src, *dst;
+ /* TODO: when nvram is on nand flash check for bad blocks first. */
off = FLASH_MIN;
while (off <= lim) {
/* Windowed flash access */
@@ -88,6 +89,12 @@ static int nvram_init_bcma(void)
u32 base;
u32 lim;
+#ifdef CONFIG_BCMA_NFLASH
+ if (cc->nflash.boot) {
+ base = BCMA_SOC_FLASH1;
+ lim = BCMA_SOC_FLASH1_SZ;
+ } else
+#endif
if (cc->pflash.present) {
base = cc->pflash.window;
lim = cc->pflash.window_size;