2 * Sonics Silicon Backplane
3 * Broadcom PCI-core driver
5 * Copyright 2005, Broadcom Corporation
6 * Copyright 2006, 2007, Michael Buesch <mb@bu3sch.de>
8 * Licensed under the GNU/GPL. See COPYING for details.
11 #include <linux/ssb/ssb.h>
12 #include <linux/pci.h>
13 #include <linux/delay.h>
14 #include <linux/ssb/ssb_embedded.h>
16 #include "ssb_private.h"
20 u32
pcicore_read32(struct ssb_pcicore
*pc
, u16 offset
)
22 return ssb_read32(pc
->dev
, offset
);
26 void pcicore_write32(struct ssb_pcicore
*pc
, u16 offset
, u32 value
)
28 ssb_write32(pc
->dev
, offset
, value
);
32 u16
pcicore_read16(struct ssb_pcicore
*pc
, u16 offset
)
34 return ssb_read16(pc
->dev
, offset
);
38 void pcicore_write16(struct ssb_pcicore
*pc
, u16 offset
, u16 value
)
40 ssb_write16(pc
->dev
, offset
, value
);
43 /**************************************************
44 * Code for hostmode operation.
45 **************************************************/
47 #ifdef CONFIG_SSB_PCICORE_HOSTMODE
49 #include <asm/paccess.h>
50 /* Probe a 32bit value on the bus and catch bus exceptions.
51 * Returns nonzero on a bus exception.
52 * This is MIPS specific */
53 #define mips_busprobe32(val, addr) get_dbe((val), ((u32 *)(addr)))
55 /* Assume one-hot slot wiring */
56 #define SSB_PCI_SLOT_MAX 16
58 /* Global lock is OK, as we won't have more than one extpci anyway. */
59 static DEFINE_SPINLOCK(cfgspace_lock
);
60 /* Core to access the external PCI config space. Can only have one. */
61 static struct ssb_pcicore
*extpci_core
;
63 static u32 ssb_pcicore_pcibus_iobase
= 0x100;
64 static u32 ssb_pcicore_pcibus_membase
= SSB_PCI_DMA
;
66 int pcibios_plat_dev_init(struct pci_dev
*d
)
72 ssb_printk(KERN_INFO
"PCI: Fixing up device %s\n",
75 /* Fix up resource bases */
76 for (pos
= 0; pos
< 6; pos
++) {
77 res
= &d
->resource
[pos
];
78 if (res
->flags
& IORESOURCE_IO
)
79 base
= &ssb_pcicore_pcibus_iobase
;
81 base
= &ssb_pcicore_pcibus_membase
;
82 res
->flags
|= IORESOURCE_PCI_FIXED
;
84 size
= res
->end
- res
->start
+ 1;
85 if (*base
& (size
- 1))
86 *base
= (*base
+ size
) & ~(size
- 1);
88 res
->end
= res
->start
+ size
- 1;
90 pci_write_config_dword(d
, PCI_BASE_ADDRESS_0
+ (pos
<< 2), res
->start
);
92 /* Fix up PCI bridge BAR0 only */
93 if (d
->bus
->number
== 0 && PCI_SLOT(d
->devfn
) == 0)
96 /* Fix up interrupt lines */
97 d
->irq
= ssb_mips_irq(extpci_core
->dev
) + 2;
98 pci_write_config_byte(d
, PCI_INTERRUPT_LINE
, d
->irq
);
103 static void __init
ssb_fixup_pcibridge(struct pci_dev
*dev
)
107 if (dev
->bus
->number
!= 0 || PCI_SLOT(dev
->devfn
) != 0)
110 ssb_printk(KERN_INFO
"PCI: Fixing up bridge %s\n", pci_name(dev
));
112 /* Enable PCI bridge bus mastering and memory space */
114 if (pcibios_enable_device(dev
, ~0) < 0) {
115 ssb_printk(KERN_ERR
"PCI: SSB bridge enable failed\n");
119 /* Enable PCI bridge BAR1 prefetch and burst */
120 pci_write_config_dword(dev
, SSB_BAR1_CONTROL
, 3);
122 /* Make sure our latency is high enough to handle the devices behind us */
124 ssb_printk(KERN_INFO
"PCI: Fixing latency timer of device %s to %u\n",
126 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, lat
);
128 DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID
, PCI_ANY_ID
, ssb_fixup_pcibridge
);
130 int __init
pcibios_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
132 return ssb_mips_irq(extpci_core
->dev
) + 2;
135 static u32
get_cfgspace_addr(struct ssb_pcicore
*pc
,
136 unsigned int bus
, unsigned int dev
,
137 unsigned int func
, unsigned int off
)
142 /* We do only have one cardbus device behind the bridge. */
143 if (pc
->cardbusmode
&& (dev
>= 1))
147 /* Type 0 transaction */
148 if (unlikely(dev
>= SSB_PCI_SLOT_MAX
))
150 /* Slide the window */
151 tmp
= SSB_PCICORE_SBTOPCI_CFG0
;
152 tmp
|= ((1 << (dev
+ 16)) & SSB_PCICORE_SBTOPCI1_MASK
);
153 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI1
, tmp
);
154 /* Calculate the address */
156 addr
|= ((1 << (dev
+ 16)) & ~SSB_PCICORE_SBTOPCI1_MASK
);
160 /* Type 1 transaction */
161 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI1
,
162 SSB_PCICORE_SBTOPCI_CFG1
);
163 /* Calculate the address */
174 static int ssb_extpci_read_config(struct ssb_pcicore
*pc
,
175 unsigned int bus
, unsigned int dev
,
176 unsigned int func
, unsigned int off
,
183 SSB_WARN_ON(!pc
->hostmode
);
184 if (unlikely(len
!= 1 && len
!= 2 && len
!= 4))
186 addr
= get_cfgspace_addr(pc
, bus
, dev
, func
, off
);
190 mmio
= ioremap_nocache(addr
, len
);
194 if (mips_busprobe32(val
, mmio
)) {
200 val
>>= (8 * (off
& 3));
204 *((u8
*)buf
) = (u8
)val
;
207 *((u16
*)buf
) = (u16
)val
;
210 *((u32
*)buf
) = (u32
)val
;
220 static int ssb_extpci_write_config(struct ssb_pcicore
*pc
,
221 unsigned int bus
, unsigned int dev
,
222 unsigned int func
, unsigned int off
,
223 const void *buf
, int len
)
229 SSB_WARN_ON(!pc
->hostmode
);
230 if (unlikely(len
!= 1 && len
!= 2 && len
!= 4))
232 addr
= get_cfgspace_addr(pc
, bus
, dev
, func
, off
);
236 mmio
= ioremap_nocache(addr
, len
);
240 if (mips_busprobe32(val
, mmio
)) {
248 val
&= ~(0xFF << (8 * (off
& 3)));
249 val
|= *((const u8
*)buf
) << (8 * (off
& 3));
253 val
&= ~(0xFFFF << (8 * (off
& 3)));
254 val
|= *((const u16
*)buf
) << (8 * (off
& 3));
257 val
= *((const u32
*)buf
);
269 static int ssb_pcicore_read_config(struct pci_bus
*bus
, unsigned int devfn
,
270 int reg
, int size
, u32
*val
)
275 spin_lock_irqsave(&cfgspace_lock
, flags
);
276 err
= ssb_extpci_read_config(extpci_core
, bus
->number
, PCI_SLOT(devfn
),
277 PCI_FUNC(devfn
), reg
, val
, size
);
278 spin_unlock_irqrestore(&cfgspace_lock
, flags
);
280 return err
? PCIBIOS_DEVICE_NOT_FOUND
: PCIBIOS_SUCCESSFUL
;
283 static int ssb_pcicore_write_config(struct pci_bus
*bus
, unsigned int devfn
,
284 int reg
, int size
, u32 val
)
289 spin_lock_irqsave(&cfgspace_lock
, flags
);
290 err
= ssb_extpci_write_config(extpci_core
, bus
->number
, PCI_SLOT(devfn
),
291 PCI_FUNC(devfn
), reg
, &val
, size
);
292 spin_unlock_irqrestore(&cfgspace_lock
, flags
);
294 return err
? PCIBIOS_DEVICE_NOT_FOUND
: PCIBIOS_SUCCESSFUL
;
297 static struct pci_ops ssb_pcicore_pciops
= {
298 .read
= ssb_pcicore_read_config
,
299 .write
= ssb_pcicore_write_config
,
302 static struct resource ssb_pcicore_mem_resource
= {
303 .name
= "SSB PCIcore external memory",
304 .start
= SSB_PCI_DMA
,
305 .end
= SSB_PCI_DMA
+ SSB_PCI_DMA_SZ
- 1,
306 .flags
= IORESOURCE_MEM
| IORESOURCE_PCI_FIXED
,
309 static struct resource ssb_pcicore_io_resource
= {
310 .name
= "SSB PCIcore external I/O",
313 .flags
= IORESOURCE_IO
| IORESOURCE_PCI_FIXED
,
316 static struct pci_controller ssb_pcicore_controller
= {
317 .pci_ops
= &ssb_pcicore_pciops
,
318 .io_resource
= &ssb_pcicore_io_resource
,
319 .mem_resource
= &ssb_pcicore_mem_resource
,
320 .mem_offset
= 0x24000000,
323 static void ssb_pcicore_init_hostmode(struct ssb_pcicore
*pc
)
327 if (WARN_ON(extpci_core
))
331 ssb_dprintk(KERN_INFO PFX
"PCIcore in host mode found\n");
332 /* Reset devices on the external PCI bus */
333 val
= SSB_PCICORE_CTL_RST_OE
;
334 val
|= SSB_PCICORE_CTL_CLK_OE
;
335 pcicore_write32(pc
, SSB_PCICORE_CTL
, val
);
336 val
|= SSB_PCICORE_CTL_CLK
; /* Clock on */
337 pcicore_write32(pc
, SSB_PCICORE_CTL
, val
);
338 udelay(150); /* Assertion time demanded by the PCI standard */
339 val
|= SSB_PCICORE_CTL_RST
; /* Deassert RST# */
340 pcicore_write32(pc
, SSB_PCICORE_CTL
, val
);
341 val
= SSB_PCICORE_ARBCTL_INTERN
;
342 pcicore_write32(pc
, SSB_PCICORE_ARBCTL
, val
);
343 udelay(1); /* Assertion time demanded by the PCI standard */
345 if (pc
->dev
->bus
->has_cardbus_slot
) {
346 ssb_dprintk(KERN_INFO PFX
"CardBus slot detected\n");
348 /* GPIO 1 resets the bridge */
349 ssb_gpio_out(pc
->dev
->bus
, 1, 1);
350 ssb_gpio_outen(pc
->dev
->bus
, 1, 1);
351 pcicore_write16(pc
, SSB_PCICORE_SPROM(0),
352 pcicore_read16(pc
, SSB_PCICORE_SPROM(0))
356 /* 64MB I/O window */
357 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI0
,
358 SSB_PCICORE_SBTOPCI_IO
);
359 /* 64MB config space */
360 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI1
,
361 SSB_PCICORE_SBTOPCI_CFG0
);
362 /* 1GB memory window */
363 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI2
,
364 SSB_PCICORE_SBTOPCI_MEM
| SSB_PCI_DMA
);
366 /* Enable PCI bridge BAR0 prefetch and burst */
367 val
= PCI_COMMAND_MASTER
| PCI_COMMAND_MEMORY
;
368 ssb_extpci_write_config(pc
, 0, 0, 0, PCI_COMMAND
, &val
, 2);
369 /* Clear error conditions */
371 ssb_extpci_write_config(pc
, 0, 0, 0, PCI_STATUS
, &val
, 2);
373 /* Enable PCI interrupts */
374 pcicore_write32(pc
, SSB_PCICORE_IMASK
,
375 SSB_PCICORE_IMASK_INTA
);
377 /* Ok, ready to run, register it to the system.
378 * The following needs change, if we want to port hostmode
379 * to non-MIPS platform. */
380 ssb_pcicore_controller
.io_map_base
= (unsigned long)ioremap_nocache(SSB_PCI_MEM
, 0x04000000);
381 set_io_port_base(ssb_pcicore_controller
.io_map_base
);
382 /* Give some time to the PCI controller to configure itself with the new
383 * values. Not waiting at this point causes crashes of the machine. */
385 register_pci_controller(&ssb_pcicore_controller
);
388 static int pcicore_is_in_hostmode(struct ssb_pcicore
*pc
)
390 struct ssb_bus
*bus
= pc
->dev
->bus
;
394 chipid_top
= (bus
->chip_id
& 0xFF00);
395 if (chipid_top
!= 0x4700 &&
396 chipid_top
!= 0x5300)
399 if (bus
->sprom
.boardflags_lo
& SSB_PCICORE_BFL_NOPCI
)
402 /* The 200-pin BCM4712 package does not bond out PCI. Even when
403 * PCI is bonded out, some boards may leave the pins floating. */
404 if (bus
->chip_id
== 0x4712) {
405 if (bus
->chip_package
== SSB_CHIPPACK_BCM4712S
)
407 if (bus
->chip_package
== SSB_CHIPPACK_BCM4712M
)
410 if (bus
->chip_id
== 0x5350)
413 return !mips_busprobe32(tmp
, (bus
->mmio
+ (pc
->dev
->core_index
* SSB_CORE_SIZE
)));
415 #endif /* CONFIG_SSB_PCICORE_HOSTMODE */
418 /**************************************************
419 * Generic and Clientmode operation code.
420 **************************************************/
422 static void ssb_pcicore_init_clientmode(struct ssb_pcicore
*pc
)
424 /* Disable PCI interrupts. */
425 ssb_write32(pc
->dev
, SSB_INTVEC
, 0);
428 void ssb_pcicore_init(struct ssb_pcicore
*pc
)
430 struct ssb_device
*dev
= pc
->dev
;
436 if (!ssb_device_is_enabled(dev
))
437 ssb_device_enable(dev
, 0);
439 #ifdef CONFIG_SSB_PCICORE_HOSTMODE
440 pc
->hostmode
= pcicore_is_in_hostmode(pc
);
442 ssb_pcicore_init_hostmode(pc
);
443 #endif /* CONFIG_SSB_PCICORE_HOSTMODE */
445 ssb_pcicore_init_clientmode(pc
);
448 static u32
ssb_pcie_read(struct ssb_pcicore
*pc
, u32 address
)
450 pcicore_write32(pc
, 0x130, address
);
451 return pcicore_read32(pc
, 0x134);
454 static void ssb_pcie_write(struct ssb_pcicore
*pc
, u32 address
, u32 data
)
456 pcicore_write32(pc
, 0x130, address
);
457 pcicore_write32(pc
, 0x134, data
);
460 static void ssb_pcie_mdio_write(struct ssb_pcicore
*pc
, u8 device
,
461 u8 address
, u16 data
)
463 const u16 mdio_control
= 0x128;
464 const u16 mdio_data
= 0x12C;
468 v
= 0x80; /* Enable Preamble Sequence */
469 v
|= 0x2; /* MDIO Clock Divisor */
470 pcicore_write32(pc
, mdio_control
, v
);
472 v
= (1 << 30); /* Start of Transaction */
473 v
|= (1 << 28); /* Write Transaction */
474 v
|= (1 << 17); /* Turnaround */
475 v
|= (u32
)device
<< 22;
476 v
|= (u32
)address
<< 18;
478 pcicore_write32(pc
, mdio_data
, v
);
479 /* Wait for the device to complete the transaction */
481 for (i
= 0; i
< 10; i
++) {
482 v
= pcicore_read32(pc
, mdio_control
);
483 if (v
& 0x100 /* Trans complete */)
487 pcicore_write32(pc
, mdio_control
, 0);
490 static void ssb_broadcast_value(struct ssb_device
*dev
,
491 u32 address
, u32 data
)
493 /* This is used for both, PCI and ChipCommon core, so be careful. */
494 BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR
!= SSB_CHIPCO_BCAST_ADDR
);
495 BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA
!= SSB_CHIPCO_BCAST_DATA
);
497 ssb_write32(dev
, SSB_PCICORE_BCAST_ADDR
, address
);
498 ssb_read32(dev
, SSB_PCICORE_BCAST_ADDR
); /* flush */
499 ssb_write32(dev
, SSB_PCICORE_BCAST_DATA
, data
);
500 ssb_read32(dev
, SSB_PCICORE_BCAST_DATA
); /* flush */
503 static void ssb_commit_settings(struct ssb_bus
*bus
)
505 struct ssb_device
*dev
;
507 dev
= bus
->chipco
.dev
? bus
->chipco
.dev
: bus
->pcicore
.dev
;
510 /* This forces an update of the cached registers. */
511 ssb_broadcast_value(dev
, 0xFD8, 0);
514 int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore
*pc
,
515 struct ssb_device
*dev
)
517 struct ssb_device
*pdev
= pc
->dev
;
528 /* Enable interrupts for this device. */
530 ((pdev
->id
.revision
>= 6) || (pdev
->id
.coreid
== SSB_DEV_PCIE
))) {
533 /* Calculate the "coremask" for the device. */
534 coremask
= (1 << dev
->core_index
);
536 err
= pci_read_config_dword(bus
->host_pci
, SSB_PCI_IRQMASK
, &tmp
);
539 tmp
|= coremask
<< 8;
540 err
= pci_write_config_dword(bus
->host_pci
, SSB_PCI_IRQMASK
, tmp
);
546 intvec
= ssb_read32(pdev
, SSB_INTVEC
);
547 if ((bus
->chip_id
& 0xFF00) == 0x4400) {
548 /* Workaround: On the BCM44XX the BPFLAG routing
549 * bit is wrong. Use a hardcoded constant. */
550 intvec
|= 0x00000002;
552 tmp
= ssb_read32(dev
, SSB_TPSFLAG
);
553 tmp
&= SSB_TPSFLAG_BPFLAG
;
556 ssb_write32(pdev
, SSB_INTVEC
, intvec
);
559 /* Setup PCIcore operation. */
562 if (pdev
->id
.coreid
== SSB_DEV_PCI
) {
563 tmp
= pcicore_read32(pc
, SSB_PCICORE_SBTOPCI2
);
564 tmp
|= SSB_PCICORE_SBTOPCI_PREF
;
565 tmp
|= SSB_PCICORE_SBTOPCI_BURST
;
566 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI2
, tmp
);
568 if (pdev
->id
.revision
< 5) {
569 tmp
= ssb_read32(pdev
, SSB_IMCFGLO
);
570 tmp
&= ~SSB_IMCFGLO_SERTO
;
572 tmp
&= ~SSB_IMCFGLO_REQTO
;
573 tmp
|= 3 << SSB_IMCFGLO_REQTO_SHIFT
;
574 ssb_write32(pdev
, SSB_IMCFGLO
, tmp
);
575 ssb_commit_settings(bus
);
576 } else if (pdev
->id
.revision
>= 11) {
577 tmp
= pcicore_read32(pc
, SSB_PCICORE_SBTOPCI2
);
578 tmp
|= SSB_PCICORE_SBTOPCI_MRM
;
579 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI2
, tmp
);
582 WARN_ON(pdev
->id
.coreid
!= SSB_DEV_PCIE
);
583 //TODO: Better make defines for all these magic PCIE values.
584 if ((pdev
->id
.revision
== 0) || (pdev
->id
.revision
== 1)) {
585 /* TLP Workaround register. */
586 tmp
= ssb_pcie_read(pc
, 0x4);
588 ssb_pcie_write(pc
, 0x4, tmp
);
590 if (pdev
->id
.revision
== 0) {
591 const u8 serdes_rx_device
= 0x1F;
593 ssb_pcie_mdio_write(pc
, serdes_rx_device
,
594 2 /* Timer */, 0x8128);
595 ssb_pcie_mdio_write(pc
, serdes_rx_device
,
596 6 /* CDR */, 0x0100);
597 ssb_pcie_mdio_write(pc
, serdes_rx_device
,
598 7 /* CDR BW */, 0x1466);
599 } else if (pdev
->id
.revision
== 1) {
600 /* DLLP Link Control register. */
601 tmp
= ssb_pcie_read(pc
, 0x100);
603 ssb_pcie_write(pc
, 0x100, tmp
);
610 EXPORT_SYMBOL(ssb_pcicore_dev_irqvecs_enable
);