aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/bcm47xx/setup.c
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2015-10-26 06:13:16 -0400
committerRalf Baechle <ralf@linux-mips.org>2015-11-11 02:36:57 -0500
commitd8cfb5037bfc875e6dc8e09e4caceb443c04ff6a (patch)
tree329006b10d850609914659eab385b5eab4fe0001 /arch/mips/bcm47xx/setup.c
parent2f94acde42b70c81129b398c44aa09411974a16d (diff)
MIPS: BCM47xx: Fetch board info directly in callback function
This drops another symbol dependency between setup.c and sprom.c which will allow us to make SPROM code a separated module (and share it with ARM). Patch tested on Linksys WRT300N V1. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Cc: Hauke Mehrtens <hauke@hauke-m.de> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/11360/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/bcm47xx/setup.c')
-rw-r--r--arch/mips/bcm47xx/setup.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/arch/mips/bcm47xx/setup.c b/arch/mips/bcm47xx/setup.c
index 17503a05938e..6d38948f0f1e 100644
--- a/arch/mips/bcm47xx/setup.c
+++ b/arch/mips/bcm47xx/setup.c
@@ -105,11 +105,28 @@ static int bcm47xx_get_invariants(struct ssb_bus *bus,
105 struct ssb_init_invariants *iv) 105 struct ssb_init_invariants *iv)
106{ 106{
107 char buf[20]; 107 char buf[20];
108 int len, err;
108 109
109 /* Fill boardinfo structure */ 110 /* Fill boardinfo structure */
110 memset(&iv->boardinfo, 0 , sizeof(struct ssb_boardinfo)); 111 memset(&iv->boardinfo, 0 , sizeof(struct ssb_boardinfo));
111 112
112 bcm47xx_fill_ssb_boardinfo(&iv->boardinfo, NULL); 113 len = bcm47xx_nvram_getenv("boardvendor", buf, sizeof(buf));
114 if (len > 0) {
115 err = kstrtou16(strim(buf), 0, &iv->boardinfo.vendor);
116 if (err)
117 pr_warn("Couldn't parse nvram board vendor entry with value \"%s\"\n",
118 buf);
119 }
120 if (!iv->boardinfo.vendor)
121 iv->boardinfo.vendor = SSB_BOARDVENDOR_BCM;
122
123 len = bcm47xx_nvram_getenv("boardtype", buf, sizeof(buf));
124 if (len > 0) {
125 err = kstrtou16(strim(buf), 0, &iv->boardinfo.type);
126 if (err)
127 pr_warn("Couldn't parse nvram board type entry with value \"%s\"\n",
128 buf);
129 }
113 130
114 memset(&iv->sprom, 0, sizeof(struct ssb_sprom)); 131 memset(&iv->sprom, 0, sizeof(struct ssb_sprom));
115 bcm47xx_fill_sprom(&iv->sprom, NULL, false); 132 bcm47xx_fill_sprom(&iv->sprom, NULL, false);