aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-03-01 11:54:33 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-03-01 11:54:33 +0000
commitc762548eeeba26d5da58eebe6f26677b06a40208 (patch)
tree64445dd6ab79f0206ebe7960522d6c186a3bef92 /target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c
parent01076affd3ba2ce4d00a77ab30af8ac537f74f3b (diff)
downloadupstream-c762548eeeba26d5da58eebe6f26677b06a40208.tar.gz
upstream-c762548eeeba26d5da58eebe6f26677b06a40208.tar.bz2
upstream-c762548eeeba26d5da58eebe6f26677b06a40208.zip
flash related cleanups
SVN-Revision: 6446
Diffstat (limited to 'target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c')
-rw-r--r--target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c b/target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c
index c6aaeede81..65916b17ba 100644
--- a/target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c
+++ b/target/linux/brcm47xx-2.6/files/drivers/ssb/driver_mips/mips.c
@@ -165,12 +165,16 @@ static void ssb_mips_flash_detect(struct ssb_mipscore *mcore)
{
struct ssb_bus *bus = mcore->dev->bus;
+ mcore->flash_buswidth = 2;
if (bus->chipco.dev) {
mcore->flash_window = 0x1c000000;
- mcore->flash_window_size = 0x800000;
+ mcore->flash_window_size = 0x02000000;
+ if ((ssb_read32(bus->chipco.dev, SSB_CHIPCO_FLASH_CFG)
+ & SSB_CHIPCO_CFG_DS16) == 0)
+ mcore->flash_buswidth = 1;
} else {
mcore->flash_window = 0x1fc00000;
- mcore->flash_window_size = 0x400000;
+ mcore->flash_window_size = 0x00400000;
}
}