bcm53xx: use static NVRAM pointer for now
[openwrt/openwrt.git] / target / linux / bcm53xx / files / drivers / misc / bcm47xx-sprom.c
1 /*
2 * BCM47xx/BCM53xx nvram variable access
3 *
4 * Copyright (C) 2005 Broadcom Corporation
5 * Copyright (C) 2004 Florian Schirmer <jolt@tuxbox.org>
6 * Copyright (C) 2006 Michael Buesch <m@bues.ch>
7 * Copyright (C) 2010 Waldemar Brodkorb <wbx@openadk.org>
8 * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
9 * Copyright (C) 2010-2014 Hauke Mehrtens <hauke@hauke-m.de>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 */
16
17 #include <linux/types.h>
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/of_address.h>
22 #include <linux/device.h>
23 #include <linux/platform_device.h>
24 #include <linux/of_platform.h>
25 #include <linux/io.h>
26 #include <linux/ssb/ssb.h>
27 #include <linux/bcm47xx_nvram.h>
28 #include <linux/if_ether.h>
29 #include <linux/etherdevice.h>
30
31 struct bcm47xx_sprom_fill {
32 const char *prefix;
33 bool fallback;
34 int (*getenv)(const struct bcm47xx_sprom_fill *fill, const char *name,
35 char *val, size_t val_len);
36 const void *priv;
37 };
38
39 static void create_key(const char *prefix, const char *postfix,
40 const char *name, char *buf, int len)
41 {
42 if (prefix && postfix)
43 snprintf(buf, len, "%s%s%s", prefix, name, postfix);
44 else if (prefix)
45 snprintf(buf, len, "%s%s", prefix, name);
46 else if (postfix)
47 snprintf(buf, len, "%s%s", name, postfix);
48 else
49 snprintf(buf, len, "%s", name);
50 }
51
52 static int get_nvram_var(const struct bcm47xx_sprom_fill *fill,
53 const char *postfix, const char *name, char *buf,
54 int len)
55 {
56 char key[40];
57 int err;
58
59 create_key(fill->prefix, postfix, name, key, sizeof(key));
60
61 err = fill->getenv(fill, key, buf, len);
62 if (fill->fallback && err == -ENOENT && fill->prefix) {
63 create_key(NULL, postfix, name, key, sizeof(key));
64 err = fill->getenv(fill, key, buf, len);
65 }
66 return err;
67 }
68
69 #define NVRAM_READ_VAL(type) \
70 static void nvram_read_ ## type (const struct bcm47xx_sprom_fill *fill, \
71 const char *postfix, const char *name, \
72 type *val, type allset) \
73 { \
74 char buf[100]; \
75 int err; \
76 type var; \
77 \
78 err = get_nvram_var(fill, postfix, name, buf, sizeof(buf)); \
79 if (err < 0) \
80 return; \
81 err = kstrto ## type(strim(buf), 0, &var); \
82 if (err) { \
83 pr_warn("can not parse nvram name %s%s%s with value %s got %i\n", \
84 fill->prefix, name, postfix, buf, err); \
85 return; \
86 } \
87 if (allset && var == allset) \
88 return; \
89 *val = var; \
90 }
91
92 NVRAM_READ_VAL(u8)
93 NVRAM_READ_VAL(s8)
94 NVRAM_READ_VAL(u16)
95 NVRAM_READ_VAL(u32)
96
97 #undef NVRAM_READ_VAL
98
99 static void nvram_read_u32_2(const struct bcm47xx_sprom_fill *fill,
100 const char *name, u16 *val_lo, u16 *val_hi)
101 {
102 char buf[100];
103 int err;
104 u32 val;
105
106 err = get_nvram_var(fill, NULL, name, buf, sizeof(buf));
107 if (err < 0)
108 return;
109 err = kstrtou32(strim(buf), 0, &val);
110 if (err) {
111 pr_warn("can not parse nvram name %s%s with value %s got %i\n",
112 fill->prefix, name, buf, err);
113 return;
114 }
115 *val_lo = (val & 0x0000FFFFU);
116 *val_hi = (val & 0xFFFF0000U) >> 16;
117 }
118
119 static void nvram_read_leddc(const struct bcm47xx_sprom_fill *fill,
120 const char *name, u8 *leddc_on_time,
121 u8 *leddc_off_time)
122 {
123 char buf[100];
124 int err;
125 u32 val;
126
127 err = get_nvram_var(fill, NULL, name, buf, sizeof(buf));
128 if (err < 0)
129 return;
130 err = kstrtou32(strim(buf), 0, &val);
131 if (err) {
132 pr_warn("can not parse nvram name %s%s with value %s got %i\n",
133 fill->prefix, name, buf, err);
134 return;
135 }
136
137 if (val == 0xffff || val == 0xffffffff)
138 return;
139
140 *leddc_on_time = val & 0xff;
141 *leddc_off_time = (val >> 16) & 0xff;
142 }
143
144 static void bcm47xx_nvram_parse_macaddr(char *buf, u8 macaddr[6])
145 {
146 if (strchr(buf, ':'))
147 sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &macaddr[0],
148 &macaddr[1], &macaddr[2], &macaddr[3], &macaddr[4],
149 &macaddr[5]);
150 else if (strchr(buf, '-'))
151 sscanf(buf, "%hhx-%hhx-%hhx-%hhx-%hhx-%hhx", &macaddr[0],
152 &macaddr[1], &macaddr[2], &macaddr[3], &macaddr[4],
153 &macaddr[5]);
154 else
155 pr_warn("Can not parse mac address: %s\n", buf);
156 }
157
158 static void nvram_read_macaddr(const struct bcm47xx_sprom_fill *fill,
159 const char *name, u8 val[6])
160 {
161 char buf[100];
162 int err;
163
164 err = get_nvram_var(fill, NULL, name, buf, sizeof(buf));
165 if (err < 0)
166 return;
167
168 bcm47xx_nvram_parse_macaddr(buf, val);
169 }
170
171 static void nvram_read_alpha2(const struct bcm47xx_sprom_fill *fill,
172 const char *name, char val[2])
173 {
174 char buf[10];
175 int err;
176
177 err = get_nvram_var(fill, NULL, name, buf, sizeof(buf));
178 if (err < 0)
179 return;
180 if (buf[0] == '0')
181 return;
182 if (strlen(buf) > 2) {
183 pr_warn("alpha2 is too long %s\n", buf);
184 return;
185 }
186 memcpy(val, buf, 2);
187 }
188
189 static void bcm47xx_sprom_fill_r1234589(struct ssb_sprom *sprom,
190 const struct bcm47xx_sprom_fill *fill)
191 {
192 nvram_read_u16(fill, NULL, "devid", &sprom->dev_id, 0);
193 nvram_read_u8(fill, NULL, "ledbh0", &sprom->gpio0, 0xff);
194 nvram_read_u8(fill, NULL, "ledbh1", &sprom->gpio1, 0xff);
195 nvram_read_u8(fill, NULL, "ledbh2", &sprom->gpio2, 0xff);
196 nvram_read_u8(fill, NULL, "ledbh3", &sprom->gpio3, 0xff);
197 nvram_read_u8(fill, NULL, "aa2g", &sprom->ant_available_bg, 0);
198 nvram_read_u8(fill, NULL, "aa5g", &sprom->ant_available_a, 0);
199 nvram_read_s8(fill, NULL, "ag0", &sprom->antenna_gain.a0, 0);
200 nvram_read_s8(fill, NULL, "ag1", &sprom->antenna_gain.a1, 0);
201 nvram_read_alpha2(fill, "ccode", sprom->alpha2);
202 }
203
204 static void bcm47xx_sprom_fill_r12389(struct ssb_sprom *sprom,
205 const struct bcm47xx_sprom_fill *fill)
206 {
207 nvram_read_u16(fill, NULL, "pa0b0", &sprom->pa0b0, 0);
208 nvram_read_u16(fill, NULL, "pa0b1", &sprom->pa0b1, 0);
209 nvram_read_u16(fill, NULL, "pa0b2", &sprom->pa0b2, 0);
210 nvram_read_u8(fill, NULL, "pa0itssit", &sprom->itssi_bg, 0);
211 nvram_read_u8(fill, NULL, "pa0maxpwr", &sprom->maxpwr_bg, 0);
212 nvram_read_u16(fill, NULL, "pa1b0", &sprom->pa1b0, 0);
213 nvram_read_u16(fill, NULL, "pa1b1", &sprom->pa1b1, 0);
214 nvram_read_u16(fill, NULL, "pa1b2", &sprom->pa1b2, 0);
215 nvram_read_u8(fill, NULL, "pa1itssit", &sprom->itssi_a, 0);
216 nvram_read_u8(fill, NULL, "pa1maxpwr", &sprom->maxpwr_a, 0);
217 }
218
219 static void bcm47xx_sprom_fill_r1(struct ssb_sprom *sprom,
220 const struct bcm47xx_sprom_fill *fill)
221 {
222 nvram_read_u16(fill, NULL, "boardflags", &sprom->boardflags_lo, 0);
223 nvram_read_u8(fill, NULL, "cc", &sprom->country_code, 0);
224 }
225
226 static void bcm47xx_sprom_fill_r2389(struct ssb_sprom *sprom,
227 const struct bcm47xx_sprom_fill *fill)
228 {
229 nvram_read_u8(fill, NULL, "opo", &sprom->opo, 0);
230 nvram_read_u16(fill, NULL, "pa1lob0", &sprom->pa1lob0, 0);
231 nvram_read_u16(fill, NULL, "pa1lob1", &sprom->pa1lob1, 0);
232 nvram_read_u16(fill, NULL, "pa1lob2", &sprom->pa1lob2, 0);
233 nvram_read_u16(fill, NULL, "pa1hib0", &sprom->pa1hib0, 0);
234 nvram_read_u16(fill, NULL, "pa1hib1", &sprom->pa1hib1, 0);
235 nvram_read_u16(fill, NULL, "pa1hib2", &sprom->pa1hib2, 0);
236 nvram_read_u8(fill, NULL, "pa1lomaxpwr", &sprom->maxpwr_al, 0);
237 nvram_read_u8(fill, NULL, "pa1himaxpwr", &sprom->maxpwr_ah, 0);
238 }
239
240 static void bcm47xx_sprom_fill_r389(struct ssb_sprom *sprom,
241 const struct bcm47xx_sprom_fill *fill)
242 {
243 nvram_read_u8(fill, NULL, "bxa2g", &sprom->bxa2g, 0);
244 nvram_read_u8(fill, NULL, "rssisav2g", &sprom->rssisav2g, 0);
245 nvram_read_u8(fill, NULL, "rssismc2g", &sprom->rssismc2g, 0);
246 nvram_read_u8(fill, NULL, "rssismf2g", &sprom->rssismf2g, 0);
247 nvram_read_u8(fill, NULL, "bxa5g", &sprom->bxa5g, 0);
248 nvram_read_u8(fill, NULL, "rssisav5g", &sprom->rssisav5g, 0);
249 nvram_read_u8(fill, NULL, "rssismc5g", &sprom->rssismc5g, 0);
250 nvram_read_u8(fill, NULL, "rssismf5g", &sprom->rssismf5g, 0);
251 nvram_read_u8(fill, NULL, "tri2g", &sprom->tri2g, 0);
252 nvram_read_u8(fill, NULL, "tri5g", &sprom->tri5g, 0);
253 nvram_read_u8(fill, NULL, "tri5gl", &sprom->tri5gl, 0);
254 nvram_read_u8(fill, NULL, "tri5gh", &sprom->tri5gh, 0);
255 nvram_read_s8(fill, NULL, "rxpo2g", &sprom->rxpo2g, 0);
256 nvram_read_s8(fill, NULL, "rxpo5g", &sprom->rxpo5g, 0);
257 }
258
259 static void bcm47xx_sprom_fill_r3(struct ssb_sprom *sprom,
260 const struct bcm47xx_sprom_fill *fill)
261 {
262 nvram_read_u8(fill, NULL, "regrev", &sprom->regrev, 0);
263 nvram_read_leddc(fill, "leddc", &sprom->leddc_on_time,
264 &sprom->leddc_off_time);
265 }
266
267 static void bcm47xx_sprom_fill_r4589(struct ssb_sprom *sprom,
268 const struct bcm47xx_sprom_fill *fill)
269 {
270 nvram_read_u8(fill, NULL, "regrev", &sprom->regrev, 0);
271 nvram_read_s8(fill, NULL, "ag2", &sprom->antenna_gain.a2, 0);
272 nvram_read_s8(fill, NULL, "ag3", &sprom->antenna_gain.a3, 0);
273 nvram_read_u8(fill, NULL, "txchain", &sprom->txchain, 0xf);
274 nvram_read_u8(fill, NULL, "rxchain", &sprom->rxchain, 0xf);
275 nvram_read_u8(fill, NULL, "antswitch", &sprom->antswitch, 0xff);
276 nvram_read_leddc(fill, "leddc", &sprom->leddc_on_time,
277 &sprom->leddc_off_time);
278 }
279
280 static void bcm47xx_sprom_fill_r458(struct ssb_sprom *sprom,
281 const struct bcm47xx_sprom_fill *fill)
282 {
283 nvram_read_u16(fill, NULL, "cck2gpo", &sprom->cck2gpo, 0);
284 nvram_read_u32(fill, NULL, "ofdm2gpo", &sprom->ofdm2gpo, 0);
285 nvram_read_u32(fill, NULL, "ofdm5gpo", &sprom->ofdm5gpo, 0);
286 nvram_read_u32(fill, NULL, "ofdm5glpo", &sprom->ofdm5glpo, 0);
287 nvram_read_u32(fill, NULL, "ofdm5ghpo", &sprom->ofdm5ghpo, 0);
288 nvram_read_u16(fill, NULL, "cddpo", &sprom->cddpo, 0);
289 nvram_read_u16(fill, NULL, "stbcpo", &sprom->stbcpo, 0);
290 nvram_read_u16(fill, NULL, "bw40po", &sprom->bw40po, 0);
291 nvram_read_u16(fill, NULL, "bwduppo", &sprom->bwduppo, 0);
292 nvram_read_u16(fill, NULL, "mcs2gpo0", &sprom->mcs2gpo[0], 0);
293 nvram_read_u16(fill, NULL, "mcs2gpo1", &sprom->mcs2gpo[1], 0);
294 nvram_read_u16(fill, NULL, "mcs2gpo2", &sprom->mcs2gpo[2], 0);
295 nvram_read_u16(fill, NULL, "mcs2gpo3", &sprom->mcs2gpo[3], 0);
296 nvram_read_u16(fill, NULL, "mcs2gpo4", &sprom->mcs2gpo[4], 0);
297 nvram_read_u16(fill, NULL, "mcs2gpo5", &sprom->mcs2gpo[5], 0);
298 nvram_read_u16(fill, NULL, "mcs2gpo6", &sprom->mcs2gpo[6], 0);
299 nvram_read_u16(fill, NULL, "mcs2gpo7", &sprom->mcs2gpo[7], 0);
300 nvram_read_u16(fill, NULL, "mcs5gpo0", &sprom->mcs5gpo[0], 0);
301 nvram_read_u16(fill, NULL, "mcs5gpo1", &sprom->mcs5gpo[1], 0);
302 nvram_read_u16(fill, NULL, "mcs5gpo2", &sprom->mcs5gpo[2], 0);
303 nvram_read_u16(fill, NULL, "mcs5gpo3", &sprom->mcs5gpo[3], 0);
304 nvram_read_u16(fill, NULL, "mcs5gpo4", &sprom->mcs5gpo[4], 0);
305 nvram_read_u16(fill, NULL, "mcs5gpo5", &sprom->mcs5gpo[5], 0);
306 nvram_read_u16(fill, NULL, "mcs5gpo6", &sprom->mcs5gpo[6], 0);
307 nvram_read_u16(fill, NULL, "mcs5gpo7", &sprom->mcs5gpo[7], 0);
308 nvram_read_u16(fill, NULL, "mcs5glpo0", &sprom->mcs5glpo[0], 0);
309 nvram_read_u16(fill, NULL, "mcs5glpo1", &sprom->mcs5glpo[1], 0);
310 nvram_read_u16(fill, NULL, "mcs5glpo2", &sprom->mcs5glpo[2], 0);
311 nvram_read_u16(fill, NULL, "mcs5glpo3", &sprom->mcs5glpo[3], 0);
312 nvram_read_u16(fill, NULL, "mcs5glpo4", &sprom->mcs5glpo[4], 0);
313 nvram_read_u16(fill, NULL, "mcs5glpo5", &sprom->mcs5glpo[5], 0);
314 nvram_read_u16(fill, NULL, "mcs5glpo6", &sprom->mcs5glpo[6], 0);
315 nvram_read_u16(fill, NULL, "mcs5glpo7", &sprom->mcs5glpo[7], 0);
316 nvram_read_u16(fill, NULL, "mcs5ghpo0", &sprom->mcs5ghpo[0], 0);
317 nvram_read_u16(fill, NULL, "mcs5ghpo1", &sprom->mcs5ghpo[1], 0);
318 nvram_read_u16(fill, NULL, "mcs5ghpo2", &sprom->mcs5ghpo[2], 0);
319 nvram_read_u16(fill, NULL, "mcs5ghpo3", &sprom->mcs5ghpo[3], 0);
320 nvram_read_u16(fill, NULL, "mcs5ghpo4", &sprom->mcs5ghpo[4], 0);
321 nvram_read_u16(fill, NULL, "mcs5ghpo5", &sprom->mcs5ghpo[5], 0);
322 nvram_read_u16(fill, NULL, "mcs5ghpo6", &sprom->mcs5ghpo[6], 0);
323 nvram_read_u16(fill, NULL, "mcs5ghpo7", &sprom->mcs5ghpo[7], 0);
324 }
325
326 static void bcm47xx_sprom_fill_r45(struct ssb_sprom *sprom,
327 const struct bcm47xx_sprom_fill *fill)
328 {
329 nvram_read_u8(fill, NULL, "txpid2ga0", &sprom->txpid2g[0], 0);
330 nvram_read_u8(fill, NULL, "txpid2ga1", &sprom->txpid2g[1], 0);
331 nvram_read_u8(fill, NULL, "txpid2ga2", &sprom->txpid2g[2], 0);
332 nvram_read_u8(fill, NULL, "txpid2ga3", &sprom->txpid2g[3], 0);
333 nvram_read_u8(fill, NULL, "txpid5ga0", &sprom->txpid5g[0], 0);
334 nvram_read_u8(fill, NULL, "txpid5ga1", &sprom->txpid5g[1], 0);
335 nvram_read_u8(fill, NULL, "txpid5ga2", &sprom->txpid5g[2], 0);
336 nvram_read_u8(fill, NULL, "txpid5ga3", &sprom->txpid5g[3], 0);
337 nvram_read_u8(fill, NULL, "txpid5gla0", &sprom->txpid5gl[0], 0);
338 nvram_read_u8(fill, NULL, "txpid5gla1", &sprom->txpid5gl[1], 0);
339 nvram_read_u8(fill, NULL, "txpid5gla2", &sprom->txpid5gl[2], 0);
340 nvram_read_u8(fill, NULL, "txpid5gla3", &sprom->txpid5gl[3], 0);
341 nvram_read_u8(fill, NULL, "txpid5gha0", &sprom->txpid5gh[0], 0);
342 nvram_read_u8(fill, NULL, "txpid5gha1", &sprom->txpid5gh[1], 0);
343 nvram_read_u8(fill, NULL, "txpid5gha2", &sprom->txpid5gh[2], 0);
344 nvram_read_u8(fill, NULL, "txpid5gha3", &sprom->txpid5gh[3], 0);
345 }
346
347 static void bcm47xx_sprom_fill_r89(struct ssb_sprom *sprom,
348 const struct bcm47xx_sprom_fill *fill)
349 {
350 nvram_read_u8(fill, NULL, "tssipos2g", &sprom->fem.ghz2.tssipos, 0);
351 nvram_read_u8(fill, NULL, "extpagain2g", &sprom->fem.ghz2.extpa_gain, 0);
352 nvram_read_u8(fill, NULL, "pdetrange2g", &sprom->fem.ghz2.pdet_range, 0);
353 nvram_read_u8(fill, NULL, "triso2g", &sprom->fem.ghz2.tr_iso, 0);
354 nvram_read_u8(fill, NULL, "antswctl2g", &sprom->fem.ghz2.antswlut, 0);
355 nvram_read_u8(fill, NULL, "tssipos5g", &sprom->fem.ghz5.tssipos, 0);
356 nvram_read_u8(fill, NULL, "extpagain5g", &sprom->fem.ghz5.extpa_gain, 0);
357 nvram_read_u8(fill, NULL, "pdetrange5g", &sprom->fem.ghz5.pdet_range, 0);
358 nvram_read_u8(fill, NULL, "triso5g", &sprom->fem.ghz5.tr_iso, 0);
359 nvram_read_u8(fill, NULL, "antswctl5g", &sprom->fem.ghz5.antswlut, 0);
360 nvram_read_u8(fill, NULL, "tempthresh", &sprom->tempthresh, 0);
361 nvram_read_u8(fill, NULL, "tempoffset", &sprom->tempoffset, 0);
362 nvram_read_u16(fill, NULL, "rawtempsense", &sprom->rawtempsense, 0);
363 nvram_read_u8(fill, NULL, "measpower", &sprom->measpower, 0);
364 nvram_read_u8(fill, NULL, "tempsense_slope", &sprom->tempsense_slope, 0);
365 nvram_read_u8(fill, NULL, "tempcorrx", &sprom->tempcorrx, 0);
366 nvram_read_u8(fill, NULL, "tempsense_option", &sprom->tempsense_option, 0);
367 nvram_read_u8(fill, NULL, "freqoffset_corr", &sprom->freqoffset_corr, 0);
368 nvram_read_u8(fill, NULL, "iqcal_swp_dis", &sprom->iqcal_swp_dis, 0);
369 nvram_read_u8(fill, NULL, "hw_iqcal_en", &sprom->hw_iqcal_en, 0);
370 nvram_read_u8(fill, NULL, "elna2g", &sprom->elna2g, 0);
371 nvram_read_u8(fill, NULL, "elna5g", &sprom->elna5g, 0);
372 nvram_read_u8(fill, NULL, "phycal_tempdelta", &sprom->phycal_tempdelta, 0);
373 nvram_read_u8(fill, NULL, "temps_period", &sprom->temps_period, 0);
374 nvram_read_u8(fill, NULL, "temps_hysteresis", &sprom->temps_hysteresis, 0);
375 nvram_read_u8(fill, NULL, "measpower1", &sprom->measpower1, 0);
376 nvram_read_u8(fill, NULL, "measpower2", &sprom->measpower2, 0);
377 nvram_read_u8(fill, NULL, "rxgainerr2ga0", &sprom->rxgainerr2ga[0], 0);
378 nvram_read_u8(fill, NULL, "rxgainerr2ga1", &sprom->rxgainerr2ga[1], 0);
379 nvram_read_u8(fill, NULL, "rxgainerr2ga2", &sprom->rxgainerr2ga[2], 0);
380 nvram_read_u8(fill, NULL, "rxgainerr5gla0", &sprom->rxgainerr5gla[0], 0);
381 nvram_read_u8(fill, NULL, "rxgainerr5gla1", &sprom->rxgainerr5gla[1], 0);
382 nvram_read_u8(fill, NULL, "rxgainerr5gla2", &sprom->rxgainerr5gla[2], 0);
383 nvram_read_u8(fill, NULL, "rxgainerr5gma0", &sprom->rxgainerr5gma[0], 0);
384 nvram_read_u8(fill, NULL, "rxgainerr5gma1", &sprom->rxgainerr5gma[1], 0);
385 nvram_read_u8(fill, NULL, "rxgainerr5gma2", &sprom->rxgainerr5gma[2], 0);
386 nvram_read_u8(fill, NULL, "rxgainerr5gha0", &sprom->rxgainerr5gha[0], 0);
387 nvram_read_u8(fill, NULL, "rxgainerr5gha1", &sprom->rxgainerr5gha[1], 0);
388 nvram_read_u8(fill, NULL, "rxgainerr5gha2", &sprom->rxgainerr5gha[2], 0);
389 nvram_read_u8(fill, NULL, "rxgainerr5gua0", &sprom->rxgainerr5gua[0], 0);
390 nvram_read_u8(fill, NULL, "rxgainerr5gua1", &sprom->rxgainerr5gua[1], 0);
391 nvram_read_u8(fill, NULL, "rxgainerr5gua2", &sprom->rxgainerr5gua[2], 0);
392 nvram_read_u8(fill, NULL, "noiselvl2ga0", &sprom->noiselvl2ga[0], 0);
393 nvram_read_u8(fill, NULL, "noiselvl2ga1", &sprom->noiselvl2ga[1], 0);
394 nvram_read_u8(fill, NULL, "noiselvl2ga2", &sprom->noiselvl2ga[2], 0);
395 nvram_read_u8(fill, NULL, "noiselvl5gla0", &sprom->noiselvl5gla[0], 0);
396 nvram_read_u8(fill, NULL, "noiselvl5gla1", &sprom->noiselvl5gla[1], 0);
397 nvram_read_u8(fill, NULL, "noiselvl5gla2", &sprom->noiselvl5gla[2], 0);
398 nvram_read_u8(fill, NULL, "noiselvl5gma0", &sprom->noiselvl5gma[0], 0);
399 nvram_read_u8(fill, NULL, "noiselvl5gma1", &sprom->noiselvl5gma[1], 0);
400 nvram_read_u8(fill, NULL, "noiselvl5gma2", &sprom->noiselvl5gma[2], 0);
401 nvram_read_u8(fill, NULL, "noiselvl5gha0", &sprom->noiselvl5gha[0], 0);
402 nvram_read_u8(fill, NULL, "noiselvl5gha1", &sprom->noiselvl5gha[1], 0);
403 nvram_read_u8(fill, NULL, "noiselvl5gha2", &sprom->noiselvl5gha[2], 0);
404 nvram_read_u8(fill, NULL, "noiselvl5gua0", &sprom->noiselvl5gua[0], 0);
405 nvram_read_u8(fill, NULL, "noiselvl5gua1", &sprom->noiselvl5gua[1], 0);
406 nvram_read_u8(fill, NULL, "noiselvl5gua2", &sprom->noiselvl5gua[2], 0);
407 nvram_read_u8(fill, NULL, "pcieingress_war", &sprom->pcieingress_war, 0);
408 }
409
410 static void bcm47xx_sprom_fill_r9(struct ssb_sprom *sprom,
411 const struct bcm47xx_sprom_fill *fill)
412 {
413 nvram_read_u16(fill, NULL, "cckbw202gpo", &sprom->cckbw202gpo, 0);
414 nvram_read_u16(fill, NULL, "cckbw20ul2gpo", &sprom->cckbw20ul2gpo, 0);
415 nvram_read_u32(fill, NULL, "legofdmbw202gpo", &sprom->legofdmbw202gpo, 0);
416 nvram_read_u32(fill, NULL, "legofdmbw20ul2gpo", &sprom->legofdmbw20ul2gpo, 0);
417 nvram_read_u32(fill, NULL, "legofdmbw205glpo", &sprom->legofdmbw205glpo, 0);
418 nvram_read_u32(fill, NULL, "legofdmbw20ul5glpo", &sprom->legofdmbw20ul5glpo, 0);
419 nvram_read_u32(fill, NULL, "legofdmbw205gmpo", &sprom->legofdmbw205gmpo, 0);
420 nvram_read_u32(fill, NULL, "legofdmbw20ul5gmpo", &sprom->legofdmbw20ul5gmpo, 0);
421 nvram_read_u32(fill, NULL, "legofdmbw205ghpo", &sprom->legofdmbw205ghpo, 0);
422 nvram_read_u32(fill, NULL, "legofdmbw20ul5ghpo", &sprom->legofdmbw20ul5ghpo, 0);
423 nvram_read_u32(fill, NULL, "mcsbw202gpo", &sprom->mcsbw202gpo, 0);
424 nvram_read_u32(fill, NULL, "mcsbw20ul2gpo", &sprom->mcsbw20ul2gpo, 0);
425 nvram_read_u32(fill, NULL, "mcsbw402gpo", &sprom->mcsbw402gpo, 0);
426 nvram_read_u32(fill, NULL, "mcsbw205glpo", &sprom->mcsbw205glpo, 0);
427 nvram_read_u32(fill, NULL, "mcsbw20ul5glpo", &sprom->mcsbw20ul5glpo, 0);
428 nvram_read_u32(fill, NULL, "mcsbw405glpo", &sprom->mcsbw405glpo, 0);
429 nvram_read_u32(fill, NULL, "mcsbw205gmpo", &sprom->mcsbw205gmpo, 0);
430 nvram_read_u32(fill, NULL, "mcsbw20ul5gmpo", &sprom->mcsbw20ul5gmpo, 0);
431 nvram_read_u32(fill, NULL, "mcsbw405gmpo", &sprom->mcsbw405gmpo, 0);
432 nvram_read_u32(fill, NULL, "mcsbw205ghpo", &sprom->mcsbw205ghpo, 0);
433 nvram_read_u32(fill, NULL, "mcsbw20ul5ghpo", &sprom->mcsbw20ul5ghpo, 0);
434 nvram_read_u32(fill, NULL, "mcsbw405ghpo", &sprom->mcsbw405ghpo, 0);
435 nvram_read_u16(fill, NULL, "mcs32po", &sprom->mcs32po, 0);
436 nvram_read_u16(fill, NULL, "legofdm40duppo", &sprom->legofdm40duppo, 0);
437 nvram_read_u8(fill, NULL, "sar2g", &sprom->sar2g, 0);
438 nvram_read_u8(fill, NULL, "sar5g", &sprom->sar5g, 0);
439 }
440
441 static void bcm47xx_sprom_fill_path_r4589(struct ssb_sprom *sprom,
442 const struct bcm47xx_sprom_fill *fill)
443 {
444 char postfix[2];
445 int i;
446
447 for (i = 0; i < ARRAY_SIZE(sprom->core_pwr_info); i++) {
448 struct ssb_sprom_core_pwr_info *pwr_info = &sprom->core_pwr_info[i];
449
450 snprintf(postfix, sizeof(postfix), "%i", i);
451 nvram_read_u8(fill, postfix, "maxp2ga", &pwr_info->maxpwr_2g, 0);
452 nvram_read_u8(fill, postfix, "itt2ga", &pwr_info->itssi_2g, 0);
453 nvram_read_u8(fill, postfix, "itt5ga", &pwr_info->itssi_5g, 0);
454 nvram_read_u16(fill, postfix, "pa2gw0a", &pwr_info->pa_2g[0], 0);
455 nvram_read_u16(fill, postfix, "pa2gw1a", &pwr_info->pa_2g[1], 0);
456 nvram_read_u16(fill, postfix, "pa2gw2a", &pwr_info->pa_2g[2], 0);
457 nvram_read_u8(fill, postfix, "maxp5ga", &pwr_info->maxpwr_5g, 0);
458 nvram_read_u8(fill, postfix, "maxp5gha", &pwr_info->maxpwr_5gh, 0);
459 nvram_read_u8(fill, postfix, "maxp5gla", &pwr_info->maxpwr_5gl, 0);
460 nvram_read_u16(fill, postfix, "pa5gw0a", &pwr_info->pa_5g[0], 0);
461 nvram_read_u16(fill, postfix, "pa5gw1a", &pwr_info->pa_5g[1], 0);
462 nvram_read_u16(fill, postfix, "pa5gw2a", &pwr_info->pa_5g[2], 0);
463 nvram_read_u16(fill, postfix, "pa5glw0a", &pwr_info->pa_5gl[0], 0);
464 nvram_read_u16(fill, postfix, "pa5glw1a", &pwr_info->pa_5gl[1], 0);
465 nvram_read_u16(fill, postfix, "pa5glw2a", &pwr_info->pa_5gl[2], 0);
466 nvram_read_u16(fill, postfix, "pa5ghw0a", &pwr_info->pa_5gh[0], 0);
467 nvram_read_u16(fill, postfix, "pa5ghw1a", &pwr_info->pa_5gh[1], 0);
468 nvram_read_u16(fill, postfix, "pa5ghw2a", &pwr_info->pa_5gh[2], 0);
469 }
470 }
471
472 static void bcm47xx_sprom_fill_path_r45(struct ssb_sprom *sprom,
473 const struct bcm47xx_sprom_fill *fill)
474 {
475 char postfix[2];
476 int i;
477
478 for (i = 0; i < ARRAY_SIZE(sprom->core_pwr_info); i++) {
479 struct ssb_sprom_core_pwr_info *pwr_info = &sprom->core_pwr_info[i];
480
481 snprintf(postfix, sizeof(postfix), "%i", i);
482 nvram_read_u16(fill, postfix, "pa2gw3a", &pwr_info->pa_2g[3], 0);
483 nvram_read_u16(fill, postfix, "pa5gw3a", &pwr_info->pa_5g[3], 0);
484 nvram_read_u16(fill, postfix, "pa5glw3a", &pwr_info->pa_5gl[3], 0);
485 nvram_read_u16(fill, postfix, "pa5ghw3a", &pwr_info->pa_5gh[3], 0);
486 }
487 }
488
489 static bool bcm47xx_is_valid_mac(u8 *mac)
490 {
491 return mac && !(mac[0] == 0x00 && mac[1] == 0x90 && mac[2] == 0x4c);
492 }
493
494 static int bcm47xx_increase_mac_addr(u8 *mac, u8 num)
495 {
496 u8 *oui = mac + ETH_ALEN/2 - 1;
497 u8 *p = mac + ETH_ALEN - 1;
498
499 do {
500 (*p) += num;
501 if (*p > num)
502 break;
503 p--;
504 num = 1;
505 } while (p != oui);
506
507 if (p == oui) {
508 pr_err("unable to fetch mac address\n");
509 return -ENOENT;
510 }
511 return 0;
512 }
513
514 /*
515 * This is a global counter because different instances of sprom will
516 * access the same nvram.
517 */
518 static int mac_addr_used = 2;
519
520 static void bcm47xx_sprom_fill_ethernet(struct ssb_sprom *sprom,
521 const struct bcm47xx_sprom_fill *fill)
522 {
523 nvram_read_macaddr(fill, "et0macaddr", sprom->et0mac);
524 nvram_read_u8(fill, NULL, "et0mdcport", &sprom->et0mdcport, 0);
525 nvram_read_u8(fill, NULL, "et0phyaddr", &sprom->et0phyaddr, 0);
526
527 nvram_read_macaddr(fill, "et1macaddr", sprom->et1mac);
528 nvram_read_u8(fill, NULL, "et1mdcport", &sprom->et1mdcport, 0);
529 nvram_read_u8(fill, NULL, "et1phyaddr", &sprom->et1phyaddr, 0);
530
531 nvram_read_macaddr(fill, "macaddr", sprom->il0mac);
532 nvram_read_macaddr(fill, "il0macaddr", sprom->il0mac);
533
534 /*
535 * The address prefix 00:90:4C is used by Broadcom in their initial
536 * configuration. When a mac address with the prefix 00:90:4C is used
537 * all devices from the same series are sharing the same mac address.
538 * To prevent mac address collisions we replace them with a mac address
539 * based on the base address.
540 */
541 if (!bcm47xx_is_valid_mac(sprom->il0mac)) {
542 u8 mac[6];
543 struct bcm47xx_sprom_fill fill_no_prefix;
544
545 memcpy(&fill_no_prefix, fill, sizeof(fill_no_prefix));
546 fill_no_prefix.prefix = NULL;
547
548 nvram_read_macaddr(&fill_no_prefix, "et0macaddr", mac);
549 if (bcm47xx_is_valid_mac(mac)) {
550 int err = bcm47xx_increase_mac_addr(mac, mac_addr_used);
551
552 if (!err) {
553 ether_addr_copy(sprom->il0mac, mac);
554 mac_addr_used++;
555 }
556 }
557 }
558 }
559
560 static void bcm47xx_sprom_fill_board_data(struct ssb_sprom *sprom,
561 const struct bcm47xx_sprom_fill *fill)
562 {
563 nvram_read_u16(fill, NULL, "boardrev", &sprom->board_rev, 0);
564 nvram_read_u16(fill, NULL, "boardnum", &sprom->board_num, 0);
565 nvram_read_u16(fill, NULL, "boardtype", &sprom->board_type, 0);
566 nvram_read_u32_2(fill, "boardflags", &sprom->boardflags_lo,
567 &sprom->boardflags_hi);
568 nvram_read_u32_2(fill, "boardflags2", &sprom->boardflags2_lo,
569 &sprom->boardflags2_hi);
570 }
571
572 static void bcm47xx_sprom_fill(struct ssb_sprom *sprom,
573 const struct bcm47xx_sprom_fill *fill)
574 {
575 bcm47xx_sprom_fill_ethernet(sprom, fill);
576 bcm47xx_sprom_fill_board_data(sprom, fill);
577
578 nvram_read_u8(fill, NULL, "sromrev", &sprom->revision, 0);
579
580 switch (sprom->revision) {
581 case 1:
582 bcm47xx_sprom_fill_r1234589(sprom, fill);
583 bcm47xx_sprom_fill_r12389(sprom, fill);
584 bcm47xx_sprom_fill_r1(sprom, fill);
585 break;
586 case 2:
587 bcm47xx_sprom_fill_r1234589(sprom, fill);
588 bcm47xx_sprom_fill_r12389(sprom, fill);
589 bcm47xx_sprom_fill_r2389(sprom, fill);
590 break;
591 case 3:
592 bcm47xx_sprom_fill_r1234589(sprom, fill);
593 bcm47xx_sprom_fill_r12389(sprom, fill);
594 bcm47xx_sprom_fill_r2389(sprom, fill);
595 bcm47xx_sprom_fill_r389(sprom, fill);
596 bcm47xx_sprom_fill_r3(sprom, fill);
597 break;
598 case 4:
599 case 5:
600 bcm47xx_sprom_fill_r1234589(sprom, fill);
601 bcm47xx_sprom_fill_r4589(sprom, fill);
602 bcm47xx_sprom_fill_r458(sprom, fill);
603 bcm47xx_sprom_fill_r45(sprom, fill);
604 bcm47xx_sprom_fill_path_r4589(sprom, fill);
605 bcm47xx_sprom_fill_path_r45(sprom, fill);
606 break;
607 case 8:
608 bcm47xx_sprom_fill_r1234589(sprom, fill);
609 bcm47xx_sprom_fill_r12389(sprom, fill);
610 bcm47xx_sprom_fill_r2389(sprom, fill);
611 bcm47xx_sprom_fill_r389(sprom, fill);
612 bcm47xx_sprom_fill_r4589(sprom, fill);
613 bcm47xx_sprom_fill_r458(sprom, fill);
614 bcm47xx_sprom_fill_r89(sprom, fill);
615 bcm47xx_sprom_fill_path_r4589(sprom, fill);
616 break;
617 case 9:
618 bcm47xx_sprom_fill_r1234589(sprom, fill);
619 bcm47xx_sprom_fill_r12389(sprom, fill);
620 bcm47xx_sprom_fill_r2389(sprom, fill);
621 bcm47xx_sprom_fill_r389(sprom, fill);
622 bcm47xx_sprom_fill_r4589(sprom, fill);
623 bcm47xx_sprom_fill_r89(sprom, fill);
624 bcm47xx_sprom_fill_r9(sprom, fill);
625 bcm47xx_sprom_fill_path_r4589(sprom, fill);
626 break;
627 default:
628 pr_warn("Unsupported SPROM revision %d detected. Will extract v1\n",
629 sprom->revision);
630 sprom->revision = 1;
631 bcm47xx_sprom_fill_r1234589(sprom, fill);
632 bcm47xx_sprom_fill_r12389(sprom, fill);
633 bcm47xx_sprom_fill_r1(sprom, fill);
634 }
635 }
636
637 static int bcm47xx_sprom_getenv(const struct bcm47xx_sprom_fill *fill,
638 const char *name, char *val, size_t val_len)
639 {
640 return bcm47xx_nvram_getenv(name, val, val_len);
641 };
642
643 static int bcm47xx_sprom_probe(struct platform_device *pdev)
644 {
645 struct device *dev = &pdev->dev;
646 struct device_node *np = dev->of_node;
647 struct ssb_sprom *sprom;
648 const __be32 *handle;
649 struct device_node *nvram_node;
650 struct platform_device *nvram_dev;
651 struct bcm47xx_sprom_fill fill;
652
653 /* Alloc */
654 sprom = devm_kzalloc(dev, sizeof(*sprom), GFP_KERNEL);
655 if (!sprom)
656 return -ENOMEM;
657
658 handle = of_get_property(np, "nvram", NULL);
659 if (!handle)
660 return -ENOMEM;
661
662 nvram_node = of_find_node_by_phandle(be32_to_cpup(handle));
663 if (!nvram_node)
664 return -ENOMEM;
665
666 nvram_dev = of_find_device_by_node(nvram_node);
667 if (!nvram_dev)
668 return -ENOMEM;
669
670 fill.prefix = of_get_property(np, "prefix", NULL);
671
672 fill.fallback = false;
673 fill.getenv = bcm47xx_sprom_getenv;
674 fill.priv = nvram_dev;
675
676 bcm47xx_sprom_fill(sprom, &fill);
677
678 platform_set_drvdata(pdev, sprom);
679
680 return 0;
681 }
682
683 static const struct of_device_id bcm47xx_sprom_of_match_table[] = {
684 { .compatible = "brcm,bcm47xx-sprom", },
685 {},
686 };
687 MODULE_DEVICE_TABLE(of, mvebu_pcie_of_match_table);
688
689 static struct platform_driver bcm47xx_sprom_driver = {
690 .driver = {
691 .owner = THIS_MODULE,
692 .name = "bcm47xx-sprom",
693 .of_match_table = bcm47xx_sprom_of_match_table,
694 /* driver unloading/unbinding currently not supported */
695 .suppress_bind_attrs = true,
696 },
697 .probe = bcm47xx_sprom_probe,
698 };
699 module_platform_driver(bcm47xx_sprom_driver);
700
701 MODULE_AUTHOR("Hauke Mehrtens <hauke@hauke-m.de>");
702 MODULE_LICENSE("GPL v2");