summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm47xx
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2008-02-16 23:35:31 +0000
committerMichael Büsch <mb@bu3sch.de>2008-02-16 23:35:31 +0000
commit37a2dfbcf5908ec859dd9c14917151c426e69561 (patch)
tree2b0486917e948f63a7d7871027fb56f56c45b1fc /target/linux/brcm47xx
parent256c2586b5a82e3407efb346f1e32ecf71da2591 (diff)
downloadmaster-31e0f0ae-37a2dfbcf5908ec859dd9c14917151c426e69561.tar.gz
master-31e0f0ae-37a2dfbcf5908ec859dd9c14917151c426e69561.tar.bz2
master-31e0f0ae-37a2dfbcf5908ec859dd9c14917151c426e69561.zip
bcm47xx: Extract all available information from NVRAM into the sprom data structure.
SVN-Revision: 10473
Diffstat (limited to 'target/linux/brcm47xx')
-rw-r--r--target/linux/brcm47xx/files/arch/mips/bcm947xx/setup.c51
1 files changed, 43 insertions, 8 deletions
diff --git a/target/linux/brcm47xx/files/arch/mips/bcm947xx/setup.c b/target/linux/brcm47xx/files/arch/mips/bcm947xx/setup.c
index 780134818e..c3ef7b3212 100644
--- a/target/linux/brcm47xx/files/arch/mips/bcm947xx/setup.c
+++ b/target/linux/brcm47xx/files/arch/mips/bcm947xx/setup.c
@@ -95,25 +95,60 @@ static void bcm47xx_fill_sprom_nvram(struct ssb_sprom *sprom)
{
char *s;
- memset(sprom, 0, sizeof(struct ssb_sprom));
-
- sprom->revision = 3;
+ memset(sprom, 0xFF, sizeof(struct ssb_sprom));
+
+ sprom->revision = 1;
+ if ((s = nvram_get("il0macaddr")))
+ e_aton(s, sprom->r1.il0mac);
if ((s = nvram_get("et0macaddr")))
e_aton(s, sprom->r1.et0mac);
if ((s = nvram_get("et1macaddr")))
e_aton(s, sprom->r1.et1mac);
if ((s = nvram_get("et0phyaddr")))
- sprom->r1.et0phyaddr = simple_strtoul(s, NULL, 10);
+ sprom->r1.et0phyaddr = simple_strtoul(s, NULL, 0);
if ((s = nvram_get("et1phyaddr")))
- sprom->r1.et1phyaddr = simple_strtoul(s, NULL, 10);
+ sprom->r1.et1phyaddr = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("et0mdcport")))
+ sprom->r1.et0mdcport = !!simple_strtoul(s, NULL, 10);
+ if ((s = nvram_get("et1mdcport")))
+ sprom->r1.et1mdcport = !!simple_strtoul(s, NULL, 10);
+ if ((s = nvram_get("pa0b0")))
+ sprom->r1.pa0b0 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa0b1")))
+ sprom->r1.pa0b1 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa0b2")))
+ sprom->r1.pa0b2 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa1b0")))
+ sprom->r1.pa1b0 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa1b1")))
+ sprom->r1.pa1b1 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa1b2")))
+ sprom->r1.pa1b2 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("wl0gpio0")))
+ sprom->r1.gpio0 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("wl0gpio1")))
+ sprom->r1.gpio1 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("wl0gpio2")))
+ sprom->r1.gpio2 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("wl0gpio3")))
+ sprom->r1.gpio3 = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa0maxpwr")))
+ sprom->r1.maxpwr_bg = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa1maxpwr")))
+ sprom->r1.maxpwr_a = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa0itssit")))
+ sprom->r1.itssi_bg = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("pa1itssit")))
+ sprom->r1.itssi_a = simple_strtoul(s, NULL, 0);
+ if ((s = nvram_get("boardflags")))
+ sprom->r1.boardflags_lo = simple_strtoul(s, NULL, 0);
}
static int bcm47xx_get_invariants(struct ssb_bus *bus, struct ssb_init_invariants *iv)
{
char *s;
-
- // TODO
- //iv->boardinfo.vendor =
+
+ iv->boardinfo.vendor = SSB_BOARDVENDOR_BCM;
if ((s = nvram_get("boardtype")))
iv->boardinfo.type = (u16)simple_strtoul(s, NULL, 0);
if ((s = nvram_get("boardrev")))