blob: 472d2b840f10fd994aff5a36ec79644a91ea4fce [file] [log] [blame]
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +11001/*
2 * PCI / PCI-X / PCI-Express support for 4xx parts
3 *
4 * Copyright 2007 Ben. Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
5 *
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11006 * Most PCI Express code is coming from Stefan Roese implementation for
7 * arch/ppc in the Denx tree, slightly reworked by me.
8 *
9 * Copyright 2007 DENX Software Engineering, Stefan Roese <sr@denx.de>
10 *
11 * Some of that comes itself from a previous implementation for 440SPE only
12 * by Roland Dreier:
13 *
14 * Copyright (c) 2005 Cisco Systems. All rights reserved.
15 * Roland Dreier <rolandd@cisco.com>
16 *
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +110017 */
18
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +110019#undef DEBUG
20
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +110021#include <linux/kernel.h>
22#include <linux/pci.h>
23#include <linux/init.h>
24#include <linux/of.h>
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +110025#include <linux/bootmem.h>
26#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +110028
29#include <asm/io.h>
30#include <asm/pci-bridge.h>
31#include <asm/machdep.h>
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +110032#include <asm/dcr.h>
33#include <asm/dcr-regs.h>
Ilya Yanokcc2e1132008-09-01 17:53:22 +100034#include <mm/mmu_decl.h>
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +110035
36#include "ppc4xx_pci.h"
37
38static int dma_offset_set;
39
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +110040#define U64_TO_U32_LOW(val) ((u32)((val) & 0x00000000ffffffffULL))
41#define U64_TO_U32_HIGH(val) ((u32)((val) >> 32))
42
Jeremy Fitzhardinge8308c542008-09-11 01:31:50 -070043#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))
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +110047
Stefan Roeseaccf5ef2007-12-21 15:39:38 +110048static inline int ppc440spe_revA(void)
49{
50 /* Catch both 440SPe variants, with and without RAID6 support */
51 if ((mfspr(SPRN_PVR) & 0xffefffff) == 0x53421890)
52 return 1;
53 else
54 return 0;
55}
56
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +110057static void fixup_ppc4xx_pci_bridge(struct pci_dev *dev)
58{
59 struct pci_controller *hose;
60 int i;
61
62 if (dev->devfn != 0 || dev->bus->self != NULL)
63 return;
64
65 hose = pci_bus_to_host(dev->bus);
66 if (hose == NULL)
67 return;
68
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"))
72 return;
73
Josh Boyer5ce4b592008-06-17 19:01:38 -040074 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;
77 }
78
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +110079 /* Hide the PCI host BARs from the kernel as their content doesn't
80 * fit well in the resource management
81 */
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;
85 }
86
87 printk(KERN_INFO "PCI: Hiding 4xx host bridge resources %s\n",
88 pci_name(dev));
89}
90DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, fixup_ppc4xx_pci_bridge);
91
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +110092static int __init ppc4xx_parse_dma_ranges(struct pci_controller *hose,
93 void __iomem *reg,
94 struct resource *res)
95{
96 u64 size;
97 const u32 *ranges;
98 int rlen;
99 int pna = of_n_addr_cells(hose->dn);
100 int np = pna + 5;
101
102 /* Default */
103 res->start = 0;
Ilya Yanokcc2e1132008-09-01 17:53:22 +1000104 size = 0x80000000;
105 res->end = size - 1;
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100106 res->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
107
108 /* Get dma-ranges property */
109 ranges = of_get_property(hose->dn, "dma-ranges", &rlen);
110 if (ranges == NULL)
111 goto out;
112
113 /* Walk it */
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);
119 ranges += np;
120 if (cpu_addr == OF_BAD_ADDR || size == 0)
121 continue;
122
123 /* We only care about memory */
124 if ((pci_space & 0x03000000) != 0x02000000)
125 continue;
126
127 /* We currently only support memory at 0, and pci_addr
128 * within 32 bits space
129 */
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",
133 hose->dn->full_name,
134 pci_addr, pci_addr + size - 1, cpu_addr);
135 continue;
136 }
137
138 /* Check if not prefetchable */
139 if (!(pci_space & 0x40000000))
140 res->flags &= ~IORESOURCE_PREFETCH;
141
142
143 /* Use that */
144 res->start = pci_addr;
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100145 /* Beware of 32 bits resources */
Jeremy Fitzhardinge8308c542008-09-11 01:31:50 -0700146 if (sizeof(resource_size_t) == sizeof(u32) &&
147 (pci_addr + size) > 0x100000000ull)
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100148 res->end = 0xffffffff;
149 else
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100150 res->end = res->start + size - 1;
151 break;
152 }
153
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);
158 return -ENXIO;
159 }
160
161 /* Check that we can fit all of memory as we don't support
162 * DMA bounce buffers
163 */
164 if (size < total_memory) {
165 printk(KERN_ERR "%s: dma-ranges too small "
Ilya Yanokcc2e1132008-09-01 17:53:22 +1000166 "(size=%llx total_memory=%llx)\n",
167 hose->dn->full_name, size, (u64)total_memory);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100168 return -ENXIO;
169 }
170
171 /* Check we are a power of 2 size and that base is a multiple of size*/
Ilya Yanokcc2e1132008-09-01 17:53:22 +1000172 if ((size & (size - 1)) != 0 ||
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100173 (res->start & (size - 1)) != 0) {
174 printk(KERN_ERR "%s: dma-ranges unaligned\n",
175 hose->dn->full_name);
176 return -ENXIO;
177 }
178
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);
183 return -ENXIO;
184 }
185 out:
186 dma_offset_set = 1;
187 pci_dram_offset = res->start;
Tony Breeds466c2bc2011-11-30 21:39:19 +0000188 hose->dma_window_base_cur = res->start;
189 hose->dma_window_size = resource_size(res);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100190
191 printk(KERN_INFO "4xx PCI DMA offset set to 0x%08lx\n",
192 pci_dram_offset);
Tony Breeds466c2bc2011-11-30 21:39:19 +0000193 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);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100197 return 0;
198}
199
200/*
201 * 4xx PCI 2.x part
202 */
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100203
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000204static int __init ppc4xx_setup_one_pci_PMM(struct pci_controller *hose,
205 void __iomem *reg,
206 u64 plb_addr,
207 u64 pci_addr,
208 u64 size,
209 unsigned int flags,
210 int index)
211{
212 u32 ma, pcila, pciha;
213
Benjamin Herrenschmidt1ac00cc2009-02-01 14:24:18 +0000214 /* 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.
218 *
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
224 */
225 plb_addr &= 0xffffffffull;
226
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
230 */
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000231 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);
235 return -1;
236 }
237 ma = (0xffffffffu << ilog2(size)) | 1;
238 if (flags & IORESOURCE_PREFETCH)
239 ma |= 2;
240
241 pciha = RES_TO_U32_HIGH(pci_addr);
242 pcila = RES_TO_U32_LOW(pci_addr);
243
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));
248
249 return 0;
250}
251
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100252static void __init ppc4xx_configure_pci_PMMs(struct pci_controller *hose,
253 void __iomem *reg)
254{
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000255 int i, j, found_isa_hole = 0;
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100256
257 /* Setup outbound memory windows */
258 for (i = j = 0; i < 3; i++) {
259 struct resource *res = &hose->mem_resources[i];
260
261 /* we only care about memory windows */
262 if (!(res->flags & IORESOURCE_MEM))
263 continue;
264 if (j > 2) {
265 printk(KERN_WARNING "%s: Too many ranges\n",
266 hose->dn->full_name);
267 break;
268 }
269
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000270 /* Configure the resource */
271 if (ppc4xx_setup_one_pci_PMM(hose, reg,
272 res->start,
273 res->start - hose->pci_mem_offset,
Joe Perches28f65c112011-06-09 09:13:32 -0700274 resource_size(res),
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000275 res->flags,
276 j) == 0) {
277 j++;
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100278
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000279 /* If the resource PCI address is 0 then we have our
280 * ISA memory hole
281 */
282 if (res->start == hose->pci_mem_offset)
283 found_isa_hole = 1;
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100284 }
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100285 }
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000286
287 /* Handle ISA memory hole if not already covered */
288 if (j <= 2 && !found_isa_hole && hose->isa_mem_size)
289 if (ppc4xx_setup_one_pci_PMM(hose, reg, hose->isa_mem_phys, 0,
290 hose->isa_mem_size, 0, j) == 0)
291 printk(KERN_INFO "%s: Legacy ISA memory support enabled\n",
292 hose->dn->full_name);
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100293}
294
295static void __init ppc4xx_configure_pci_PTMs(struct pci_controller *hose,
296 void __iomem *reg,
297 const struct resource *res)
298{
Joe Perches28f65c112011-06-09 09:13:32 -0700299 resource_size_t size = resource_size(res);
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100300 u32 sa;
301
302 /* Calculate window size */
303 sa = (0xffffffffu << ilog2(size)) | 1;
304 sa |= 0x1;
305
306 /* RAM is always at 0 local for now */
307 writel(0, reg + PCIL0_PTM1LA);
308 writel(sa, reg + PCIL0_PTM1MS);
309
310 /* Map on PCI side */
311 early_write_config_dword(hose, hose->first_busno, 0,
312 PCI_BASE_ADDRESS_1, res->start);
313 early_write_config_dword(hose, hose->first_busno, 0,
314 PCI_BASE_ADDRESS_2, 0x00000000);
315 early_write_config_word(hose, hose->first_busno, 0,
316 PCI_COMMAND, 0x0006);
317}
318
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100319static void __init ppc4xx_probe_pci_bridge(struct device_node *np)
320{
321 /* NYI */
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100322 struct resource rsrc_cfg;
323 struct resource rsrc_reg;
324 struct resource dma_window;
325 struct pci_controller *hose = NULL;
326 void __iomem *reg = NULL;
327 const int *bus_range;
328 int primary = 0;
329
Matthias Fuchs5a013fc2008-09-10 05:55:46 +0000330 /* Check if device is enabled */
331 if (!of_device_is_available(np)) {
332 printk(KERN_INFO "%s: Port disabled via device-tree\n",
333 np->full_name);
334 return;
335 }
336
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100337 /* Fetch config space registers address */
338 if (of_address_to_resource(np, 0, &rsrc_cfg)) {
Matthias Fuchs5a013fc2008-09-10 05:55:46 +0000339 printk(KERN_ERR "%s: Can't get PCI config register base !",
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100340 np->full_name);
341 return;
342 }
343 /* Fetch host bridge internal registers address */
344 if (of_address_to_resource(np, 3, &rsrc_reg)) {
345 printk(KERN_ERR "%s: Can't get PCI internal register base !",
346 np->full_name);
347 return;
348 }
349
350 /* Check if primary bridge */
351 if (of_get_property(np, "primary", NULL))
352 primary = 1;
353
354 /* Get bus range if any */
355 bus_range = of_get_property(np, "bus-range", NULL);
356
357 /* Map registers */
Joe Perches28f65c112011-06-09 09:13:32 -0700358 reg = ioremap(rsrc_reg.start, resource_size(&rsrc_reg));
Benjamin Herrenschmidtc839e0e2007-12-21 15:39:23 +1100359 if (reg == NULL) {
360 printk(KERN_ERR "%s: Can't map registers !", np->full_name);
361 goto fail;
362 }
363
364 /* Allocate the host controller data structure */
365 hose = pcibios_alloc_controller(np);
366 if (!hose)
367 goto fail;
368
369 hose->first_busno = bus_range ? bus_range[0] : 0x0;
370 hose->last_busno = bus_range ? bus_range[1] : 0xff;
371
372 /* Setup config space */
373 setup_indirect_pci(hose, rsrc_cfg.start, rsrc_cfg.start + 0x4, 0);
374
375 /* Disable all windows */
376 writel(0, reg + PCIL0_PMM0MA);
377 writel(0, reg + PCIL0_PMM1MA);
378 writel(0, reg + PCIL0_PMM2MA);
379 writel(0, reg + PCIL0_PTM1MS);
380 writel(0, reg + PCIL0_PTM2MS);
381
382 /* Parse outbound mapping resources */
383 pci_process_bridge_OF_ranges(hose, np, primary);
384
385 /* Parse inbound mapping resources */
386 if (ppc4xx_parse_dma_ranges(hose, reg, &dma_window) != 0)
387 goto fail;
388
389 /* Configure outbound ranges POMs */
390 ppc4xx_configure_pci_PMMs(hose, reg);
391
392 /* Configure inbound ranges PIMs */
393 ppc4xx_configure_pci_PTMs(hose, reg, &dma_window);
394
395 /* We don't need the registers anymore */
396 iounmap(reg);
397 return;
398
399 fail:
400 if (hose)
401 pcibios_free_controller(hose);
402 if (reg)
403 iounmap(reg);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100404}
405
406/*
407 * 4xx PCI-X part
408 */
409
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000410static int __init ppc4xx_setup_one_pcix_POM(struct pci_controller *hose,
411 void __iomem *reg,
412 u64 plb_addr,
413 u64 pci_addr,
414 u64 size,
415 unsigned int flags,
416 int index)
417{
418 u32 lah, lal, pciah, pcial, sa;
419
420 if (!is_power_of_2(size) || size < 0x1000 ||
421 (plb_addr & (size - 1)) != 0) {
422 printk(KERN_WARNING "%s: Resource out of range\n",
423 hose->dn->full_name);
424 return -1;
425 }
426
427 /* Calculate register values */
428 lah = RES_TO_U32_HIGH(plb_addr);
429 lal = RES_TO_U32_LOW(plb_addr);
430 pciah = RES_TO_U32_HIGH(pci_addr);
431 pcial = RES_TO_U32_LOW(pci_addr);
432 sa = (0xffffffffu << ilog2(size)) | 0x1;
433
434 /* Program register values */
435 if (index == 0) {
436 writel(lah, reg + PCIX0_POM0LAH);
437 writel(lal, reg + PCIX0_POM0LAL);
438 writel(pciah, reg + PCIX0_POM0PCIAH);
439 writel(pcial, reg + PCIX0_POM0PCIAL);
440 writel(sa, reg + PCIX0_POM0SA);
441 } else {
442 writel(lah, reg + PCIX0_POM1LAH);
443 writel(lal, reg + PCIX0_POM1LAL);
444 writel(pciah, reg + PCIX0_POM1PCIAH);
445 writel(pcial, reg + PCIX0_POM1PCIAL);
446 writel(sa, reg + PCIX0_POM1SA);
447 }
448
449 return 0;
450}
451
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100452static void __init ppc4xx_configure_pcix_POMs(struct pci_controller *hose,
453 void __iomem *reg)
454{
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000455 int i, j, found_isa_hole = 0;
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100456
457 /* Setup outbound memory windows */
458 for (i = j = 0; i < 3; i++) {
459 struct resource *res = &hose->mem_resources[i];
460
461 /* we only care about memory windows */
462 if (!(res->flags & IORESOURCE_MEM))
463 continue;
464 if (j > 1) {
465 printk(KERN_WARNING "%s: Too many ranges\n",
466 hose->dn->full_name);
467 break;
468 }
469
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000470 /* Configure the resource */
471 if (ppc4xx_setup_one_pcix_POM(hose, reg,
472 res->start,
473 res->start - hose->pci_mem_offset,
Joe Perches28f65c112011-06-09 09:13:32 -0700474 resource_size(res),
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000475 res->flags,
476 j) == 0) {
477 j++;
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100478
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000479 /* If the resource PCI address is 0 then we have our
480 * ISA memory hole
481 */
482 if (res->start == hose->pci_mem_offset)
483 found_isa_hole = 1;
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100484 }
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100485 }
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +0000486
487 /* Handle ISA memory hole if not already covered */
488 if (j <= 1 && !found_isa_hole && hose->isa_mem_size)
489 if (ppc4xx_setup_one_pcix_POM(hose, reg, hose->isa_mem_phys, 0,
490 hose->isa_mem_size, 0, j) == 0)
491 printk(KERN_INFO "%s: Legacy ISA memory support enabled\n",
492 hose->dn->full_name);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100493}
494
495static void __init ppc4xx_configure_pcix_PIMs(struct pci_controller *hose,
496 void __iomem *reg,
497 const struct resource *res,
498 int big_pim,
499 int enable_msi_hole)
500{
Joe Perches28f65c112011-06-09 09:13:32 -0700501 resource_size_t size = resource_size(res);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100502 u32 sa;
503
504 /* RAM is always at 0 */
505 writel(0x00000000, reg + PCIX0_PIM0LAH);
506 writel(0x00000000, reg + PCIX0_PIM0LAL);
507
508 /* Calculate window size */
509 sa = (0xffffffffu << ilog2(size)) | 1;
510 sa |= 0x1;
511 if (res->flags & IORESOURCE_PREFETCH)
512 sa |= 0x2;
513 if (enable_msi_hole)
514 sa |= 0x4;
515 writel(sa, reg + PCIX0_PIM0SA);
516 if (big_pim)
517 writel(0xffffffff, reg + PCIX0_PIM0SAH);
518
519 /* Map on PCI side */
520 writel(0x00000000, reg + PCIX0_BAR0H);
521 writel(res->start, reg + PCIX0_BAR0L);
522 writew(0x0006, reg + PCIX0_COMMAND);
523}
524
525static void __init ppc4xx_probe_pcix_bridge(struct device_node *np)
526{
527 struct resource rsrc_cfg;
528 struct resource rsrc_reg;
529 struct resource dma_window;
530 struct pci_controller *hose = NULL;
531 void __iomem *reg = NULL;
532 const int *bus_range;
533 int big_pim = 0, msi = 0, primary = 0;
534
535 /* Fetch config space registers address */
536 if (of_address_to_resource(np, 0, &rsrc_cfg)) {
537 printk(KERN_ERR "%s:Can't get PCI-X config register base !",
538 np->full_name);
539 return;
540 }
541 /* Fetch host bridge internal registers address */
542 if (of_address_to_resource(np, 3, &rsrc_reg)) {
543 printk(KERN_ERR "%s: Can't get PCI-X internal register base !",
544 np->full_name);
545 return;
546 }
547
548 /* Check if it supports large PIMs (440GX) */
549 if (of_get_property(np, "large-inbound-windows", NULL))
550 big_pim = 1;
551
552 /* Check if we should enable MSIs inbound hole */
553 if (of_get_property(np, "enable-msi-hole", NULL))
554 msi = 1;
555
556 /* Check if primary bridge */
557 if (of_get_property(np, "primary", NULL))
558 primary = 1;
559
560 /* Get bus range if any */
561 bus_range = of_get_property(np, "bus-range", NULL);
562
563 /* Map registers */
Joe Perches28f65c112011-06-09 09:13:32 -0700564 reg = ioremap(rsrc_reg.start, resource_size(&rsrc_reg));
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100565 if (reg == NULL) {
566 printk(KERN_ERR "%s: Can't map registers !", np->full_name);
567 goto fail;
568 }
569
570 /* Allocate the host controller data structure */
571 hose = pcibios_alloc_controller(np);
572 if (!hose)
573 goto fail;
574
575 hose->first_busno = bus_range ? bus_range[0] : 0x0;
576 hose->last_busno = bus_range ? bus_range[1] : 0xff;
577
578 /* Setup config space */
Stef van Osd234b3c2010-01-20 03:59:39 +0000579 setup_indirect_pci(hose, rsrc_cfg.start, rsrc_cfg.start + 0x4,
580 PPC_INDIRECT_TYPE_SET_CFG_TYPE);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100581
582 /* Disable all windows */
583 writel(0, reg + PCIX0_POM0SA);
584 writel(0, reg + PCIX0_POM1SA);
585 writel(0, reg + PCIX0_POM2SA);
586 writel(0, reg + PCIX0_PIM0SA);
587 writel(0, reg + PCIX0_PIM1SA);
588 writel(0, reg + PCIX0_PIM2SA);
589 if (big_pim) {
590 writel(0, reg + PCIX0_PIM0SAH);
591 writel(0, reg + PCIX0_PIM2SAH);
592 }
593
594 /* Parse outbound mapping resources */
595 pci_process_bridge_OF_ranges(hose, np, primary);
596
597 /* Parse inbound mapping resources */
598 if (ppc4xx_parse_dma_ranges(hose, reg, &dma_window) != 0)
599 goto fail;
600
601 /* Configure outbound ranges POMs */
602 ppc4xx_configure_pcix_POMs(hose, reg);
603
604 /* Configure inbound ranges PIMs */
605 ppc4xx_configure_pcix_PIMs(hose, reg, &dma_window, big_pim, msi);
606
607 /* We don't need the registers anymore */
608 iounmap(reg);
609 return;
610
611 fail:
612 if (hose)
613 pcibios_free_controller(hose);
614 if (reg)
615 iounmap(reg);
616}
617
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100618#ifdef CONFIG_PPC4xx_PCI_EXPRESS
619
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100620/*
621 * 4xx PCI-Express part
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100622 *
623 * We support 3 parts currently based on the compatible property:
624 *
Stefan Roeseaccf5ef2007-12-21 15:39:38 +1100625 * ibm,plb-pciex-440spe
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100626 * ibm,plb-pciex-405ex
Stefan Roese66b7e502008-02-24 08:08:27 +1100627 * ibm,plb-pciex-460ex
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100628 *
629 * Anything else will be rejected for now as they are all subtly
630 * different unfortunately.
631 *
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +1100632 */
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100633
Stefan Roese78994e22007-12-31 16:41:15 +1100634#define MAX_PCIE_BUS_MAPPED 0x40
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100635
636struct ppc4xx_pciex_port
637{
638 struct pci_controller *hose;
639 struct device_node *node;
640 unsigned int index;
641 int endpoint;
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100642 int link;
643 int has_ibpre;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100644 unsigned int sdr_base;
645 dcr_host_t dcrs;
646 struct resource cfg_space;
647 struct resource utl_regs;
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100648 void __iomem *utl_base;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100649};
650
651static struct ppc4xx_pciex_port *ppc4xx_pciex_ports;
652static unsigned int ppc4xx_pciex_port_count;
653
654struct ppc4xx_pciex_hwops
655{
Tony Breeds81158462011-11-30 21:39:18 +0000656 bool want_sdr;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100657 int (*core_init)(struct device_node *np);
658 int (*port_init_hw)(struct ppc4xx_pciex_port *port);
659 int (*setup_utl)(struct ppc4xx_pciex_port *port);
Tony Breeds112d1fe2011-06-30 20:44:24 +0000660 void (*check_link)(struct ppc4xx_pciex_port *port);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100661};
662
663static struct ppc4xx_pciex_hwops *ppc4xx_pciex_hwops;
664
Tony Breeds112d1fe2011-06-30 20:44:24 +0000665static int __init ppc4xx_pciex_wait_on_sdr(struct ppc4xx_pciex_port *port,
666 unsigned int sdr_offset,
667 unsigned int mask,
668 unsigned int value,
669 int timeout_ms)
670{
671 u32 val;
672
673 while(timeout_ms--) {
674 val = mfdcri(SDR0, port->sdr_base + sdr_offset);
675 if ((val & mask) == value) {
676 pr_debug("PCIE%d: Wait on SDR %x success with tm %d (%08x)\n",
677 port->index, sdr_offset, timeout_ms, val);
678 return 0;
679 }
680 msleep(1);
681 }
682 return -1;
683}
684
685static int __init ppc4xx_pciex_port_reset_sdr(struct ppc4xx_pciex_port *port)
686{
Tony Breeds112d1fe2011-06-30 20:44:24 +0000687 /* Wait for reset to complete */
688 if (ppc4xx_pciex_wait_on_sdr(port, PESDRn_RCSSTS, 1 << 20, 0, 10)) {
689 printk(KERN_WARNING "PCIE%d: PGRST failed\n",
690 port->index);
691 return -1;
692 }
693 return 0;
694}
695
Benjamin Herrenschmidt883a8052011-08-05 15:59:40 +1000696
Tony Breeds112d1fe2011-06-30 20:44:24 +0000697static void __init ppc4xx_pciex_check_link_sdr(struct ppc4xx_pciex_port *port)
698{
Josh Boyera8e616b2011-07-12 16:37:50 -0400699 printk(KERN_INFO "PCIE%d: Checking link...\n", port->index);
700
Tony Breeds112d1fe2011-06-30 20:44:24 +0000701 /* Check for card presence detect if supported, if not, just wait for
702 * link unconditionally.
703 *
704 * note that we don't fail if there is no link, we just filter out
705 * config space accesses. That way, it will be easier to implement
706 * hotplug later on.
707 */
708 if (!port->has_ibpre ||
709 !ppc4xx_pciex_wait_on_sdr(port, PESDRn_LOOP,
710 1 << 28, 1 << 28, 100)) {
711 printk(KERN_INFO
712 "PCIE%d: Device detected, waiting for link...\n",
713 port->index);
714 if (ppc4xx_pciex_wait_on_sdr(port, PESDRn_LOOP,
715 0x1000, 0x1000, 2000))
716 printk(KERN_WARNING
717 "PCIE%d: Link up failed\n", port->index);
718 else {
719 printk(KERN_INFO
720 "PCIE%d: link is up !\n", port->index);
721 port->link = 1;
722 }
723 } else
724 printk(KERN_INFO "PCIE%d: No device detected.\n", port->index);
725}
726
Benjamin Herrenschmidt883a8052011-08-05 15:59:40 +1000727#ifdef CONFIG_44x
728
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100729/* Check various reset bits of the 440SPe PCIe core */
730static int __init ppc440spe_pciex_check_reset(struct device_node *np)
731{
732 u32 valPE0, valPE1, valPE2;
733 int err = 0;
734
735 /* SDR0_PEGPLLLCT1 reset */
736 if (!(mfdcri(SDR0, PESDR0_PLLLCT1) & 0x01000000)) {
737 /*
738 * the PCIe core was probably already initialised
739 * by firmware - let's re-reset RCSSET regs
740 *
741 * -- Shouldn't we also re-reset the whole thing ? -- BenH
742 */
743 pr_debug("PCIE: SDR0_PLLLCT1 already reset.\n");
744 mtdcri(SDR0, PESDR0_440SPE_RCSSET, 0x01010000);
745 mtdcri(SDR0, PESDR1_440SPE_RCSSET, 0x01010000);
746 mtdcri(SDR0, PESDR2_440SPE_RCSSET, 0x01010000);
747 }
748
749 valPE0 = mfdcri(SDR0, PESDR0_440SPE_RCSSET);
750 valPE1 = mfdcri(SDR0, PESDR1_440SPE_RCSSET);
751 valPE2 = mfdcri(SDR0, PESDR2_440SPE_RCSSET);
752
753 /* SDR0_PExRCSSET rstgu */
754 if (!(valPE0 & 0x01000000) ||
755 !(valPE1 & 0x01000000) ||
756 !(valPE2 & 0x01000000)) {
757 printk(KERN_INFO "PCIE: SDR0_PExRCSSET rstgu error\n");
758 err = -1;
759 }
760
761 /* SDR0_PExRCSSET rstdl */
762 if (!(valPE0 & 0x00010000) ||
763 !(valPE1 & 0x00010000) ||
764 !(valPE2 & 0x00010000)) {
765 printk(KERN_INFO "PCIE: SDR0_PExRCSSET rstdl error\n");
766 err = -1;
767 }
768
769 /* SDR0_PExRCSSET rstpyn */
770 if ((valPE0 & 0x00001000) ||
771 (valPE1 & 0x00001000) ||
772 (valPE2 & 0x00001000)) {
773 printk(KERN_INFO "PCIE: SDR0_PExRCSSET rstpyn error\n");
774 err = -1;
775 }
776
777 /* SDR0_PExRCSSET hldplb */
778 if ((valPE0 & 0x10000000) ||
779 (valPE1 & 0x10000000) ||
780 (valPE2 & 0x10000000)) {
781 printk(KERN_INFO "PCIE: SDR0_PExRCSSET hldplb error\n");
782 err = -1;
783 }
784
785 /* SDR0_PExRCSSET rdy */
786 if ((valPE0 & 0x00100000) ||
787 (valPE1 & 0x00100000) ||
788 (valPE2 & 0x00100000)) {
789 printk(KERN_INFO "PCIE: SDR0_PExRCSSET rdy error\n");
790 err = -1;
791 }
792
793 /* SDR0_PExRCSSET shutdown */
794 if ((valPE0 & 0x00000100) ||
795 (valPE1 & 0x00000100) ||
796 (valPE2 & 0x00000100)) {
797 printk(KERN_INFO "PCIE: SDR0_PExRCSSET shutdown error\n");
798 err = -1;
799 }
800
801 return err;
802}
803
804/* Global PCIe core initializations for 440SPe core */
805static int __init ppc440spe_pciex_core_init(struct device_node *np)
806{
807 int time_out = 20;
808
809 /* Set PLL clock receiver to LVPECL */
Valentine Barshak6e42b212008-03-07 01:34:52 +1100810 dcri_clrset(SDR0, PESDR0_PLLLCT1, 0, 1 << 28);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100811
812 /* Shouldn't we do all the calibration stuff etc... here ? */
813 if (ppc440spe_pciex_check_reset(np))
814 return -ENXIO;
815
816 if (!(mfdcri(SDR0, PESDR0_PLLLCT2) & 0x10000)) {
817 printk(KERN_INFO "PCIE: PESDR_PLLCT2 resistance calibration "
818 "failed (0x%08x)\n",
819 mfdcri(SDR0, PESDR0_PLLLCT2));
820 return -1;
821 }
822
823 /* De-assert reset of PCIe PLL, wait for lock */
Valentine Barshak6e42b212008-03-07 01:34:52 +1100824 dcri_clrset(SDR0, PESDR0_PLLLCT1, 1 << 24, 0);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100825 udelay(3);
826
827 while (time_out) {
828 if (!(mfdcri(SDR0, PESDR0_PLLLCT3) & 0x10000000)) {
829 time_out--;
830 udelay(1);
831 } else
832 break;
833 }
834 if (!time_out) {
835 printk(KERN_INFO "PCIE: VCO output not locked\n");
836 return -1;
837 }
838
839 pr_debug("PCIE initialization OK\n");
840
841 return 3;
842}
843
Tony Breeds9c57a322011-08-10 20:16:54 +0000844static int __init ppc440spe_pciex_init_port_hw(struct ppc4xx_pciex_port *port)
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100845{
846 u32 val = 1 << 24;
847
848 if (port->endpoint)
849 val = PTYPE_LEGACY_ENDPOINT << 20;
850 else
851 val = PTYPE_ROOT_PORT << 20;
852
853 if (port->index == 0)
854 val |= LNKW_X8 << 12;
855 else
856 val |= LNKW_X4 << 12;
857
858 mtdcri(SDR0, port->sdr_base + PESDRn_DLPSET, val);
859 mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET1, 0x20222222);
Stefan Roeseaccf5ef2007-12-21 15:39:38 +1100860 if (ppc440spe_revA())
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100861 mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET2, 0x11000000);
862 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL0SET1, 0x35000000);
863 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL1SET1, 0x35000000);
864 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL2SET1, 0x35000000);
865 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL3SET1, 0x35000000);
866 if (port->index == 0) {
867 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL4SET1,
868 0x35000000);
869 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL5SET1,
870 0x35000000);
871 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL6SET1,
872 0x35000000);
873 mtdcri(SDR0, port->sdr_base + PESDRn_440SPE_HSSL7SET1,
874 0x35000000);
875 }
Valentine Barshak6e42b212008-03-07 01:34:52 +1100876 dcri_clrset(SDR0, port->sdr_base + PESDRn_RCSSET,
877 (1 << 24) | (1 << 16), 1 << 12);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100878
Tony Breeds112d1fe2011-06-30 20:44:24 +0000879 return ppc4xx_pciex_port_reset_sdr(port);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100880}
881
Tony Breeds9c57a322011-08-10 20:16:54 +0000882static int __init ppc440speA_pciex_init_port_hw(struct ppc4xx_pciex_port *port)
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100883{
884 return ppc440spe_pciex_init_port_hw(port);
885}
886
Tony Breeds9c57a322011-08-10 20:16:54 +0000887static int __init ppc440speB_pciex_init_port_hw(struct ppc4xx_pciex_port *port)
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100888{
889 int rc = ppc440spe_pciex_init_port_hw(port);
890
891 port->has_ibpre = 1;
892
893 return rc;
894}
895
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100896static int ppc440speA_pciex_init_utl(struct ppc4xx_pciex_port *port)
897{
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100898 /* XXX Check what that value means... I hate magic */
899 dcr_write(port->dcrs, DCRO_PEGPL_SPECIAL, 0x68782800);
900
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100901 /*
902 * Set buffer allocations and then assert VRB and TXE.
903 */
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100904 out_be32(port->utl_base + PEUTL_OUTTR, 0x08000000);
905 out_be32(port->utl_base + PEUTL_INTR, 0x02000000);
906 out_be32(port->utl_base + PEUTL_OPDBSZ, 0x10000000);
907 out_be32(port->utl_base + PEUTL_PBBSZ, 0x53000000);
908 out_be32(port->utl_base + PEUTL_IPHBSZ, 0x08000000);
909 out_be32(port->utl_base + PEUTL_IPDBSZ, 0x10000000);
910 out_be32(port->utl_base + PEUTL_RCIRQEN, 0x00f00000);
911 out_be32(port->utl_base + PEUTL_PCTL, 0x80800066);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100912
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100913 return 0;
914}
915
916static int ppc440speB_pciex_init_utl(struct ppc4xx_pciex_port *port)
917{
918 /* Report CRS to the operating system */
919 out_be32(port->utl_base + PEUTL_PBCTL, 0x08000000);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100920
921 return 0;
922}
923
924static struct ppc4xx_pciex_hwops ppc440speA_pcie_hwops __initdata =
925{
Tony Breeds81158462011-11-30 21:39:18 +0000926 .want_sdr = true,
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100927 .core_init = ppc440spe_pciex_core_init,
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100928 .port_init_hw = ppc440speA_pciex_init_port_hw,
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100929 .setup_utl = ppc440speA_pciex_init_utl,
Tony Breeds112d1fe2011-06-30 20:44:24 +0000930 .check_link = ppc4xx_pciex_check_link_sdr,
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100931};
932
933static struct ppc4xx_pciex_hwops ppc440speB_pcie_hwops __initdata =
934{
Tony Breeds81158462011-11-30 21:39:18 +0000935 .want_sdr = true,
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100936 .core_init = ppc440spe_pciex_core_init,
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +1100937 .port_init_hw = ppc440speB_pciex_init_port_hw,
938 .setup_utl = ppc440speB_pciex_init_utl,
Tony Breeds112d1fe2011-06-30 20:44:24 +0000939 .check_link = ppc4xx_pciex_check_link_sdr,
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +1100940};
941
Stefan Roese66b7e502008-02-24 08:08:27 +1100942static int __init ppc460ex_pciex_core_init(struct device_node *np)
943{
944 /* Nothing to do, return 2 ports */
945 return 2;
946}
947
Tony Breeds9c57a322011-08-10 20:16:54 +0000948static int __init ppc460ex_pciex_init_port_hw(struct ppc4xx_pciex_port *port)
Stefan Roese66b7e502008-02-24 08:08:27 +1100949{
950 u32 val;
951 u32 utlset1;
952
Stefan Roese5f919252008-04-02 00:45:00 +1100953 if (port->endpoint)
Stefan Roese66b7e502008-02-24 08:08:27 +1100954 val = PTYPE_LEGACY_ENDPOINT << 20;
Stefan Roese5f919252008-04-02 00:45:00 +1100955 else
Stefan Roese66b7e502008-02-24 08:08:27 +1100956 val = PTYPE_ROOT_PORT << 20;
Stefan Roese66b7e502008-02-24 08:08:27 +1100957
958 if (port->index == 0) {
959 val |= LNKW_X1 << 12;
Stefan Roese5f919252008-04-02 00:45:00 +1100960 utlset1 = 0x20000000;
Stefan Roese66b7e502008-02-24 08:08:27 +1100961 } else {
962 val |= LNKW_X4 << 12;
Stefan Roese5f919252008-04-02 00:45:00 +1100963 utlset1 = 0x20101101;
Stefan Roese66b7e502008-02-24 08:08:27 +1100964 }
965
966 mtdcri(SDR0, port->sdr_base + PESDRn_DLPSET, val);
967 mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET1, utlset1);
968 mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET2, 0x01210000);
969
970 switch (port->index) {
971 case 0:
972 mtdcri(SDR0, PESDR0_460EX_L0CDRCTL, 0x00003230);
Tirumala R Marrie30c9872008-08-21 18:53:34 +0000973 mtdcri(SDR0, PESDR0_460EX_L0DRV, 0x00000130);
Stefan Roese66b7e502008-02-24 08:08:27 +1100974 mtdcri(SDR0, PESDR0_460EX_L0CLK, 0x00000006);
975
976 mtdcri(SDR0, PESDR0_460EX_PHY_CTL_RST,0x10000000);
977 break;
978
979 case 1:
980 mtdcri(SDR0, PESDR1_460EX_L0CDRCTL, 0x00003230);
981 mtdcri(SDR0, PESDR1_460EX_L1CDRCTL, 0x00003230);
982 mtdcri(SDR0, PESDR1_460EX_L2CDRCTL, 0x00003230);
983 mtdcri(SDR0, PESDR1_460EX_L3CDRCTL, 0x00003230);
Tirumala R Marrie30c9872008-08-21 18:53:34 +0000984 mtdcri(SDR0, PESDR1_460EX_L0DRV, 0x00000130);
985 mtdcri(SDR0, PESDR1_460EX_L1DRV, 0x00000130);
986 mtdcri(SDR0, PESDR1_460EX_L2DRV, 0x00000130);
987 mtdcri(SDR0, PESDR1_460EX_L3DRV, 0x00000130);
Stefan Roese66b7e502008-02-24 08:08:27 +1100988 mtdcri(SDR0, PESDR1_460EX_L0CLK, 0x00000006);
989 mtdcri(SDR0, PESDR1_460EX_L1CLK, 0x00000006);
990 mtdcri(SDR0, PESDR1_460EX_L2CLK, 0x00000006);
991 mtdcri(SDR0, PESDR1_460EX_L3CLK, 0x00000006);
992
993 mtdcri(SDR0, PESDR1_460EX_PHY_CTL_RST,0x10000000);
994 break;
995 }
996
997 mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET,
998 mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET) |
999 (PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTPYN));
1000
1001 /* Poll for PHY reset */
1002 /* XXX FIXME add timeout */
1003 switch (port->index) {
1004 case 0:
1005 while (!(mfdcri(SDR0, PESDR0_460EX_RSTSTA) & 0x1))
1006 udelay(10);
1007 break;
1008 case 1:
1009 while (!(mfdcri(SDR0, PESDR1_460EX_RSTSTA) & 0x1))
1010 udelay(10);
1011 break;
1012 }
1013
1014 mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET,
1015 (mfdcri(SDR0, port->sdr_base + PESDRn_RCSSET) &
1016 ~(PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTDL)) |
1017 PESDRx_RCSSET_RSTPYN);
1018
1019 port->has_ibpre = 1;
1020
Tony Breeds112d1fe2011-06-30 20:44:24 +00001021 return ppc4xx_pciex_port_reset_sdr(port);
Stefan Roese66b7e502008-02-24 08:08:27 +11001022}
1023
1024static int ppc460ex_pciex_init_utl(struct ppc4xx_pciex_port *port)
1025{
1026 dcr_write(port->dcrs, DCRO_PEGPL_SPECIAL, 0x0);
1027
1028 /*
1029 * Set buffer allocations and then assert VRB and TXE.
1030 */
1031 out_be32(port->utl_base + PEUTL_PBCTL, 0x0800000c);
1032 out_be32(port->utl_base + PEUTL_OUTTR, 0x08000000);
1033 out_be32(port->utl_base + PEUTL_INTR, 0x02000000);
1034 out_be32(port->utl_base + PEUTL_OPDBSZ, 0x04000000);
1035 out_be32(port->utl_base + PEUTL_PBBSZ, 0x00000000);
1036 out_be32(port->utl_base + PEUTL_IPHBSZ, 0x02000000);
1037 out_be32(port->utl_base + PEUTL_IPDBSZ, 0x04000000);
1038 out_be32(port->utl_base + PEUTL_RCIRQEN,0x00f00000);
1039 out_be32(port->utl_base + PEUTL_PCTL, 0x80800066);
1040
1041 return 0;
1042}
1043
1044static struct ppc4xx_pciex_hwops ppc460ex_pcie_hwops __initdata =
1045{
Tony Breeds81158462011-11-30 21:39:18 +00001046 .want_sdr = true,
Stefan Roese66b7e502008-02-24 08:08:27 +11001047 .core_init = ppc460ex_pciex_core_init,
1048 .port_init_hw = ppc460ex_pciex_init_port_hw,
1049 .setup_utl = ppc460ex_pciex_init_utl,
Tony Breeds112d1fe2011-06-30 20:44:24 +00001050 .check_link = ppc4xx_pciex_check_link_sdr,
Stefan Roese66b7e502008-02-24 08:08:27 +11001051};
1052
Tirumala Marrie2efc092009-12-21 22:49:41 +00001053static int __init ppc460sx_pciex_core_init(struct device_node *np)
1054{
1055 /* HSS drive amplitude */
1056 mtdcri(SDR0, PESDR0_460SX_HSSL0DAMP, 0xB9843211);
1057 mtdcri(SDR0, PESDR0_460SX_HSSL1DAMP, 0xB9843211);
1058 mtdcri(SDR0, PESDR0_460SX_HSSL2DAMP, 0xB9843211);
1059 mtdcri(SDR0, PESDR0_460SX_HSSL3DAMP, 0xB9843211);
1060 mtdcri(SDR0, PESDR0_460SX_HSSL4DAMP, 0xB9843211);
1061 mtdcri(SDR0, PESDR0_460SX_HSSL5DAMP, 0xB9843211);
1062 mtdcri(SDR0, PESDR0_460SX_HSSL6DAMP, 0xB9843211);
1063 mtdcri(SDR0, PESDR0_460SX_HSSL7DAMP, 0xB9843211);
1064
1065 mtdcri(SDR0, PESDR1_460SX_HSSL0DAMP, 0xB9843211);
1066 mtdcri(SDR0, PESDR1_460SX_HSSL1DAMP, 0xB9843211);
1067 mtdcri(SDR0, PESDR1_460SX_HSSL2DAMP, 0xB9843211);
1068 mtdcri(SDR0, PESDR1_460SX_HSSL3DAMP, 0xB9843211);
1069
1070 mtdcri(SDR0, PESDR2_460SX_HSSL0DAMP, 0xB9843211);
1071 mtdcri(SDR0, PESDR2_460SX_HSSL1DAMP, 0xB9843211);
1072 mtdcri(SDR0, PESDR2_460SX_HSSL2DAMP, 0xB9843211);
1073 mtdcri(SDR0, PESDR2_460SX_HSSL3DAMP, 0xB9843211);
1074
1075 /* HSS TX pre-emphasis */
1076 mtdcri(SDR0, PESDR0_460SX_HSSL0COEFA, 0xDCB98987);
1077 mtdcri(SDR0, PESDR0_460SX_HSSL1COEFA, 0xDCB98987);
1078 mtdcri(SDR0, PESDR0_460SX_HSSL2COEFA, 0xDCB98987);
1079 mtdcri(SDR0, PESDR0_460SX_HSSL3COEFA, 0xDCB98987);
1080 mtdcri(SDR0, PESDR0_460SX_HSSL4COEFA, 0xDCB98987);
1081 mtdcri(SDR0, PESDR0_460SX_HSSL5COEFA, 0xDCB98987);
1082 mtdcri(SDR0, PESDR0_460SX_HSSL6COEFA, 0xDCB98987);
1083 mtdcri(SDR0, PESDR0_460SX_HSSL7COEFA, 0xDCB98987);
1084
1085 mtdcri(SDR0, PESDR1_460SX_HSSL0COEFA, 0xDCB98987);
1086 mtdcri(SDR0, PESDR1_460SX_HSSL1COEFA, 0xDCB98987);
1087 mtdcri(SDR0, PESDR1_460SX_HSSL2COEFA, 0xDCB98987);
1088 mtdcri(SDR0, PESDR1_460SX_HSSL3COEFA, 0xDCB98987);
1089
1090 mtdcri(SDR0, PESDR2_460SX_HSSL0COEFA, 0xDCB98987);
1091 mtdcri(SDR0, PESDR2_460SX_HSSL1COEFA, 0xDCB98987);
1092 mtdcri(SDR0, PESDR2_460SX_HSSL2COEFA, 0xDCB98987);
1093 mtdcri(SDR0, PESDR2_460SX_HSSL3COEFA, 0xDCB98987);
1094
1095 /* HSS TX calibration control */
1096 mtdcri(SDR0, PESDR0_460SX_HSSL1CALDRV, 0x22222222);
1097 mtdcri(SDR0, PESDR1_460SX_HSSL1CALDRV, 0x22220000);
1098 mtdcri(SDR0, PESDR2_460SX_HSSL1CALDRV, 0x22220000);
1099
1100 /* HSS TX slew control */
1101 mtdcri(SDR0, PESDR0_460SX_HSSSLEW, 0xFFFFFFFF);
1102 mtdcri(SDR0, PESDR1_460SX_HSSSLEW, 0xFFFF0000);
1103 mtdcri(SDR0, PESDR2_460SX_HSSSLEW, 0xFFFF0000);
1104
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001105 /* Set HSS PRBS enabled */
1106 mtdcri(SDR0, PESDR0_460SX_HSSCTLSET, 0x00001130);
1107 mtdcri(SDR0, PESDR2_460SX_HSSCTLSET, 0x00001130);
1108
Tirumala Marrie2efc092009-12-21 22:49:41 +00001109 udelay(100);
1110
1111 /* De-assert PLLRESET */
1112 dcri_clrset(SDR0, PESDR0_PLLLCT2, 0x00000100, 0);
1113
1114 /* Reset DL, UTL, GPL before configuration */
1115 mtdcri(SDR0, PESDR0_460SX_RCSSET,
1116 PESDRx_RCSSET_RSTDL | PESDRx_RCSSET_RSTGU);
1117 mtdcri(SDR0, PESDR1_460SX_RCSSET,
1118 PESDRx_RCSSET_RSTDL | PESDRx_RCSSET_RSTGU);
1119 mtdcri(SDR0, PESDR2_460SX_RCSSET,
1120 PESDRx_RCSSET_RSTDL | PESDRx_RCSSET_RSTGU);
1121
1122 udelay(100);
1123
1124 /*
1125 * If bifurcation is not enabled, u-boot would have disabled the
1126 * third PCIe port
1127 */
1128 if (((mfdcri(SDR0, PESDR1_460SX_HSSCTLSET) & 0x00000001) ==
1129 0x00000001)) {
1130 printk(KERN_INFO "PCI: PCIE bifurcation setup successfully.\n");
1131 printk(KERN_INFO "PCI: Total 3 PCIE ports are present\n");
1132 return 3;
1133 }
1134
1135 printk(KERN_INFO "PCI: Total 2 PCIE ports are present\n");
1136 return 2;
1137}
1138
Tony Breeds9c57a322011-08-10 20:16:54 +00001139static int __init ppc460sx_pciex_init_port_hw(struct ppc4xx_pciex_port *port)
Tirumala Marrie2efc092009-12-21 22:49:41 +00001140{
1141
1142 if (port->endpoint)
1143 dcri_clrset(SDR0, port->sdr_base + PESDRn_UTLSET2,
1144 0x01000000, 0);
1145 else
1146 dcri_clrset(SDR0, port->sdr_base + PESDRn_UTLSET2,
1147 0, 0x01000000);
1148
Tirumala Marrie2efc092009-12-21 22:49:41 +00001149 dcri_clrset(SDR0, port->sdr_base + PESDRn_RCSSET,
1150 (PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTDL),
1151 PESDRx_RCSSET_RSTPYN);
1152
1153 port->has_ibpre = 1;
1154
Tony Breeds112d1fe2011-06-30 20:44:24 +00001155 return ppc4xx_pciex_port_reset_sdr(port);
Tirumala Marrie2efc092009-12-21 22:49:41 +00001156}
1157
1158static int ppc460sx_pciex_init_utl(struct ppc4xx_pciex_port *port)
1159{
1160 /* Max 128 Bytes */
1161 out_be32 (port->utl_base + PEUTL_PBBSZ, 0x00000000);
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001162 /* Assert VRB and TXE - per datasheet turn off addr validation */
1163 out_be32(port->utl_base + PEUTL_PCTL, 0x80800000);
Tirumala Marrie2efc092009-12-21 22:49:41 +00001164 return 0;
1165}
1166
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001167static void __init ppc460sx_pciex_check_link(struct ppc4xx_pciex_port *port)
1168{
1169 void __iomem *mbase;
1170 int attempt = 50;
1171
1172 port->link = 0;
1173
1174 mbase = ioremap(port->cfg_space.start + 0x10000000, 0x1000);
1175 if (mbase == NULL) {
1176 printk(KERN_ERR "%s: Can't map internal config space !",
1177 port->node->full_name);
1178 goto done;
1179 }
1180
1181 while (attempt && (0 == (in_le32(mbase + PECFG_460SX_DLLSTA)
1182 & PECFG_460SX_DLLSTA_LINKUP))) {
1183 attempt--;
1184 mdelay(10);
1185 }
1186 if (attempt)
1187 port->link = 1;
1188done:
1189 iounmap(mbase);
1190
1191}
1192
Tirumala Marrie2efc092009-12-21 22:49:41 +00001193static struct ppc4xx_pciex_hwops ppc460sx_pcie_hwops __initdata = {
Tony Breeds81158462011-11-30 21:39:18 +00001194 .want_sdr = true,
Tirumala Marrie2efc092009-12-21 22:49:41 +00001195 .core_init = ppc460sx_pciex_core_init,
1196 .port_init_hw = ppc460sx_pciex_init_port_hw,
1197 .setup_utl = ppc460sx_pciex_init_utl,
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001198 .check_link = ppc460sx_pciex_check_link,
Tirumala Marrie2efc092009-12-21 22:49:41 +00001199};
1200
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001201#endif /* CONFIG_44x */
1202
1203#ifdef CONFIG_40x
1204
1205static int __init ppc405ex_pciex_core_init(struct device_node *np)
1206{
1207 /* Nothing to do, return 2 ports */
1208 return 2;
1209}
1210
1211static void ppc405ex_pcie_phy_reset(struct ppc4xx_pciex_port *port)
1212{
1213 /* Assert the PE0_PHY reset */
1214 mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, 0x01010000);
1215 msleep(1);
1216
1217 /* deassert the PE0_hotreset */
1218 if (port->endpoint)
1219 mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, 0x01111000);
1220 else
1221 mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, 0x01101000);
1222
1223 /* poll for phy !reset */
1224 /* XXX FIXME add timeout */
1225 while (!(mfdcri(SDR0, port->sdr_base + PESDRn_405EX_PHYSTA) & 0x00001000))
1226 ;
1227
1228 /* deassert the PE0_gpl_utl_reset */
1229 mtdcri(SDR0, port->sdr_base + PESDRn_RCSSET, 0x00101000);
1230}
1231
Tony Breeds9c57a322011-08-10 20:16:54 +00001232static int __init ppc405ex_pciex_init_port_hw(struct ppc4xx_pciex_port *port)
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001233{
1234 u32 val;
1235
1236 if (port->endpoint)
1237 val = PTYPE_LEGACY_ENDPOINT;
1238 else
1239 val = PTYPE_ROOT_PORT;
1240
1241 mtdcri(SDR0, port->sdr_base + PESDRn_DLPSET,
1242 1 << 24 | val << 20 | LNKW_X1 << 12);
1243
1244 mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET1, 0x00000000);
1245 mtdcri(SDR0, port->sdr_base + PESDRn_UTLSET2, 0x01010000);
1246 mtdcri(SDR0, port->sdr_base + PESDRn_405EX_PHYSET1, 0x720F0000);
1247 mtdcri(SDR0, port->sdr_base + PESDRn_405EX_PHYSET2, 0x70600003);
1248
1249 /*
1250 * Only reset the PHY when no link is currently established.
1251 * This is for the Atheros PCIe board which has problems to establish
1252 * the link (again) after this PHY reset. All other currently tested
1253 * PCIe boards don't show this problem.
1254 * This has to be re-tested and fixed in a later release!
1255 */
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001256 val = mfdcri(SDR0, port->sdr_base + PESDRn_LOOP);
1257 if (!(val & 0x00001000))
1258 ppc405ex_pcie_phy_reset(port);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001259
1260 dcr_write(port->dcrs, DCRO_PEGPL_CFG, 0x10000000); /* guarded on */
1261
Stefan Roese55aaf6e2007-12-07 20:34:34 +11001262 port->has_ibpre = 1;
1263
Tony Breeds112d1fe2011-06-30 20:44:24 +00001264 return ppc4xx_pciex_port_reset_sdr(port);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001265}
1266
1267static int ppc405ex_pciex_init_utl(struct ppc4xx_pciex_port *port)
1268{
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001269 dcr_write(port->dcrs, DCRO_PEGPL_SPECIAL, 0x0);
1270
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001271 /*
1272 * Set buffer allocations and then assert VRB and TXE.
1273 */
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001274 out_be32(port->utl_base + PEUTL_OUTTR, 0x02000000);
1275 out_be32(port->utl_base + PEUTL_INTR, 0x02000000);
1276 out_be32(port->utl_base + PEUTL_OPDBSZ, 0x04000000);
1277 out_be32(port->utl_base + PEUTL_PBBSZ, 0x21000000);
1278 out_be32(port->utl_base + PEUTL_IPHBSZ, 0x02000000);
1279 out_be32(port->utl_base + PEUTL_IPDBSZ, 0x04000000);
1280 out_be32(port->utl_base + PEUTL_RCIRQEN, 0x00f00000);
1281 out_be32(port->utl_base + PEUTL_PCTL, 0x80800066);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001282
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001283 out_be32(port->utl_base + PEUTL_PBCTL, 0x08000000);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001284
1285 return 0;
1286}
1287
1288static struct ppc4xx_pciex_hwops ppc405ex_pcie_hwops __initdata =
1289{
Tony Breeds81158462011-11-30 21:39:18 +00001290 .want_sdr = true,
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001291 .core_init = ppc405ex_pciex_core_init,
1292 .port_init_hw = ppc405ex_pciex_init_port_hw,
1293 .setup_utl = ppc405ex_pciex_init_utl,
Tony Breeds112d1fe2011-06-30 20:44:24 +00001294 .check_link = ppc4xx_pciex_check_link_sdr,
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001295};
1296
1297#endif /* CONFIG_40x */
1298
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001299/* Check that the core has been initied and if not, do it */
1300static int __init ppc4xx_pciex_check_core_init(struct device_node *np)
1301{
1302 static int core_init;
1303 int count = -ENODEV;
1304
1305 if (core_init++)
1306 return 0;
1307
1308#ifdef CONFIG_44x
Stefan Roeseaccf5ef2007-12-21 15:39:38 +11001309 if (of_device_is_compatible(np, "ibm,plb-pciex-440spe")) {
1310 if (ppc440spe_revA())
1311 ppc4xx_pciex_hwops = &ppc440speA_pcie_hwops;
1312 else
1313 ppc4xx_pciex_hwops = &ppc440speB_pcie_hwops;
1314 }
Stefan Roese66b7e502008-02-24 08:08:27 +11001315 if (of_device_is_compatible(np, "ibm,plb-pciex-460ex"))
1316 ppc4xx_pciex_hwops = &ppc460ex_pcie_hwops;
Tirumala Marrie2efc092009-12-21 22:49:41 +00001317 if (of_device_is_compatible(np, "ibm,plb-pciex-460sx"))
1318 ppc4xx_pciex_hwops = &ppc460sx_pcie_hwops;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001319#endif /* CONFIG_44x */
1320#ifdef CONFIG_40x
1321 if (of_device_is_compatible(np, "ibm,plb-pciex-405ex"))
1322 ppc4xx_pciex_hwops = &ppc405ex_pcie_hwops;
1323#endif
1324 if (ppc4xx_pciex_hwops == NULL) {
1325 printk(KERN_WARNING "PCIE: unknown host type %s\n",
1326 np->full_name);
1327 return -ENODEV;
1328 }
1329
1330 count = ppc4xx_pciex_hwops->core_init(np);
1331 if (count > 0) {
1332 ppc4xx_pciex_ports =
1333 kzalloc(count * sizeof(struct ppc4xx_pciex_port),
1334 GFP_KERNEL);
1335 if (ppc4xx_pciex_ports) {
1336 ppc4xx_pciex_port_count = count;
1337 return 0;
1338 }
1339 printk(KERN_WARNING "PCIE: failed to allocate ports array\n");
1340 return -ENOMEM;
1341 }
1342 return -ENODEV;
1343}
1344
1345static void __init ppc4xx_pciex_port_init_mapping(struct ppc4xx_pciex_port *port)
1346{
1347 /* We map PCI Express configuration based on the reg property */
1348 dcr_write(port->dcrs, DCRO_PEGPL_CFGBAH,
1349 RES_TO_U32_HIGH(port->cfg_space.start));
1350 dcr_write(port->dcrs, DCRO_PEGPL_CFGBAL,
1351 RES_TO_U32_LOW(port->cfg_space.start));
1352
1353 /* XXX FIXME: Use size from reg property. For now, map 512M */
1354 dcr_write(port->dcrs, DCRO_PEGPL_CFGMSK, 0xe0000001);
1355
1356 /* We map UTL registers based on the reg property */
1357 dcr_write(port->dcrs, DCRO_PEGPL_REGBAH,
1358 RES_TO_U32_HIGH(port->utl_regs.start));
1359 dcr_write(port->dcrs, DCRO_PEGPL_REGBAL,
1360 RES_TO_U32_LOW(port->utl_regs.start));
1361
1362 /* XXX FIXME: Use size from reg property */
1363 dcr_write(port->dcrs, DCRO_PEGPL_REGMSK, 0x00007001);
1364
1365 /* Disable all other outbound windows */
1366 dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKL, 0);
1367 dcr_write(port->dcrs, DCRO_PEGPL_OMR2MSKL, 0);
1368 dcr_write(port->dcrs, DCRO_PEGPL_OMR3MSKL, 0);
1369 dcr_write(port->dcrs, DCRO_PEGPL_MSGMSK, 0);
1370}
1371
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001372static int __init ppc4xx_pciex_port_init(struct ppc4xx_pciex_port *port)
1373{
1374 int rc = 0;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001375
1376 /* Init HW */
1377 if (ppc4xx_pciex_hwops->port_init_hw)
1378 rc = ppc4xx_pciex_hwops->port_init_hw(port);
1379 if (rc != 0)
1380 return rc;
1381
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001382 /*
1383 * Initialize mapping: disable all regions and configure
1384 * CFG and REG regions based on resources in the device tree
1385 */
1386 ppc4xx_pciex_port_init_mapping(port);
1387
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001388 if (ppc4xx_pciex_hwops->check_link)
1389 ppc4xx_pciex_hwops->check_link(port);
1390
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001391 /*
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001392 * Map UTL
1393 */
1394 port->utl_base = ioremap(port->utl_regs.start, 0x100);
1395 BUG_ON(port->utl_base == NULL);
1396
1397 /*
1398 * Setup UTL registers --BenH.
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001399 */
1400 if (ppc4xx_pciex_hwops->setup_utl)
1401 ppc4xx_pciex_hwops->setup_utl(port);
1402
1403 /*
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001404 * Check for VC0 active or PLL Locked and assert RDY.
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001405 */
Tony Breeds112d1fe2011-06-30 20:44:24 +00001406 if (port->sdr_base) {
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001407 if (of_device_is_compatible(port->node,
1408 "ibm,plb-pciex-460sx")){
1409 if (port->link && ppc4xx_pciex_wait_on_sdr(port,
1410 PESDRn_RCSSTS,
1411 1 << 12, 1 << 12, 5000)) {
1412 printk(KERN_INFO "PCIE%d: PLL not locked\n",
1413 port->index);
1414 port->link = 0;
1415 }
1416 } else if (port->link &&
1417 ppc4xx_pciex_wait_on_sdr(port, PESDRn_RCSSTS,
1418 1 << 16, 1 << 16, 5000)) {
1419 printk(KERN_INFO "PCIE%d: VC0 not active\n",
1420 port->index);
Tony Breeds112d1fe2011-06-30 20:44:24 +00001421 port->link = 0;
1422 }
1423
1424 dcri_clrset(SDR0, port->sdr_base + PESDRn_RCSSET, 0, 1 << 20);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001425 }
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001426
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001427 msleep(100);
1428
1429 return 0;
1430}
1431
1432static int ppc4xx_pciex_validate_bdf(struct ppc4xx_pciex_port *port,
1433 struct pci_bus *bus,
1434 unsigned int devfn)
1435{
1436 static int message;
1437
1438 /* Endpoint can not generate upstream(remote) config cycles */
1439 if (port->endpoint && bus->number != port->hose->first_busno)
1440 return PCIBIOS_DEVICE_NOT_FOUND;
1441
1442 /* Check we are within the mapped range */
1443 if (bus->number > port->hose->last_busno) {
1444 if (!message) {
1445 printk(KERN_WARNING "Warning! Probing bus %u"
1446 " out of range !\n", bus->number);
1447 message++;
1448 }
1449 return PCIBIOS_DEVICE_NOT_FOUND;
1450 }
1451
1452 /* The root complex has only one device / function */
1453 if (bus->number == port->hose->first_busno && devfn != 0)
1454 return PCIBIOS_DEVICE_NOT_FOUND;
1455
1456 /* The other side of the RC has only one device as well */
1457 if (bus->number == (port->hose->first_busno + 1) &&
1458 PCI_SLOT(devfn) != 0)
1459 return PCIBIOS_DEVICE_NOT_FOUND;
1460
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001461 /* Check if we have a link */
1462 if ((bus->number != port->hose->first_busno) && !port->link)
1463 return PCIBIOS_DEVICE_NOT_FOUND;
1464
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001465 return 0;
1466}
1467
1468static void __iomem *ppc4xx_pciex_get_config_base(struct ppc4xx_pciex_port *port,
1469 struct pci_bus *bus,
1470 unsigned int devfn)
1471{
1472 int relbus;
1473
1474 /* Remove the casts when we finally remove the stupid volatile
1475 * in struct pci_controller
1476 */
1477 if (bus->number == port->hose->first_busno)
1478 return (void __iomem *)port->hose->cfg_addr;
1479
1480 relbus = bus->number - (port->hose->first_busno + 1);
1481 return (void __iomem *)port->hose->cfg_data +
1482 ((relbus << 20) | (devfn << 12));
1483}
1484
1485static int ppc4xx_pciex_read_config(struct pci_bus *bus, unsigned int devfn,
1486 int offset, int len, u32 *val)
1487{
Kumar Galaf159eda2009-04-30 03:10:10 +00001488 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001489 struct ppc4xx_pciex_port *port =
1490 &ppc4xx_pciex_ports[hose->indirect_type];
1491 void __iomem *addr;
1492 u32 gpl_cfg;
1493
1494 BUG_ON(hose != port->hose);
1495
1496 if (ppc4xx_pciex_validate_bdf(port, bus, devfn) != 0)
1497 return PCIBIOS_DEVICE_NOT_FOUND;
1498
1499 addr = ppc4xx_pciex_get_config_base(port, bus, devfn);
1500
1501 /*
1502 * Reading from configuration space of non-existing device can
1503 * generate transaction errors. For the read duration we suppress
1504 * assertion of machine check exceptions to avoid those.
1505 */
1506 gpl_cfg = dcr_read(port->dcrs, DCRO_PEGPL_CFG);
1507 dcr_write(port->dcrs, DCRO_PEGPL_CFG, gpl_cfg | GPL_DMER_MASK_DISA);
1508
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001509 /* Make sure no CRS is recorded */
1510 out_be32(port->utl_base + PEUTL_RCSTA, 0x00040000);
1511
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001512 switch (len) {
1513 case 1:
1514 *val = in_8((u8 *)(addr + offset));
1515 break;
1516 case 2:
1517 *val = in_le16((u16 *)(addr + offset));
1518 break;
1519 default:
1520 *val = in_le32((u32 *)(addr + offset));
1521 break;
1522 }
1523
1524 pr_debug("pcie-config-read: bus=%3d [%3d..%3d] devfn=0x%04x"
1525 " offset=0x%04x len=%d, addr=0x%p val=0x%08x\n",
1526 bus->number, hose->first_busno, hose->last_busno,
1527 devfn, offset, len, addr + offset, *val);
1528
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11001529 /* Check for CRS (440SPe rev B does that for us but heh ..) */
1530 if (in_be32(port->utl_base + PEUTL_RCSTA) & 0x00040000) {
1531 pr_debug("Got CRS !\n");
1532 if (len != 4 || offset != 0)
1533 return PCIBIOS_DEVICE_NOT_FOUND;
1534 *val = 0xffff0001;
1535 }
1536
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001537 dcr_write(port->dcrs, DCRO_PEGPL_CFG, gpl_cfg);
1538
1539 return PCIBIOS_SUCCESSFUL;
1540}
1541
1542static int ppc4xx_pciex_write_config(struct pci_bus *bus, unsigned int devfn,
1543 int offset, int len, u32 val)
1544{
Kumar Galaf159eda2009-04-30 03:10:10 +00001545 struct pci_controller *hose = pci_bus_to_host(bus);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001546 struct ppc4xx_pciex_port *port =
1547 &ppc4xx_pciex_ports[hose->indirect_type];
1548 void __iomem *addr;
1549 u32 gpl_cfg;
1550
1551 if (ppc4xx_pciex_validate_bdf(port, bus, devfn) != 0)
1552 return PCIBIOS_DEVICE_NOT_FOUND;
1553
1554 addr = ppc4xx_pciex_get_config_base(port, bus, devfn);
1555
1556 /*
1557 * Reading from configuration space of non-existing device can
1558 * generate transaction errors. For the read duration we suppress
1559 * assertion of machine check exceptions to avoid those.
1560 */
1561 gpl_cfg = dcr_read(port->dcrs, DCRO_PEGPL_CFG);
1562 dcr_write(port->dcrs, DCRO_PEGPL_CFG, gpl_cfg | GPL_DMER_MASK_DISA);
1563
1564 pr_debug("pcie-config-write: bus=%3d [%3d..%3d] devfn=0x%04x"
1565 " offset=0x%04x len=%d, addr=0x%p val=0x%08x\n",
1566 bus->number, hose->first_busno, hose->last_busno,
1567 devfn, offset, len, addr + offset, val);
1568
1569 switch (len) {
1570 case 1:
1571 out_8((u8 *)(addr + offset), val);
1572 break;
1573 case 2:
1574 out_le16((u16 *)(addr + offset), val);
1575 break;
1576 default:
1577 out_le32((u32 *)(addr + offset), val);
1578 break;
1579 }
1580
1581 dcr_write(port->dcrs, DCRO_PEGPL_CFG, gpl_cfg);
1582
1583 return PCIBIOS_SUCCESSFUL;
1584}
1585
1586static struct pci_ops ppc4xx_pciex_pci_ops =
1587{
1588 .read = ppc4xx_pciex_read_config,
1589 .write = ppc4xx_pciex_write_config,
1590};
1591
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001592static int __init ppc4xx_setup_one_pciex_POM(struct ppc4xx_pciex_port *port,
1593 struct pci_controller *hose,
1594 void __iomem *mbase,
1595 u64 plb_addr,
1596 u64 pci_addr,
1597 u64 size,
1598 unsigned int flags,
1599 int index)
1600{
1601 u32 lah, lal, pciah, pcial, sa;
1602
1603 if (!is_power_of_2(size) ||
1604 (index < 2 && size < 0x100000) ||
1605 (index == 2 && size < 0x100) ||
1606 (plb_addr & (size - 1)) != 0) {
1607 printk(KERN_WARNING "%s: Resource out of range\n",
1608 hose->dn->full_name);
1609 return -1;
1610 }
1611
1612 /* Calculate register values */
1613 lah = RES_TO_U32_HIGH(plb_addr);
1614 lal = RES_TO_U32_LOW(plb_addr);
1615 pciah = RES_TO_U32_HIGH(pci_addr);
1616 pcial = RES_TO_U32_LOW(pci_addr);
1617 sa = (0xffffffffu << ilog2(size)) | 0x1;
1618
1619 /* Program register values */
1620 switch (index) {
1621 case 0:
1622 out_le32(mbase + PECFG_POM0LAH, pciah);
1623 out_le32(mbase + PECFG_POM0LAL, pcial);
1624 dcr_write(port->dcrs, DCRO_PEGPL_OMR1BAH, lah);
1625 dcr_write(port->dcrs, DCRO_PEGPL_OMR1BAL, lal);
1626 dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKH, 0x7fffffff);
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001627 /*Enabled and single region */
1628 if (of_device_is_compatible(port->node, "ibm,plb-pciex-460sx"))
1629 dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKL,
1630 sa | DCRO_PEGPL_460SX_OMR1MSKL_UOT
1631 | DCRO_PEGPL_OMRxMSKL_VAL);
1632 else
1633 dcr_write(port->dcrs, DCRO_PEGPL_OMR1MSKL,
1634 sa | DCRO_PEGPL_OMR1MSKL_UOT
1635 | DCRO_PEGPL_OMRxMSKL_VAL);
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001636 break;
1637 case 1:
1638 out_le32(mbase + PECFG_POM1LAH, pciah);
1639 out_le32(mbase + PECFG_POM1LAL, pcial);
1640 dcr_write(port->dcrs, DCRO_PEGPL_OMR2BAH, lah);
1641 dcr_write(port->dcrs, DCRO_PEGPL_OMR2BAL, lal);
1642 dcr_write(port->dcrs, DCRO_PEGPL_OMR2MSKH, 0x7fffffff);
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001643 dcr_write(port->dcrs, DCRO_PEGPL_OMR2MSKL,
1644 sa | DCRO_PEGPL_OMRxMSKL_VAL);
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001645 break;
1646 case 2:
1647 out_le32(mbase + PECFG_POM2LAH, pciah);
1648 out_le32(mbase + PECFG_POM2LAL, pcial);
1649 dcr_write(port->dcrs, DCRO_PEGPL_OMR3BAH, lah);
1650 dcr_write(port->dcrs, DCRO_PEGPL_OMR3BAL, lal);
1651 dcr_write(port->dcrs, DCRO_PEGPL_OMR3MSKH, 0x7fffffff);
1652 /* Note that 3 here means enabled | IO space !!! */
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001653 dcr_write(port->dcrs, DCRO_PEGPL_OMR3MSKL,
1654 sa | DCRO_PEGPL_OMR3MSKL_IO
1655 | DCRO_PEGPL_OMRxMSKL_VAL);
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001656 break;
1657 }
1658
1659 return 0;
1660}
1661
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001662static void __init ppc4xx_configure_pciex_POMs(struct ppc4xx_pciex_port *port,
1663 struct pci_controller *hose,
1664 void __iomem *mbase)
1665{
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001666 int i, j, found_isa_hole = 0;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001667
1668 /* Setup outbound memory windows */
1669 for (i = j = 0; i < 3; i++) {
1670 struct resource *res = &hose->mem_resources[i];
1671
1672 /* we only care about memory windows */
1673 if (!(res->flags & IORESOURCE_MEM))
1674 continue;
1675 if (j > 1) {
1676 printk(KERN_WARNING "%s: Too many ranges\n",
1677 port->node->full_name);
1678 break;
1679 }
1680
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001681 /* Configure the resource */
1682 if (ppc4xx_setup_one_pciex_POM(port, hose, mbase,
1683 res->start,
1684 res->start - hose->pci_mem_offset,
Joe Perches28f65c112011-06-09 09:13:32 -07001685 resource_size(res),
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001686 res->flags,
1687 j) == 0) {
1688 j++;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001689
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001690 /* If the resource PCI address is 0 then we have our
1691 * ISA memory hole
1692 */
1693 if (res->start == hose->pci_mem_offset)
1694 found_isa_hole = 1;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001695 }
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001696 }
1697
Benjamin Herrenschmidt84d727a2008-10-09 16:58:19 +00001698 /* Handle ISA memory hole if not already covered */
1699 if (j <= 1 && !found_isa_hole && hose->isa_mem_size)
1700 if (ppc4xx_setup_one_pciex_POM(port, hose, mbase,
1701 hose->isa_mem_phys, 0,
1702 hose->isa_mem_size, 0, j) == 0)
1703 printk(KERN_INFO "%s: Legacy ISA memory support enabled\n",
1704 hose->dn->full_name);
1705
1706 /* Configure IO, always 64K starting at 0. We hard wire it to 64K !
1707 * Note also that it -has- to be region index 2 on this HW
1708 */
1709 if (hose->io_resource.flags & IORESOURCE_IO)
1710 ppc4xx_setup_one_pciex_POM(port, hose, mbase,
1711 hose->io_base_phys, 0,
1712 0x10000, IORESOURCE_IO, 2);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001713}
1714
1715static void __init ppc4xx_configure_pciex_PIMs(struct ppc4xx_pciex_port *port,
1716 struct pci_controller *hose,
1717 void __iomem *mbase,
1718 struct resource *res)
1719{
Joe Perches28f65c112011-06-09 09:13:32 -07001720 resource_size_t size = resource_size(res);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001721 u64 sa;
1722
Stefan Roese80daac32008-04-22 00:54:30 +10001723 if (port->endpoint) {
1724 resource_size_t ep_addr = 0;
1725 resource_size_t ep_size = 32 << 20;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001726
Stefan Roese80daac32008-04-22 00:54:30 +10001727 /* Currently we map a fixed 64MByte window to PLB address
1728 * 0 (SDRAM). This should probably be configurable via a dts
1729 * property.
1730 */
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001731
Stefan Roese80daac32008-04-22 00:54:30 +10001732 /* Calculate window size */
Joe Perchesd258e642009-06-28 06:26:10 +00001733 sa = (0xffffffffffffffffull << ilog2(ep_size));
Stefan Roese80daac32008-04-22 00:54:30 +10001734
1735 /* Setup BAR0 */
1736 out_le32(mbase + PECFG_BAR0HMPA, RES_TO_U32_HIGH(sa));
1737 out_le32(mbase + PECFG_BAR0LMPA, RES_TO_U32_LOW(sa) |
1738 PCI_BASE_ADDRESS_MEM_TYPE_64);
1739
1740 /* Disable BAR1 & BAR2 */
1741 out_le32(mbase + PECFG_BAR1MPA, 0);
1742 out_le32(mbase + PECFG_BAR2HMPA, 0);
1743 out_le32(mbase + PECFG_BAR2LMPA, 0);
1744
1745 out_le32(mbase + PECFG_PIM01SAH, RES_TO_U32_HIGH(sa));
1746 out_le32(mbase + PECFG_PIM01SAL, RES_TO_U32_LOW(sa));
1747
1748 out_le32(mbase + PCI_BASE_ADDRESS_0, RES_TO_U32_LOW(ep_addr));
1749 out_le32(mbase + PCI_BASE_ADDRESS_1, RES_TO_U32_HIGH(ep_addr));
1750 } else {
1751 /* Calculate window size */
Joe Perchesd258e642009-06-28 06:26:10 +00001752 sa = (0xffffffffffffffffull << ilog2(size));
Stefan Roese80daac32008-04-22 00:54:30 +10001753 if (res->flags & IORESOURCE_PREFETCH)
Tony Breeds9fb55292011-11-30 21:39:17 +00001754 sa |= PCI_BASE_ADDRESS_MEM_PREFETCH;
Stefan Roese80daac32008-04-22 00:54:30 +10001755
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001756 if (of_device_is_compatible(port->node, "ibm,plb-pciex-460sx"))
1757 sa |= PCI_BASE_ADDRESS_MEM_TYPE_64;
1758
Stefan Roese80daac32008-04-22 00:54:30 +10001759 out_le32(mbase + PECFG_BAR0HMPA, RES_TO_U32_HIGH(sa));
1760 out_le32(mbase + PECFG_BAR0LMPA, RES_TO_U32_LOW(sa));
1761
1762 /* The setup of the split looks weird to me ... let's see
1763 * if it works
1764 */
1765 out_le32(mbase + PECFG_PIM0LAL, 0x00000000);
1766 out_le32(mbase + PECFG_PIM0LAH, 0x00000000);
1767 out_le32(mbase + PECFG_PIM1LAL, 0x00000000);
1768 out_le32(mbase + PECFG_PIM1LAH, 0x00000000);
1769 out_le32(mbase + PECFG_PIM01SAH, 0xffff0000);
1770 out_le32(mbase + PECFG_PIM01SAL, 0x00000000);
1771
1772 out_le32(mbase + PCI_BASE_ADDRESS_0, RES_TO_U32_LOW(res->start));
1773 out_le32(mbase + PCI_BASE_ADDRESS_1, RES_TO_U32_HIGH(res->start));
1774 }
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001775
1776 /* Enable inbound mapping */
1777 out_le32(mbase + PECFG_PIMEN, 0x1);
1778
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001779 /* Enable I/O, Mem, and Busmaster cycles */
1780 out_le16(mbase + PCI_COMMAND,
1781 in_le16(mbase + PCI_COMMAND) |
1782 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
1783}
1784
1785static void __init ppc4xx_pciex_port_setup_hose(struct ppc4xx_pciex_port *port)
1786{
1787 struct resource dma_window;
1788 struct pci_controller *hose = NULL;
1789 const int *bus_range;
1790 int primary = 0, busses;
1791 void __iomem *mbase = NULL, *cfg_data = NULL;
Stefan Roese80daac32008-04-22 00:54:30 +10001792 const u32 *pval;
1793 u32 val;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001794
1795 /* Check if primary bridge */
1796 if (of_get_property(port->node, "primary", NULL))
1797 primary = 1;
1798
1799 /* Get bus range if any */
1800 bus_range = of_get_property(port->node, "bus-range", NULL);
1801
1802 /* Allocate the host controller data structure */
1803 hose = pcibios_alloc_controller(port->node);
1804 if (!hose)
1805 goto fail;
1806
1807 /* We stick the port number in "indirect_type" so the config space
1808 * ops can retrieve the port data structure easily
1809 */
1810 hose->indirect_type = port->index;
1811
1812 /* Get bus range */
1813 hose->first_busno = bus_range ? bus_range[0] : 0x0;
1814 hose->last_busno = bus_range ? bus_range[1] : 0xff;
1815
1816 /* Because of how big mapping the config space is (1M per bus), we
1817 * limit how many busses we support. In the long run, we could replace
1818 * that with something akin to kmap_atomic instead. We set aside 1 bus
1819 * for the host itself too.
1820 */
1821 busses = hose->last_busno - hose->first_busno; /* This is off by 1 */
1822 if (busses > MAX_PCIE_BUS_MAPPED) {
1823 busses = MAX_PCIE_BUS_MAPPED;
1824 hose->last_busno = hose->first_busno + busses;
1825 }
1826
Stefan Roese80daac32008-04-22 00:54:30 +10001827 if (!port->endpoint) {
1828 /* Only map the external config space in cfg_data for
1829 * PCIe root-complexes. External space is 1M per bus
1830 */
1831 cfg_data = ioremap(port->cfg_space.start +
1832 (hose->first_busno + 1) * 0x100000,
1833 busses * 0x100000);
1834 if (cfg_data == NULL) {
1835 printk(KERN_ERR "%s: Can't map external config space !",
1836 port->node->full_name);
1837 goto fail;
1838 }
1839 hose->cfg_data = cfg_data;
1840 }
1841
1842 /* Always map the host config space in cfg_addr.
1843 * Internal space is 4K
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001844 */
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001845 mbase = ioremap(port->cfg_space.start + 0x10000000, 0x1000);
Stefan Roese80daac32008-04-22 00:54:30 +10001846 if (mbase == NULL) {
1847 printk(KERN_ERR "%s: Can't map internal config space !",
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001848 port->node->full_name);
1849 goto fail;
1850 }
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001851 hose->cfg_addr = mbase;
1852
1853 pr_debug("PCIE %s, bus %d..%d\n", port->node->full_name,
1854 hose->first_busno, hose->last_busno);
1855 pr_debug(" config space mapped at: root @0x%p, other @0x%p\n",
1856 hose->cfg_addr, hose->cfg_data);
1857
1858 /* Setup config space */
1859 hose->ops = &ppc4xx_pciex_pci_ops;
1860 port->hose = hose;
1861 mbase = (void __iomem *)hose->cfg_addr;
1862
Stefan Roese80daac32008-04-22 00:54:30 +10001863 if (!port->endpoint) {
1864 /*
1865 * Set bus numbers on our root port
1866 */
1867 out_8(mbase + PCI_PRIMARY_BUS, hose->first_busno);
1868 out_8(mbase + PCI_SECONDARY_BUS, hose->first_busno + 1);
1869 out_8(mbase + PCI_SUBORDINATE_BUS, hose->last_busno);
1870 }
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001871
1872 /*
1873 * OMRs are already reset, also disable PIMs
1874 */
1875 out_le32(mbase + PECFG_PIMEN, 0);
1876
1877 /* Parse outbound mapping resources */
1878 pci_process_bridge_OF_ranges(hose, port->node, primary);
1879
1880 /* Parse inbound mapping resources */
1881 if (ppc4xx_parse_dma_ranges(hose, mbase, &dma_window) != 0)
1882 goto fail;
1883
1884 /* Configure outbound ranges POMs */
1885 ppc4xx_configure_pciex_POMs(port, hose, mbase);
1886
1887 /* Configure inbound ranges PIMs */
1888 ppc4xx_configure_pciex_PIMs(port, hose, mbase, &dma_window);
1889
1890 /* The root complex doesn't show up if we don't set some vendor
Stefan Roese80daac32008-04-22 00:54:30 +10001891 * and device IDs into it. The defaults below are the same bogus
1892 * one that the initial code in arch/ppc had. This can be
1893 * overwritten by setting the "vendor-id/device-id" properties
1894 * in the pciex node.
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001895 */
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001896
Stefan Roese80daac32008-04-22 00:54:30 +10001897 /* Get the (optional) vendor-/device-id from the device-tree */
1898 pval = of_get_property(port->node, "vendor-id", NULL);
1899 if (pval) {
1900 val = *pval;
1901 } else {
1902 if (!port->endpoint)
1903 val = 0xaaa0 + port->index;
1904 else
1905 val = 0xeee0 + port->index;
1906 }
1907 out_le16(mbase + 0x200, val);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001908
Stefan Roese80daac32008-04-22 00:54:30 +10001909 pval = of_get_property(port->node, "device-id", NULL);
1910 if (pval) {
1911 val = *pval;
1912 } else {
1913 if (!port->endpoint)
1914 val = 0xbed0 + port->index;
1915 else
1916 val = 0xfed0 + port->index;
1917 }
1918 out_le16(mbase + 0x202, val);
1919
Ayman El-Khashabe7fa1d12011-07-20 03:02:29 +00001920 /* Enable Bus master, memory, and io space */
1921 if (of_device_is_compatible(port->node, "ibm,plb-pciex-460sx"))
1922 out_le16(mbase + 0x204, 0x7);
1923
Stefan Roese80daac32008-04-22 00:54:30 +10001924 if (!port->endpoint) {
1925 /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */
1926 out_le32(mbase + 0x208, 0x06040001);
1927
1928 printk(KERN_INFO "PCIE%d: successfully set as root-complex\n",
1929 port->index);
1930 } else {
1931 /* Set Class Code to Processor/PPC */
1932 out_le32(mbase + 0x208, 0x0b200001);
1933
1934 printk(KERN_INFO "PCIE%d: successfully set as endpoint\n",
1935 port->index);
1936 }
1937
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001938 return;
1939 fail:
1940 if (hose)
1941 pcibios_free_controller(hose);
1942 if (cfg_data)
1943 iounmap(cfg_data);
1944 if (mbase)
1945 iounmap(mbase);
1946}
1947
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +11001948static void __init ppc4xx_probe_pciex_bridge(struct device_node *np)
1949{
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001950 struct ppc4xx_pciex_port *port;
1951 const u32 *pval;
1952 int portno;
1953 unsigned int dcrs;
Stefan Roese80daac32008-04-22 00:54:30 +10001954 const char *val;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001955
1956 /* First, proceed to core initialization as we assume there's
1957 * only one PCIe core in the system
1958 */
1959 if (ppc4xx_pciex_check_core_init(np))
1960 return;
1961
1962 /* Get the port number from the device-tree */
1963 pval = of_get_property(np, "port", NULL);
1964 if (pval == NULL) {
1965 printk(KERN_ERR "PCIE: Can't find port number for %s\n",
1966 np->full_name);
1967 return;
1968 }
1969 portno = *pval;
1970 if (portno >= ppc4xx_pciex_port_count) {
1971 printk(KERN_ERR "PCIE: port number out of range for %s\n",
1972 np->full_name);
1973 return;
1974 }
1975 port = &ppc4xx_pciex_ports[portno];
1976 port->index = portno;
Stefan Roese995ada82008-06-06 00:22:29 +10001977
1978 /*
1979 * Check if device is enabled
1980 */
1981 if (!of_device_is_available(np)) {
1982 printk(KERN_INFO "PCIE%d: Port disabled via device-tree\n", port->index);
1983 return;
1984 }
1985
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001986 port->node = of_node_get(np);
Tony Breeds81158462011-11-30 21:39:18 +00001987 if (ppc4xx_pciex_hwops->want_sdr) {
1988 pval = of_get_property(np, "sdr-base", NULL);
1989 if (pval == NULL) {
1990 printk(KERN_ERR "PCIE: missing sdr-base for %s\n",
1991 np->full_name);
1992 return;
1993 }
1994 port->sdr_base = *pval;
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001995 }
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11001996
Stefan Roese80daac32008-04-22 00:54:30 +10001997 /* Check if device_type property is set to "pci" or "pci-endpoint".
1998 * Resulting from this setup this PCIe port will be configured
1999 * as root-complex or as endpoint.
2000 */
2001 val = of_get_property(port->node, "device_type", NULL);
2002 if (!strcmp(val, "pci-endpoint")) {
2003 port->endpoint = 1;
2004 } else if (!strcmp(val, "pci")) {
2005 port->endpoint = 0;
2006 } else {
2007 printk(KERN_ERR "PCIE: missing or incorrect device_type for %s\n",
2008 np->full_name);
2009 return;
2010 }
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11002011
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11002012 /* Fetch config space registers address */
2013 if (of_address_to_resource(np, 0, &port->cfg_space)) {
2014 printk(KERN_ERR "%s: Can't get PCI-E config space !",
2015 np->full_name);
2016 return;
2017 }
2018 /* Fetch host bridge internal registers address */
2019 if (of_address_to_resource(np, 1, &port->utl_regs)) {
2020 printk(KERN_ERR "%s: Can't get UTL register base !",
2021 np->full_name);
2022 return;
2023 }
2024
2025 /* Map DCRs */
2026 dcrs = dcr_resource_start(np, 0);
2027 if (dcrs == 0) {
2028 printk(KERN_ERR "%s: Can't get DCR register base !",
2029 np->full_name);
2030 return;
2031 }
2032 port->dcrs = dcr_map(np, dcrs, dcr_resource_len(np, 0));
2033
2034 /* Initialize the port specific registers */
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11002035 if (ppc4xx_pciex_port_init(port)) {
2036 printk(KERN_WARNING "PCIE%d: Port init failed\n", port->index);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11002037 return;
Benjamin Herrenschmidt035ee422007-12-21 15:39:36 +11002038 }
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11002039
2040 /* Setup the linux hose data structure */
2041 ppc4xx_pciex_port_setup_hose(port);
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +11002042}
2043
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11002044#endif /* CONFIG_PPC4xx_PCI_EXPRESS */
2045
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +11002046static int __init ppc4xx_pci_find_bridges(void)
2047{
2048 struct device_node *np;
2049
Rob Herring0e47ff12011-07-12 09:25:51 -05002050 pci_add_flags(PCI_ENABLE_PROC_DOMAINS | PCI_COMPAT_DOMAIN_0);
Benjamin Herrenschmidt41b6a082009-02-01 16:59:13 +00002051
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11002052#ifdef CONFIG_PPC4xx_PCI_EXPRESS
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +11002053 for_each_compatible_node(np, NULL, "ibm,plb-pciex")
2054 ppc4xx_probe_pciex_bridge(np);
Benjamin Herrenschmidta2d2e1e2007-12-21 15:39:24 +11002055#endif
Benjamin Herrenschmidt5738ec62007-12-21 15:39:22 +11002056 for_each_compatible_node(np, NULL, "ibm,plb-pcix")
2057 ppc4xx_probe_pcix_bridge(np);
2058 for_each_compatible_node(np, NULL, "ibm,plb-pci")
2059 ppc4xx_probe_pci_bridge(np);
2060
2061 return 0;
2062}
2063arch_initcall(ppc4xx_pci_find_bridges);
2064