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>
15 #include "ssb_private.h"
19 u32
pcicore_read32(struct ssb_pcicore
*pc
, u16 offset
)
21 return ssb_read32(pc
->dev
, offset
);
25 void pcicore_write32(struct ssb_pcicore
*pc
, u16 offset
, u32 value
)
27 ssb_write32(pc
->dev
, offset
, value
);
30 /**************************************************
31 * Code for hostmode operation.
32 **************************************************/
34 #ifdef CONFIG_SSB_PCICORE_HOSTMODE
36 #include <asm/paccess.h>
37 /* Read the bus and catch bus exceptions. This is MIPS specific. */
38 #define mips_busprobe(val, addr) get_dbe((val), (addr))
40 /* Assume one-hot slot wiring */
41 #define SSB_PCI_SLOT_MAX 16
43 /* Global lock is OK, as we won't have more than one extpci anyway. */
44 static DEFINE_SPINLOCK(cfgspace_lock
);
45 /* Core to access the external PCI config space. Can only have one. */
46 static struct ssb_pcicore
*extpci_core
;
48 u32 pci_iobase
= 0x100;
49 u32 pci_membase
= SSB_PCI_DMA
;
51 int pcibios_plat_dev_init(struct pci_dev
*d
)
57 printk("PCI: Fixing up device %s\n", pci_name(d
));
59 /* Fix up resource bases */
60 for (pos
= 0; pos
< 6; pos
++) {
61 res
= &d
->resource
[pos
];
62 base
= ((res
->flags
& IORESOURCE_IO
) ? &pci_iobase
: &pci_membase
);
64 size
= res
->end
- res
->start
+ 1;
65 if (*base
& (size
- 1))
66 *base
= (*base
+ size
) & ~(size
- 1);
68 res
->end
= res
->start
+ size
- 1;
70 pci_write_config_dword(d
, PCI_BASE_ADDRESS_0
+ (pos
<< 2), res
->start
);
72 /* Fix up PCI bridge BAR0 only */
73 if (d
->bus
->number
== 0 && PCI_SLOT(d
->devfn
) == 0)
76 /* Fix up interrupt lines */
77 d
->irq
= ssb_mips_irq(extpci_core
->dev
) + 2;
78 pci_write_config_byte(d
, PCI_INTERRUPT_LINE
, d
->irq
);
83 static void __init
ssb_fixup_pcibridge(struct pci_dev
*dev
)
85 if (dev
->bus
->number
!= 0 || PCI_SLOT(dev
->devfn
) != 0)
88 printk("PCI: fixing up bridge\n");
90 /* Enable PCI bridge bus mastering and memory space */
92 pcibios_enable_device(dev
, ~0);
94 /* Enable PCI bridge BAR1 prefetch and burst */
95 pci_write_config_dword(dev
, SSB_BAR1_CONTROL
, 3);
97 DECLARE_PCI_FIXUP_EARLY(PCI_ANY_ID
, PCI_ANY_ID
, ssb_fixup_pcibridge
);
99 int __init
pcibios_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
101 return ssb_mips_irq(extpci_core
->dev
) + 2;
104 static u32
get_cfgspace_addr(struct ssb_pcicore
*pc
,
105 unsigned int bus
, unsigned int dev
,
106 unsigned int func
, unsigned int off
)
111 if (unlikely(pc
->cardbusmode
&& dev
> 1))
114 /* Type 0 transaction */
115 if (unlikely(dev
>= SSB_PCI_SLOT_MAX
))
117 /* Slide the window */
118 tmp
= SSB_PCICORE_SBTOPCI_CFG0
;
119 tmp
|= ((1 << (dev
+ 16)) & SSB_PCICORE_SBTOPCI1_MASK
);
120 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI1
, tmp
);
121 /* Calculate the address */
123 addr
|= ((1 << (dev
+ 16)) & ~SSB_PCICORE_SBTOPCI1_MASK
);
127 /* Type 1 transaction */
128 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI1
,
129 SSB_PCICORE_SBTOPCI_CFG1
);
130 /* Calculate the address */
141 static int ssb_extpci_read_config(struct ssb_pcicore
*pc
,
142 unsigned int bus
, unsigned int dev
,
143 unsigned int func
, unsigned int off
,
150 assert(pc
->hostmode
);
151 if (unlikely(len
!= 1 && len
!= 2 && len
!= 4))
153 addr
= get_cfgspace_addr(pc
, bus
, dev
, func
, off
);
157 mmio
= ioremap_nocache(addr
, len
);
161 if (mips_busprobe(val
, (u32
*) mmio
)) {
167 val
>>= (8 * (off
& 3));
171 *((u8
*)buf
) = (u8
)val
;
174 *((u16
*)buf
) = (u16
)val
;
177 *((u32
*)buf
) = (u32
)val
;
187 static int ssb_extpci_write_config(struct ssb_pcicore
*pc
,
188 unsigned int bus
, unsigned int dev
,
189 unsigned int func
, unsigned int off
,
190 const void *buf
, int len
)
196 assert(pc
->hostmode
);
197 if (unlikely(len
!= 1 && len
!= 2 && len
!= 4))
199 addr
= get_cfgspace_addr(pc
, bus
, dev
, func
, off
);
203 mmio
= ioremap_nocache(addr
, len
);
207 if (mips_busprobe(val
, (u32
*) mmio
)) {
215 val
&= ~(0xFF << (8 * (off
& 3)));
216 val
|= *((const u8
*)buf
) << (8 * (off
& 3));
220 val
&= ~(0xFFFF << (8 * (off
& 3)));
221 val
|= *((const u16
*)buf
) << (8 * (off
& 3));
224 val
= *((const u32
*)buf
);
227 writel(*((const u32
*)buf
), mmio
);
236 static int ssb_pcicore_read_config(struct pci_bus
*bus
, unsigned int devfn
,
237 int reg
, int size
, u32
*val
)
242 spin_lock_irqsave(&cfgspace_lock
, flags
);
243 err
= ssb_extpci_read_config(extpci_core
, bus
->number
, PCI_SLOT(devfn
),
244 PCI_FUNC(devfn
), reg
, val
, size
);
245 spin_unlock_irqrestore(&cfgspace_lock
, flags
);
247 return err
? PCIBIOS_DEVICE_NOT_FOUND
: PCIBIOS_SUCCESSFUL
;
250 static int ssb_pcicore_write_config(struct pci_bus
*bus
, unsigned int devfn
,
251 int reg
, int size
, u32 val
)
256 spin_lock_irqsave(&cfgspace_lock
, flags
);
257 err
= ssb_extpci_write_config(extpci_core
, bus
->number
, PCI_SLOT(devfn
),
258 PCI_FUNC(devfn
), reg
, &val
, size
);
259 spin_unlock_irqrestore(&cfgspace_lock
, flags
);
261 return err
? PCIBIOS_DEVICE_NOT_FOUND
: PCIBIOS_SUCCESSFUL
;
264 static struct pci_ops ssb_pcicore_pciops
= {
265 .read
= ssb_pcicore_read_config
,
266 .write
= ssb_pcicore_write_config
,
269 static struct resource ssb_pcicore_mem_resource
= {
270 .name
= "SSB PCIcore external memory",
271 .start
= SSB_PCI_DMA
,
272 .end
= (u32
)SSB_PCI_DMA
+ (u32
)SSB_PCI_DMA_SZ
- 1,
273 .flags
= IORESOURCE_MEM
,
276 static struct resource ssb_pcicore_io_resource
= {
277 .name
= "SSB PCIcore external I/O",
280 .flags
= IORESOURCE_IO
,
283 static struct pci_controller ssb_pcicore_controller
= {
284 .pci_ops
= &ssb_pcicore_pciops
,
285 .io_resource
= &ssb_pcicore_io_resource
,
286 .mem_resource
= &ssb_pcicore_mem_resource
,
287 .mem_offset
= 0x24000000,
290 static void ssb_pcicore_init_hostmode(struct ssb_pcicore
*pc
)
300 ssb_dprintk(KERN_INFO PFX
"PCIcore in host mode found\n");
301 /* Reset devices on the external PCI bus */
302 val
= SSB_PCICORE_CTL_RST_OE
;
303 val
|= SSB_PCICORE_CTL_CLK_OE
;
304 pcicore_write32(pc
, SSB_PCICORE_CTL
, val
);
305 val
|= SSB_PCICORE_CTL_CLK
; /* Clock on */
306 pcicore_write32(pc
, SSB_PCICORE_CTL
, val
);
308 val
|= SSB_PCICORE_CTL_RST
; /* Deassert RST# */
309 pcicore_write32(pc
, SSB_PCICORE_CTL
, val
);
314 /* 64MB I/O window */
315 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI0
,
316 SSB_PCICORE_SBTOPCI_IO
);
317 /* 64MB config space */
318 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI1
,
319 SSB_PCICORE_SBTOPCI_CFG0
);
320 /* 1GB memory window */
321 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI2
,
322 SSB_PCICORE_SBTOPCI_MEM
| SSB_PCI_DMA
);
324 /* Enable PCI bridge BAR0 prefetch and burst */
325 val
= PCI_COMMAND_MASTER
| PCI_COMMAND_MEMORY
;
326 ssb_extpci_write_config(pc
, 0, 0, 0, PCI_COMMAND
, &val
, 2);
327 /* Clear error conditions */
329 ssb_extpci_write_config(pc
, 0, 0, 0, PCI_STATUS
, &val
, 2);
331 /* Enable PCI interrupts */
332 pcicore_write32(pc
, SSB_PCICORE_IMASK
,
333 SSB_PCICORE_IMASK_INTA
);
335 /* Ok, ready to run, register it to the system.
336 * The following needs change, if we want to port hostmode
337 * to non-MIPS platform. */
338 set_io_port_base((unsigned long)ioremap_nocache(SSB_PCI_MEM
, 0x04000000));
339 register_pci_controller(&ssb_pcicore_controller
);
342 static int pcicore_is_in_hostmode(struct ssb_pcicore
*pc
)
344 struct ssb_bus
*bus
= pc
->dev
->bus
;
348 chipid_top
= (bus
->chip_id
& 0xFF00);
349 if (chipid_top
!= 0x4700 &&
350 chipid_top
!= 0x5300)
353 if (bus
->sprom
.r1
.boardflags_lo
& SSB_PCICORE_BFL_NOPCI
)
356 /* The 200-pin BCM4712 package does not bond out PCI. Even when
357 * PCI is bonded out, some boards may leave the pins floating. */
358 if (bus
->chip_id
== 0x4712) {
359 if (bus
->chip_package
== SSB_CHIPPACK_BCM4712S
)
361 if (bus
->chip_package
== SSB_CHIPPACK_BCM4712M
)
364 if (bus
->chip_id
== 0x5350)
367 return !mips_busprobe(tmp
, (u32
*) (bus
->mmio
+ (pc
->dev
->core_index
* SSB_CORE_SIZE
)));
369 #endif /* CONFIG_SSB_PCICORE_HOSTMODE */
372 /**************************************************
373 * Generic and Clientmode operation code.
374 **************************************************/
376 static void ssb_pcicore_init_clientmode(struct ssb_pcicore
*pc
)
378 /* Disable PCI interrupts. */
379 ssb_write32(pc
->dev
, SSB_INTVEC
, 0);
382 void ssb_pcicore_init(struct ssb_pcicore
*pc
)
384 struct ssb_device
*dev
= pc
->dev
;
390 if (!ssb_device_is_enabled(dev
))
391 ssb_device_enable(dev
, 0);
393 #ifdef CONFIG_SSB_PCICORE_HOSTMODE
394 pc
->hostmode
= pcicore_is_in_hostmode(pc
);
396 ssb_pcicore_init_hostmode(pc
);
397 #endif /* CONFIG_SSB_PCICORE_HOSTMODE */
399 ssb_pcicore_init_clientmode(pc
);
402 static u32
ssb_pcie_read(struct ssb_pcicore
*pc
, u32 address
)
404 pcicore_write32(pc
, 0x130, address
);
405 return pcicore_read32(pc
, 0x134);
408 static void ssb_pcie_write(struct ssb_pcicore
*pc
, u32 address
, u32 data
)
410 pcicore_write32(pc
, 0x130, address
);
411 pcicore_write32(pc
, 0x134, data
);
414 static void ssb_pcie_mdio_write(struct ssb_pcicore
*pc
, u8 device
,
415 u8 address
, u16 data
)
417 const u16 mdio_control
= 0x128;
418 const u16 mdio_data
= 0x12C;
422 v
= 0x80; /* Enable Preamble Sequence */
423 v
|= 0x2; /* MDIO Clock Divisor */
424 pcicore_write32(pc
, mdio_control
, v
);
426 v
= (1 << 30); /* Start of Transaction */
427 v
|= (1 << 28); /* Write Transaction */
428 v
|= (1 << 17); /* Turnaround */
429 v
|= (u32
)device
<< 22;
430 v
|= (u32
)address
<< 18;
432 pcicore_write32(pc
, mdio_data
, v
);
434 for (i
= 0; i
< 10; i
++) {
435 v
= pcicore_read32(pc
, mdio_control
);
436 if (v
& 0x100 /* Trans complete */)
440 pcicore_write32(pc
, mdio_control
, 0);
443 static void ssb_broadcast_value(struct ssb_device
*dev
,
444 u32 address
, u32 data
)
446 /* This is used for both, PCI and ChipCommon core, so be careful. */
447 BUILD_BUG_ON(SSB_PCICORE_BCAST_ADDR
!= SSB_CHIPCO_BCAST_ADDR
);
448 BUILD_BUG_ON(SSB_PCICORE_BCAST_DATA
!= SSB_CHIPCO_BCAST_DATA
);
450 ssb_write32(dev
, SSB_PCICORE_BCAST_ADDR
, address
);
451 ssb_read32(dev
, SSB_PCICORE_BCAST_ADDR
); /* flush */
452 ssb_write32(dev
, SSB_PCICORE_BCAST_DATA
, data
);
453 ssb_read32(dev
, SSB_PCICORE_BCAST_DATA
); /* flush */
456 static void ssb_commit_settings(struct ssb_bus
*bus
)
458 struct ssb_device
*dev
;
460 dev
= bus
->chipco
.dev
? bus
->chipco
.dev
: bus
->pcicore
.dev
;
462 /* This forces an update of the cached registers. */
463 ssb_broadcast_value(dev
, 0xFD8, 0);
466 int ssb_pcicore_dev_irqvecs_enable(struct ssb_pcicore
*pc
,
467 struct ssb_device
*dev
)
469 struct ssb_device
*pdev
= pc
->dev
;
480 /* Enable interrupts for this device. */
482 ((pdev
->id
.revision
>= 6) || (pdev
->id
.coreid
== SSB_DEV_PCIE
))) {
485 /* Calculate the "coremask" for the device. */
486 coremask
= (1 << dev
->core_index
);
488 err
= pci_read_config_dword(bus
->host_pci
, SSB_PCI_IRQMASK
, &tmp
);
491 tmp
|= coremask
<< 8;
492 err
= pci_write_config_dword(bus
->host_pci
, SSB_PCI_IRQMASK
, tmp
);
498 intvec
= ssb_read32(pdev
, SSB_INTVEC
);
499 tmp
= ssb_read32(dev
, SSB_TPSFLAG
);
500 tmp
&= SSB_TPSFLAG_BPFLAG
;
502 ssb_write32(pdev
, SSB_INTVEC
, intvec
);
505 /* Setup PCIcore operation. */
508 if (pdev
->id
.coreid
== SSB_DEV_PCI
) {
509 tmp
= pcicore_read32(pc
, SSB_PCICORE_SBTOPCI2
);
510 tmp
|= SSB_PCICORE_SBTOPCI_PREF
;
511 tmp
|= SSB_PCICORE_SBTOPCI_BURST
;
512 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI2
, tmp
);
514 if (pdev
->id
.revision
< 5) {
515 tmp
= ssb_read32(pdev
, SSB_IMCFGLO
);
516 tmp
&= ~SSB_IMCFGLO_SERTO
;
518 tmp
&= ~SSB_IMCFGLO_REQTO
;
519 tmp
|= 3 << SSB_IMCFGLO_REQTO_SHIFT
;
520 ssb_write32(pdev
, SSB_IMCFGLO
, tmp
);
521 ssb_commit_settings(bus
);
522 } else if (pdev
->id
.revision
>= 11) {
523 tmp
= pcicore_read32(pc
, SSB_PCICORE_SBTOPCI2
);
524 tmp
|= SSB_PCICORE_SBTOPCI_MRM
;
525 pcicore_write32(pc
, SSB_PCICORE_SBTOPCI2
, tmp
);
528 assert(pdev
->id
.coreid
== SSB_DEV_PCIE
);
529 //TODO: Better make defines for all these magic PCIE values.
530 if ((pdev
->id
.revision
== 0) || (pdev
->id
.revision
== 1)) {
531 /* TLP Workaround register. */
532 tmp
= ssb_pcie_read(pc
, 0x4);
534 ssb_pcie_write(pc
, 0x4, tmp
);
536 if (pdev
->id
.revision
== 0) {
537 const u8 serdes_rx_device
= 0x1F;
539 ssb_pcie_mdio_write(pc
, serdes_rx_device
,
540 2 /* Timer */, 0x8128);
541 ssb_pcie_mdio_write(pc
, serdes_rx_device
,
542 6 /* CDR */, 0x0100);
543 ssb_pcie_mdio_write(pc
, serdes_rx_device
,
544 7 /* CDR BW */, 0x1466);
545 } else if (pdev
->id
.revision
== 1) {
546 /* DLLP Link Control register. */
547 tmp
= ssb_pcie_read(pc
, 0x100);
549 ssb_pcie_write(pc
, 0x100, tmp
);
556 EXPORT_SYMBOL(ssb_pcicore_dev_irqvecs_enable
);