blob: 84c934c0a5455950f1244de76ebcfe3b8b5a4aaf [file] [log] [blame]
Michael Buesch61e115a2007-09-18 15:12:50 -04001/*
2 * Sonics Silicon Backplane
3 * Broadcom PCI-core driver
4 *
5 * Copyright 2005, Broadcom Corporation
Michael Büscheb032b92011-07-04 20:50:05 +02006 * Copyright 2006, 2007, Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -04007 *
8 * Licensed under the GNU/GPL. See COPYING for details.
9 */
10
11#include <linux/ssb/ssb.h>
12#include <linux/pci.h>
Paul Gortmaker1014c222011-07-27 22:07:02 -040013#include <linux/export.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040014#include <linux/delay.h>
Michael Buesch7cb44612008-02-19 17:46:48 +010015#include <linux/ssb/ssb_embedded.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040016
17#include "ssb_private.h"
18
Rafał Miłeckiccc7c282011-04-01 13:26:52 +020019static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address);
20static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data);
21static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address);
22static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
23 u8 address, u16 data);
Michael Buesch61e115a2007-09-18 15:12:50 -040024
25static inline
26u32 pcicore_read32(struct ssb_pcicore *pc, u16 offset)
27{
28 return ssb_read32(pc->dev, offset);
29}
30
31static inline
32void pcicore_write32(struct ssb_pcicore *pc, u16 offset, u32 value)
33{
34 ssb_write32(pc->dev, offset, value);
35}
36
Michael Buesch7cb44612008-02-19 17:46:48 +010037static inline
38u16 pcicore_read16(struct ssb_pcicore *pc, u16 offset)
39{
40 return ssb_read16(pc->dev, offset);
41}
42
43static inline
44void pcicore_write16(struct ssb_pcicore *pc, u16 offset, u16 value)
45{
46 ssb_write16(pc->dev, offset, value);
47}
48
Michael Buesch61e115a2007-09-18 15:12:50 -040049/**************************************************
50 * Code for hostmode operation.
51 **************************************************/
52
53#ifdef CONFIG_SSB_PCICORE_HOSTMODE
54
55#include <asm/paccess.h>
56/* Probe a 32bit value on the bus and catch bus exceptions.
57 * Returns nonzero on a bus exception.
58 * This is MIPS specific */
59#define mips_busprobe32(val, addr) get_dbe((val), ((u32 *)(addr)))
60
61/* Assume one-hot slot wiring */
62#define SSB_PCI_SLOT_MAX 16
63
64/* Global lock is OK, as we won't have more than one extpci anyway. */
65static DEFINE_SPINLOCK(cfgspace_lock);
66/* Core to access the external PCI config space. Can only have one. */
67static struct ssb_pcicore *extpci_core;
68
Michael Buesch61e115a2007-09-18 15:12:50 -040069
70static u32 get_cfgspace_addr(struct ssb_pcicore *pc,
71 unsigned int bus, unsigned int dev,
72 unsigned int func, unsigned int off)
73{
74 u32 addr = 0;
75 u32 tmp;
76
Michael Buesch7cb44612008-02-19 17:46:48 +010077 /* We do only have one cardbus device behind the bridge. */
78 if (pc->cardbusmode && (dev >= 1))
Michael Buesch61e115a2007-09-18 15:12:50 -040079 goto out;
Michael Buesch7cb44612008-02-19 17:46:48 +010080
Michael Buesch61e115a2007-09-18 15:12:50 -040081 if (bus == 0) {
82 /* Type 0 transaction */
83 if (unlikely(dev >= SSB_PCI_SLOT_MAX))
84 goto out;
85 /* Slide the window */
86 tmp = SSB_PCICORE_SBTOPCI_CFG0;
87 tmp |= ((1 << (dev + 16)) & SSB_PCICORE_SBTOPCI1_MASK);
88 pcicore_write32(pc, SSB_PCICORE_SBTOPCI1, tmp);
89 /* Calculate the address */
90 addr = SSB_PCI_CFG;
91 addr |= ((1 << (dev + 16)) & ~SSB_PCICORE_SBTOPCI1_MASK);
92 addr |= (func << 8);
93 addr |= (off & ~3);
94 } else {
95 /* Type 1 transaction */
96 pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
97 SSB_PCICORE_SBTOPCI_CFG1);
98 /* Calculate the address */
99 addr = SSB_PCI_CFG;
100 addr |= (bus << 16);
101 addr |= (dev << 11);
102 addr |= (func << 8);
103 addr |= (off & ~3);
104 }
105out:
106 return addr;
107}
108
109static int ssb_extpci_read_config(struct ssb_pcicore *pc,
110 unsigned int bus, unsigned int dev,
111 unsigned int func, unsigned int off,
112 void *buf, int len)
113{
114 int err = -EINVAL;
115 u32 addr, val;
116 void __iomem *mmio;
117
118 SSB_WARN_ON(!pc->hostmode);
119 if (unlikely(len != 1 && len != 2 && len != 4))
120 goto out;
121 addr = get_cfgspace_addr(pc, bus, dev, func, off);
122 if (unlikely(!addr))
123 goto out;
124 err = -ENOMEM;
125 mmio = ioremap_nocache(addr, len);
126 if (!mmio)
127 goto out;
128
129 if (mips_busprobe32(val, mmio)) {
130 val = 0xffffffff;
131 goto unmap;
132 }
133
134 val = readl(mmio);
135 val >>= (8 * (off & 3));
136
137 switch (len) {
138 case 1:
139 *((u8 *)buf) = (u8)val;
140 break;
141 case 2:
142 *((u16 *)buf) = (u16)val;
143 break;
144 case 4:
145 *((u32 *)buf) = (u32)val;
146 break;
147 }
148 err = 0;
149unmap:
150 iounmap(mmio);
151out:
152 return err;
153}
154
155static int ssb_extpci_write_config(struct ssb_pcicore *pc,
156 unsigned int bus, unsigned int dev,
157 unsigned int func, unsigned int off,
158 const void *buf, int len)
159{
160 int err = -EINVAL;
161 u32 addr, val = 0;
162 void __iomem *mmio;
163
164 SSB_WARN_ON(!pc->hostmode);
165 if (unlikely(len != 1 && len != 2 && len != 4))
166 goto out;
167 addr = get_cfgspace_addr(pc, bus, dev, func, off);
168 if (unlikely(!addr))
169 goto out;
170 err = -ENOMEM;
171 mmio = ioremap_nocache(addr, len);
172 if (!mmio)
173 goto out;
174
175 if (mips_busprobe32(val, mmio)) {
176 val = 0xffffffff;
177 goto unmap;
178 }
179
180 switch (len) {
181 case 1:
182 val = readl(mmio);
183 val &= ~(0xFF << (8 * (off & 3)));
184 val |= *((const u8 *)buf) << (8 * (off & 3));
185 break;
186 case 2:
187 val = readl(mmio);
188 val &= ~(0xFFFF << (8 * (off & 3)));
189 val |= *((const u16 *)buf) << (8 * (off & 3));
190 break;
191 case 4:
192 val = *((const u32 *)buf);
193 break;
194 }
195 writel(val, mmio);
196
197 err = 0;
198unmap:
199 iounmap(mmio);
200out:
201 return err;
202}
203
204static int ssb_pcicore_read_config(struct pci_bus *bus, unsigned int devfn,
205 int reg, int size, u32 *val)
206{
207 unsigned long flags;
208 int err;
209
210 spin_lock_irqsave(&cfgspace_lock, flags);
211 err = ssb_extpci_read_config(extpci_core, bus->number, PCI_SLOT(devfn),
212 PCI_FUNC(devfn), reg, val, size);
213 spin_unlock_irqrestore(&cfgspace_lock, flags);
214
215 return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
216}
217
218static int ssb_pcicore_write_config(struct pci_bus *bus, unsigned int devfn,
219 int reg, int size, u32 val)
220{
221 unsigned long flags;
222 int err;
223
224 spin_lock_irqsave(&cfgspace_lock, flags);
225 err = ssb_extpci_write_config(extpci_core, bus->number, PCI_SLOT(devfn),
226 PCI_FUNC(devfn), reg, &val, size);
227 spin_unlock_irqrestore(&cfgspace_lock, flags);
228
229 return err ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
230}
231
232static struct pci_ops ssb_pcicore_pciops = {
233 .read = ssb_pcicore_read_config,
234 .write = ssb_pcicore_write_config,
235};
236
237static struct resource ssb_pcicore_mem_resource = {
238 .name = "SSB PCIcore external memory",
239 .start = SSB_PCI_DMA,
240 .end = SSB_PCI_DMA + SSB_PCI_DMA_SZ - 1,
Michael Bueschfc71acc2008-02-16 18:13:36 +0100241 .flags = IORESOURCE_MEM | IORESOURCE_PCI_FIXED,
Michael Buesch61e115a2007-09-18 15:12:50 -0400242};
243
244static struct resource ssb_pcicore_io_resource = {
245 .name = "SSB PCIcore external I/O",
246 .start = 0x100,
247 .end = 0x7FF,
Michael Bueschfc71acc2008-02-16 18:13:36 +0100248 .flags = IORESOURCE_IO | IORESOURCE_PCI_FIXED,
Michael Buesch61e115a2007-09-18 15:12:50 -0400249};
250
251static struct pci_controller ssb_pcicore_controller = {
252 .pci_ops = &ssb_pcicore_pciops,
253 .io_resource = &ssb_pcicore_io_resource,
254 .mem_resource = &ssb_pcicore_mem_resource,
Michael Buesch61e115a2007-09-18 15:12:50 -0400255};
256
Michael Bueschaab547c2008-02-29 11:36:12 +0100257/* This function is called when doing a pci_enable_device().
258 * We must first check if the device is a device on the PCI-core bridge. */
259int ssb_pcicore_plat_dev_init(struct pci_dev *d)
260{
Michael Bueschaab547c2008-02-29 11:36:12 +0100261 if (d->bus->ops != &ssb_pcicore_pciops) {
262 /* This is not a device on the PCI-core bridge. */
263 return -ENODEV;
264 }
265
266 ssb_printk(KERN_INFO "PCI: Fixing up device %s\n",
267 pci_name(d));
268
Michael Bueschaab547c2008-02-29 11:36:12 +0100269 /* Fix up interrupt lines */
270 d->irq = ssb_mips_irq(extpci_core->dev) + 2;
271 pci_write_config_byte(d, PCI_INTERRUPT_LINE, d->irq);
272
273 return 0;
274}
275
276/* Early PCI fixup for a device on the PCI-core bridge. */
277static void ssb_pcicore_fixup_pcibridge(struct pci_dev *dev)
278{
279 u8 lat;
280
281 if (dev->bus->ops != &ssb_pcicore_pciops) {
282 /* This is not a device on the PCI-core bridge. */
283 return;
284 }
285 if (dev->bus->number != 0 || PCI_SLOT(dev->devfn) != 0)
286 return;
287
288 ssb_printk(KERN_INFO "PCI: Fixing up bridge %s\n", pci_name(dev));
289
290 /* Enable PCI bridge bus mastering and memory space */
291 pci_set_master(dev);
292 if (pcibios_enable_device(dev, ~0) < 0) {
293 ssb_printk(KERN_ERR "PCI: SSB bridge enable failed\n");
294 return;
295 }
296
297 /* Enable PCI bridge BAR1 prefetch and burst */
298 pci_write_config_dword(dev, SSB_BAR1_CONTROL, 3);
299
300 /* Make sure our latency is high enough to handle the devices behind us */
301 lat = 168;
302 ssb_printk(KERN_INFO "PCI: Fixing latency timer of device %s to %u\n",
303 pci_name(dev), lat);
304 pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
305}
306DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID, PCI_ANY_ID, ssb_pcicore_fixup_pcibridge);
307
308/* PCI device IRQ mapping. */
309int ssb_pcicore_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
310{
311 if (dev->bus->ops != &ssb_pcicore_pciops) {
312 /* This is not a device on the PCI-core bridge. */
313 return -ENODEV;
314 }
315 return ssb_mips_irq(extpci_core->dev) + 2;
316}
317
Hauke Mehrtenscd155982011-06-21 20:57:16 +0200318static void __devinit ssb_pcicore_init_hostmode(struct ssb_pcicore *pc)
Michael Buesch61e115a2007-09-18 15:12:50 -0400319{
320 u32 val;
321
322 if (WARN_ON(extpci_core))
323 return;
324 extpci_core = pc;
325
326 ssb_dprintk(KERN_INFO PFX "PCIcore in host mode found\n");
327 /* Reset devices on the external PCI bus */
328 val = SSB_PCICORE_CTL_RST_OE;
329 val |= SSB_PCICORE_CTL_CLK_OE;
330 pcicore_write32(pc, SSB_PCICORE_CTL, val);
331 val |= SSB_PCICORE_CTL_CLK; /* Clock on */
332 pcicore_write32(pc, SSB_PCICORE_CTL, val);
333 udelay(150); /* Assertion time demanded by the PCI standard */
334 val |= SSB_PCICORE_CTL_RST; /* Deassert RST# */
335 pcicore_write32(pc, SSB_PCICORE_CTL, val);
336 val = SSB_PCICORE_ARBCTL_INTERN;
337 pcicore_write32(pc, SSB_PCICORE_ARBCTL, val);
338 udelay(1); /* Assertion time demanded by the PCI standard */
339
Michael Buesch7cb44612008-02-19 17:46:48 +0100340 if (pc->dev->bus->has_cardbus_slot) {
341 ssb_dprintk(KERN_INFO PFX "CardBus slot detected\n");
342 pc->cardbusmode = 1;
343 /* GPIO 1 resets the bridge */
344 ssb_gpio_out(pc->dev->bus, 1, 1);
345 ssb_gpio_outen(pc->dev->bus, 1, 1);
346 pcicore_write16(pc, SSB_PCICORE_SPROM(0),
347 pcicore_read16(pc, SSB_PCICORE_SPROM(0))
348 | 0x0400);
349 }
Michael Buesch61e115a2007-09-18 15:12:50 -0400350
351 /* 64MB I/O window */
352 pcicore_write32(pc, SSB_PCICORE_SBTOPCI0,
353 SSB_PCICORE_SBTOPCI_IO);
354 /* 64MB config space */
355 pcicore_write32(pc, SSB_PCICORE_SBTOPCI1,
356 SSB_PCICORE_SBTOPCI_CFG0);
357 /* 1GB memory window */
358 pcicore_write32(pc, SSB_PCICORE_SBTOPCI2,
359 SSB_PCICORE_SBTOPCI_MEM | SSB_PCI_DMA);
360
361 /* Enable PCI bridge BAR0 prefetch and burst */
362 val = PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
363 ssb_extpci_write_config(pc, 0, 0, 0, PCI_COMMAND, &val, 2);
364 /* Clear error conditions */
365 val = 0;
366 ssb_extpci_write_config(pc, 0, 0, 0, PCI_STATUS, &val, 2);
367
368 /* Enable PCI interrupts */
369 pcicore_write32(pc, SSB_PCICORE_IMASK,
370 SSB_PCICORE_IMASK_INTA);
371
372 /* Ok, ready to run, register it to the system.
373 * The following needs change, if we want to port hostmode
374 * to non-MIPS platform. */
Michael Bueschfc71acc2008-02-16 18:13:36 +0100375 ssb_pcicore_controller.io_map_base = (unsigned long)ioremap_nocache(SSB_PCI_MEM, 0x04000000);
376 set_io_port_base(ssb_pcicore_controller.io_map_base);
Michael Buesch61e115a2007-09-18 15:12:50 -0400377 /* Give some time to the PCI controller to configure itself with the new
378 * values. Not waiting at this point causes crashes of the machine. */
379 mdelay(10);
380 register_pci_controller(&ssb_pcicore_controller);
381}
382
Hauke Mehrtenscd155982011-06-21 20:57:16 +0200383static int __devinit pcicore_is_in_hostmode(struct ssb_pcicore *pc)
Michael Buesch61e115a2007-09-18 15:12:50 -0400384{
385 struct ssb_bus *bus = pc->dev->bus;
386 u16 chipid_top;
387 u32 tmp;
388
389 chipid_top = (bus->chip_id & 0xFF00);
390 if (chipid_top != 0x4700 &&
391 chipid_top != 0x5300)
392 return 0;
393
Aurelien Jarno2d8d4fd2008-02-28 15:11:26 +0100394 if (bus->sprom.boardflags_lo & SSB_PCICORE_BFL_NOPCI)
Michael Buesch61e115a2007-09-18 15:12:50 -0400395 return 0;
396
397 /* The 200-pin BCM4712 package does not bond out PCI. Even when
398 * PCI is bonded out, some boards may leave the pins floating. */
399 if (bus->chip_id == 0x4712) {
400 if (bus->chip_package == SSB_CHIPPACK_BCM4712S)
401 return 0;
402 if (bus->chip_package == SSB_CHIPPACK_BCM4712M)
403 return 0;
404 }
405 if (bus->chip_id == 0x5350)
406 return 0;
407
408 return !mips_busprobe32(tmp, (bus->mmio + (pc->dev->core_index * SSB_CORE_SIZE)));
409}
410#endif /* CONFIG_SSB_PCICORE_HOSTMODE */
411
Rafał Miłeckiccc7c282011-04-01 13:26:52 +0200412/**************************************************
413 * Workarounds.
414 **************************************************/
415
Hauke Mehrtenscd155982011-06-21 20:57:16 +0200416static void __devinit ssb_pcicore_fix_sprom_core_index(struct ssb_pcicore *pc)
Rafał Miłeckiaf335a62011-04-27 18:21:34 +0200417{
418 u16 tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(0));
419 if (((tmp & 0xF000) >> 12) != pc->dev->core_index) {
420 tmp &= ~0xF000;
421 tmp |= (pc->dev->core_index << 12);
422 pcicore_write16(pc, SSB_PCICORE_SPROM(0), tmp);
423 }
424}
425
Rafał Miłeckiccc7c282011-04-01 13:26:52 +0200426static u8 ssb_pcicore_polarity_workaround(struct ssb_pcicore *pc)
427{
428 return (ssb_pcie_read(pc, 0x204) & 0x10) ? 0xC0 : 0x80;
429}
430
431static void ssb_pcicore_serdes_workaround(struct ssb_pcicore *pc)
432{
433 const u8 serdes_pll_device = 0x1D;
434 const u8 serdes_rx_device = 0x1F;
435 u16 tmp;
436
437 ssb_pcie_mdio_write(pc, serdes_rx_device, 1 /* Control */,
438 ssb_pcicore_polarity_workaround(pc));
439 tmp = ssb_pcie_mdio_read(pc, serdes_pll_device, 1 /* Control */);
440 if (tmp & 0x4000)
441 ssb_pcie_mdio_write(pc, serdes_pll_device, 1, tmp & ~0x4000);
442}
Michael Buesch61e115a2007-09-18 15:12:50 -0400443
Rafał Miłecki6e914102011-04-27 17:39:47 +0200444static void ssb_pcicore_pci_setup_workarounds(struct ssb_pcicore *pc)
445{
446 struct ssb_device *pdev = pc->dev;
447 struct ssb_bus *bus = pdev->bus;
448 u32 tmp;
449
450 tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
451 tmp |= SSB_PCICORE_SBTOPCI_PREF;
452 tmp |= SSB_PCICORE_SBTOPCI_BURST;
453 pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
454
455 if (pdev->id.revision < 5) {
456 tmp = ssb_read32(pdev, SSB_IMCFGLO);
457 tmp &= ~SSB_IMCFGLO_SERTO;
458 tmp |= 2;
459 tmp &= ~SSB_IMCFGLO_REQTO;
460 tmp |= 3 << SSB_IMCFGLO_REQTO_SHIFT;
461 ssb_write32(pdev, SSB_IMCFGLO, tmp);
462 ssb_commit_settings(bus);
463 } else if (pdev->id.revision >= 11) {
464 tmp = pcicore_read32(pc, SSB_PCICORE_SBTOPCI2);
465 tmp |= SSB_PCICORE_SBTOPCI_MRM;
466 pcicore_write32(pc, SSB_PCICORE_SBTOPCI2, tmp);
467 }
468}
469
470static void ssb_pcicore_pcie_setup_workarounds(struct ssb_pcicore *pc)
471{
Rafał Miłecki6e914102011-04-27 17:39:47 +0200472 u32 tmp;
Rafał Miłecki5890a3c2011-04-27 17:39:48 +0200473 u8 rev = pc->dev->id.revision;
Rafał Miłecki6e914102011-04-27 17:39:47 +0200474
Rafał Miłecki5890a3c2011-04-27 17:39:48 +0200475 if (rev == 0 || rev == 1) {
Rafał Miłecki6e914102011-04-27 17:39:47 +0200476 /* TLP Workaround register. */
477 tmp = ssb_pcie_read(pc, 0x4);
478 tmp |= 0x8;
479 ssb_pcie_write(pc, 0x4, tmp);
480 }
Rafał Miłecki5890a3c2011-04-27 17:39:48 +0200481 if (rev == 1) {
482 /* DLLP Link Control register. */
483 tmp = ssb_pcie_read(pc, 0x100);
484 tmp |= 0x40;
485 ssb_pcie_write(pc, 0x100, tmp);
486 }
487
488 if (rev == 0) {
Rafał Miłecki6e914102011-04-27 17:39:47 +0200489 const u8 serdes_rx_device = 0x1F;
490
491 ssb_pcie_mdio_write(pc, serdes_rx_device,
492 2 /* Timer */, 0x8128);
493 ssb_pcie_mdio_write(pc, serdes_rx_device,
494 6 /* CDR */, 0x0100);
495 ssb_pcie_mdio_write(pc, serdes_rx_device,
496 7 /* CDR BW */, 0x1466);
Rafał Miłecki5890a3c2011-04-27 17:39:48 +0200497 } else if (rev == 3 || rev == 4 || rev == 5) {
498 /* TODO: DLLP Power Management Threshold */
499 ssb_pcicore_serdes_workaround(pc);
500 /* TODO: ASPM */
501 } else if (rev == 7) {
502 /* TODO: No PLL down */
503 }
504
505 if (rev >= 6) {
506 /* Miscellaneous Configuration Fixup */
507 tmp = pcicore_read16(pc, SSB_PCICORE_SPROM(5));
508 if (!(tmp & 0x8000))
509 pcicore_write16(pc, SSB_PCICORE_SPROM(5),
510 tmp | 0x8000);
Rafał Miłecki6e914102011-04-27 17:39:47 +0200511 }
512}
513
Michael Buesch61e115a2007-09-18 15:12:50 -0400514/**************************************************
515 * Generic and Clientmode operation code.
516 **************************************************/
517
Hauke Mehrtenscd155982011-06-21 20:57:16 +0200518static void __devinit ssb_pcicore_init_clientmode(struct ssb_pcicore *pc)
Michael Buesch61e115a2007-09-18 15:12:50 -0400519{
Rafał Miłecki6ae8ec22011-07-05 17:25:32 +0200520 ssb_pcicore_fix_sprom_core_index(pc);
521
Michael Buesch61e115a2007-09-18 15:12:50 -0400522 /* Disable PCI interrupts. */
523 ssb_write32(pc->dev, SSB_INTVEC, 0);
Rafał Miłecki6ae8ec22011-07-05 17:25:32 +0200524
525 /* Additional PCIe always once-executed workarounds */
526 if (pc->dev->id.coreid == SSB_DEV_PCIE) {
527 ssb_pcicore_serdes_workaround(pc);
528 /* TODO: ASPM */
529 /* TODO: Clock Request Update */
530 }
Michael Buesch61e115a2007-09-18 15:12:50 -0400531}
532
Hauke Mehrtenscd155982011-06-21 20:57:16 +0200533void __devinit ssb_pcicore_init(struct ssb_pcicore *pc)
Michael Buesch61e115a2007-09-18 15:12:50 -0400534{
535 struct ssb_device *dev = pc->dev;
Michael Buesch61e115a2007-09-18 15:12:50 -0400536
537 if (!dev)
538 return;
Michael Buesch61e115a2007-09-18 15:12:50 -0400539 if (!ssb_device_is_enabled(dev))
540 ssb_device_enable(dev, 0);
541
542#ifdef CONFIG_SSB_PCICORE_HOSTMODE
543 pc->hostmode = pcicore_is_in_hostmode(pc);
544 if (pc->hostmode)
545 ssb_pcicore_init_hostmode(pc);
546#endif /* CONFIG_SSB_PCICORE_HOSTMODE */
547 if (!pc->hostmode)
548 ssb_pcicore_init_clientmode(pc);
549}
550
551static u32 ssb_pcie_read(struct ssb_pcicore *pc, u32 address)
552{
553 pcicore_write32(pc, 0x130, address);
554 return pcicore_read32(pc, 0x134);
555}
556
557static void ssb_pcie_write(struct ssb_pcicore *pc, u32 address, u32 data)
558{
559 pcicore_write32(pc, 0x130, address);
560 pcicore_write32(pc, 0x134, data);
561}
562
Rafał Miłecki1b1c7ac2011-04-01 12:07:33 +0200563static void ssb_pcie_mdio_set_phy(struct ssb_pcicore *pc, u8 phy)
564{
565 const u16 mdio_control = 0x128;
566 const u16 mdio_data = 0x12C;
567 u32 v;
568 int i;
569
570 v = (1 << 30); /* Start of Transaction */
571 v |= (1 << 28); /* Write Transaction */
572 v |= (1 << 17); /* Turnaround */
573 v |= (0x1F << 18);
574 v |= (phy << 4);
575 pcicore_write32(pc, mdio_data, v);
576
577 udelay(10);
578 for (i = 0; i < 200; i++) {
579 v = pcicore_read32(pc, mdio_control);
580 if (v & 0x100 /* Trans complete */)
581 break;
582 msleep(1);
583 }
584}
585
Rafał Miłeckiba91d1a2011-04-01 12:07:34 +0200586static u16 ssb_pcie_mdio_read(struct ssb_pcicore *pc, u8 device, u8 address)
587{
588 const u16 mdio_control = 0x128;
589 const u16 mdio_data = 0x12C;
590 int max_retries = 10;
591 u16 ret = 0;
592 u32 v;
593 int i;
594
595 v = 0x80; /* Enable Preamble Sequence */
596 v |= 0x2; /* MDIO Clock Divisor */
597 pcicore_write32(pc, mdio_control, v);
598
599 if (pc->dev->id.revision >= 10) {
600 max_retries = 200;
601 ssb_pcie_mdio_set_phy(pc, device);
602 }
603
604 v = (1 << 30); /* Start of Transaction */
605 v |= (1 << 29); /* Read Transaction */
606 v |= (1 << 17); /* Turnaround */
607 if (pc->dev->id.revision < 10)
608 v |= (u32)device << 22;
609 v |= (u32)address << 18;
610 pcicore_write32(pc, mdio_data, v);
611 /* Wait for the device to complete the transaction */
612 udelay(10);
Rafał Miłecki9be1cb32011-04-19 22:40:22 +0200613 for (i = 0; i < max_retries; i++) {
Rafał Miłeckiba91d1a2011-04-01 12:07:34 +0200614 v = pcicore_read32(pc, mdio_control);
615 if (v & 0x100 /* Trans complete */) {
616 udelay(10);
617 ret = pcicore_read32(pc, mdio_data);
618 break;
619 }
620 msleep(1);
621 }
622 pcicore_write32(pc, mdio_control, 0);
623 return ret;
624}
Rafał Miłeckiba91d1a2011-04-01 12:07:34 +0200625
Michael Buesch61e115a2007-09-18 15:12:50 -0400626static void ssb_pcie_mdio_write(struct ssb_pcicore *pc, u8 device,
627 u8 address, u16 data)
628{
629 const u16 mdio_control = 0x128;
630 const u16 mdio_data = 0x12C;
Rafał Miłecki1b1c7ac2011-04-01 12:07:33 +0200631 int max_retries = 10;
Michael Buesch61e115a2007-09-18 15:12:50 -0400632 u32 v;
633 int i;
634
635 v = 0x80; /* Enable Preamble Sequence */
636 v |= 0x2; /* MDIO Clock Divisor */
637 pcicore_write32(pc, mdio_control, v);
638
Rafał Miłecki1b1c7ac2011-04-01 12:07:33 +0200639 if (pc->dev->id.revision >= 10) {
640 max_retries = 200;
641 ssb_pcie_mdio_set_phy(pc, device);
642 }
643
Michael Buesch61e115a2007-09-18 15:12:50 -0400644 v = (1 << 30); /* Start of Transaction */
645 v |= (1 << 28); /* Write Transaction */
646 v |= (1 << 17); /* Turnaround */
Rafał Miłecki1b1c7ac2011-04-01 12:07:33 +0200647 if (pc->dev->id.revision < 10)
648 v |= (u32)device << 22;
Michael Buesch61e115a2007-09-18 15:12:50 -0400649 v |= (u32)address << 18;
650 v |= data;
651 pcicore_write32(pc, mdio_data, v);
652 /* Wait for the device to complete the transaction */
653 udelay(10);
Rafał Miłecki1b1c7ac2011-04-01 12:07:33 +0200654 for (i = 0; i < max_retries; i++) {
Michael Buesch61e115a2007-09-18 15:12:50 -0400655 v = pcicore_read32(pc, mdio_control);
656 if (v & 0x100 /* Trans complete */)
657 break;
658 msleep(1);
659 }
660 pcicore_write32(pc, mdio_control, 0);
661}
662
Michael Buesch61e115a2007-09-18 15:12:50 -0400663int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore *pc,
664 struct ssb_device *dev)
665{
666 struct ssb_device *pdev = pc->dev;
667 struct ssb_bus *bus;
668 int err = 0;
669 u32 tmp;
670
Michael Buesch9e095a62008-07-04 23:44:37 +0200671 if (dev->bus->bustype != SSB_BUSTYPE_PCI) {
672 /* This SSB device is not on a PCI host-bus. So the IRQs are
673 * not routed through the PCI core.
674 * So we must not enable routing through the PCI core. */
675 goto out;
676 }
677
Michael Buesch61e115a2007-09-18 15:12:50 -0400678 if (!pdev)
679 goto out;
680 bus = pdev->bus;
681
Michael Buescha3bafee2008-06-02 16:15:23 +0200682 might_sleep_if(pdev->id.coreid != SSB_DEV_PCI);
683
Michael Buesch61e115a2007-09-18 15:12:50 -0400684 /* Enable interrupts for this device. */
Michael Buesch8b454992009-10-09 20:32:10 +0200685 if ((pdev->id.revision >= 6) || (pdev->id.coreid == SSB_DEV_PCIE)) {
Michael Buesch61e115a2007-09-18 15:12:50 -0400686 u32 coremask;
687
688 /* Calculate the "coremask" for the device. */
689 coremask = (1 << dev->core_index);
690
Michael Buesch8b454992009-10-09 20:32:10 +0200691 SSB_WARN_ON(bus->bustype != SSB_BUSTYPE_PCI);
Michael Buesch61e115a2007-09-18 15:12:50 -0400692 err = pci_read_config_dword(bus->host_pci, SSB_PCI_IRQMASK, &tmp);
693 if (err)
694 goto out;
695 tmp |= coremask << 8;
696 err = pci_write_config_dword(bus->host_pci, SSB_PCI_IRQMASK, tmp);
697 if (err)
698 goto out;
699 } else {
700 u32 intvec;
701
702 intvec = ssb_read32(pdev, SSB_INTVEC);
Michael Buesch51e8b882008-04-08 10:31:22 +0200703 tmp = ssb_read32(dev, SSB_TPSFLAG);
704 tmp &= SSB_TPSFLAG_BPFLAG;
705 intvec |= (1 << tmp);
Michael Buesch61e115a2007-09-18 15:12:50 -0400706 ssb_write32(pdev, SSB_INTVEC, intvec);
707 }
708
709 /* Setup PCIcore operation. */
710 if (pc->setup_done)
711 goto out;
712 if (pdev->id.coreid == SSB_DEV_PCI) {
Rafał Miłecki6e914102011-04-27 17:39:47 +0200713 ssb_pcicore_pci_setup_workarounds(pc);
Michael Buesch61e115a2007-09-18 15:12:50 -0400714 } else {
715 WARN_ON(pdev->id.coreid != SSB_DEV_PCIE);
Rafał Miłecki6e914102011-04-27 17:39:47 +0200716 ssb_pcicore_pcie_setup_workarounds(pc);
Michael Buesch61e115a2007-09-18 15:12:50 -0400717 }
718 pc->setup_done = 1;
719out:
720 return err;
721}
722EXPORT_SYMBOL(ssb_pcicore_dev_irqvecs_enable);