2 * PCI / PCI-X / PCI-Express support for 4xx parts
4 * Copyright 2007 Ben. Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
6 * Most PCI Express code is coming from Stefan Roese implementation for
7 * arch/ppc in the Denx tree, slightly reworked by me.
9 * Copyright 2007 DENX Software Engineering, Stefan Roese <sr@denx.de>
11 * Some of that comes itself from a previous implementation for 440SPE only
14 * Copyright (c) 2005 Cisco Systems. All rights reserved.
15 * Roland Dreier <rolandd@cisco.com>
21 #include <linux/kernel.h>
22 #include <linux/pci.h>
23 #include <linux/init.h>
25 #include <linux/bootmem.h>
26 #include <linux/delay.h>
27 #include <linux/slab.h>
30 #include <asm/pci-bridge.h>
31 #include <asm/machdep.h>
33 #include <asm/dcr-regs.h>
34 #include <mm/mmu_decl.h>
36 #include "ppc4xx_pci.h"
38 static int dma_offset_set
;
40 #define U64_TO_U32_LOW(val) ((u32)((val) & 0x00000000ffffffffULL))
41 #define U64_TO_U32_HIGH(val) ((u32)((val) >> 32))
43 #define RES_TO_U32_LOW(val) \
44 ((sizeof(resource_size_t) > sizeof(u32)) ? U64_TO_U32_LOW(val) : (val))
45 #define RES_TO_U32_HIGH(val) \
46 ((sizeof(resource_size_t) > sizeof(u32)) ? U64_TO_U32_HIGH(val) : (0))
48 static inline int ppc440spe_revA(void)
50 /* Catch both 440SPe variants, with and without RAID6 support */
51 if ((mfspr(SPRN_PVR
) & 0xffefffff) == 0x53421890)
57 static void fixup_ppc4xx_pci_bridge(struct pci_dev
*dev
)
59 struct pci_controller
*hose
;
62 if (dev
->devfn
!= 0 || dev
->bus
->self
!= NULL
)
65 hose
= pci_bus_to_host(dev
->bus
);
69 if (!of_device_is_compatible(hose
->dn
, "ibm,plb-pciex") &&
70 !of_device_is_compatible(hose
->dn
, "ibm,plb-pcix") &&
71 !of_device_is_compatible(hose
->dn
, "ibm,plb-pci"))
74 if (of_device_is_compatible(hose
->dn
, "ibm,plb440epx-pci") ||
75 of_device_is_compatible(hose
->dn
, "ibm,plb440grx-pci")) {
76 hose
->indirect_type
|= PPC_INDIRECT_TYPE_BROKEN_MRM
;
79 /* Hide the PCI host BARs from the kernel as their content doesn't
80 * fit well in the resource management
82 for (i
= 0; i
< DEVICE_COUNT_RESOURCE
; i
++) {
83 dev
->resource
[i
].start
= dev
->resource
[i
].end
= 0;
84 dev
->resource
[i
].flags
= 0;
87 printk(KERN_INFO
"PCI: Hiding 4xx host bridge resources %s\n",
90 DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID
, PCI_ANY_ID
, fixup_ppc4xx_pci_bridge
);
92 static int __init
ppc4xx_parse_dma_ranges(struct pci_controller
*hose
,
99 int pna
= of_n_addr_cells(hose
->dn
);
106 res
->flags
= IORESOURCE_MEM
| IORESOURCE_PREFETCH
;
108 /* Get dma-ranges property */
109 ranges
= of_get_property(hose
->dn
, "dma-ranges", &rlen
);
114 while ((rlen
-= np
* 4) >= 0) {
115 u32 pci_space
= ranges
[0];
116 u64 pci_addr
= of_read_number(ranges
+ 1, 2);
117 u64 cpu_addr
= of_translate_dma_address(hose
->dn
, ranges
+ 3);
118 size
= of_read_number(ranges
+ pna
+ 3, 2);
120 if (cpu_addr
== OF_BAD_ADDR
|| size
== 0)
123 /* We only care about memory */
124 if ((pci_space
& 0x03000000) != 0x02000000)
127 /* We currently only support memory at 0, and pci_addr
128 * within 32 bits space
130 if (cpu_addr
!= 0 || pci_addr
> 0xffffffff) {
131 printk(KERN_WARNING
"%s: Ignored unsupported dma range"
132 " 0x%016llx...0x%016llx -> 0x%016llx\n",
134 pci_addr
, pci_addr
+ size
- 1, cpu_addr
);
138 /* Check if not prefetchable */
139 if (!(pci_space
& 0x40000000))
140 res
->flags
&= ~IORESOURCE_PREFETCH
;
144 res
->start
= pci_addr
;
145 /* Beware of 32 bits resources */
146 if (sizeof(resource_size_t
) == sizeof(u32
) &&
147 (pci_addr
+ size
) > 0x100000000ull
)
148 res
->end
= 0xffffffff;
150 res
->end
= res
->start
+ size
- 1;
154 /* We only support one global DMA offset */
155 if (dma_offset_set
&& pci_dram_offset
!= res
->start
) {
156 printk(KERN_ERR
"%s: dma-ranges(s) mismatch\n",
157 hose
->dn
->full_name
);
161 /* Check that we can fit all of memory as we don't support
164 if (size
< total_memory
) {
165 printk(KERN_ERR
"%s: dma-ranges too small "
166 "(size=%llx total_memory=%llx)\n",
167 hose
->dn
->full_name
, size
, (u64
)total_memory
);
171 /* Check we are a power of 2 size and that base is a multiple of size*/
172 if ((size
& (size
- 1)) != 0 ||
173 (res
->start
& (size
- 1)) != 0) {
174 printk(KERN_ERR
"%s: dma-ranges unaligned\n",
175 hose
->dn
->full_name
);
179 /* Check that we are fully contained within 32 bits space */
180 if (res
->end
> 0xffffffff) {
181 printk(KERN_ERR
"%s: dma-ranges outside of 32 bits space\n",
182 hose
->dn
->full_name
);
187 pci_dram_offset
= res
->start
;
188 hose
->dma_window_base_cur
= res
->start
;
189 hose
->dma_window_size
= resource_size(res
);
191 printk(KERN_INFO
"4xx PCI DMA offset set to 0x%08lx\n",
193 printk(KERN_INFO
"4xx PCI DMA window base to 0x%016llx\n",
194 (unsigned long long)hose
->dma_window_base_cur
);
195 printk(KERN_INFO
"DMA window size 0x%016llx\n",
196 (unsigned long long)hose
->dma_window_size
);
204 static int __init
ppc4xx_setup_one_pci_PMM(struct pci_controller
*hose
,
212 u32 ma
, pcila
, pciha
;
214 /* Hack warning ! The "old" PCI 2.x cell only let us configure the low
215 * 32-bit of incoming PLB addresses. The top 4 bits of the 36-bit
216 * address are actually hard wired to a value that appears to depend
217 * on the specific SoC. For example, it's 0 on 440EP and 1 on 440EPx.
219 * The trick here is we just crop those top bits and ignore them when
220 * programming the chip. That means the device-tree has to be right
221 * for the specific part used (we don't print a warning if it's wrong
222 * but on the other hand, you'll crash quickly enough), but at least
223 * this code should work whatever the hard coded value is
225 plb_addr
&= 0xffffffffull
;
227 /* Note: Due to the above hack, the test below doesn't actually test
228 * if you address is above 4G, but it tests that address and
229 * (address + size) are both contained in the same 4G
231 if ((plb_addr
+ size
) > 0xffffffffull
|| !is_power_of_2(size
) ||
232 size
< 0x1000 || (plb_addr
& (size
- 1)) != 0) {
233 printk(KERN_WARNING
"%s: Resource out of range\n",
234 hose
->dn
->full_name
);
237 ma
= (0xffffffffu
<< ilog2(size
)) | 1;
238 if (flags
& IORESOURCE_PREFETCH
)
241 pciha
= RES_TO_U32_HIGH(pci_addr
);
242 pcila
= RES_TO_U32_LOW(pci_addr
);
244 writel(plb_addr
, reg
+ PCIL0_PMM0LA
+ (0x10 * index
));
245 writel(pcila
, reg
+ PCIL0_PMM0PCILA
+ (0x10 * index
));
246 writel(pciha
, reg
+ PCIL0_PMM0PCIHA
+ (0x10 * index
));
247 writel(ma
, reg
+ PCIL0_PMM0MA
+ (0x10 * index
));
252 static void __init
ppc4xx_configure_pci_PMMs(struct pci_controller
*hose
,
255 int i
, j
, found_isa_hole
= 0;
257 /* Setup outbound memory windows */
258 for (i
= j
= 0; i
< 3; i
++) {
259 struct resource
*res
= &hose
->mem_resources
[i
];
260 resource_size_t offset
= hose
->mem_offset
[i
];
262 /* we only care about memory windows */
263 if (!(res
->flags
& IORESOURCE_MEM
))
266 printk(KERN_WARNING
"%s: Too many ranges\n",
267 hose
->dn
->full_name
);
271 /* Configure the resource */
272 if (ppc4xx_setup_one_pci_PMM(hose
, reg
,
280 /* If the resource PCI address is 0 then we have our
283 if (res
->start
== offset
)
288 /* Handle ISA memory hole if not already covered */
289 if (j
<= 2 && !found_isa_hole
&& hose
->isa_mem_size
)
290 if (ppc4xx_setup_one_pci_PMM(hose
, reg
, hose
->isa_mem_phys
, 0,
291 hose
->isa_mem_size
, 0, j
) == 0)
292 printk(KERN_INFO
"%s: Legacy ISA memory support enabled\n",
293 hose
->dn
->full_name
);
296 static void __init
ppc4xx_configure_pci_PTMs(struct pci_controller
*hose
,
298 const struct resource
*res
)
300 resource_size_t size
= resource_size(res
);
303 /* Calculate window size */
304 sa
= (0xffffffffu
<< ilog2(size
)) | 1;
307 /* RAM is always at 0 local for now */
308 writel(0, reg
+ PCIL0_PTM1LA
);
309 writel(sa
, reg
+ PCIL0_PTM1MS
);
311 /* Map on PCI side */
312 early_write_config_dword(hose
, hose
->first_busno
, 0,
313 PCI_BASE_ADDRESS_1
, res
->start
);
314 early_write_config_dword(hose
, hose
->first_busno
, 0,
315 PCI_BASE_ADDRESS_2
, 0x00000000);
316 early_write_config_word(hose
, hose
->first_busno
, 0,
317 PCI_COMMAND
, 0x0006);
320 static void __init
ppc4xx_probe_pci_bridge(struct device_node
*np
)
323 struct resource rsrc_cfg
;
324 struct resource rsrc_reg
;
325 struct resource dma_window
;
326 struct pci_controller
*hose
= NULL
;
327 void __iomem
*reg
= NULL
;
328 const int *bus_range
;
331 /* Check if device is enabled */
332 if (!of_device_is_available(np
)) {
333 printk(KERN_INFO
"%s: Port disabled via device-tree\n",
338 /* Fetch config space registers address */
339 if (of_address_to_resource(np
, 0, &rsrc_cfg
)) {
340 printk(KERN_ERR
"%s: Can't get PCI config register base !",
344 /* Fetch host bridge internal registers address */
345 if (of_address_to_resource(np
, 3, &rsrc_reg
)) {
346 printk(KERN_ERR
"%s: Can't get PCI internal register base !",
351 /* Check if primary bridge */
352 if (of_get_property(np
, "primary", NULL
))
355 /* Get bus range if any */
356 bus_range
= of_get_property(np
, "bus-range", NULL
);
359 reg
= ioremap(rsrc_reg
.start
, resource_size(&rsrc_reg
));
361 printk(KERN_ERR
"%s: Can't map registers !", np
->full_name
);
365 /* Allocate the host controller data structure */
366 hose
= pcibios_alloc_controller(np
);
370 hose
->first_busno
= bus_range
? bus_range
[0] : 0x0;
371 hose
->last_busno
= bus_range
? bus_range
[1] : 0xff;
373 /* Setup config space */
374 setup_indirect_pci(hose
, rsrc_cfg
.start
, rsrc_cfg
.start
+ 0x4, 0);
376 /* Disable all windows */
377 writel(0, reg
+ PCIL0_PMM0MA
);
378 writel(0, reg
+ PCIL0_PMM1MA
);
379 writel(0, reg
+ PCIL0_PMM2MA
);
380 writel(0, reg
+ PCIL0_PTM1MS
);
381 writel(0, reg
+ PCIL0_PTM2MS
);
383 /* Parse outbound mapping resources */
384 pci_process_bridge_OF_ranges(hose
, np
, primary
);
386 /* Parse inbound mapping resources */
387 if (ppc4xx_parse_dma_ranges(hose
, reg
, &dma_window
) != 0)
390 /* Configure outbound ranges POMs */
391 ppc4xx_configure_pci_PMMs(hose
, reg
);
393 /* Configure inbound ranges PIMs */
394 ppc4xx_configure_pci_PTMs(hose
, reg
, &dma_window
);
396 /* We don't need the registers anymore */
402 pcibios_free_controller(hose
);
411 static int __init
ppc4xx_setup_one_pcix_POM(struct pci_controller
*hose
,
419 u32 lah
, lal
, pciah
, pcial
, sa
;
421 if (!is_power_of_2(size
) || size
< 0x1000 ||
422 (plb_addr
& (size
- 1)) != 0) {
423 printk(KERN_WARNING
"%s: Resource out of range\n",
424 hose
->dn
->full_name
);
428 /* Calculate register values */
429 lah
= RES_TO_U32_HIGH(plb_addr
);
430 lal
= RES_TO_U32_LOW(plb_addr
);
431 pciah
= RES_TO_U32_HIGH(pci_addr
);
432 pcial
= RES_TO_U32_LOW(pci_addr
);
433 sa
= (0xffffffffu
<< ilog2(size
)) | 0x1;
435 /* Program register values */
437 writel(lah
, reg
+ PCIX0_POM0LAH
);
438 writel(lal
, reg
+ PCIX0_POM0LAL
);
439 writel(pciah
, reg
+ PCIX0_POM0PCIAH
);
440 writel(pcial
, reg
+ PCIX0_POM0PCIAL
);
441 writel(sa
, reg
+ PCIX0_POM0SA
);
443 writel(lah
, reg
+ PCIX0_POM1LAH
);
444 writel(lal
, reg
+ PCIX0_POM1LAL
);
445 writel(pciah
, reg
+ PCIX0_POM1PCIAH
);
446 writel(pcial
, reg
+ PCIX0_POM1PCIAL
);
447 writel(sa
, reg
+ PCIX0_POM1SA
);
453 static void __init
ppc4xx_configure_pcix_POMs(struct pci_controller
*hose
,
456 int i
, j
, found_isa_hole
= 0;
458 /* Setup outbound memory windows */
459 for (i
= j
= 0; i
< 3; i
++) {
460 struct resource
*res
= &hose
->mem_resources
[i
];
461 resource_size_t offset
= hose
->mem_offset
[i
];
463 /* we only care about memory windows */
464 if (!(res
->flags
& IORESOURCE_MEM
))
467 printk(KERN_WARNING
"%s: Too many ranges\n",
468 hose
->dn
->full_name
);
472 /* Configure the resource */
473 if (ppc4xx_setup_one_pcix_POM(hose
, reg
,
481 /* If the resource PCI address is 0 then we have our
484 if (res
->start
== offset
)
489 /* Handle ISA memory hole if not already covered */
490 if (j
<= 1 && !found_isa_hole
&& hose
->isa_mem_size
)
491 if (ppc4xx_setup_one_pcix_POM(hose
, reg
, hose
->isa_mem_phys
, 0,
492 hose
->isa_mem_size
, 0, j
) == 0)
493 printk(KERN_INFO
"%s: Legacy ISA memory support enabled\n",
494 hose
->dn
->full_name
);
497 static void __init
ppc4xx_configure_pcix_PIMs(struct pci_controller
*hose
,
499 const struct resource
*res
,
503 resource_size_t size
= resource_size(res
);
506 /* RAM is always at 0 */
507 writel(0x00000000, reg
+ PCIX0_PIM0LAH
);
508 writel(0x00000000, reg
+ PCIX0_PIM0LAL
);
510 /* Calculate window size */
511 sa
= (0xffffffffu
<< ilog2(size
)) | 1;
513 if (res
->flags
& IORESOURCE_PREFETCH
)
517 writel(sa
, reg
+ PCIX0_PIM0SA
);
519 writel(0xffffffff, reg
+ PCIX0_PIM0SAH
);
521 /* Map on PCI side */
522 writel(0x00000000, reg
+ PCIX0_BAR0H
);
523 writel(res
->start
, reg
+ PCIX0_BAR0L
);
524 writew(0x0006, reg
+ PCIX0_COMMAND
);
527 static void __init
ppc4xx_probe_pcix_bridge(struct device_node
*np
)
529 struct resource rsrc_cfg
;
530 struct resource rsrc_reg
;
531 struct resource dma_window
;
532 struct pci_controller
*hose
= NULL
;
533 void __iomem
*reg
= NULL
;
534 const int *bus_range
;
535 int big_pim
= 0, msi
= 0, primary
= 0;
537 /* Fetch config space registers address */
538 if (of_address_to_resource(np
, 0, &rsrc_cfg
)) {
539 printk(KERN_ERR
"%s:Can't get PCI-X config register base !",
543 /* Fetch host bridge internal registers address */
544 if (of_address_to_resource(np
, 3, &rsrc_reg
)) {
545 printk(KERN_ERR
"%s: Can't get PCI-X internal register base !",
550 /* Check if it supports large PIMs (440GX) */
551 if (of_get_property(np
, "large-inbound-windows", NULL
))
554 /* Check if we should enable MSIs inbound hole */
555 if (of_get_property(np
, "enable-msi-hole", NULL
))
558 /* Check if primary bridge */
559 if (of_get_property(np
, "primary", NULL
))
562 /* Get bus range if any */
563 bus_range
= of_get_property(np
, "bus-range", NULL
);
566 reg
= ioremap(rsrc_reg
.start
, resource_size(&rsrc_reg
));
568 printk(KERN_ERR
"%s: Can't map registers !", np
->full_name
);
572 /* Allocate the host controller data structure */
573 hose
= pcibios_alloc_controller(np
);
577 hose
->first_busno
= bus_range
? bus_range
[0] : 0x0;
578 hose
->last_busno
= bus_range
? bus_range
[1] : 0xff;
580 /* Setup config space */
581 setup_indirect_pci(hose
, rsrc_cfg
.start
, rsrc_cfg
.start
+ 0x4,
582 PPC_INDIRECT_TYPE_SET_CFG_TYPE
);
584 /* Disable all windows */
585 writel(0, reg
+ PCIX0_POM0SA
);
586 writel(0, reg
+ PCIX0_POM1SA
);
587 writel(0, reg
+ PCIX0_POM2SA
);
588 writel(0, reg
+ PCIX0_PIM0SA
);
589 writel(0, reg
+ PCIX0_PIM1SA
);
590 writel(0, reg
+ PCIX0_PIM2SA
);
592 writel(0, reg
+ PCIX0_PIM0SAH
);
593 writel(0, reg
+ PCIX0_PIM2SAH
);
596 /* Parse outbound mapping resources */
597 pci_process_bridge_OF_ranges(hose
, np
, primary
);
599 /* Parse inbound mapping resources */
600 if (ppc4xx_parse_dma_ranges(hose
, reg
, &dma_window
) != 0)
603 /* Configure outbound ranges POMs */
604 ppc4xx_configure_pcix_POMs(hose
, reg
);
606 /* Configure inbound ranges PIMs */
607 ppc4xx_configure_pcix_PIMs(hose
, reg
, &dma_window
, big_pim
, msi
);
609 /* We don't need the registers anymore */
615 pcibios_free_controller(hose
);
620 #ifdef CONFIG_PPC4xx_PCI_EXPRESS
623 * 4xx PCI-Express part
625 * We support 3 parts currently based on the compatible property:
627 * ibm,plb-pciex-440spe
628 * ibm,plb-pciex-405ex
629 * ibm,plb-pciex-460ex
631 * Anything else will be rejected for now as they are all subtly
632 * different unfortunately.
636 #define MAX_PCIE_BUS_MAPPED 0x40
638 struct ppc4xx_pciex_port
640 struct pci_controller
*hose
;
641 struct device_node
*node
;
646 unsigned int sdr_base
;
648 struct resource cfg_space
;
649 struct resource utl_regs
;
650 void __iomem
*utl_base
;
653 static struct ppc4xx_pciex_port
*ppc4xx_pciex_ports
;
654 static unsigned int ppc4xx_pciex_port_count
;
656 struct ppc4xx_pciex_hwops
659 int (*core_init
)(struct device_node
*np
);
660 int (*port_init_hw
)(struct ppc4xx_pciex_port
*port
);
661 int (*setup_utl
)(struct ppc4xx_pciex_port
*port
);
662 void (*check_link
)(struct ppc4xx_pciex_port
*port
);
665 static struct ppc4xx_pciex_hwops
*ppc4xx_pciex_hwops
;
667 static int __init
ppc4xx_pciex_wait_on_sdr(struct ppc4xx_pciex_port
*port
,
668 unsigned int sdr_offset
,
675 while(timeout_ms
--) {
676 val
= mfdcri(SDR0
, port
->sdr_base
+ sdr_offset
);
677 if ((val
& mask
) == value
) {
678 pr_debug("PCIE%d: Wait on SDR %x success with tm %d (%08x)\n",
679 port
->index
, sdr_offset
, timeout_ms
, val
);
687 static int __init
ppc4xx_pciex_port_reset_sdr(struct ppc4xx_pciex_port
*port
)
689 /* Wait for reset to complete */
690 if (ppc4xx_pciex_wait_on_sdr(port
, PESDRn_RCSSTS
, 1 << 20, 0, 10)) {
691 printk(KERN_WARNING
"PCIE%d: PGRST failed\n",
699 static void __init
ppc4xx_pciex_check_link_sdr(struct ppc4xx_pciex_port
*port
)
701 printk(KERN_INFO
"PCIE%d: Checking link...\n", port
->index
);
703 /* Check for card presence detect if supported, if not, just wait for
704 * link unconditionally.
706 * note that we don't fail if there is no link, we just filter out
707 * config space accesses. That way, it will be easier to implement
710 if (!port
->has_ibpre
||
711 !ppc4xx_pciex_wait_on_sdr(port
, PESDRn_LOOP
,
712 1 << 28, 1 << 28, 100)) {
714 "PCIE%d: Device detected, waiting for link...\n",
716 if (ppc4xx_pciex_wait_on_sdr(port
, PESDRn_LOOP
,
717 0x1000, 0x1000, 2000))
719 "PCIE%d: Link up failed\n", port
->index
);
722 "PCIE%d: link is up !\n", port
->index
);
726 printk(KERN_INFO
"PCIE%d: No device detected.\n", port
->index
);
731 /* Check various reset bits of the 440SPe PCIe core */
732 static int __init
ppc440spe_pciex_check_reset(struct device_node
*np
)
734 u32 valPE0
, valPE1
, valPE2
;
737 /* SDR0_PEGPLLLCT1 reset */
738 if (!(mfdcri(SDR0
, PESDR0_PLLLCT1
) & 0x01000000)) {
740 * the PCIe core was probably already initialised
741 * by firmware - let's re-reset RCSSET regs
743 * -- Shouldn't we also re-reset the whole thing ? -- BenH
745 pr_debug("PCIE: SDR0_PLLLCT1 already reset.\n");
746 mtdcri(SDR0
, PESDR0_440SPE_RCSSET
, 0x01010000);
747 mtdcri(SDR0
, PESDR1_440SPE_RCSSET
, 0x01010000);
748 mtdcri(SDR0
, PESDR2_440SPE_RCSSET
, 0x01010000);
751 valPE0
= mfdcri(SDR0
, PESDR0_440SPE_RCSSET
);
752 valPE1
= mfdcri(SDR0
, PESDR1_440SPE_RCSSET
);
753 valPE2
= mfdcri(SDR0
, PESDR2_440SPE_RCSSET
);
755 /* SDR0_PExRCSSET rstgu */
756 if (!(valPE0
& 0x01000000) ||
757 !(valPE1
& 0x01000000) ||
758 !(valPE2
& 0x01000000)) {
759 printk(KERN_INFO
"PCIE: SDR0_PExRCSSET rstgu error\n");
763 /* SDR0_PExRCSSET rstdl */
764 if (!(valPE0
& 0x00010000) ||
765 !(valPE1
& 0x00010000) ||
766 !(valPE2
& 0x00010000)) {
767 printk(KERN_INFO
"PCIE: SDR0_PExRCSSET rstdl error\n");
771 /* SDR0_PExRCSSET rstpyn */
772 if ((valPE0
& 0x00001000) ||
773 (valPE1
& 0x00001000) ||
774 (valPE2
& 0x00001000)) {
775 printk(KERN_INFO
"PCIE: SDR0_PExRCSSET rstpyn error\n");
779 /* SDR0_PExRCSSET hldplb */
780 if ((valPE0
& 0x10000000) ||
781 (valPE1
& 0x10000000) ||
782 (valPE2
& 0x10000000)) {
783 printk(KERN_INFO
"PCIE: SDR0_PExRCSSET hldplb error\n");
787 /* SDR0_PExRCSSET rdy */
788 if ((valPE0
& 0x00100000) ||
789 (valPE1
& 0x00100000) ||
790 (valPE2
& 0x00100000)) {
791 printk(KERN_INFO
"PCIE: SDR0_PExRCSSET rdy error\n");
795 /* SDR0_PExRCSSET shutdown */
796 if ((valPE0
& 0x00000100) ||
797 (valPE1
& 0x00000100) ||
798 (valPE2
& 0x00000100)) {
799 printk(KERN_INFO
"PCIE: SDR0_PExRCSSET shutdown error\n");
806 /* Global PCIe core initializations for 440SPe core */
807 static int __init
ppc440spe_pciex_core_init(struct device_node
*np
)
811 /* Set PLL clock receiver to LVPECL */
812 dcri_clrset(SDR0
, PESDR0_PLLLCT1
, 0, 1 << 28);
814 /* Shouldn't we do all the calibration stuff etc... here ? */
815 if (ppc440spe_pciex_check_reset(np
))
818 if (!(mfdcri(SDR0
, PESDR0_PLLLCT2
) & 0x10000)) {
819 printk(KERN_INFO
"PCIE: PESDR_PLLCT2 resistance calibration "
821 mfdcri(SDR0
, PESDR0_PLLLCT2
));
825 /* De-assert reset of PCIe PLL, wait for lock */
826 dcri_clrset(SDR0
, PESDR0_PLLLCT1
, 1 << 24, 0);
830 if (!(mfdcri(SDR0
, PESDR0_PLLLCT3
) & 0x10000000)) {
837 printk(KERN_INFO
"PCIE: VCO output not locked\n");
841 pr_debug("PCIE initialization OK\n");
846 static int __init
ppc440spe_pciex_init_port_hw(struct ppc4xx_pciex_port
*port
)
851 val
= PTYPE_LEGACY_ENDPOINT
<< 20;
853 val
= PTYPE_ROOT_PORT
<< 20;
855 if (port
->index
== 0)
856 val
|= LNKW_X8
<< 12;
858 val
|= LNKW_X4
<< 12;
860 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_DLPSET
, val
);
861 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET1
, 0x20222222);
862 if (ppc440spe_revA())
863 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET2
, 0x11000000);
864 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL0SET1
, 0x35000000);
865 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL1SET1
, 0x35000000);
866 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL2SET1
, 0x35000000);
867 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL3SET1
, 0x35000000);
868 if (port
->index
== 0) {
869 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL4SET1
,
871 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL5SET1
,
873 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL6SET1
,
875 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_440SPE_HSSL7SET1
,
878 dcri_clrset(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
,
879 (1 << 24) | (1 << 16), 1 << 12);
881 return ppc4xx_pciex_port_reset_sdr(port
);
884 static int __init
ppc440speA_pciex_init_port_hw(struct ppc4xx_pciex_port
*port
)
886 return ppc440spe_pciex_init_port_hw(port
);
889 static int __init
ppc440speB_pciex_init_port_hw(struct ppc4xx_pciex_port
*port
)
891 int rc
= ppc440spe_pciex_init_port_hw(port
);
898 static int ppc440speA_pciex_init_utl(struct ppc4xx_pciex_port
*port
)
900 /* XXX Check what that value means... I hate magic */
901 dcr_write(port
->dcrs
, DCRO_PEGPL_SPECIAL
, 0x68782800);
904 * Set buffer allocations and then assert VRB and TXE.
906 out_be32(port
->utl_base
+ PEUTL_OUTTR
, 0x08000000);
907 out_be32(port
->utl_base
+ PEUTL_INTR
, 0x02000000);
908 out_be32(port
->utl_base
+ PEUTL_OPDBSZ
, 0x10000000);
909 out_be32(port
->utl_base
+ PEUTL_PBBSZ
, 0x53000000);
910 out_be32(port
->utl_base
+ PEUTL_IPHBSZ
, 0x08000000);
911 out_be32(port
->utl_base
+ PEUTL_IPDBSZ
, 0x10000000);
912 out_be32(port
->utl_base
+ PEUTL_RCIRQEN
, 0x00f00000);
913 out_be32(port
->utl_base
+ PEUTL_PCTL
, 0x80800066);
918 static int ppc440speB_pciex_init_utl(struct ppc4xx_pciex_port
*port
)
920 /* Report CRS to the operating system */
921 out_be32(port
->utl_base
+ PEUTL_PBCTL
, 0x08000000);
926 static struct ppc4xx_pciex_hwops ppc440speA_pcie_hwops __initdata
=
929 .core_init
= ppc440spe_pciex_core_init
,
930 .port_init_hw
= ppc440speA_pciex_init_port_hw
,
931 .setup_utl
= ppc440speA_pciex_init_utl
,
932 .check_link
= ppc4xx_pciex_check_link_sdr
,
935 static struct ppc4xx_pciex_hwops ppc440speB_pcie_hwops __initdata
=
938 .core_init
= ppc440spe_pciex_core_init
,
939 .port_init_hw
= ppc440speB_pciex_init_port_hw
,
940 .setup_utl
= ppc440speB_pciex_init_utl
,
941 .check_link
= ppc4xx_pciex_check_link_sdr
,
944 static int __init
ppc460ex_pciex_core_init(struct device_node
*np
)
946 /* Nothing to do, return 2 ports */
950 static int __init
ppc460ex_pciex_init_port_hw(struct ppc4xx_pciex_port
*port
)
956 val
= PTYPE_LEGACY_ENDPOINT
<< 20;
958 val
= PTYPE_ROOT_PORT
<< 20;
960 if (port
->index
== 0) {
961 val
|= LNKW_X1
<< 12;
962 utlset1
= 0x20000000;
964 val
|= LNKW_X4
<< 12;
965 utlset1
= 0x20101101;
968 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_DLPSET
, val
);
969 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET1
, utlset1
);
970 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET2
, 0x01210000);
972 switch (port
->index
) {
974 mtdcri(SDR0
, PESDR0_460EX_L0CDRCTL
, 0x00003230);
975 mtdcri(SDR0
, PESDR0_460EX_L0DRV
, 0x00000130);
976 mtdcri(SDR0
, PESDR0_460EX_L0CLK
, 0x00000006);
978 mtdcri(SDR0
, PESDR0_460EX_PHY_CTL_RST
,0x10000000);
982 mtdcri(SDR0
, PESDR1_460EX_L0CDRCTL
, 0x00003230);
983 mtdcri(SDR0
, PESDR1_460EX_L1CDRCTL
, 0x00003230);
984 mtdcri(SDR0
, PESDR1_460EX_L2CDRCTL
, 0x00003230);
985 mtdcri(SDR0
, PESDR1_460EX_L3CDRCTL
, 0x00003230);
986 mtdcri(SDR0
, PESDR1_460EX_L0DRV
, 0x00000130);
987 mtdcri(SDR0
, PESDR1_460EX_L1DRV
, 0x00000130);
988 mtdcri(SDR0
, PESDR1_460EX_L2DRV
, 0x00000130);
989 mtdcri(SDR0
, PESDR1_460EX_L3DRV
, 0x00000130);
990 mtdcri(SDR0
, PESDR1_460EX_L0CLK
, 0x00000006);
991 mtdcri(SDR0
, PESDR1_460EX_L1CLK
, 0x00000006);
992 mtdcri(SDR0
, PESDR1_460EX_L2CLK
, 0x00000006);
993 mtdcri(SDR0
, PESDR1_460EX_L3CLK
, 0x00000006);
995 mtdcri(SDR0
, PESDR1_460EX_PHY_CTL_RST
,0x10000000);
999 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
,
1000 mfdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
) |
1001 (PESDRx_RCSSET_RSTGU
| PESDRx_RCSSET_RSTPYN
));
1003 /* Poll for PHY reset */
1004 /* XXX FIXME add timeout */
1005 switch (port
->index
) {
1007 while (!(mfdcri(SDR0
, PESDR0_460EX_RSTSTA
) & 0x1))
1011 while (!(mfdcri(SDR0
, PESDR1_460EX_RSTSTA
) & 0x1))
1016 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
,
1017 (mfdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
) &
1018 ~(PESDRx_RCSSET_RSTGU
| PESDRx_RCSSET_RSTDL
)) |
1019 PESDRx_RCSSET_RSTPYN
);
1021 port
->has_ibpre
= 1;
1023 return ppc4xx_pciex_port_reset_sdr(port
);
1026 static int ppc460ex_pciex_init_utl(struct ppc4xx_pciex_port
*port
)
1028 dcr_write(port
->dcrs
, DCRO_PEGPL_SPECIAL
, 0x0);
1031 * Set buffer allocations and then assert VRB and TXE.
1033 out_be32(port
->utl_base
+ PEUTL_PBCTL
, 0x0800000c);
1034 out_be32(port
->utl_base
+ PEUTL_OUTTR
, 0x08000000);
1035 out_be32(port
->utl_base
+ PEUTL_INTR
, 0x02000000);
1036 out_be32(port
->utl_base
+ PEUTL_OPDBSZ
, 0x04000000);
1037 out_be32(port
->utl_base
+ PEUTL_PBBSZ
, 0x00000000);
1038 out_be32(port
->utl_base
+ PEUTL_IPHBSZ
, 0x02000000);
1039 out_be32(port
->utl_base
+ PEUTL_IPDBSZ
, 0x04000000);
1040 out_be32(port
->utl_base
+ PEUTL_RCIRQEN
,0x00f00000);
1041 out_be32(port
->utl_base
+ PEUTL_PCTL
, 0x80800066);
1046 static struct ppc4xx_pciex_hwops ppc460ex_pcie_hwops __initdata
=
1049 .core_init
= ppc460ex_pciex_core_init
,
1050 .port_init_hw
= ppc460ex_pciex_init_port_hw
,
1051 .setup_utl
= ppc460ex_pciex_init_utl
,
1052 .check_link
= ppc4xx_pciex_check_link_sdr
,
1055 static int __init
apm821xx_pciex_core_init(struct device_node
*np
)
1057 /* Return the number of pcie port */
1061 static int apm821xx_pciex_init_port_hw(struct ppc4xx_pciex_port
*port
)
1066 * Do a software reset on PCIe ports.
1067 * This code is to fix the issue that pci drivers doesn't re-assign
1068 * bus number for PCIE devices after Uboot
1069 * scanned and configured all the buses (eg. PCIE NIC IntelPro/1000
1070 * PT quad port, SAS LSI 1064E)
1073 mtdcri(SDR0
, PESDR0_460EX_PHY_CTL_RST
, 0x0);
1077 val
= PTYPE_LEGACY_ENDPOINT
<< 20;
1079 val
= PTYPE_ROOT_PORT
<< 20;
1081 val
|= LNKW_X1
<< 12;
1083 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_DLPSET
, val
);
1084 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET1
, 0x00000000);
1085 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET2
, 0x01010000);
1087 mtdcri(SDR0
, PESDR0_460EX_L0CDRCTL
, 0x00003230);
1088 mtdcri(SDR0
, PESDR0_460EX_L0DRV
, 0x00000130);
1089 mtdcri(SDR0
, PESDR0_460EX_L0CLK
, 0x00000006);
1091 mtdcri(SDR0
, PESDR0_460EX_PHY_CTL_RST
, 0x10000000);
1093 mtdcri(SDR0
, PESDR0_460EX_PHY_CTL_RST
, 0x30000000);
1095 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
,
1096 mfdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
) |
1097 (PESDRx_RCSSET_RSTGU
| PESDRx_RCSSET_RSTPYN
));
1099 /* Poll for PHY reset */
1100 val
= PESDR0_460EX_RSTSTA
- port
->sdr_base
;
1101 if (ppc4xx_pciex_wait_on_sdr(port
, val
, 0x1, 1, 100)) {
1102 printk(KERN_WARNING
"%s: PCIE: Can't reset PHY\n", __func__
);
1105 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
,
1106 (mfdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
) &
1107 ~(PESDRx_RCSSET_RSTGU
| PESDRx_RCSSET_RSTDL
)) |
1108 PESDRx_RCSSET_RSTPYN
);
1110 port
->has_ibpre
= 1;
1115 static struct ppc4xx_pciex_hwops apm821xx_pcie_hwops __initdata
= {
1117 .core_init
= apm821xx_pciex_core_init
,
1118 .port_init_hw
= apm821xx_pciex_init_port_hw
,
1119 .setup_utl
= ppc460ex_pciex_init_utl
,
1120 .check_link
= ppc4xx_pciex_check_link_sdr
,
1123 static int __init
ppc460sx_pciex_core_init(struct device_node
*np
)
1125 /* HSS drive amplitude */
1126 mtdcri(SDR0
, PESDR0_460SX_HSSL0DAMP
, 0xB9843211);
1127 mtdcri(SDR0
, PESDR0_460SX_HSSL1DAMP
, 0xB9843211);
1128 mtdcri(SDR0
, PESDR0_460SX_HSSL2DAMP
, 0xB9843211);
1129 mtdcri(SDR0
, PESDR0_460SX_HSSL3DAMP
, 0xB9843211);
1130 mtdcri(SDR0
, PESDR0_460SX_HSSL4DAMP
, 0xB9843211);
1131 mtdcri(SDR0
, PESDR0_460SX_HSSL5DAMP
, 0xB9843211);
1132 mtdcri(SDR0
, PESDR0_460SX_HSSL6DAMP
, 0xB9843211);
1133 mtdcri(SDR0
, PESDR0_460SX_HSSL7DAMP
, 0xB9843211);
1135 mtdcri(SDR0
, PESDR1_460SX_HSSL0DAMP
, 0xB9843211);
1136 mtdcri(SDR0
, PESDR1_460SX_HSSL1DAMP
, 0xB9843211);
1137 mtdcri(SDR0
, PESDR1_460SX_HSSL2DAMP
, 0xB9843211);
1138 mtdcri(SDR0
, PESDR1_460SX_HSSL3DAMP
, 0xB9843211);
1140 mtdcri(SDR0
, PESDR2_460SX_HSSL0DAMP
, 0xB9843211);
1141 mtdcri(SDR0
, PESDR2_460SX_HSSL1DAMP
, 0xB9843211);
1142 mtdcri(SDR0
, PESDR2_460SX_HSSL2DAMP
, 0xB9843211);
1143 mtdcri(SDR0
, PESDR2_460SX_HSSL3DAMP
, 0xB9843211);
1145 /* HSS TX pre-emphasis */
1146 mtdcri(SDR0
, PESDR0_460SX_HSSL0COEFA
, 0xDCB98987);
1147 mtdcri(SDR0
, PESDR0_460SX_HSSL1COEFA
, 0xDCB98987);
1148 mtdcri(SDR0
, PESDR0_460SX_HSSL2COEFA
, 0xDCB98987);
1149 mtdcri(SDR0
, PESDR0_460SX_HSSL3COEFA
, 0xDCB98987);
1150 mtdcri(SDR0
, PESDR0_460SX_HSSL4COEFA
, 0xDCB98987);
1151 mtdcri(SDR0
, PESDR0_460SX_HSSL5COEFA
, 0xDCB98987);
1152 mtdcri(SDR0
, PESDR0_460SX_HSSL6COEFA
, 0xDCB98987);
1153 mtdcri(SDR0
, PESDR0_460SX_HSSL7COEFA
, 0xDCB98987);
1155 mtdcri(SDR0
, PESDR1_460SX_HSSL0COEFA
, 0xDCB98987);
1156 mtdcri(SDR0
, PESDR1_460SX_HSSL1COEFA
, 0xDCB98987);
1157 mtdcri(SDR0
, PESDR1_460SX_HSSL2COEFA
, 0xDCB98987);
1158 mtdcri(SDR0
, PESDR1_460SX_HSSL3COEFA
, 0xDCB98987);
1160 mtdcri(SDR0
, PESDR2_460SX_HSSL0COEFA
, 0xDCB98987);
1161 mtdcri(SDR0
, PESDR2_460SX_HSSL1COEFA
, 0xDCB98987);
1162 mtdcri(SDR0
, PESDR2_460SX_HSSL2COEFA
, 0xDCB98987);
1163 mtdcri(SDR0
, PESDR2_460SX_HSSL3COEFA
, 0xDCB98987);
1165 /* HSS TX calibration control */
1166 mtdcri(SDR0
, PESDR0_460SX_HSSL1CALDRV
, 0x22222222);
1167 mtdcri(SDR0
, PESDR1_460SX_HSSL1CALDRV
, 0x22220000);
1168 mtdcri(SDR0
, PESDR2_460SX_HSSL1CALDRV
, 0x22220000);
1170 /* HSS TX slew control */
1171 mtdcri(SDR0
, PESDR0_460SX_HSSSLEW
, 0xFFFFFFFF);
1172 mtdcri(SDR0
, PESDR1_460SX_HSSSLEW
, 0xFFFF0000);
1173 mtdcri(SDR0
, PESDR2_460SX_HSSSLEW
, 0xFFFF0000);
1175 /* Set HSS PRBS enabled */
1176 mtdcri(SDR0
, PESDR0_460SX_HSSCTLSET
, 0x00001130);
1177 mtdcri(SDR0
, PESDR2_460SX_HSSCTLSET
, 0x00001130);
1181 /* De-assert PLLRESET */
1182 dcri_clrset(SDR0
, PESDR0_PLLLCT2
, 0x00000100, 0);
1184 /* Reset DL, UTL, GPL before configuration */
1185 mtdcri(SDR0
, PESDR0_460SX_RCSSET
,
1186 PESDRx_RCSSET_RSTDL
| PESDRx_RCSSET_RSTGU
);
1187 mtdcri(SDR0
, PESDR1_460SX_RCSSET
,
1188 PESDRx_RCSSET_RSTDL
| PESDRx_RCSSET_RSTGU
);
1189 mtdcri(SDR0
, PESDR2_460SX_RCSSET
,
1190 PESDRx_RCSSET_RSTDL
| PESDRx_RCSSET_RSTGU
);
1195 * If bifurcation is not enabled, u-boot would have disabled the
1198 if (((mfdcri(SDR0
, PESDR1_460SX_HSSCTLSET
) & 0x00000001) ==
1200 printk(KERN_INFO
"PCI: PCIE bifurcation setup successfully.\n");
1201 printk(KERN_INFO
"PCI: Total 3 PCIE ports are present\n");
1205 printk(KERN_INFO
"PCI: Total 2 PCIE ports are present\n");
1209 static int __init
ppc460sx_pciex_init_port_hw(struct ppc4xx_pciex_port
*port
)
1213 dcri_clrset(SDR0
, port
->sdr_base
+ PESDRn_UTLSET2
,
1216 dcri_clrset(SDR0
, port
->sdr_base
+ PESDRn_UTLSET2
,
1219 dcri_clrset(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
,
1220 (PESDRx_RCSSET_RSTGU
| PESDRx_RCSSET_RSTDL
),
1221 PESDRx_RCSSET_RSTPYN
);
1223 port
->has_ibpre
= 1;
1225 return ppc4xx_pciex_port_reset_sdr(port
);
1228 static int ppc460sx_pciex_init_utl(struct ppc4xx_pciex_port
*port
)
1231 out_be32 (port
->utl_base
+ PEUTL_PBBSZ
, 0x00000000);
1232 /* Assert VRB and TXE - per datasheet turn off addr validation */
1233 out_be32(port
->utl_base
+ PEUTL_PCTL
, 0x80800000);
1237 static void __init
ppc460sx_pciex_check_link(struct ppc4xx_pciex_port
*port
)
1239 void __iomem
*mbase
;
1244 mbase
= ioremap(port
->cfg_space
.start
+ 0x10000000, 0x1000);
1245 if (mbase
== NULL
) {
1246 printk(KERN_ERR
"%s: Can't map internal config space !",
1247 port
->node
->full_name
);
1251 while (attempt
&& (0 == (in_le32(mbase
+ PECFG_460SX_DLLSTA
)
1252 & PECFG_460SX_DLLSTA_LINKUP
))) {
1263 static struct ppc4xx_pciex_hwops ppc460sx_pcie_hwops __initdata
= {
1265 .core_init
= ppc460sx_pciex_core_init
,
1266 .port_init_hw
= ppc460sx_pciex_init_port_hw
,
1267 .setup_utl
= ppc460sx_pciex_init_utl
,
1268 .check_link
= ppc460sx_pciex_check_link
,
1271 #endif /* CONFIG_44x */
1275 static int __init
ppc405ex_pciex_core_init(struct device_node
*np
)
1277 /* Nothing to do, return 2 ports */
1281 static void ppc405ex_pcie_phy_reset(struct ppc4xx_pciex_port
*port
)
1283 /* Assert the PE0_PHY reset */
1284 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
, 0x01010000);
1287 /* deassert the PE0_hotreset */
1289 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
, 0x01111000);
1291 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
, 0x01101000);
1293 /* poll for phy !reset */
1294 /* XXX FIXME add timeout */
1295 while (!(mfdcri(SDR0
, port
->sdr_base
+ PESDRn_405EX_PHYSTA
) & 0x00001000))
1298 /* deassert the PE0_gpl_utl_reset */
1299 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
, 0x00101000);
1302 static int __init
ppc405ex_pciex_init_port_hw(struct ppc4xx_pciex_port
*port
)
1307 val
= PTYPE_LEGACY_ENDPOINT
;
1309 val
= PTYPE_ROOT_PORT
;
1311 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_DLPSET
,
1312 1 << 24 | val
<< 20 | LNKW_X1
<< 12);
1314 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET1
, 0x00000000);
1315 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_UTLSET2
, 0x01010000);
1316 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_405EX_PHYSET1
, 0x720F0000);
1317 mtdcri(SDR0
, port
->sdr_base
+ PESDRn_405EX_PHYSET2
, 0x70600003);
1320 * Only reset the PHY when no link is currently established.
1321 * This is for the Atheros PCIe board which has problems to establish
1322 * the link (again) after this PHY reset. All other currently tested
1323 * PCIe boards don't show this problem.
1324 * This has to be re-tested and fixed in a later release!
1326 val
= mfdcri(SDR0
, port
->sdr_base
+ PESDRn_LOOP
);
1327 if (!(val
& 0x00001000))
1328 ppc405ex_pcie_phy_reset(port
);
1330 dcr_write(port
->dcrs
, DCRO_PEGPL_CFG
, 0x10000000); /* guarded on */
1332 port
->has_ibpre
= 1;
1334 return ppc4xx_pciex_port_reset_sdr(port
);
1337 static int ppc405ex_pciex_init_utl(struct ppc4xx_pciex_port
*port
)
1339 dcr_write(port
->dcrs
, DCRO_PEGPL_SPECIAL
, 0x0);
1342 * Set buffer allocations and then assert VRB and TXE.
1344 out_be32(port
->utl_base
+ PEUTL_OUTTR
, 0x02000000);
1345 out_be32(port
->utl_base
+ PEUTL_INTR
, 0x02000000);
1346 out_be32(port
->utl_base
+ PEUTL_OPDBSZ
, 0x04000000);
1347 out_be32(port
->utl_base
+ PEUTL_PBBSZ
, 0x21000000);
1348 out_be32(port
->utl_base
+ PEUTL_IPHBSZ
, 0x02000000);
1349 out_be32(port
->utl_base
+ PEUTL_IPDBSZ
, 0x04000000);
1350 out_be32(port
->utl_base
+ PEUTL_RCIRQEN
, 0x00f00000);
1351 out_be32(port
->utl_base
+ PEUTL_PCTL
, 0x80800066);
1353 out_be32(port
->utl_base
+ PEUTL_PBCTL
, 0x08000000);
1358 static struct ppc4xx_pciex_hwops ppc405ex_pcie_hwops __initdata
=
1361 .core_init
= ppc405ex_pciex_core_init
,
1362 .port_init_hw
= ppc405ex_pciex_init_port_hw
,
1363 .setup_utl
= ppc405ex_pciex_init_utl
,
1364 .check_link
= ppc4xx_pciex_check_link_sdr
,
1367 #endif /* CONFIG_40x */
1369 #ifdef CONFIG_476FPE
1370 static int __init
ppc_476fpe_pciex_core_init(struct device_node
*np
)
1375 static void __init
ppc_476fpe_pciex_check_link(struct ppc4xx_pciex_port
*port
)
1377 u32 timeout_ms
= 20;
1378 u32 val
= 0, mask
= (PECFG_TLDLP_LNKUP
|PECFG_TLDLP_PRESENT
);
1379 void __iomem
*mbase
= ioremap(port
->cfg_space
.start
+ 0x10000000,
1382 printk(KERN_INFO
"PCIE%d: Checking link...\n", port
->index
);
1384 if (mbase
== NULL
) {
1385 printk(KERN_WARNING
"PCIE%d: failed to get cfg space\n",
1390 while (timeout_ms
--) {
1391 val
= in_le32(mbase
+ PECFG_TLDLP
);
1393 if ((val
& mask
) == mask
)
1398 if (val
& PECFG_TLDLP_PRESENT
) {
1399 printk(KERN_INFO
"PCIE%d: link is up !\n", port
->index
);
1402 printk(KERN_WARNING
"PCIE%d: Link up failed\n", port
->index
);
1408 static struct ppc4xx_pciex_hwops ppc_476fpe_pcie_hwops __initdata
=
1410 .core_init
= ppc_476fpe_pciex_core_init
,
1411 .check_link
= ppc_476fpe_pciex_check_link
,
1413 #endif /* CONFIG_476FPE */
1415 /* Check that the core has been initied and if not, do it */
1416 static int __init
ppc4xx_pciex_check_core_init(struct device_node
*np
)
1418 static int core_init
;
1419 int count
= -ENODEV
;
1425 if (of_device_is_compatible(np
, "ibm,plb-pciex-440spe")) {
1426 if (ppc440spe_revA())
1427 ppc4xx_pciex_hwops
= &ppc440speA_pcie_hwops
;
1429 ppc4xx_pciex_hwops
= &ppc440speB_pcie_hwops
;
1431 if (of_device_is_compatible(np
, "ibm,plb-pciex-460ex"))
1432 ppc4xx_pciex_hwops
= &ppc460ex_pcie_hwops
;
1433 if (of_device_is_compatible(np
, "ibm,plb-pciex-460sx"))
1434 ppc4xx_pciex_hwops
= &ppc460sx_pcie_hwops
;
1435 if (of_device_is_compatible(np
, "ibm,plb-pciex-apm821xx"))
1436 ppc4xx_pciex_hwops
= &apm821xx_pcie_hwops
;
1437 #endif /* CONFIG_44x */
1439 if (of_device_is_compatible(np
, "ibm,plb-pciex-405ex"))
1440 ppc4xx_pciex_hwops
= &ppc405ex_pcie_hwops
;
1442 #ifdef CONFIG_476FPE
1443 if (of_device_is_compatible(np
, "ibm,plb-pciex-476fpe"))
1444 ppc4xx_pciex_hwops
= &ppc_476fpe_pcie_hwops
;
1446 if (ppc4xx_pciex_hwops
== NULL
) {
1447 printk(KERN_WARNING
"PCIE: unknown host type %s\n",
1452 count
= ppc4xx_pciex_hwops
->core_init(np
);
1454 ppc4xx_pciex_ports
=
1455 kzalloc(count
* sizeof(struct ppc4xx_pciex_port
),
1457 if (ppc4xx_pciex_ports
) {
1458 ppc4xx_pciex_port_count
= count
;
1461 printk(KERN_WARNING
"PCIE: failed to allocate ports array\n");
1467 static void __init
ppc4xx_pciex_port_init_mapping(struct ppc4xx_pciex_port
*port
)
1469 /* We map PCI Express configuration based on the reg property */
1470 dcr_write(port
->dcrs
, DCRO_PEGPL_CFGBAH
,
1471 RES_TO_U32_HIGH(port
->cfg_space
.start
));
1472 dcr_write(port
->dcrs
, DCRO_PEGPL_CFGBAL
,
1473 RES_TO_U32_LOW(port
->cfg_space
.start
));
1475 /* XXX FIXME: Use size from reg property. For now, map 512M */
1476 dcr_write(port
->dcrs
, DCRO_PEGPL_CFGMSK
, 0xe0000001);
1478 /* We map UTL registers based on the reg property */
1479 dcr_write(port
->dcrs
, DCRO_PEGPL_REGBAH
,
1480 RES_TO_U32_HIGH(port
->utl_regs
.start
));
1481 dcr_write(port
->dcrs
, DCRO_PEGPL_REGBAL
,
1482 RES_TO_U32_LOW(port
->utl_regs
.start
));
1484 /* XXX FIXME: Use size from reg property */
1485 dcr_write(port
->dcrs
, DCRO_PEGPL_REGMSK
, 0x00007001);
1487 /* Disable all other outbound windows */
1488 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR1MSKL
, 0);
1489 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR2MSKL
, 0);
1490 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR3MSKL
, 0);
1491 dcr_write(port
->dcrs
, DCRO_PEGPL_MSGMSK
, 0);
1494 static int __init
ppc4xx_pciex_port_init(struct ppc4xx_pciex_port
*port
)
1499 if (ppc4xx_pciex_hwops
->port_init_hw
)
1500 rc
= ppc4xx_pciex_hwops
->port_init_hw(port
);
1505 * Initialize mapping: disable all regions and configure
1506 * CFG and REG regions based on resources in the device tree
1508 ppc4xx_pciex_port_init_mapping(port
);
1510 if (ppc4xx_pciex_hwops
->check_link
)
1511 ppc4xx_pciex_hwops
->check_link(port
);
1516 port
->utl_base
= ioremap(port
->utl_regs
.start
, 0x100);
1517 BUG_ON(port
->utl_base
== NULL
);
1520 * Setup UTL registers --BenH.
1522 if (ppc4xx_pciex_hwops
->setup_utl
)
1523 ppc4xx_pciex_hwops
->setup_utl(port
);
1526 * Check for VC0 active or PLL Locked and assert RDY.
1528 if (port
->sdr_base
) {
1529 if (of_device_is_compatible(port
->node
,
1530 "ibm,plb-pciex-460sx")){
1531 if (port
->link
&& ppc4xx_pciex_wait_on_sdr(port
,
1533 1 << 12, 1 << 12, 5000)) {
1534 printk(KERN_INFO
"PCIE%d: PLL not locked\n",
1538 } else if (port
->link
&&
1539 ppc4xx_pciex_wait_on_sdr(port
, PESDRn_RCSSTS
,
1540 1 << 16, 1 << 16, 5000)) {
1541 printk(KERN_INFO
"PCIE%d: VC0 not active\n",
1546 dcri_clrset(SDR0
, port
->sdr_base
+ PESDRn_RCSSET
, 0, 1 << 20);
1554 static int ppc4xx_pciex_validate_bdf(struct ppc4xx_pciex_port
*port
,
1555 struct pci_bus
*bus
,
1560 /* Endpoint can not generate upstream(remote) config cycles */
1561 if (port
->endpoint
&& bus
->number
!= port
->hose
->first_busno
)
1562 return PCIBIOS_DEVICE_NOT_FOUND
;
1564 /* Check we are within the mapped range */
1565 if (bus
->number
> port
->hose
->last_busno
) {
1567 printk(KERN_WARNING
"Warning! Probing bus %u"
1568 " out of range !\n", bus
->number
);
1571 return PCIBIOS_DEVICE_NOT_FOUND
;
1574 /* The root complex has only one device / function */
1575 if (bus
->number
== port
->hose
->first_busno
&& devfn
!= 0)
1576 return PCIBIOS_DEVICE_NOT_FOUND
;
1578 /* The other side of the RC has only one device as well */
1579 if (bus
->number
== (port
->hose
->first_busno
+ 1) &&
1580 PCI_SLOT(devfn
) != 0)
1581 return PCIBIOS_DEVICE_NOT_FOUND
;
1583 /* Check if we have a link */
1584 if ((bus
->number
!= port
->hose
->first_busno
) && !port
->link
)
1585 return PCIBIOS_DEVICE_NOT_FOUND
;
1590 static void __iomem
*ppc4xx_pciex_get_config_base(struct ppc4xx_pciex_port
*port
,
1591 struct pci_bus
*bus
,
1596 /* Remove the casts when we finally remove the stupid volatile
1597 * in struct pci_controller
1599 if (bus
->number
== port
->hose
->first_busno
)
1600 return (void __iomem
*)port
->hose
->cfg_addr
;
1602 relbus
= bus
->number
- (port
->hose
->first_busno
+ 1);
1603 return (void __iomem
*)port
->hose
->cfg_data
+
1604 ((relbus
<< 20) | (devfn
<< 12));
1607 static int ppc4xx_pciex_read_config(struct pci_bus
*bus
, unsigned int devfn
,
1608 int offset
, int len
, u32
*val
)
1610 struct pci_controller
*hose
= pci_bus_to_host(bus
);
1611 struct ppc4xx_pciex_port
*port
=
1612 &ppc4xx_pciex_ports
[hose
->indirect_type
];
1616 BUG_ON(hose
!= port
->hose
);
1618 if (ppc4xx_pciex_validate_bdf(port
, bus
, devfn
) != 0)
1619 return PCIBIOS_DEVICE_NOT_FOUND
;
1621 addr
= ppc4xx_pciex_get_config_base(port
, bus
, devfn
);
1624 * Reading from configuration space of non-existing device can
1625 * generate transaction errors. For the read duration we suppress
1626 * assertion of machine check exceptions to avoid those.
1628 gpl_cfg
= dcr_read(port
->dcrs
, DCRO_PEGPL_CFG
);
1629 dcr_write(port
->dcrs
, DCRO_PEGPL_CFG
, gpl_cfg
| GPL_DMER_MASK_DISA
);
1631 /* Make sure no CRS is recorded */
1632 out_be32(port
->utl_base
+ PEUTL_RCSTA
, 0x00040000);
1636 *val
= in_8((u8
*)(addr
+ offset
));
1639 *val
= in_le16((u16
*)(addr
+ offset
));
1642 *val
= in_le32((u32
*)(addr
+ offset
));
1646 pr_debug("pcie-config-read: bus=%3d [%3d..%3d] devfn=0x%04x"
1647 " offset=0x%04x len=%d, addr=0x%p val=0x%08x\n",
1648 bus
->number
, hose
->first_busno
, hose
->last_busno
,
1649 devfn
, offset
, len
, addr
+ offset
, *val
);
1651 /* Check for CRS (440SPe rev B does that for us but heh ..) */
1652 if (in_be32(port
->utl_base
+ PEUTL_RCSTA
) & 0x00040000) {
1653 pr_debug("Got CRS !\n");
1654 if (len
!= 4 || offset
!= 0)
1655 return PCIBIOS_DEVICE_NOT_FOUND
;
1659 dcr_write(port
->dcrs
, DCRO_PEGPL_CFG
, gpl_cfg
);
1661 return PCIBIOS_SUCCESSFUL
;
1664 static int ppc4xx_pciex_write_config(struct pci_bus
*bus
, unsigned int devfn
,
1665 int offset
, int len
, u32 val
)
1667 struct pci_controller
*hose
= pci_bus_to_host(bus
);
1668 struct ppc4xx_pciex_port
*port
=
1669 &ppc4xx_pciex_ports
[hose
->indirect_type
];
1673 if (ppc4xx_pciex_validate_bdf(port
, bus
, devfn
) != 0)
1674 return PCIBIOS_DEVICE_NOT_FOUND
;
1676 addr
= ppc4xx_pciex_get_config_base(port
, bus
, devfn
);
1679 * Reading from configuration space of non-existing device can
1680 * generate transaction errors. For the read duration we suppress
1681 * assertion of machine check exceptions to avoid those.
1683 gpl_cfg
= dcr_read(port
->dcrs
, DCRO_PEGPL_CFG
);
1684 dcr_write(port
->dcrs
, DCRO_PEGPL_CFG
, gpl_cfg
| GPL_DMER_MASK_DISA
);
1686 pr_debug("pcie-config-write: bus=%3d [%3d..%3d] devfn=0x%04x"
1687 " offset=0x%04x len=%d, addr=0x%p val=0x%08x\n",
1688 bus
->number
, hose
->first_busno
, hose
->last_busno
,
1689 devfn
, offset
, len
, addr
+ offset
, val
);
1693 out_8((u8
*)(addr
+ offset
), val
);
1696 out_le16((u16
*)(addr
+ offset
), val
);
1699 out_le32((u32
*)(addr
+ offset
), val
);
1703 dcr_write(port
->dcrs
, DCRO_PEGPL_CFG
, gpl_cfg
);
1705 return PCIBIOS_SUCCESSFUL
;
1708 static struct pci_ops ppc4xx_pciex_pci_ops
=
1710 .read
= ppc4xx_pciex_read_config
,
1711 .write
= ppc4xx_pciex_write_config
,
1714 static int __init
ppc4xx_setup_one_pciex_POM(struct ppc4xx_pciex_port
*port
,
1715 struct pci_controller
*hose
,
1716 void __iomem
*mbase
,
1723 u32 lah
, lal
, pciah
, pcial
, sa
;
1725 if (!is_power_of_2(size
) ||
1726 (index
< 2 && size
< 0x100000) ||
1727 (index
== 2 && size
< 0x100) ||
1728 (plb_addr
& (size
- 1)) != 0) {
1729 printk(KERN_WARNING
"%s: Resource out of range\n",
1730 hose
->dn
->full_name
);
1734 /* Calculate register values */
1735 lah
= RES_TO_U32_HIGH(plb_addr
);
1736 lal
= RES_TO_U32_LOW(plb_addr
);
1737 pciah
= RES_TO_U32_HIGH(pci_addr
);
1738 pcial
= RES_TO_U32_LOW(pci_addr
);
1739 sa
= (0xffffffffu
<< ilog2(size
)) | 0x1;
1741 /* Program register values */
1744 out_le32(mbase
+ PECFG_POM0LAH
, pciah
);
1745 out_le32(mbase
+ PECFG_POM0LAL
, pcial
);
1746 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR1BAH
, lah
);
1747 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR1BAL
, lal
);
1748 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR1MSKH
, 0x7fffffff);
1749 /*Enabled and single region */
1750 if (of_device_is_compatible(port
->node
, "ibm,plb-pciex-460sx"))
1751 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR1MSKL
,
1752 sa
| DCRO_PEGPL_460SX_OMR1MSKL_UOT
1753 | DCRO_PEGPL_OMRxMSKL_VAL
);
1754 else if (of_device_is_compatible(port
->node
, "ibm,plb-pciex-476fpe"))
1755 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR1MSKL
,
1756 sa
| DCRO_PEGPL_476FPE_OMR1MSKL_UOT
1757 | DCRO_PEGPL_OMRxMSKL_VAL
);
1759 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR1MSKL
,
1760 sa
| DCRO_PEGPL_OMR1MSKL_UOT
1761 | DCRO_PEGPL_OMRxMSKL_VAL
);
1764 out_le32(mbase
+ PECFG_POM1LAH
, pciah
);
1765 out_le32(mbase
+ PECFG_POM1LAL
, pcial
);
1766 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR2BAH
, lah
);
1767 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR2BAL
, lal
);
1768 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR2MSKH
, 0x7fffffff);
1769 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR2MSKL
,
1770 sa
| DCRO_PEGPL_OMRxMSKL_VAL
);
1773 out_le32(mbase
+ PECFG_POM2LAH
, pciah
);
1774 out_le32(mbase
+ PECFG_POM2LAL
, pcial
);
1775 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR3BAH
, lah
);
1776 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR3BAL
, lal
);
1777 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR3MSKH
, 0x7fffffff);
1778 /* Note that 3 here means enabled | IO space !!! */
1779 dcr_write(port
->dcrs
, DCRO_PEGPL_OMR3MSKL
,
1780 sa
| DCRO_PEGPL_OMR3MSKL_IO
1781 | DCRO_PEGPL_OMRxMSKL_VAL
);
1788 static void __init
ppc4xx_configure_pciex_POMs(struct ppc4xx_pciex_port
*port
,
1789 struct pci_controller
*hose
,
1790 void __iomem
*mbase
)
1792 int i
, j
, found_isa_hole
= 0;
1794 /* Setup outbound memory windows */
1795 for (i
= j
= 0; i
< 3; i
++) {
1796 struct resource
*res
= &hose
->mem_resources
[i
];
1797 resource_size_t offset
= hose
->mem_offset
[i
];
1799 /* we only care about memory windows */
1800 if (!(res
->flags
& IORESOURCE_MEM
))
1803 printk(KERN_WARNING
"%s: Too many ranges\n",
1804 port
->node
->full_name
);
1808 /* Configure the resource */
1809 if (ppc4xx_setup_one_pciex_POM(port
, hose
, mbase
,
1811 res
->start
- offset
,
1817 /* If the resource PCI address is 0 then we have our
1820 if (res
->start
== offset
)
1825 /* Handle ISA memory hole if not already covered */
1826 if (j
<= 1 && !found_isa_hole
&& hose
->isa_mem_size
)
1827 if (ppc4xx_setup_one_pciex_POM(port
, hose
, mbase
,
1828 hose
->isa_mem_phys
, 0,
1829 hose
->isa_mem_size
, 0, j
) == 0)
1830 printk(KERN_INFO
"%s: Legacy ISA memory support enabled\n",
1831 hose
->dn
->full_name
);
1833 /* Configure IO, always 64K starting at 0. We hard wire it to 64K !
1834 * Note also that it -has- to be region index 2 on this HW
1836 if (hose
->io_resource
.flags
& IORESOURCE_IO
)
1837 ppc4xx_setup_one_pciex_POM(port
, hose
, mbase
,
1838 hose
->io_base_phys
, 0,
1839 0x10000, IORESOURCE_IO
, 2);
1842 static void __init
ppc4xx_configure_pciex_PIMs(struct ppc4xx_pciex_port
*port
,
1843 struct pci_controller
*hose
,
1844 void __iomem
*mbase
,
1845 struct resource
*res
)
1847 resource_size_t size
= resource_size(res
);
1850 if (port
->endpoint
) {
1851 resource_size_t ep_addr
= 0;
1852 resource_size_t ep_size
= 32 << 20;
1854 /* Currently we map a fixed 64MByte window to PLB address
1855 * 0 (SDRAM). This should probably be configurable via a dts
1859 /* Calculate window size */
1860 sa
= (0xffffffffffffffffull
<< ilog2(ep_size
));
1863 out_le32(mbase
+ PECFG_BAR0HMPA
, RES_TO_U32_HIGH(sa
));
1864 out_le32(mbase
+ PECFG_BAR0LMPA
, RES_TO_U32_LOW(sa
) |
1865 PCI_BASE_ADDRESS_MEM_TYPE_64
);
1867 /* Disable BAR1 & BAR2 */
1868 out_le32(mbase
+ PECFG_BAR1MPA
, 0);
1869 out_le32(mbase
+ PECFG_BAR2HMPA
, 0);
1870 out_le32(mbase
+ PECFG_BAR2LMPA
, 0);
1872 out_le32(mbase
+ PECFG_PIM01SAH
, RES_TO_U32_HIGH(sa
));
1873 out_le32(mbase
+ PECFG_PIM01SAL
, RES_TO_U32_LOW(sa
));
1875 out_le32(mbase
+ PCI_BASE_ADDRESS_0
, RES_TO_U32_LOW(ep_addr
));
1876 out_le32(mbase
+ PCI_BASE_ADDRESS_1
, RES_TO_U32_HIGH(ep_addr
));
1878 /* Calculate window size */
1879 sa
= (0xffffffffffffffffull
<< ilog2(size
));
1880 if (res
->flags
& IORESOURCE_PREFETCH
)
1881 sa
|= PCI_BASE_ADDRESS_MEM_PREFETCH
;
1883 if (of_device_is_compatible(port
->node
, "ibm,plb-pciex-460sx") ||
1884 of_device_is_compatible(port
->node
, "ibm,plb-pciex-476fpe"))
1885 sa
|= PCI_BASE_ADDRESS_MEM_TYPE_64
;
1887 out_le32(mbase
+ PECFG_BAR0HMPA
, RES_TO_U32_HIGH(sa
));
1888 out_le32(mbase
+ PECFG_BAR0LMPA
, RES_TO_U32_LOW(sa
));
1890 /* The setup of the split looks weird to me ... let's see
1893 out_le32(mbase
+ PECFG_PIM0LAL
, 0x00000000);
1894 out_le32(mbase
+ PECFG_PIM0LAH
, 0x00000000);
1895 out_le32(mbase
+ PECFG_PIM1LAL
, 0x00000000);
1896 out_le32(mbase
+ PECFG_PIM1LAH
, 0x00000000);
1897 out_le32(mbase
+ PECFG_PIM01SAH
, 0xffff0000);
1898 out_le32(mbase
+ PECFG_PIM01SAL
, 0x00000000);
1900 out_le32(mbase
+ PCI_BASE_ADDRESS_0
, RES_TO_U32_LOW(res
->start
));
1901 out_le32(mbase
+ PCI_BASE_ADDRESS_1
, RES_TO_U32_HIGH(res
->start
));
1904 /* Enable inbound mapping */
1905 out_le32(mbase
+ PECFG_PIMEN
, 0x1);
1907 /* Enable I/O, Mem, and Busmaster cycles */
1908 out_le16(mbase
+ PCI_COMMAND
,
1909 in_le16(mbase
+ PCI_COMMAND
) |
1910 PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
);
1913 static void __init
ppc4xx_pciex_port_setup_hose(struct ppc4xx_pciex_port
*port
)
1915 struct resource dma_window
;
1916 struct pci_controller
*hose
= NULL
;
1917 const int *bus_range
;
1918 int primary
= 0, busses
;
1919 void __iomem
*mbase
= NULL
, *cfg_data
= NULL
;
1923 /* Check if primary bridge */
1924 if (of_get_property(port
->node
, "primary", NULL
))
1927 /* Get bus range if any */
1928 bus_range
= of_get_property(port
->node
, "bus-range", NULL
);
1930 /* Allocate the host controller data structure */
1931 hose
= pcibios_alloc_controller(port
->node
);
1935 /* We stick the port number in "indirect_type" so the config space
1936 * ops can retrieve the port data structure easily
1938 hose
->indirect_type
= port
->index
;
1941 hose
->first_busno
= bus_range
? bus_range
[0] : 0x0;
1942 hose
->last_busno
= bus_range
? bus_range
[1] : 0xff;
1944 /* Because of how big mapping the config space is (1M per bus), we
1945 * limit how many busses we support. In the long run, we could replace
1946 * that with something akin to kmap_atomic instead. We set aside 1 bus
1947 * for the host itself too.
1949 busses
= hose
->last_busno
- hose
->first_busno
; /* This is off by 1 */
1950 if (busses
> MAX_PCIE_BUS_MAPPED
) {
1951 busses
= MAX_PCIE_BUS_MAPPED
;
1952 hose
->last_busno
= hose
->first_busno
+ busses
;
1955 if (!port
->endpoint
) {
1956 /* Only map the external config space in cfg_data for
1957 * PCIe root-complexes. External space is 1M per bus
1959 cfg_data
= ioremap(port
->cfg_space
.start
+
1960 (hose
->first_busno
+ 1) * 0x100000,
1962 if (cfg_data
== NULL
) {
1963 printk(KERN_ERR
"%s: Can't map external config space !",
1964 port
->node
->full_name
);
1967 hose
->cfg_data
= cfg_data
;
1970 /* Always map the host config space in cfg_addr.
1971 * Internal space is 4K
1973 mbase
= ioremap(port
->cfg_space
.start
+ 0x10000000, 0x1000);
1974 if (mbase
== NULL
) {
1975 printk(KERN_ERR
"%s: Can't map internal config space !",
1976 port
->node
->full_name
);
1979 hose
->cfg_addr
= mbase
;
1981 pr_debug("PCIE %s, bus %d..%d\n", port
->node
->full_name
,
1982 hose
->first_busno
, hose
->last_busno
);
1983 pr_debug(" config space mapped at: root @0x%p, other @0x%p\n",
1984 hose
->cfg_addr
, hose
->cfg_data
);
1986 /* Setup config space */
1987 hose
->ops
= &ppc4xx_pciex_pci_ops
;
1989 mbase
= (void __iomem
*)hose
->cfg_addr
;
1991 if (!port
->endpoint
) {
1993 * Set bus numbers on our root port
1995 out_8(mbase
+ PCI_PRIMARY_BUS
, hose
->first_busno
);
1996 out_8(mbase
+ PCI_SECONDARY_BUS
, hose
->first_busno
+ 1);
1997 out_8(mbase
+ PCI_SUBORDINATE_BUS
, hose
->last_busno
);
2001 * OMRs are already reset, also disable PIMs
2003 out_le32(mbase
+ PECFG_PIMEN
, 0);
2005 /* Parse outbound mapping resources */
2006 pci_process_bridge_OF_ranges(hose
, port
->node
, primary
);
2008 /* Parse inbound mapping resources */
2009 if (ppc4xx_parse_dma_ranges(hose
, mbase
, &dma_window
) != 0)
2012 /* Configure outbound ranges POMs */
2013 ppc4xx_configure_pciex_POMs(port
, hose
, mbase
);
2015 /* Configure inbound ranges PIMs */
2016 ppc4xx_configure_pciex_PIMs(port
, hose
, mbase
, &dma_window
);
2018 /* The root complex doesn't show up if we don't set some vendor
2019 * and device IDs into it. The defaults below are the same bogus
2020 * one that the initial code in arch/ppc had. This can be
2021 * overwritten by setting the "vendor-id/device-id" properties
2022 * in the pciex node.
2025 /* Get the (optional) vendor-/device-id from the device-tree */
2026 pval
= of_get_property(port
->node
, "vendor-id", NULL
);
2030 if (!port
->endpoint
)
2031 val
= 0xaaa0 + port
->index
;
2033 val
= 0xeee0 + port
->index
;
2035 out_le16(mbase
+ 0x200, val
);
2037 pval
= of_get_property(port
->node
, "device-id", NULL
);
2041 if (!port
->endpoint
)
2042 val
= 0xbed0 + port
->index
;
2044 val
= 0xfed0 + port
->index
;
2046 out_le16(mbase
+ 0x202, val
);
2048 /* Enable Bus master, memory, and io space */
2049 if (of_device_is_compatible(port
->node
, "ibm,plb-pciex-460sx"))
2050 out_le16(mbase
+ 0x204, 0x7);
2052 if (!port
->endpoint
) {
2053 /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */
2054 out_le32(mbase
+ 0x208, 0x06040001);
2056 printk(KERN_INFO
"PCIE%d: successfully set as root-complex\n",
2059 /* Set Class Code to Processor/PPC */
2060 out_le32(mbase
+ 0x208, 0x0b200001);
2062 printk(KERN_INFO
"PCIE%d: successfully set as endpoint\n",
2069 pcibios_free_controller(hose
);
2076 static void __init
ppc4xx_probe_pciex_bridge(struct device_node
*np
)
2078 struct ppc4xx_pciex_port
*port
;
2084 /* First, proceed to core initialization as we assume there's
2085 * only one PCIe core in the system
2087 if (ppc4xx_pciex_check_core_init(np
))
2090 /* Get the port number from the device-tree */
2091 pval
= of_get_property(np
, "port", NULL
);
2093 printk(KERN_ERR
"PCIE: Can't find port number for %s\n",
2098 if (portno
>= ppc4xx_pciex_port_count
) {
2099 printk(KERN_ERR
"PCIE: port number out of range for %s\n",
2103 port
= &ppc4xx_pciex_ports
[portno
];
2104 port
->index
= portno
;
2107 * Check if device is enabled
2109 if (!of_device_is_available(np
)) {
2110 printk(KERN_INFO
"PCIE%d: Port disabled via device-tree\n", port
->index
);
2114 port
->node
= of_node_get(np
);
2115 if (ppc4xx_pciex_hwops
->want_sdr
) {
2116 pval
= of_get_property(np
, "sdr-base", NULL
);
2118 printk(KERN_ERR
"PCIE: missing sdr-base for %s\n",
2122 port
->sdr_base
= *pval
;
2125 /* Check if device_type property is set to "pci" or "pci-endpoint".
2126 * Resulting from this setup this PCIe port will be configured
2127 * as root-complex or as endpoint.
2129 val
= of_get_property(port
->node
, "device_type", NULL
);
2130 if (!strcmp(val
, "pci-endpoint")) {
2132 } else if (!strcmp(val
, "pci")) {
2135 printk(KERN_ERR
"PCIE: missing or incorrect device_type for %s\n",
2140 /* Fetch config space registers address */
2141 if (of_address_to_resource(np
, 0, &port
->cfg_space
)) {
2142 printk(KERN_ERR
"%s: Can't get PCI-E config space !",
2146 /* Fetch host bridge internal registers address */
2147 if (of_address_to_resource(np
, 1, &port
->utl_regs
)) {
2148 printk(KERN_ERR
"%s: Can't get UTL register base !",
2154 dcrs
= dcr_resource_start(np
, 0);
2156 printk(KERN_ERR
"%s: Can't get DCR register base !",
2160 port
->dcrs
= dcr_map(np
, dcrs
, dcr_resource_len(np
, 0));
2162 /* Initialize the port specific registers */
2163 if (ppc4xx_pciex_port_init(port
)) {
2164 printk(KERN_WARNING
"PCIE%d: Port init failed\n", port
->index
);
2168 /* Setup the linux hose data structure */
2169 ppc4xx_pciex_port_setup_hose(port
);
2172 #endif /* CONFIG_PPC4xx_PCI_EXPRESS */
2174 static int __init
ppc4xx_pci_find_bridges(void)
2176 struct device_node
*np
;
2178 pci_add_flags(PCI_ENABLE_PROC_DOMAINS
| PCI_COMPAT_DOMAIN_0
);
2180 #ifdef CONFIG_PPC4xx_PCI_EXPRESS
2181 for_each_compatible_node(np
, NULL
, "ibm,plb-pciex")
2182 ppc4xx_probe_pciex_bridge(np
);
2184 for_each_compatible_node(np
, NULL
, "ibm,plb-pcix")
2185 ppc4xx_probe_pcix_bridge(np
);
2186 for_each_compatible_node(np
, NULL
, "ibm,plb-pci")
2187 ppc4xx_probe_pci_bridge(np
);
2191 arch_initcall(ppc4xx_pci_find_bridges
);