summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-06-27 18:58:00 +0000
committerFlorian Fainelli <florian@openwrt.org>2009-06-27 18:58:00 +0000
commitd02d75ba02e42db03a27c4b987ed3087ec048012 (patch)
treec6884f29bacea38226b9f8421f588c7ba8e44541 /target
parent0bb3a46217d1866c870ade477cfbcdd416c9a5e2 (diff)
downloadmaster-31e0f0ae-d02d75ba02e42db03a27c4b987ed3087ec048012.tar.gz
master-31e0f0ae-d02d75ba02e42db03a27c4b987ed3087ec048012.tar.bz2
master-31e0f0ae-d02d75ba02e42db03a27c4b987ed3087ec048012.zip
fix the flash address comment and register the flash device again with its proper physical address on 6338/6345
SVN-Revision: 16587
Diffstat (limited to 'target')
-rw-r--r--target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c
index 98c9005940..c41951b988 100644
--- a/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c
+++ b/target/linux/brcm63xx/files/arch/mips/bcm63xx/boards/board_bcm963xx.c
@@ -324,7 +324,7 @@ void __init board_prom_init(void)
u32 val;
/* read base address of boot chip select (0)
- * 6338 does not have MPI but boots from standard
+ * 6338/6345 does not have MPI but boots from standard
* MIPS Flash address */
if (BCMCPU_IS_6338() || BCMCPU_IS_6345())
val = 0x1fc00000;
@@ -554,8 +554,12 @@ int __init board_register_devices(void)
#endif
/* read base address of boot chip select (0) */
- val = bcm_mpi_readl(MPI_CSBASE_REG(0));
- val &= MPI_CSBASE_BASE_MASK;
+ if (BCMCPU_IS_6338() || BCMCPU_IS_6345())
+ val = 0x1fc0000;
+ else {
+ val = bcm_mpi_readl(MPI_CSBASE_REG(0));
+ val &= MPI_CSBASE_BASE_MASK;
+ }
mtd_resources[0].start = val;
mtd_resources[0].end = 0x1FFFFFFF;