1 --- a/drivers/ssb/main.c
2 +++ b/drivers/ssb/main.c
3 @@ -1192,10 +1192,10 @@ void ssb_device_enable(struct ssb_device
5 EXPORT_SYMBOL(ssb_device_enable);
7 -/* Wait for a bit in a register to get set or unset.
8 +/* Wait for bitmask in a register to get set or cleared.
9 * timeout is in units of ten-microseconds */
10 -static int ssb_wait_bit(struct ssb_device *dev, u16 reg, u32 bitmask,
11 - int timeout, int set)
12 +static int ssb_wait_bits(struct ssb_device *dev, u16 reg, u32 bitmask,
13 + int timeout, int set)
17 @@ -1203,7 +1203,7 @@ static int ssb_wait_bit(struct ssb_devic
18 for (i = 0; i < timeout; i++) {
19 val = ssb_read32(dev, reg);
22 + if ((val & bitmask) == bitmask)
26 @@ -1220,20 +1220,38 @@ static int ssb_wait_bit(struct ssb_devic
28 void ssb_device_disable(struct ssb_device *dev, u32 core_specific_flags)
33 if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_RESET)
36 reject = ssb_tmslow_reject_bitmask(dev);
37 - ssb_write32(dev, SSB_TMSLOW, reject | SSB_TMSLOW_CLOCK);
38 - ssb_wait_bit(dev, SSB_TMSLOW, reject, 1000, 1);
39 - ssb_wait_bit(dev, SSB_TMSHIGH, SSB_TMSHIGH_BUSY, 1000, 0);
40 - ssb_write32(dev, SSB_TMSLOW,
41 - SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
42 - reject | SSB_TMSLOW_RESET |
43 - core_specific_flags);
44 - ssb_flush_tmslow(dev);
46 + if (ssb_read32(dev, SSB_TMSLOW) & SSB_TMSLOW_CLOCK) {
47 + ssb_write32(dev, SSB_TMSLOW, reject | SSB_TMSLOW_CLOCK);
48 + ssb_wait_bits(dev, SSB_TMSLOW, reject, 1000, 1);
49 + ssb_wait_bits(dev, SSB_TMSHIGH, SSB_TMSHIGH_BUSY, 1000, 0);
51 + if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
52 + val = ssb_read32(dev, SSB_IMSTATE);
53 + val |= SSB_IMSTATE_REJECT;
54 + ssb_write32(dev, SSB_IMSTATE, val);
55 + ssb_wait_bits(dev, SSB_IMSTATE, SSB_IMSTATE_BUSY, 1000,
59 + ssb_write32(dev, SSB_TMSLOW,
60 + SSB_TMSLOW_FGC | SSB_TMSLOW_CLOCK |
61 + reject | SSB_TMSLOW_RESET |
62 + core_specific_flags);
63 + ssb_flush_tmslow(dev);
65 + if (ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_INITIATOR) {
66 + val = ssb_read32(dev, SSB_IMSTATE);
67 + val &= ~SSB_IMSTATE_REJECT;
68 + ssb_write32(dev, SSB_IMSTATE, val);
72 ssb_write32(dev, SSB_TMSLOW,
73 reject | SSB_TMSLOW_RESET |
74 --- a/drivers/ssb/pci.c
75 +++ b/drivers/ssb/pci.c
76 @@ -468,10 +468,14 @@ static void sprom_extract_r45(struct ssb
77 SPEX(country_code, SSB_SPROM4_CCODE, 0xFFFF, 0);
78 SPEX(boardflags_lo, SSB_SPROM4_BFLLO, 0xFFFF, 0);
79 SPEX(boardflags_hi, SSB_SPROM4_BFLHI, 0xFFFF, 0);
80 + SPEX(boardflags2_lo, SSB_SPROM4_BFL2LO, 0xFFFF, 0);
81 + SPEX(boardflags2_hi, SSB_SPROM4_BFL2HI, 0xFFFF, 0);
83 SPEX(country_code, SSB_SPROM5_CCODE, 0xFFFF, 0);
84 SPEX(boardflags_lo, SSB_SPROM5_BFLLO, 0xFFFF, 0);
85 SPEX(boardflags_hi, SSB_SPROM5_BFLHI, 0xFFFF, 0);
86 + SPEX(boardflags2_lo, SSB_SPROM5_BFL2LO, 0xFFFF, 0);
87 + SPEX(boardflags2_hi, SSB_SPROM5_BFL2HI, 0xFFFF, 0);
89 SPEX(ant_available_a, SSB_SPROM4_ANTAVAIL, SSB_SPROM4_ANTAVAIL_A,
90 SSB_SPROM4_ANTAVAIL_A_SHIFT);
91 @@ -641,7 +645,7 @@ static int sprom_extract(struct ssb_bus
94 ssb_printk(KERN_WARNING PFX "Unsupported SPROM"
95 - " revision %d detected. Will extract"
96 + " revision %d detected. Will extract"
97 " v1\n", out->revision);
99 sprom_extract_r123(out, in);
100 --- a/include/linux/ssb/ssb_regs.h
101 +++ b/include/linux/ssb/ssb_regs.h
103 #define SSB_IMSTATE_AP_RSV 0x00000030 /* Reserved */
104 #define SSB_IMSTATE_IBE 0x00020000 /* In Band Error */
105 #define SSB_IMSTATE_TO 0x00040000 /* Timeout */
106 +#define SSB_IMSTATE_BUSY 0x01800000 /* Busy (Backplane rev >= 2.3 only) */
107 +#define SSB_IMSTATE_REJECT 0x02000000 /* Reject (Backplane rev >= 2.3 only) */
108 #define SSB_INTVEC 0x0F94 /* SB Interrupt Mask */
109 #define SSB_INTVEC_PCI 0x00000001 /* Enable interrupts for PCI */
110 #define SSB_INTVEC_ENET0 0x00000002 /* Enable interrupts for enet 0 */
112 #define SSB_TMSLOW_RESET 0x00000001 /* Reset */
113 #define SSB_TMSLOW_REJECT_22 0x00000002 /* Reject (Backplane rev 2.2) */
114 #define SSB_TMSLOW_REJECT_23 0x00000004 /* Reject (Backplane rev 2.3) */
115 -#define SSB_TMSLOW_PHYCLK 0x00000010 /* MAC PHY Clock Control Enable */
116 #define SSB_TMSLOW_CLOCK 0x00010000 /* Clock Enable */
117 #define SSB_TMSLOW_FGC 0x00020000 /* Force Gated Clocks On */
118 #define SSB_TMSLOW_PE 0x40000000 /* Power Management Enable */
120 /* SPROM Revision 4 */
121 #define SSB_SPROM4_BFLLO 0x0044 /* Boardflags (low 16 bits) */
122 #define SSB_SPROM4_BFLHI 0x0046 /* Board Flags Hi */
123 +#define SSB_SPROM4_BFL2LO 0x0048 /* Board flags 2 (low 16 bits) */
124 +#define SSB_SPROM4_BFL2HI 0x004A /* Board flags 2 Hi */
125 #define SSB_SPROM4_IL0MAC 0x004C /* 6 byte MAC address for a/b/g/n */
126 #define SSB_SPROM4_CCODE 0x0052 /* Country Code (2 bytes) */
127 #define SSB_SPROM4_GPIOA 0x0056 /* Gen. Purpose IO # 0 and 1 */
129 #define SSB_SPROM5_CCODE 0x0044 /* Country Code (2 bytes) */
130 #define SSB_SPROM5_BFLLO 0x004A /* Boardflags (low 16 bits) */
131 #define SSB_SPROM5_BFLHI 0x004C /* Board Flags Hi */
132 +#define SSB_SPROM5_BFL2LO 0x004E /* Board flags 2 (low 16 bits) */
133 +#define SSB_SPROM5_BFL2HI 0x0050 /* Board flags 2 Hi */
134 #define SSB_SPROM5_IL0MAC 0x0052 /* 6 byte MAC address for a/b/g/n */
135 #define SSB_SPROM5_GPIOA 0x0076 /* Gen. Purpose IO # 0 and 1 */
136 #define SSB_SPROM5_GPIOA_P0 0x00FF /* Pin 0 */
137 diff --git a/drivers/ssb/driver_chipcommon.c b/drivers/ssb/driver_chipcommon.c
138 index 7c031fd..06d15b6 100644
139 --- a/drivers/ssb/driver_chipcommon.c
140 +++ b/drivers/ssb/driver_chipcommon.c
141 @@ -46,40 +46,66 @@ void ssb_chipco_set_clockmode(struct ssb_chipcommon *cc,
146 + /* We support SLOW only on 6..9 */
147 + if (ccdev->id.revision >= 10 && mode == SSB_CLKMODE_SLOW)
148 + mode = SSB_CLKMODE_DYNAMIC;
150 + if (cc->capabilities & SSB_CHIPCO_CAP_PMU)
151 + return; /* PMU controls clockmode, separated function needed */
152 + SSB_WARN_ON(ccdev->id.revision >= 20);
154 /* chipcommon cores prior to rev6 don't support dynamic clock control */
155 if (ccdev->id.revision < 6)
157 - /* chipcommon cores rev10 are a whole new ball game */
159 + /* ChipCommon cores rev10+ need testing */
160 if (ccdev->id.revision >= 10)
163 if (!(cc->capabilities & SSB_CHIPCO_CAP_PCTL))
167 - case SSB_CLKMODE_SLOW:
168 + case SSB_CLKMODE_SLOW: /* For revs 6..9 only */
169 tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL);
170 tmp |= SSB_CHIPCO_SLOWCLKCTL_FSLOW;
171 chipco_write32(cc, SSB_CHIPCO_SLOWCLKCTL, tmp);
173 case SSB_CLKMODE_FAST:
174 - ssb_pci_xtal(bus, SSB_GPIO_XTAL, 1); /* Force crystal on */
175 - tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL);
176 - tmp &= ~SSB_CHIPCO_SLOWCLKCTL_FSLOW;
177 - tmp |= SSB_CHIPCO_SLOWCLKCTL_IPLL;
178 - chipco_write32(cc, SSB_CHIPCO_SLOWCLKCTL, tmp);
179 + if (ccdev->id.revision < 10) {
180 + ssb_pci_xtal(bus, SSB_GPIO_XTAL, 1); /* Force crystal on */
181 + tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL);
182 + tmp &= ~SSB_CHIPCO_SLOWCLKCTL_FSLOW;
183 + tmp |= SSB_CHIPCO_SLOWCLKCTL_IPLL;
184 + chipco_write32(cc, SSB_CHIPCO_SLOWCLKCTL, tmp);
186 + chipco_write32(cc, SSB_CHIPCO_SYSCLKCTL,
187 + (chipco_read32(cc, SSB_CHIPCO_SYSCLKCTL) |
188 + SSB_CHIPCO_SYSCLKCTL_FORCEHT));
189 + /* udelay(150); TODO: not available in early init */
192 case SSB_CLKMODE_DYNAMIC:
193 - tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL);
194 - tmp &= ~SSB_CHIPCO_SLOWCLKCTL_FSLOW;
195 - tmp &= ~SSB_CHIPCO_SLOWCLKCTL_IPLL;
196 - tmp &= ~SSB_CHIPCO_SLOWCLKCTL_ENXTAL;
197 - if ((tmp & SSB_CHIPCO_SLOWCLKCTL_SRC) != SSB_CHIPCO_SLOWCLKCTL_SRC_XTAL)
198 - tmp |= SSB_CHIPCO_SLOWCLKCTL_ENXTAL;
199 - chipco_write32(cc, SSB_CHIPCO_SLOWCLKCTL, tmp);
201 - /* for dynamic control, we have to release our xtal_pu "force on" */
202 - if (tmp & SSB_CHIPCO_SLOWCLKCTL_ENXTAL)
203 - ssb_pci_xtal(bus, SSB_GPIO_XTAL, 0);
204 + if (ccdev->id.revision < 10) {
205 + tmp = chipco_read32(cc, SSB_CHIPCO_SLOWCLKCTL);
206 + tmp &= ~SSB_CHIPCO_SLOWCLKCTL_FSLOW;
207 + tmp &= ~SSB_CHIPCO_SLOWCLKCTL_IPLL;
208 + tmp &= ~SSB_CHIPCO_SLOWCLKCTL_ENXTAL;
209 + if ((tmp & SSB_CHIPCO_SLOWCLKCTL_SRC) !=
210 + SSB_CHIPCO_SLOWCLKCTL_SRC_XTAL)
211 + tmp |= SSB_CHIPCO_SLOWCLKCTL_ENXTAL;
212 + chipco_write32(cc, SSB_CHIPCO_SLOWCLKCTL, tmp);
214 + /* For dynamic control, we have to release our xtal_pu
216 + if (tmp & SSB_CHIPCO_SLOWCLKCTL_ENXTAL)
217 + ssb_pci_xtal(bus, SSB_GPIO_XTAL, 0);
219 + chipco_write32(cc, SSB_CHIPCO_SYSCLKCTL,
220 + (chipco_read32(cc, SSB_CHIPCO_SYSCLKCTL) &
221 + ~SSB_CHIPCO_SYSCLKCTL_FORCEHT));
226 @@ -260,6 +286,12 @@ void ssb_chipcommon_init(struct ssb_chipcommon *cc)
227 if (cc->dev->id.revision >= 11)
228 cc->status = chipco_read32(cc, SSB_CHIPCO_CHIPSTAT);
229 ssb_dprintk(KERN_INFO PFX "chipcommon status is 0x%x\n", cc->status);
231 + if (cc->dev->id.revision >= 20) {
232 + chipco_write32(cc, SSB_CHIPCO_GPIOPULLUP, 0);
233 + chipco_write32(cc, SSB_CHIPCO_GPIOPULLDOWN, 0);
237 chipco_powercontrol_init(cc);
238 ssb_chipco_set_clockmode(cc, SSB_CLKMODE_FAST);
239 diff --git a/drivers/ssb/driver_chipcommon_pmu.c b/drivers/ssb/driver_chipcommon_pmu.c
240 index 5732bb2..a7aef47 100644
241 --- a/drivers/ssb/driver_chipcommon_pmu.c
242 +++ b/drivers/ssb/driver_chipcommon_pmu.c
243 @@ -417,12 +417,14 @@ static void ssb_pmu_resources_init(struct ssb_chipcommon *cc)
244 u32 min_msk = 0, max_msk = 0;
246 const struct pmu_res_updown_tab_entry *updown_tab = NULL;
247 - unsigned int updown_tab_size;
248 + unsigned int updown_tab_size = 0;
249 const struct pmu_res_depend_tab_entry *depend_tab = NULL;
250 - unsigned int depend_tab_size;
251 + unsigned int depend_tab_size = 0;
253 switch (bus->chip_id) {
258 /* We keep the default settings:
260 diff --git a/drivers/ssb/driver_gige.c b/drivers/ssb/driver_gige.c
261 index 5ba92a2..d758909 100644
262 --- a/drivers/ssb/driver_gige.c
263 +++ b/drivers/ssb/driver_gige.c
264 @@ -106,8 +106,9 @@ void gige_pcicfg_write32(struct ssb_gige *dev,
265 gige_write32(dev, SSB_GIGE_PCICFG + offset, value);
268 -static int ssb_gige_pci_read_config(struct pci_bus *bus, unsigned int devfn,
269 - int reg, int size, u32 *val)
270 +static int __devinit ssb_gige_pci_read_config(struct pci_bus *bus,
271 + unsigned int devfn, int reg,
272 + int size, u32 *val)
274 struct ssb_gige *dev = container_of(bus->ops, struct ssb_gige, pci_ops);
276 @@ -136,8 +137,9 @@ static int ssb_gige_pci_read_config(struct pci_bus *bus, unsigned int devfn,
277 return PCIBIOS_SUCCESSFUL;
280 -static int ssb_gige_pci_write_config(struct pci_bus *bus, unsigned int devfn,
281 - int reg, int size, u32 val)
282 +static int __devinit ssb_gige_pci_write_config(struct pci_bus *bus,
283 + unsigned int devfn, int reg,
286 struct ssb_gige *dev = container_of(bus->ops, struct ssb_gige, pci_ops);
288 @@ -166,7 +168,8 @@ static int ssb_gige_pci_write_config(struct pci_bus *bus, unsigned int devfn,
289 return PCIBIOS_SUCCESSFUL;
292 -static int ssb_gige_probe(struct ssb_device *sdev, const struct ssb_device_id *id)
293 +static int __devinit ssb_gige_probe(struct ssb_device *sdev,
294 + const struct ssb_device_id *id)
296 struct ssb_gige *dev;
297 u32 base, tmslow, tmshigh;
298 diff --git a/drivers/ssb/driver_pcicore.c b/drivers/ssb/driver_pcicore.c
299 index 0e8d352..11d85bf 100644
300 --- a/drivers/ssb/driver_pcicore.c
301 +++ b/drivers/ssb/driver_pcicore.c
304 #include "ssb_private.h"
306 +static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address);
307 +static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data);
308 +static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address);
309 +static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
310 + u8 address, u16 data);
313 u32 pcicore_read32(struct ssb_pcicore *pc, u16 offset)
314 @@ -309,7 +314,7 @@ int ssb_pcicore_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
315 return ssb_mips_irq(extpci_core->dev) + 2;
318 -static void ssb_pcicore_init_hostmode(struct ssb_pcicore *pc)
319 +static void __devinit ssb_pcicore_init_hostmode(struct ssb_pcicore *pc)
323 @@ -374,7 +379,7 @@ static void ssb_pcicore_init_hostmode(struct ssb_pcicore *pc)
324 register_pci_controller(&ssb_pcicore_controller);
327 -static int pcicore_is_in_hostmode(struct ssb_pcicore *pc)
328 +static int __devinit pcicore_is_in_hostmode(struct ssb_pcicore *pc)
330 struct ssb_bus *bus = pc->dev->bus;
332 @@ -403,25 +408,133 @@ static int pcicore_is_in_hostmode(struct ssb_pcicore *pc)
334 #endif /* CONFIG_SSB_PCICORE_HOSTMODE */
336 +/**************************************************
338 + **************************************************/
340 +static void __devinit ssb_pcicore_fix_sprom_core_index(struct ssb_pcicore *pc)
342 + u16 tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(0));
343 + if (((tmp & 0xF000) >> 12) != pc->dev->core_index) {
345 + tmp |= (pc->dev->core_index << 12);
346 + pcicore_write16(pc, SSB_PCICORE_SPROM(0), tmp);
350 +static u8 ssb_pcicore_polarity_workaround(struct ssb_pcicore *pc)
352 + return (ssb_pcie_read(pc, 0x204) & 0x10) ? 0xC0 : 0x80;
355 +static void ssb_pcicore_serdes_workaround(struct ssb_pcicore *pc)
357 + const u8 serdes_pll_device = 0x1D;
358 + const u8 serdes_rx_device = 0x1F;
361 + ssb_pcie_mdio_write(pc, serdes_rx_device, 1 /* Control */,
362 + ssb_pcicore_polarity_workaround(pc));
363 + tmp = ssb_pcie_mdio_read(pc, serdes_pll_device, 1 /* Control */);
365 + ssb_pcie_mdio_write(pc, serdes_pll_device, 1, tmp & ~0x4000);
368 +static void ssb_pcicore_pci_setup_workarounds(struct ssb_pcicore *pc)
370 + struct ssb_device *pdev = pc->dev;
371 + struct ssb_bus *bus = pdev->bus;
374 + tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
375 + tmp |= SSB_PCICORE_SBTOPCI_PREF;
376 + tmp |= SSB_PCICORE_SBTOPCI_BURST;
377 + pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
379 + if (pdev->id.revision < 5) {
380 + tmp = ssb_read32(pdev, SSB_IMCFGLO);
381 + tmp &= ~SSB_IMCFGLO_SERTO;
383 + tmp &= ~SSB_IMCFGLO_REQTO;
384 + tmp |= 3 << SSB_IMCFGLO_REQTO_SHIFT;
385 + ssb_write32(pdev, SSB_IMCFGLO, tmp);
386 + ssb_commit_settings(bus);
387 + } else if (pdev->id.revision >= 11) {
388 + tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
389 + tmp |= SSB_PCICORE_SBTOPCI_MRM;
390 + pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
394 +static void ssb_pcicore_pcie_setup_workarounds(struct ssb_pcicore *pc)
397 + u8 rev = pc->dev->id.revision;
399 + if (rev == 0 || rev == 1) {
400 + /* TLP Workaround register. */
401 + tmp = ssb_pcie_read(pc, 0x4);
403 + ssb_pcie_write(pc, 0x4, tmp);
406 + /* DLLP Link Control register. */
407 + tmp = ssb_pcie_read(pc, 0x100);
409 + ssb_pcie_write(pc, 0x100, tmp);
413 + const u8 serdes_rx_device = 0x1F;
415 + ssb_pcie_mdio_write(pc, serdes_rx_device,
416 + 2 /* Timer */, 0x8128);
417 + ssb_pcie_mdio_write(pc, serdes_rx_device,
418 + 6 /* CDR */, 0x0100);
419 + ssb_pcie_mdio_write(pc, serdes_rx_device,
420 + 7 /* CDR BW */, 0x1466);
421 + } else if (rev == 3 || rev == 4 || rev == 5) {
422 + /* TODO: DLLP Power Management Threshold */
423 + ssb_pcicore_serdes_workaround(pc);
425 + } else if (rev == 7) {
426 + /* TODO: No PLL down */
430 + /* Miscellaneous Configuration Fixup */
431 + tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(5));
432 + if (!(tmp & 0x8000))
433 + pcicore_write16(pc, SSB_PCICORE_SPROM(5),
438 /**************************************************
439 * Generic and Clientmode operation code.
440 **************************************************/
442 -static void ssb_pcicore_init_clientmode(struct ssb_pcicore *pc)
443 +static void __devinit ssb_pcicore_init_clientmode(struct ssb_pcicore *pc)
445 + ssb_pcicore_fix_sprom_core_index(pc);
447 /* Disable PCI interrupts. */
448 ssb_write32(pc->dev, SSB_INTVEC, 0);
450 + /* Additional PCIe always once-executed workarounds */
451 + if (pc->dev->id.coreid == SSB_DEV_PCIE) {
452 + ssb_pcicore_serdes_workaround(pc);
454 + /* TODO: Clock Request Update */
458 -void ssb_pcicore_init(struct ssb_pcicore *pc)
459 +void __devinit ssb_pcicore_init(struct ssb_pcicore *pc)
461 struct ssb_device *dev = pc->dev;
462 - struct ssb_bus *bus;
467 if (!ssb_device_is_enabled(dev))
468 ssb_device_enable(dev, 0);
470 @@ -446,11 +559,35 @@ static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data)
471 pcicore_write32(pc, 0x134, data);
474 -static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
475 - u8 address, u16 data)
476 +static void ssb_pcie_mdio_set_phy(struct ssb_pcicore *pc, u8 phy)
478 + const u16 mdio_control = 0x128;
479 + const u16 mdio_data = 0x12C;
483 + v = (1 << 30); /* Start of Transaction */
484 + v |= (1 << 28); /* Write Transaction */
485 + v |= (1 << 17); /* Turnaround */
488 + pcicore_write32(pc, mdio_data, v);
491 + for (i = 0; i < 200; i++) {
492 + v = pcicore_read32(pc, mdio_control);
493 + if (v & 0x100 /* Trans complete */)
499 +static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address)
501 const u16 mdio_control = 0x128;
502 const u16 mdio_data = 0x12C;
503 + int max_retries = 10;
508 @@ -458,46 +595,68 @@ static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
509 v |= 0x2; /* MDIO Clock Divisor */
510 pcicore_write32(pc, mdio_control, v);
512 + if (pc->dev->id.revision >= 10) {
514 + ssb_pcie_mdio_set_phy(pc, device);
517 v = (1 << 30); /* Start of Transaction */
518 - v |= (1 << 28); /* Write Transaction */
519 + v |= (1 << 29); /* Read Transaction */
520 v |= (1 << 17); /* Turnaround */
521 - v |= (u32)device << 22;
522 + if (pc->dev->id.revision < 10)
523 + v |= (u32)device << 22;
524 v |= (u32)address << 18;
526 pcicore_write32(pc, mdio_data, v);
527 /* Wait for the device to complete the transaction */
529 - for (i = 0; i < 10; i++) {
530 + for (i = 0; i < max_retries; i++) {
531 v = pcicore_read32(pc, mdio_control);
532 - if (v & 0x100 /* Trans complete */)
533 + if (v & 0x100 /* Trans complete */) {
535 + ret = pcicore_read32(pc, mdio_data);
540 pcicore_write32(pc, mdio_control, 0);
544 -static void ssb_broadcast_value(struct ssb_device *dev,
545 - u32 address, u32 data)
546 +static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
547 + u8 address, u16 data)
549 - /* This is used for both, PCI and ChipCommon core, so be careful. */
550 - BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR);
551 - BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA);
553 - ssb_write32(dev, SSB_PCICORE_BCAST_ADDR, address);
554 - ssb_read32(dev, SSB_PCICORE_BCAST_ADDR); /* flush */
555 - ssb_write32(dev, SSB_PCICORE_BCAST_DATA, data);
556 - ssb_read32(dev, SSB_PCICORE_BCAST_DATA); /* flush */
558 + const u16 mdio_control = 0x128;
559 + const u16 mdio_data = 0x12C;
560 + int max_retries = 10;
564 -static void ssb_commit_settings(struct ssb_bus *bus)
566 - struct ssb_device *dev;
567 + v = 0x80; /* Enable Preamble Sequence */
568 + v |= 0x2; /* MDIO Clock Divisor */
569 + pcicore_write32(pc, mdio_control, v);
571 - dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev;
574 - /* This forces an update of the cached registers. */
575 - ssb_broadcast_value(dev, 0xFD8, 0);
576 + if (pc->dev->id.revision >= 10) {
578 + ssb_pcie_mdio_set_phy(pc, device);
581 + v = (1 << 30); /* Start of Transaction */
582 + v |= (1 << 28); /* Write Transaction */
583 + v |= (1 << 17); /* Turnaround */
584 + if (pc->dev->id.revision < 10)
585 + v |= (u32)device << 22;
586 + v |= (u32)address << 18;
588 + pcicore_write32(pc, mdio_data, v);
589 + /* Wait for the device to complete the transaction */
591 + for (i = 0; i < max_retries; i++) {
592 + v = pcicore_read32(pc, mdio_control);
593 + if (v & 0x100 /* Trans complete */)
597 + pcicore_write32(pc, mdio_control, 0);
600 int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc,
601 @@ -550,48 +709,10 @@ int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc,
604 if (pdev->id.coreid == SSB_DEV_PCI) {
605 - tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
606 - tmp |= SSB_PCICORE_SBTOPCI_PREF;
607 - tmp |= SSB_PCICORE_SBTOPCI_BURST;
608 - pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
610 - if (pdev->id.revision < 5) {
611 - tmp = ssb_read32(pdev, SSB_IMCFGLO);
612 - tmp &= ~SSB_IMCFGLO_SERTO;
614 - tmp &= ~SSB_IMCFGLO_REQTO;
615 - tmp |= 3 << SSB_IMCFGLO_REQTO_SHIFT;
616 - ssb_write32(pdev, SSB_IMCFGLO, tmp);
617 - ssb_commit_settings(bus);
618 - } else if (pdev->id.revision >= 11) {
619 - tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
620 - tmp |= SSB_PCICORE_SBTOPCI_MRM;
621 - pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
623 + ssb_pcicore_pci_setup_workarounds(pc);
625 WARN_ON(pdev->id.coreid != SSB_DEV_PCIE);
626 - //TODO: Better make defines for all these magic PCIE values.
627 - if ((pdev->id.revision == 0) || (pdev->id.revision == 1)) {
628 - /* TLP Workaround register. */
629 - tmp = ssb_pcie_read(pc, 0x4);
631 - ssb_pcie_write(pc, 0x4, tmp);
633 - if (pdev->id.revision == 0) {
634 - const u8 serdes_rx_device = 0x1F;
636 - ssb_pcie_mdio_write(pc, serdes_rx_device,
637 - 2 /* Timer */, 0x8128);
638 - ssb_pcie_mdio_write(pc, serdes_rx_device,
639 - 6 /* CDR */, 0x0100);
640 - ssb_pcie_mdio_write(pc, serdes_rx_device,
641 - 7 /* CDR BW */, 0x1466);
642 - } else if (pdev->id.revision == 1) {
643 - /* DLLP Link Control register. */
644 - tmp = ssb_pcie_read(pc, 0x100);
646 - ssb_pcie_write(pc, 0x100, tmp);
648 + ssb_pcicore_pcie_setup_workarounds(pc);
652 diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c
653 index e05ba6e..6ec6e09 100644
654 --- a/drivers/ssb/main.c
655 +++ b/drivers/ssb/main.c
656 @@ -557,7 +557,7 @@ error:
659 /* Needs ssb_buses_lock() */
660 -static int ssb_attach_queued_buses(void)
661 +static int __devinit ssb_attach_queued_buses(void)
663 struct ssb_bus *bus, *n;
665 @@ -768,9 +768,9 @@ out:
669 -static int ssb_bus_register(struct ssb_bus *bus,
670 - ssb_invariants_func_t get_invariants,
671 - unsigned long baseaddr)
672 +static int __devinit ssb_bus_register(struct ssb_bus *bus,
673 + ssb_invariants_func_t get_invariants,
674 + unsigned long baseaddr)
678 @@ -851,8 +851,8 @@ err_disable_xtal:
681 #ifdef CONFIG_SSB_PCIHOST
682 -int ssb_bus_pcibus_register(struct ssb_bus *bus,
683 - struct pci_dev *host_pci)
684 +int __devinit ssb_bus_pcibus_register(struct ssb_bus *bus,
685 + struct pci_dev *host_pci)
689 @@ -875,9 +875,9 @@ EXPORT_SYMBOL(ssb_bus_pcibus_register);
690 #endif /* CONFIG_SSB_PCIHOST */
692 #ifdef CONFIG_SSB_PCMCIAHOST
693 -int ssb_bus_pcmciabus_register(struct ssb_bus *bus,
694 - struct pcmcia_device *pcmcia_dev,
695 - unsigned long baseaddr)
696 +int __devinit ssb_bus_pcmciabus_register(struct ssb_bus *bus,
697 + struct pcmcia_device *pcmcia_dev,
698 + unsigned long baseaddr)
702 @@ -897,8 +897,9 @@ EXPORT_SYMBOL(ssb_bus_pcmciabus_register);
703 #endif /* CONFIG_SSB_PCMCIAHOST */
705 #ifdef CONFIG_SSB_SDIOHOST
706 -int ssb_bus_sdiobus_register(struct ssb_bus *bus, struct sdio_func *func,
707 - unsigned int quirks)
708 +int __devinit ssb_bus_sdiobus_register(struct ssb_bus *bus,
709 + struct sdio_func *func,
710 + unsigned int quirks)
714 @@ -918,9 +919,9 @@ int ssb_bus_sdiobus_register(struct ssb_bus *bus, struct sdio_func *func,
715 EXPORT_SYMBOL(ssb_bus_sdiobus_register);
716 #endif /* CONFIG_SSB_PCMCIAHOST */
718 -int ssb_bus_ssbbus_register(struct ssb_bus *bus,
719 - unsigned long baseaddr,
720 - ssb_invariants_func_t get_invariants)
721 +int __devinit ssb_bus_ssbbus_register(struct ssb_bus *bus,
722 + unsigned long baseaddr,
723 + ssb_invariants_func_t get_invariants)
727 @@ -1001,8 +1002,8 @@ u32 ssb_calc_clock_rate(u32 plltype, u32 n, u32 m)
729 case SSB_PLLTYPE_6: /* 100/200 or 120/240 only */
730 if (m & SSB_CHIPCO_CLK_T6_MMASK)
731 - return SSB_CHIPCO_CLK_T6_M0;
732 - return SSB_CHIPCO_CLK_T6_M1;
733 + return SSB_CHIPCO_CLK_T6_M1;
734 + return SSB_CHIPCO_CLK_T6_M0;
735 case SSB_PLLTYPE_1: /* 48Mhz base, 3 dividers */
736 case SSB_PLLTYPE_3: /* 25Mhz, 2 dividers */
737 case SSB_PLLTYPE_4: /* 48Mhz, 4 dividers */
738 @@ -1117,23 +1118,22 @@ static u32 ssb_tmslow_reject_bitmask(struct ssb_device *dev)
740 u32 rev = ssb_read32(dev, SSB_IDLOW) & SSB_IDLOW_SSBREV;
742 - /* The REJECT bit changed position in TMSLOW between
743 - * Backplane revisions. */
744 + /* The REJECT bit seems to be different for Backplane rev 2.3 */
746 case SSB_IDLOW_SSBREV_22:
747 - return SSB_TMSLOW_REJECT_22;
748 + case SSB_IDLOW_SSBREV_24:
749 + case SSB_IDLOW_SSBREV_26:
750 + return SSB_TMSLOW_REJECT;
751 case SSB_IDLOW_SSBREV_23:
752 return SSB_TMSLOW_REJECT_23;
753 - case SSB_IDLOW_SSBREV_24: /* TODO - find the proper REJECT bits */
754 - case SSB_IDLOW_SSBREV_25: /* same here */
755 - case SSB_IDLOW_SSBREV_26: /* same here */
756 + case SSB_IDLOW_SSBREV_25: /* TODO - find the proper REJECT bit */
757 case SSB_IDLOW_SSBREV_27: /* same here */
758 - return SSB_TMSLOW_REJECT_23; /* this is a guess */
759 + return SSB_TMSLOW_REJECT; /* this is a guess */
761 printk(KERN_INFO "ssb: Backplane Revision 0x%.8X\n", rev);
764 - return (SSB_TMSLOW_REJECT_22 | SSB_TMSLOW_REJECT_23);
765 + return (SSB_TMSLOW_REJECT | SSB_TMSLOW_REJECT_23);
768 int ssb_device_is_enabled(struct ssb_device *dev)
769 @@ -1266,7 +1266,10 @@ u32 ssb_dma_translation(struct ssb_device *dev)
770 case SSB_BUSTYPE_SSB:
772 case SSB_BUSTYPE_PCI:
773 - return SSB_PCI_DMA;
774 + if (ssb_read32(dev, SSB_TMSHIGH) & SSB_TMSHIGH_DMA64)
775 + return SSB_PCIE_DMA_H32;
777 + return SSB_PCI_DMA;
779 __ssb_dma_not_implemented(dev);
781 @@ -1309,20 +1312,20 @@ EXPORT_SYMBOL(ssb_bus_may_powerdown);
783 int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl)
785 - struct ssb_chipcommon *cc;
787 enum ssb_clkmode mode;
789 err = ssb_pci_xtal(bus, SSB_GPIO_XTAL | SSB_GPIO_PLL, 1);
793 - mode = dynamic_pctl ? SSB_CLKMODE_DYNAMIC : SSB_CLKMODE_FAST;
794 - ssb_chipco_set_clockmode(cc, mode);
796 #ifdef CONFIG_SSB_DEBUG
800 + mode = dynamic_pctl ? SSB_CLKMODE_DYNAMIC : SSB_CLKMODE_FAST;
801 + ssb_chipco_set_clockmode(&bus->chipco, mode);
805 ssb_printk(KERN_ERR PFX "Bus powerup failed\n");
806 @@ -1330,6 +1333,37 @@ error:
808 EXPORT_SYMBOL(ssb_bus_powerup);
810 +static void ssb_broadcast_value(struct ssb_device *dev,
811 + u32 address, u32 data)
813 +#ifdef CONFIG_SSB_DRIVER_PCICORE
814 + /* This is used for both, PCI and ChipCommon core, so be careful. */
815 + BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR != SSB_CHIPCO_BCAST_ADDR);
816 + BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA != SSB_CHIPCO_BCAST_DATA);
819 + ssb_write32(dev, SSB_CHIPCO_BCAST_ADDR, address);
820 + ssb_read32(dev, SSB_CHIPCO_BCAST_ADDR); /* flush */
821 + ssb_write32(dev, SSB_CHIPCO_BCAST_DATA, data);
822 + ssb_read32(dev, SSB_CHIPCO_BCAST_DATA); /* flush */
825 +void ssb_commit_settings(struct ssb_bus *bus)
827 + struct ssb_device *dev;
829 +#ifdef CONFIG_SSB_DRIVER_PCICORE
830 + dev = bus->chipco.dev ? bus->chipco.dev : bus->pcicore.dev;
832 + dev = bus->chipco.dev;
836 + /* This forces an update of the cached registers. */
837 + ssb_broadcast_value(dev, 0xFD8, 0);
839 +EXPORT_SYMBOL(ssb_commit_settings);
841 u32 ssb_admatch_base(u32 adm)
844 diff --git a/drivers/ssb/pci.c b/drivers/ssb/pci.c
845 index a467b20..a00b35f 100644
846 --- a/drivers/ssb/pci.c
847 +++ b/drivers/ssb/pci.c
848 @@ -662,7 +662,6 @@ static int sprom_extract(struct ssb_bus *bus, struct ssb_sprom *out,
849 static int ssb_pci_sprom_get(struct ssb_bus *bus,
850 struct ssb_sprom *sprom)
852 - const struct ssb_sprom *fallback;
856 @@ -670,7 +669,7 @@ static int ssb_pci_sprom_get(struct ssb_bus *bus,
857 ssb_printk(KERN_ERR PFX "No SPROM available!\n");
860 - if (bus->chipco.dev) { /* can be unavailible! */
861 + if (bus->chipco.dev) { /* can be unavailable! */
863 * get SPROM offset: SSB_SPROM_BASE1 except for
864 * chipcommon rev >= 31 or chip ID is 0x4312 and
865 @@ -707,10 +706,17 @@ static int ssb_pci_sprom_get(struct ssb_bus *bus,
867 /* All CRC attempts failed.
868 * Maybe there is no SPROM on the device?
869 - * If we have a fallback, use that. */
870 - fallback = ssb_get_fallback_sprom();
872 - memcpy(sprom, fallback, sizeof(*sprom));
873 + * Now we ask the arch code if there is some sprom
874 + * available for this device in some other storage */
875 + err = ssb_fill_sprom_with_fallback(bus, sprom);
877 + ssb_printk(KERN_WARNING PFX "WARNING: Using"
878 + " fallback SPROM failed (err %d)\n",
881 + ssb_dprintk(KERN_DEBUG PFX "Using SPROM"
882 + " revision %d provided by"
883 + " platform.\n", sprom->revision);
887 @@ -728,12 +734,9 @@ out_free:
888 static void ssb_pci_get_boardinfo(struct ssb_bus *bus,
889 struct ssb_boardinfo *bi)
891 - pci_read_config_word(bus->host_pci, PCI_SUBSYSTEM_VENDOR_ID,
893 - pci_read_config_word(bus->host_pci, PCI_SUBSYSTEM_ID,
895 - pci_read_config_word(bus->host_pci, PCI_REVISION_ID,
897 + bi->vendor = bus->host_pci->subsystem_vendor;
898 + bi->type = bus->host_pci->subsystem_device;
899 + bi->rev = bus->host_pci->revision;
902 int ssb_pci_get_invariants(struct ssb_bus *bus,
903 diff --git a/drivers/ssb/pcihost_wrapper.c b/drivers/ssb/pcihost_wrapper.c
904 index f6c8c81..d7a9813 100644
905 --- a/drivers/ssb/pcihost_wrapper.c
906 +++ b/drivers/ssb/pcihost_wrapper.c
907 @@ -53,8 +53,8 @@ static int ssb_pcihost_resume(struct pci_dev *dev)
908 # define ssb_pcihost_resume NULL
909 #endif /* CONFIG_PM */
911 -static int ssb_pcihost_probe(struct pci_dev *dev,
912 - const struct pci_device_id *id)
913 +static int __devinit ssb_pcihost_probe(struct pci_dev *dev,
914 + const struct pci_device_id *id)
918 @@ -110,7 +110,7 @@ static void ssb_pcihost_remove(struct pci_dev *dev)
919 pci_set_drvdata(dev, NULL);
922 -int ssb_pcihost_register(struct pci_driver *driver)
923 +int __devinit ssb_pcihost_register(struct pci_driver *driver)
925 driver->probe = ssb_pcihost_probe;
926 driver->remove = ssb_pcihost_remove;
927 diff --git a/drivers/ssb/scan.c b/drivers/ssb/scan.c
928 index 29884c0..8047f9a 100644
929 --- a/drivers/ssb/scan.c
930 +++ b/drivers/ssb/scan.c
931 @@ -258,7 +258,10 @@ static int we_support_multiple_80211_cores(struct ssb_bus *bus)
932 #ifdef CONFIG_SSB_PCIHOST
933 if (bus->bustype == SSB_BUSTYPE_PCI) {
934 if (bus->host_pci->vendor == PCI_VENDOR_ID_BROADCOM &&
935 - bus->host_pci->device == 0x4324)
936 + ((bus->host_pci->device == 0x4313) ||
937 + (bus->host_pci->device == 0x431A) ||
938 + (bus->host_pci->device == 0x4321) ||
939 + (bus->host_pci->device == 0x4324)))
942 #endif /* CONFIG_SSB_PCIHOST */
943 @@ -307,8 +310,7 @@ int ssb_bus_scan(struct ssb_bus *bus,
945 if (bus->bustype == SSB_BUSTYPE_PCI) {
946 bus->chip_id = pcidev_to_chipid(bus->host_pci);
947 - pci_read_config_word(bus->host_pci, PCI_REVISION_ID,
949 + bus->chip_rev = bus->host_pci->revision;
950 bus->chip_package = 0;
952 bus->chip_id = 0x4710;
953 diff --git a/drivers/ssb/sprom.c b/drivers/ssb/sprom.c
954 index 4f7cc8d..45ff0e3 100644
955 --- a/drivers/ssb/sprom.c
956 +++ b/drivers/ssb/sprom.c
958 #include <linux/slab.h>
961 -static const struct ssb_sprom *fallback_sprom;
962 +static int(*get_fallback_sprom)(struct ssb_bus *dev, struct ssb_sprom *out);
965 static int sprom2hex(const u16 *sprom, char *buf, size_t buf_len,
966 @@ -145,36 +145,43 @@ out:
970 - * ssb_arch_set_fallback_sprom - Set a fallback SPROM for use if no SPROM is found.
971 + * ssb_arch_register_fallback_sprom - Registers a method providing a
972 + * fallback SPROM if no SPROM is found.
974 - * @sprom: The SPROM data structure to register.
975 + * @sprom_callback: The callback function.
977 - * With this function the architecture implementation may register a fallback
978 - * SPROM data structure. The fallback is only used for PCI based SSB devices,
979 - * where no valid SPROM can be found in the shadow registers.
980 + * With this function the architecture implementation may register a
981 + * callback handler which fills the SPROM data structure. The fallback is
982 + * only used for PCI based SSB devices, where no valid SPROM can be found
983 + * in the shadow registers.
985 - * This function is useful for weird architectures that have a half-assed SSB device
986 - * hardwired to their PCI bus.
987 + * This function is useful for weird architectures that have a half-assed
988 + * SSB device hardwired to their PCI bus.
990 - * Note that it does only work with PCI attached SSB devices. PCMCIA devices currently
991 - * don't use this fallback.
992 - * Architectures must provide the SPROM for native SSB devices anyway,
993 - * so the fallback also isn't used for native devices.
994 + * Note that it does only work with PCI attached SSB devices. PCMCIA
995 + * devices currently don't use this fallback.
996 + * Architectures must provide the SPROM for native SSB devices anyway, so
997 + * the fallback also isn't used for native devices.
999 - * This function is available for architecture code, only. So it is not exported.
1000 + * This function is available for architecture code, only. So it is not
1003 -int ssb_arch_set_fallback_sprom(const struct ssb_sprom *sprom)
1004 +int ssb_arch_register_fallback_sprom(int (*sprom_callback)(struct ssb_bus *bus,
1005 + struct ssb_sprom *out))
1007 - if (fallback_sprom)
1008 + if (get_fallback_sprom)
1010 - fallback_sprom = sprom;
1011 + get_fallback_sprom = sprom_callback;
1016 -const struct ssb_sprom *ssb_get_fallback_sprom(void)
1017 +int ssb_fill_sprom_with_fallback(struct ssb_bus *bus, struct ssb_sprom *out)
1019 - return fallback_sprom;
1020 + if (!get_fallback_sprom)
1023 + return get_fallback_sprom(bus, out);
1026 /* http://bcm-v4.sipsolutions.net/802.11/IsSpromAvailable */
1027 @@ -185,7 +192,7 @@ bool ssb_is_sprom_available(struct ssb_bus *bus)
1028 /* this routine differs from specs as we do not access SPROM directly
1030 if (bus->bustype == SSB_BUSTYPE_PCI &&
1031 - bus->chipco.dev && /* can be unavailible! */
1032 + bus->chipco.dev && /* can be unavailable! */
1033 bus->chipco.dev->id.revision >= 31)
1034 return bus->chipco.capabilities & SSB_CHIPCO_CAP_SPROM;
1036 diff --git a/drivers/ssb/ssb_private.h b/drivers/ssb/ssb_private.h
1037 index 0331139..7765301 100644
1038 --- a/drivers/ssb/ssb_private.h
1039 +++ b/drivers/ssb/ssb_private.h
1040 @@ -171,7 +171,8 @@ ssize_t ssb_attr_sprom_store(struct ssb_bus *bus,
1041 const char *buf, size_t count,
1042 int (*sprom_check_crc)(const u16 *sprom, size_t size),
1043 int (*sprom_write)(struct ssb_bus *bus, const u16 *sprom));
1044 -extern const struct ssb_sprom *ssb_get_fallback_sprom(void);
1045 +extern int ssb_fill_sprom_with_fallback(struct ssb_bus *bus,
1046 + struct ssb_sprom *out);
1050 diff --git a/include/linux/ssb/ssb.h b/include/linux/ssb/ssb.h
1051 index 9659eff..8623217 100644
1052 --- a/include/linux/ssb/ssb.h
1053 +++ b/include/linux/ssb/ssb.h
1054 @@ -27,6 +27,8 @@ struct ssb_sprom {
1055 u8 et1mdcport; /* MDIO for enet1 */
1056 u8 board_rev; /* Board revision number from SPROM. */
1057 u8 country_code; /* Country Code */
1058 + u16 leddc_on_time; /* LED Powersave Duty Cycle On Count */
1059 + u16 leddc_off_time; /* LED Powersave Duty Cycle Off Count */
1060 u8 ant_available_a; /* 2GHz antenna available bits (up to 4) */
1061 u8 ant_available_bg; /* 5GHz antenna available bits (up to 4) */
1063 @@ -99,7 +101,7 @@ struct ssb_sprom {
1064 struct ssb_boardinfo {
1072 @@ -308,7 +310,7 @@ struct ssb_bus {
1074 /* ID information about the Chip. */
1079 u16 sprom_size; /* number of words in sprom */
1081 @@ -404,7 +406,9 @@ extern bool ssb_is_sprom_available(struct ssb_bus *bus);
1083 /* Set a fallback SPROM.
1084 * See kdoc at the function definition for complete documentation. */
1085 -extern int ssb_arch_set_fallback_sprom(const struct ssb_sprom *sprom);
1086 +extern int ssb_arch_register_fallback_sprom(
1087 + int (*sprom_callback)(struct ssb_bus *bus,
1088 + struct ssb_sprom *out));
1090 /* Suspend a SSB bus.
1091 * Call this from the parent bus suspend routine. */
1092 @@ -518,6 +522,7 @@ extern int ssb_bus_may_powerdown(struct ssb_bus *bus);
1093 * Otherwise static always-on powercontrol will be used. */
1094 extern int ssb_bus_powerup(struct ssb_bus *bus, bool dynamic_pctl);
1096 +extern void ssb_commit_settings(struct ssb_bus *bus);
1098 /* Various helper functions */
1099 extern u32 ssb_admatch_base(u32 adm);
1100 diff --git a/include/linux/ssb/ssb_driver_chipcommon.h b/include/linux/ssb/ssb_driver_chipcommon.h
1101 index 2cdf249..a08d693 100644
1102 --- a/include/linux/ssb/ssb_driver_chipcommon.h
1103 +++ b/include/linux/ssb/ssb_driver_chipcommon.h
1105 #define SSB_CHIPCO_FLASHDATA 0x0048
1106 #define SSB_CHIPCO_BCAST_ADDR 0x0050
1107 #define SSB_CHIPCO_BCAST_DATA 0x0054
1108 +#define SSB_CHIPCO_GPIOPULLUP 0x0058 /* Rev >= 20 only */
1109 +#define SSB_CHIPCO_GPIOPULLDOWN 0x005C /* Rev >= 20 only */
1110 #define SSB_CHIPCO_GPIOIN 0x0060
1111 #define SSB_CHIPCO_GPIOOUT 0x0064
1112 #define SSB_CHIPCO_GPIOOUTEN 0x0068
1114 #define SSB_CHIPCO_GPIOIRQ 0x0074
1115 #define SSB_CHIPCO_WATCHDOG 0x0080
1116 #define SSB_CHIPCO_GPIOTIMER 0x0088 /* LED powersave (corerev >= 16) */
1117 +#define SSB_CHIPCO_GPIOTIMER_OFFTIME 0x0000FFFF
1118 +#define SSB_CHIPCO_GPIOTIMER_OFFTIME_SHIFT 0
1119 +#define SSB_CHIPCO_GPIOTIMER_ONTIME 0xFFFF0000
1120 #define SSB_CHIPCO_GPIOTIMER_ONTIME_SHIFT 16
1121 #define SSB_CHIPCO_GPIOTOUTM 0x008C /* LED powersave (corerev >= 16) */
1122 #define SSB_CHIPCO_CLOCK_N 0x0090
1123 @@ -189,8 +194,10 @@
1124 #define SSB_CHIPCO_CLKCTLST_HAVEALPREQ 0x00000008 /* ALP available request */
1125 #define SSB_CHIPCO_CLKCTLST_HAVEHTREQ 0x00000010 /* HT available request */
1126 #define SSB_CHIPCO_CLKCTLST_HWCROFF 0x00000020 /* Force HW clock request off */
1127 -#define SSB_CHIPCO_CLKCTLST_HAVEHT 0x00010000 /* HT available */
1128 -#define SSB_CHIPCO_CLKCTLST_HAVEALP 0x00020000 /* APL available */
1129 +#define SSB_CHIPCO_CLKCTLST_HAVEALP 0x00010000 /* ALP available */
1130 +#define SSB_CHIPCO_CLKCTLST_HAVEHT 0x00020000 /* HT available */
1131 +#define SSB_CHIPCO_CLKCTLST_4328A0_HAVEHT 0x00010000 /* 4328a0 has reversed bits */
1132 +#define SSB_CHIPCO_CLKCTLST_4328A0_HAVEALP 0x00020000 /* 4328a0 has reversed bits */
1133 #define SSB_CHIPCO_HW_WORKAROUND 0x01E4 /* Hardware workaround (rev >= 20) */
1134 #define SSB_CHIPCO_UART0_DATA 0x0300
1135 #define SSB_CHIPCO_UART0_IMR 0x0304
1136 diff --git a/include/linux/ssb/ssb_regs.h b/include/linux/ssb/ssb_regs.h
1137 index 402955a..efbf459 100644
1138 --- a/include/linux/ssb/ssb_regs.h
1139 +++ b/include/linux/ssb/ssb_regs.h
1141 #define SSB_INTVEC_ENET1 0x00000040 /* Enable interrupts for enet 1 */
1142 #define SSB_TMSLOW 0x0F98 /* SB Target State Low */
1143 #define SSB_TMSLOW_RESET 0x00000001 /* Reset */
1144 -#define SSB_TMSLOW_REJECT_22 0x00000002 /* Reject (Backplane rev 2.2) */
1145 +#define SSB_TMSLOW_REJECT 0x00000002 /* Reject (Standard Backplane) */
1146 #define SSB_TMSLOW_REJECT_23 0x00000004 /* Reject (Backplane rev 2.3) */
1147 #define SSB_TMSLOW_CLOCK 0x00010000 /* Clock Enable */
1148 #define SSB_TMSLOW_FGC 0x00020000 /* Force Gated Clocks On */