blob: d55db1a0b691a3243d84f7e817ee69771a1df36d [file] [log] [blame]
Ed Swarthout91080f72007-08-02 14:09:49 -05001/*
Minghuan Lianeb811d32012-08-21 23:35:42 +00002 * Copyright 2007-2012 Freescale Semiconductor, Inc.
Ed Swarthout91080f72007-08-02 14:09:49 -05003 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Ed Swarthout91080f72007-08-02 14:09:49 -05005 */
Ed Swarthout15bc3e72007-07-27 01:50:45 -05006
Ed Swarthout91080f72007-08-02 14:09:49 -05007#include <common.h>
Kumar Gala4d4384e2010-12-15 14:21:41 -06008#include <malloc.h>
9#include <asm/fsl_serdes.h>
Ed Swarthout91080f72007-08-02 14:09:49 -050010
Kumar Gala47bf4782008-10-22 14:06:24 -050011DECLARE_GLOBAL_DATA_PTR;
12
Ed Swarthout91080f72007-08-02 14:09:49 -050013/*
14 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
15 *
16 * Initialize controller and call the common driver/pci pci_hose_scan to
17 * scan for bridges and devices.
18 *
19 * Hose fields which need to be pre-initialized by board specific code:
20 * regions[]
21 * first_busno
22 *
23 * Fields updated:
24 * last_busno
25 */
26
27#include <pci.h>
Kumar Galaa37b9ce2009-08-05 07:59:35 -050028#include <asm/io.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050029#include <asm/fsl_pci.h>
Ed Swarthout91080f72007-08-02 14:09:49 -050030
Kumar Gala47bf4782008-10-22 14:06:24 -050031#ifndef CONFIG_SYS_PCI_MEMORY_BUS
32#define CONFIG_SYS_PCI_MEMORY_BUS 0
33#endif
34
35#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
36#define CONFIG_SYS_PCI_MEMORY_PHYS 0
37#endif
38
39#if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
40#define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
41#endif
42
Kumar Galaa37b9ce2009-08-05 07:59:35 -050043/* Setup one inbound ATMU window.
44 *
45 * We let the caller decide what the window size should be
46 */
47static void set_inbound_window(volatile pit_t *pi,
48 struct pci_region *r,
49 u64 size)
Kumar Gala47bf4782008-10-22 14:06:24 -050050{
Kumar Galaa37b9ce2009-08-05 07:59:35 -050051 u32 sz = (__ilog2_u64(size) - 1);
52 u32 flag = PIWAR_EN | PIWAR_LOCAL |
53 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
54
55 out_be32(&pi->pitar, r->phys_start >> 12);
56 out_be32(&pi->piwbar, r->bus_start >> 12);
57#ifdef CONFIG_SYS_PCI_64BIT
58 out_be32(&pi->piwbear, r->bus_start >> 44);
59#else
60 out_be32(&pi->piwbear, 0);
61#endif
62 if (r->flags & PCI_REGION_PREFETCH)
63 flag |= PIWAR_PF;
64 out_be32(&pi->piwar, flag | sz);
65}
66
Kumar Galaa6c612c2009-11-04 13:00:55 -060067int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
68{
69 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
70
John Schmoller60e877f2010-10-22 00:20:23 -050071 /* Reset hose to make sure its in a clean state */
72 memset(hose, 0, sizeof(struct pci_controller));
73
Kumar Galaa6c612c2009-11-04 13:00:55 -060074 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
75
76 return fsl_is_pci_agent(hose);
77}
78
Kumar Galaa37b9ce2009-08-05 07:59:35 -050079static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
80 u64 out_lo, u8 pcie_cap,
81 volatile pit_t *pi)
82{
83 struct pci_region *r = hose->regions + hose->region_count;
84 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Gala47bf4782008-10-22 14:06:24 -050085
86 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
87 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaa37b9ce2009-08-05 07:59:35 -050088 pci_size_t pci_sz;
Kumar Gala47bf4782008-10-22 14:06:24 -050089
Kumar Galaa37b9ce2009-08-05 07:59:35 -050090 /* we have no space available for inbound memory mapping */
91 if (bus_start > out_lo) {
92 printf ("no space for inbound mapping of memory\n");
93 return 0;
94 }
Kumar Gala47bf4782008-10-22 14:06:24 -050095
Kumar Galaa37b9ce2009-08-05 07:59:35 -050096 /* limit size */
97 if ((bus_start + sz) > out_lo) {
98 sz = out_lo - bus_start;
99 debug ("limiting size to %llx\n", sz);
100 }
Kumar Gala47bf4782008-10-22 14:06:24 -0500101
102 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500103 /*
104 * we can overlap inbound/outbound windows on PCI-E since RX & TX
105 * links a separate
106 */
107 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
108 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
109 (u64)bus_start, (u64)phys_start, (u64)sz);
110 pci_set_region(r, bus_start, phys_start, sz,
111 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
112 PCI_REGION_PREFETCH);
113
114 /* if we aren't an exact power of two match, pci_sz is smaller
115 * round it up to the next power of two. We report the actual
116 * size to pci region tracking.
117 */
118 if (pci_sz != sz)
119 sz = 2ull << __ilog2_u64(sz);
120
121 set_inbound_window(pi--, r++, sz);
122 sz = 0; /* make sure we dont set the R2 window */
123 } else {
124 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
Kumar Gala47bf4782008-10-22 14:06:24 -0500125 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500126 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600127 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Gala47bf4782008-10-22 14:06:24 -0500128 PCI_REGION_PREFETCH);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500129 set_inbound_window(pi--, r++, pci_sz);
130
Kumar Gala47bf4782008-10-22 14:06:24 -0500131 sz -= pci_sz;
132 bus_start += pci_sz;
133 phys_start += pci_sz;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500134
135 pci_sz = 1ull << __ilog2_u64(sz);
136 if (sz) {
137 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
138 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
139 pci_set_region(r, bus_start, phys_start, pci_sz,
140 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
141 PCI_REGION_PREFETCH);
142 set_inbound_window(pi--, r++, pci_sz);
143 sz -= pci_sz;
144 bus_start += pci_sz;
145 phys_start += pci_sz;
146 }
Kumar Gala47bf4782008-10-22 14:06:24 -0500147 }
148
149#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Bruce26176472008-10-27 16:09:42 -0500150 /*
151 * On 64-bit capable systems, set up a mapping for all of DRAM
152 * in high pci address space.
153 */
Kumar Gala47bf4782008-10-22 14:06:24 -0500154 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
155 /* round up to the next largest power of two */
156 if (gd->ram_size > pci_sz)
Becky Bruce26176472008-10-27 16:09:42 -0500157 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Gala47bf4782008-10-22 14:06:24 -0500158 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Bruce26176472008-10-27 16:09:42 -0500159 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Gala47bf4782008-10-22 14:06:24 -0500160 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
161 (u64)pci_sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500162 pci_set_region(r,
Becky Bruce26176472008-10-27 16:09:42 -0500163 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Gala47bf4782008-10-22 14:06:24 -0500164 CONFIG_SYS_PCI_MEMORY_PHYS,
165 pci_sz,
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600166 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Gala47bf4782008-10-22 14:06:24 -0500167 PCI_REGION_PREFETCH);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500168 set_inbound_window(pi--, r++, pci_sz);
Kumar Gala47bf4782008-10-22 14:06:24 -0500169#else
170 pci_sz = 1ull << __ilog2_u64(sz);
171 if (sz) {
172 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
173 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500174 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600175 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Gala47bf4782008-10-22 14:06:24 -0500176 PCI_REGION_PREFETCH);
177 sz -= pci_sz;
178 bus_start += pci_sz;
179 phys_start += pci_sz;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500180 set_inbound_window(pi--, r++, pci_sz);
Kumar Gala47bf4782008-10-22 14:06:24 -0500181 }
182#endif
183
Kumar Gala4e8001f2008-12-09 10:27:33 -0600184#ifdef CONFIG_PHYS_64BIT
Kumar Gala47bf4782008-10-22 14:06:24 -0500185 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
186 printf("Was not able to map all of memory via "
187 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4e8001f2008-12-09 10:27:33 -0600188#endif
Kumar Gala47bf4782008-10-22 14:06:24 -0500189
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500190 hose->region_count = r - hose->regions;
191
192 return 1;
Kumar Gala47bf4782008-10-22 14:06:24 -0500193}
194
Liu Gang27afb9c2013-05-07 16:30:46 +0800195#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gang99e0c292012-08-09 05:10:02 +0000196static void fsl_pcie_boot_master(pit_t *pi)
197{
198 /* configure inbound window for slave's u-boot image */
199 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
200 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
201 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
202 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
203 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
204 struct pci_region r_inbound;
205 u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE)
206 - 1;
207 pci_set_region(&r_inbound,
208 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
209 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
210 sz_inbound,
211 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
212
213 set_inbound_window(pi--, &r_inbound,
214 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
215
216 /* configure inbound window for slave's u-boot image */
217 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
218 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
219 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
220 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
221 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
222 pci_set_region(&r_inbound,
223 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
224 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
225 sz_inbound,
226 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
227
228 set_inbound_window(pi--, &r_inbound,
229 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
230
231 /* configure inbound window for slave's ucode and ENV */
232 debug("PCIEBOOT - MASTER: Inbound window for slave's "
233 "ucode and ENV; "
234 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
235 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
236 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
237 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
238 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE)
239 - 1;
240 pci_set_region(&r_inbound,
241 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
242 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
243 sz_inbound,
244 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
245
246 set_inbound_window(pi--, &r_inbound,
247 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
248}
249
250static void fsl_pcie_boot_master_release_slave(int port)
251{
252 unsigned long release_addr;
253
254 /* now release slave's core 0 */
255 switch (port) {
256 case 1:
257 release_addr = CONFIG_SYS_PCIE1_MEM_VIRT
258 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
259 break;
York Sun024498f2012-10-08 07:44:04 +0000260#ifdef CONFIG_SYS_PCIE2_MEM_VIRT
Liu Gang99e0c292012-08-09 05:10:02 +0000261 case 2:
262 release_addr = CONFIG_SYS_PCIE2_MEM_VIRT
263 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
264 break;
York Sun024498f2012-10-08 07:44:04 +0000265#endif
266#ifdef CONFIG_SYS_PCIE3_MEM_VIRT
Liu Gang99e0c292012-08-09 05:10:02 +0000267 case 3:
268 release_addr = CONFIG_SYS_PCIE3_MEM_VIRT
269 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
270 break;
York Sun024498f2012-10-08 07:44:04 +0000271#endif
Liu Gang99e0c292012-08-09 05:10:02 +0000272 default:
273 release_addr = 0;
274 break;
275 }
276 if (release_addr != 0) {
277 out_be32((void *)release_addr,
278 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK);
279 debug("PCIEBOOT - MASTER: "
280 "Release slave successfully! Now the slave should start up!\n");
281 } else {
282 debug("PCIEBOOT - MASTER: "
283 "Release slave failed!\n");
284 }
285}
286#endif
287
Peter Tyser3771ba32010-12-28 17:47:25 -0600288void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout91080f72007-08-02 14:09:49 -0500289{
Peter Tyser3771ba32010-12-28 17:47:25 -0600290 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
291 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout91080f72007-08-02 14:09:49 -0500292 u16 temp16;
293 u32 temp32;
Prabhakar Kushwahab582dae2011-02-04 09:00:43 +0530294 u32 block_rev;
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500295 int enabled, r, inbound = 0;
Ed Swarthout91080f72007-08-02 14:09:49 -0500296 u16 ltssm;
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500297 u8 temp8, pcie_cap;
Kumar Gala65e198d2009-08-03 20:44:55 -0500298 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galae770f352009-08-03 21:02:02 -0500299 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500300 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout91080f72007-08-02 14:09:49 -0500301
302 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkdc770c72008-07-14 15:19:07 +0200303 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab582dae2011-02-04 09:00:43 +0530304 volatile pit_t *pi;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500305
306 u64 out_hi = 0, out_lo = -1ULL;
307 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout91080f72007-08-02 14:09:49 -0500308
Kumar Gala65e198d2009-08-03 20:44:55 -0500309 pci_setup_indirect(hose, cfg_addr, cfg_data);
310
Prabhakar Kushwahab582dae2011-02-04 09:00:43 +0530311 block_rev = in_be32(&pci->block_rev1);
312 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
313 pi = &pci->pit[2]; /* 0xDC0 */
314 } else {
315 pi = &pci->pit[3]; /* 0xDE0 */
316 }
317
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500318 /* Handle setup of outbound windows first */
319 for (r = 0; r < hose->region_count; r++) {
320 unsigned long flags = hose->regions[r].flags;
321 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galae770f352009-08-03 21:02:02 -0500322
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500323 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
324 if (flags != PCI_REGION_SYS_MEMORY) {
325 u64 start = hose->regions[r].bus_start;
326 u64 end = start + hose->regions[r].size;
Kumar Galae770f352009-08-03 21:02:02 -0500327
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500328 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
329 out_be32(&po->potar, start >> 12);
Kumar Gala87006ca2008-10-21 10:13:14 -0500330#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500331 out_be32(&po->potear, start >> 44);
Kumar Gala87006ca2008-10-21 10:13:14 -0500332#else
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500333 out_be32(&po->potear, 0);
Kumar Gala87006ca2008-10-21 10:13:14 -0500334#endif
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500335 if (hose->regions[r].flags & PCI_REGION_IO) {
336 out_be32(&po->powar, POWAR_EN | sz |
337 POWAR_IO_READ | POWAR_IO_WRITE);
338 } else {
339 out_be32(&po->powar, POWAR_EN | sz |
340 POWAR_MEM_READ | POWAR_MEM_WRITE);
341 out_lo = min(start, out_lo);
342 out_hi = max(end, out_hi);
343 }
Ed Swarthout91080f72007-08-02 14:09:49 -0500344 po++;
345 }
346 }
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500347 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
348
349 /* setup PCSRBAR/PEXCSRBAR */
350 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
351 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
352 pcicsrbar_sz = ~pcicsrbar_sz + 1;
353
354 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
355 (out_lo > 0x100000000ull))
356 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
357 else
358 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
359 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
360
361 out_lo = min(out_lo, (u64)pcicsrbar);
362
363 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
364
365 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
366 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
367 hose->region_count++;
Ed Swarthout91080f72007-08-02 14:09:49 -0500368
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500369 /* see if we are a PCIe or PCI controller */
370 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
371
Liu Gang27afb9c2013-05-07 16:30:46 +0800372#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gang99e0c292012-08-09 05:10:02 +0000373 /* boot from PCIE --master */
374 char *s = getenv("bootmaster");
375 char pcie[6];
376 sprintf(pcie, "PCIE%d", pci_info->pci_num);
377
378 if (s && (strcmp(s, pcie) == 0)) {
379 debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n",
380 pci_info->pci_num);
381 fsl_pcie_boot_master((pit_t *)pi);
382 } else {
383 /* inbound */
384 inbound = fsl_pci_setup_inbound_windows(hose,
385 out_lo, pcie_cap, pi);
386 }
387#else
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500388 /* inbound */
389 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
Liu Gang99e0c292012-08-09 05:10:02 +0000390#endif
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500391
392 for (r = 0; r < hose->region_count; r++)
Marek Vasut2e662ee2011-10-21 14:17:21 +0000393 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500394 (u64)hose->regions[r].phys_start,
Marek Vasut2e662ee2011-10-21 14:17:21 +0000395 (u64)hose->regions[r].bus_start,
396 (u64)hose->regions[r].size,
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500397 hose->regions[r].flags);
398
Ed Swarthout91080f72007-08-02 14:09:49 -0500399 pci_register_hose(hose);
400 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
401 hose->current_busno = hose->first_busno;
402
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500403 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williamsbf895ad2011-07-22 04:01:30 +0000404 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout15bc3e72007-07-27 01:50:45 -0500405 * - Master abort (pci)
406 * - Master PERR (pci)
407 * - ICCA (PCIe)
408 */
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500409 pci_hose_read_config_dword(hose, dev, PCI_DCR, &temp32);
Ed Swarthout91080f72007-08-02 14:09:49 -0500410 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
411 pci_hose_write_config_dword(hose, dev, PCI_DCR, temp32);
412
Prabhakar Kushwaha1c48e772011-02-01 15:55:58 +0000413#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
414 temp32 = 0;
415 pci_hose_read_config_dword(hose, dev, PCI_LCR, &temp32);
416 temp32 &= ~0x03; /* Disable ASPM */
417 pci_hose_write_config_dword(hose, dev, PCI_LCR, temp32);
418 udelay(1);
419#endif
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500420 if (pcie_cap == PCI_CAP_ID_EXP) {
Zang Roy-R6191169982822013-07-04 07:25:03 +0800421 if (block_rev >= PEX_IP_BLK_REV_3_0) {
422#define PEX_CSR0_LTSSM_MASK 0xFC
423#define PEX_CSR0_LTSSM_SHIFT 2
424 ltssm = (in_be32(&pci->pex_csr0)
425 & PEX_CSR0_LTSSM_MASK) >> PEX_CSR0_LTSSM_SHIFT;
426 enabled = (ltssm == 0x11) ? 1 : 0;
427 } else {
428 /* pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm); */
429 /* enabled = ltssm >= PCI_LTSSM_L0; */
Ed Swarthout91080f72007-08-02 14:09:49 -0500430 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
431 enabled = ltssm >= PCI_LTSSM_L0;
432
Kumar Gala93166d22007-12-07 12:17:34 -0600433#ifdef CONFIG_FSL_PCIE_RESET
434 if (ltssm == 1) {
435 int i;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500436 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
437 /* assert PCIe reset */
438 setbits_be32(&pci->pdb_stat, 0x08000000);
439 (void) in_be32(&pci->pdb_stat);
Kumar Gala93166d22007-12-07 12:17:34 -0600440 udelay(100);
Marek Vasut2e662ee2011-10-21 14:17:21 +0000441 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500442 &pci->pdb_stat, in_be32(&pci->pdb_stat));
443 /* clear PCIe reset */
444 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala93166d22007-12-07 12:17:34 -0600445 asm("sync;isync");
446 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
447 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
448 &ltssm);
449 udelay(1000);
450 debug("....PCIe link error. "
451 "LTSSM=0x%02x.\n", ltssm);
452 }
453 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500454
455 /* we need to re-write the bar0 since a reset will
456 * clear it
457 */
458 pci_hose_write_config_dword(hose, dev,
459 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala93166d22007-12-07 12:17:34 -0600460 }
461#endif
Zang Roy-R6191169982822013-07-04 07:25:03 +0800462 }
Kumar Gala93166d22007-12-07 12:17:34 -0600463
Yuanquan Chenc48234e2012-11-26 23:49:45 +0000464#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
465 if (enabled == 0) {
466 serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
467 temp32 = in_be32(&srds_regs->srdspccr0);
468
469 if ((temp32 >> 28) == 3) {
470 int i;
471
472 out_be32(&srds_regs->srdspccr0, 2 << 28);
473 setbits_be32(&pci->pdb_stat, 0x08000000);
474 in_be32(&pci->pdb_stat);
475 udelay(100);
476 clrbits_be32(&pci->pdb_stat, 0x08000000);
477 asm("sync;isync");
478 for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
479 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
480 udelay(1000);
481 }
482 enabled = ltssm >= PCI_LTSSM_L0;
483 }
484 }
485#endif
Ed Swarthout91080f72007-08-02 14:09:49 -0500486 if (!enabled) {
Peter Tyser3771ba32010-12-28 17:47:25 -0600487 /* Let the user know there's no PCIe link */
488 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout91080f72007-08-02 14:09:49 -0500489 hose->last_busno = hose->first_busno;
490 return;
491 }
492
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500493 out_be32(&pci->pme_msg_det, 0xffffffff);
494 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser3771ba32010-12-28 17:47:25 -0600495
496 /* Print the negotiated PCIe link width */
Ed Swarthout91080f72007-08-02 14:09:49 -0500497 pci_hose_read_config_word(hose, dev, PCI_LSR, &temp16);
Peter Tyser3771ba32010-12-28 17:47:25 -0600498 printf("x%d, regs @ 0x%lx\n", (temp16 & 0x3f0 ) >> 4,
499 pci_info->regs);
500
Ed Swarthout91080f72007-08-02 14:09:49 -0500501 hose->current_busno++; /* Start scan with secondary */
502 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout91080f72007-08-02 14:09:49 -0500503 }
504
Ed Swarthout1ab6def2007-08-20 23:55:33 -0500505 /* Use generic setup_device to initialize standard pci regs,
506 * but do not allocate any windows since any BAR found (such
507 * as PCSRBAR) is not in this cpu's memory space.
508 */
Ed Swarthout1ab6def2007-08-20 23:55:33 -0500509 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout91080f72007-08-02 14:09:49 -0500510 hose->pci_prefetch, hose->pci_io);
Ed Swarthout1ab6def2007-08-20 23:55:33 -0500511
Ed Swarthoutd6e526c2007-10-19 17:51:40 -0500512 if (inbound) {
513 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
514 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
515 temp16 | PCI_COMMAND_MEMORY);
516 }
517
Ed Swarthout15bc3e72007-07-27 01:50:45 -0500518#ifndef CONFIG_PCI_NOSCAN
Minghuan Lianeb811d32012-08-21 23:35:42 +0000519 if (!fsl_is_pci_agent(hose)) {
Peter Tyser826fd9d2010-10-29 17:59:26 -0500520 debug(" Scanning PCI bus %02x\n",
Ed Swarthout3c13d702008-10-08 23:38:00 -0500521 hose->current_busno);
522 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
523 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500524 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout3c13d702008-10-08 23:38:00 -0500525 hose->current_busno, temp8);
526 hose->last_busno = hose->current_busno;
527 }
Ed Swarthout91080f72007-08-02 14:09:49 -0500528
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500529 /* if we are PCIe - update limit regs and subordinate busno
530 * for the virtual P2P bridge
531 */
532 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout91080f72007-08-02 14:09:49 -0500533 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
534 }
Ed Swarthout15bc3e72007-07-27 01:50:45 -0500535#else
536 hose->last_busno = hose->current_busno;
537#endif
Ed Swarthout91080f72007-08-02 14:09:49 -0500538
539 /* Clear all error indications */
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500540 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500541 out_be32(&pci->pme_msg_det, 0xffffffff);
542 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout91080f72007-08-02 14:09:49 -0500543
544 pci_hose_read_config_word (hose, dev, PCI_DSR, &temp16);
545 if (temp16) {
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500546 pci_hose_write_config_word(hose, dev, PCI_DSR, 0xffff);
Ed Swarthout91080f72007-08-02 14:09:49 -0500547 }
548
549 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
550 if (temp16) {
Ed Swarthout91080f72007-08-02 14:09:49 -0500551 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
552 }
553}
Kumar Galafe29f1f2008-10-23 00:01:06 -0500554
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600555int fsl_is_pci_agent(struct pci_controller *hose)
556{
Minghuan Lianeb811d32012-08-21 23:35:42 +0000557 u8 pcie_cap;
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600558 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
559
Minghuan Lianeb811d32012-08-21 23:35:42 +0000560 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
561 if (pcie_cap == PCI_CAP_ID_EXP) {
562 u8 header_type;
563
564 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE,
565 &header_type);
566 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL;
567 } else {
568 u8 prog_if;
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600569
Minghuan Lianeb811d32012-08-21 23:35:42 +0000570 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
Zang Roy-R6191169982822013-07-04 07:25:03 +0800571 /* Programming Interface (PCI_CLASS_PROG)
572 * 0 == pci host or pcie root-complex,
573 * 1 == pci agent or pcie end-point
574 */
Minghuan Lianeb811d32012-08-21 23:35:42 +0000575 return (prog_if == FSL_PROG_IF_AGENT);
576 }
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600577}
578
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530579int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Galab83ff072009-11-04 01:29:04 -0600580 struct pci_controller *hose, int busno)
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530581{
582 volatile ccsr_fsl_pci_t *pci;
583 struct pci_region *r;
Peter Tyser149dcbc2010-10-28 15:24:59 -0500584 pci_dev_t dev = PCI_BDF(busno,0,0);
585 u8 pcie_cap;
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530586
587 pci = (ccsr_fsl_pci_t *) pci_info->regs;
588
589 /* on non-PCIe controllers we don't have pme_msg_det so this code
590 * should do nothing since the read will return 0
591 */
592 if (in_be32(&pci->pme_msg_det)) {
593 out_be32(&pci->pme_msg_det, 0xffffffff);
594 debug (" with errors. Clearing. Now 0x%08x",
595 pci->pme_msg_det);
596 }
597
598 r = hose->regions + hose->region_count;
599
600 /* outbound memory */
601 pci_set_region(r++,
602 pci_info->mem_bus,
603 pci_info->mem_phys,
604 pci_info->mem_size,
605 PCI_REGION_MEM);
606
607 /* outbound io */
608 pci_set_region(r++,
609 pci_info->io_bus,
610 pci_info->io_phys,
611 pci_info->io_size,
612 PCI_REGION_IO);
613
614 hose->region_count = r - hose->regions;
615 hose->first_busno = busno;
616
Peter Tyser3771ba32010-12-28 17:47:25 -0600617 fsl_pci_init(hose, pci_info);
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530618
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600619 if (fsl_is_pci_agent(hose)) {
620 fsl_pci_config_unlock(hose);
621 hose->last_busno = hose->first_busno;
Liu Gang27afb9c2013-05-07 16:30:46 +0800622#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gang99e0c292012-08-09 05:10:02 +0000623 } else {
624 /* boot from PCIE --master releases slave's core 0 */
625 char *s = getenv("bootmaster");
626 char pcie[6];
627 sprintf(pcie, "PCIE%d", pci_info->pci_num);
628
629 if (s && (strcmp(s, pcie) == 0))
630 fsl_pcie_boot_master_release_slave(pci_info->pci_num);
631#endif
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600632 }
633
Peter Tyser149dcbc2010-10-28 15:24:59 -0500634 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
Peter Tyser2b91f712010-10-29 17:59:24 -0500635 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser3771ba32010-12-28 17:47:25 -0600636 "e" : "", pci_info->pci_num,
Peter Tyser2b91f712010-10-29 17:59:24 -0500637 hose->first_busno, hose->last_busno);
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530638
639 return(hose->last_busno + 1);
640}
641
Peter Tyserbc98e542008-10-29 12:39:26 -0500642/* Enable inbound PCI config cycles for agent/endpoint interface */
643void fsl_pci_config_unlock(struct pci_controller *hose)
644{
645 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
Peter Tyserbc98e542008-10-29 12:39:26 -0500646 u8 pcie_cap;
647 u16 pbfr;
648
Minghuan Lianeb811d32012-08-21 23:35:42 +0000649 if (!fsl_is_pci_agent(hose))
Peter Tyserbc98e542008-10-29 12:39:26 -0500650 return;
651
652 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
653 if (pcie_cap != 0x0) {
654 /* PCIe - set CFG_READY bit of Configuration Ready Register */
655 pci_hose_write_config_byte(hose, dev, FSL_PCIE_CFG_RDY, 0x1);
656 } else {
657 /* PCI - clear ACL bit of PBFR */
658 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
659 pbfr &= ~0x20;
660 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
661 }
662}
663
Kumar Gala4d4384e2010-12-15 14:21:41 -0600664#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denka4de8352011-02-02 22:36:10 +0100665 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Gala4d4384e2010-12-15 14:21:41 -0600666int fsl_configure_pcie(struct fsl_pci_info *info,
667 struct pci_controller *hose,
668 const char *connected, int busno)
669{
670 int is_endpoint;
671
672 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
673 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser3771ba32010-12-28 17:47:25 -0600674
Kumar Gala4d4384e2010-12-15 14:21:41 -0600675 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser3771ba32010-12-28 17:47:25 -0600676 printf("PCIe%u: %s", info->pci_num,
677 is_endpoint ? "Endpoint" : "Root Complex");
678 if (connected)
679 printf(" of %s", connected);
680 puts(", ");
681
Kumar Gala4d4384e2010-12-15 14:21:41 -0600682 return fsl_pci_init_port(info, hose, busno);
683}
684
685#if defined(CONFIG_FSL_CORENET)
York Sun9941a222012-10-08 07:44:19 +0000686#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
687 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1
688 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2
689 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3
690 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4
691#else
Kumar Gala4d4384e2010-12-15 14:21:41 -0600692 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
693 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
694 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
695 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
York Sun9941a222012-10-08 07:44:19 +0000696#endif
Kumar Gala4d4384e2010-12-15 14:21:41 -0600697 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
698#elif defined(CONFIG_MPC85xx)
699 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
700 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
701 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
702 #define _DEVDISR_PCIE4 0
703 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
704#elif defined(CONFIG_MPC86xx)
705 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
706 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
707 #define _DEVDISR_PCIE3 0
708 #define _DEVDISR_PCIE4 0
709 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
710 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
711#else
712#error "No defines for DEVDISR_PCIE"
713#endif
714
715/* Implement a dummy function for those platforms w/o SERDES */
716static const char *__board_serdes_name(enum srds_prtcl device)
717{
718 switch (device) {
719#ifdef CONFIG_SYS_PCIE1_NAME
720 case PCIE1:
721 return CONFIG_SYS_PCIE1_NAME;
722#endif
723#ifdef CONFIG_SYS_PCIE2_NAME
724 case PCIE2:
725 return CONFIG_SYS_PCIE2_NAME;
726#endif
727#ifdef CONFIG_SYS_PCIE3_NAME
728 case PCIE3:
729 return CONFIG_SYS_PCIE3_NAME;
730#endif
731#ifdef CONFIG_SYS_PCIE4_NAME
732 case PCIE4:
733 return CONFIG_SYS_PCIE4_NAME;
734#endif
735 default:
736 return NULL;
737 }
738
739 return NULL;
740}
741
742__attribute__((weak, alias("__board_serdes_name"))) const char *
743board_serdes_name(enum srds_prtcl device);
744
745static u32 devdisr_mask[] = {
746 _DEVDISR_PCIE1,
747 _DEVDISR_PCIE2,
748 _DEVDISR_PCIE3,
749 _DEVDISR_PCIE4,
750};
751
752int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
753 struct fsl_pci_info *pci_info)
754{
755 struct pci_controller *hose;
756 int num = dev - PCIE1;
757
758 hose = calloc(1, sizeof(struct pci_controller));
759 if (!hose)
760 return busno;
761
762 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
763 busno = fsl_configure_pcie(pci_info, hose,
764 board_serdes_name(dev), busno);
765 } else {
Peter Tyser3771ba32010-12-28 17:47:25 -0600766 printf("PCIe%d: disabled\n", num + 1);
Kumar Gala4d4384e2010-12-15 14:21:41 -0600767 }
768
769 return busno;
770}
771
772int fsl_pcie_init_board(int busno)
773{
774 struct fsl_pci_info pci_info;
775 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
York Sun9941a222012-10-08 07:44:19 +0000776 u32 devdisr;
777 u32 *addr;
778
779#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
780 addr = &gur->devdisr3;
781#else
782 addr = &gur->devdisr;
783#endif
784 devdisr = in_be32(addr);
Kumar Gala4d4384e2010-12-15 14:21:41 -0600785
786#ifdef CONFIG_PCIE1
787 SET_STD_PCIE_INFO(pci_info, 1);
788 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
789#else
York Sun9941a222012-10-08 07:44:19 +0000790 setbits_be32(addr, _DEVDISR_PCIE1); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600791#endif
792
793#ifdef CONFIG_PCIE2
794 SET_STD_PCIE_INFO(pci_info, 2);
795 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
796#else
York Sun9941a222012-10-08 07:44:19 +0000797 setbits_be32(addr, _DEVDISR_PCIE2); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600798#endif
799
800#ifdef CONFIG_PCIE3
801 SET_STD_PCIE_INFO(pci_info, 3);
802 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
803#else
York Sun9941a222012-10-08 07:44:19 +0000804 setbits_be32(addr, _DEVDISR_PCIE3); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600805#endif
806
807#ifdef CONFIG_PCIE4
808 SET_STD_PCIE_INFO(pci_info, 4);
809 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
810#else
York Sun9941a222012-10-08 07:44:19 +0000811 setbits_be32(addr, _DEVDISR_PCIE4); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600812#endif
813
814 return busno;
815}
816#else
817int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
818 struct fsl_pci_info *pci_info)
819{
820 return busno;
821}
822
823int fsl_pcie_init_board(int busno)
824{
825 return busno;
826}
827#endif
828
Kumar Galafe29f1f2008-10-23 00:01:06 -0500829#ifdef CONFIG_OF_BOARD_SETUP
830#include <libfdt.h>
831#include <fdt_support.h>
832
Kumar Galad0f27d32010-07-08 22:37:44 -0500833void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Galadb943ed2010-12-17 05:57:25 -0600834 unsigned long ctrl_addr)
Kumar Galafe29f1f2008-10-23 00:01:06 -0500835{
Kumar Galad0f27d32010-07-08 22:37:44 -0500836 int off;
Kumar Gala326ed2f2010-03-30 10:07:12 -0500837 u32 bus_range[2];
Kumar Galad0f27d32010-07-08 22:37:44 -0500838 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Galadb943ed2010-12-17 05:57:25 -0600839 struct pci_controller *hose;
840
841 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Galad0f27d32010-07-08 22:37:44 -0500842
843 /* convert ctrl_addr to true physical address */
844 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
845 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
846
847 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galafe29f1f2008-10-23 00:01:06 -0500848
Kumar Gala326ed2f2010-03-30 10:07:12 -0500849 if (off < 0)
850 return;
Kumar Galafe29f1f2008-10-23 00:01:06 -0500851
Kumar Gala326ed2f2010-03-30 10:07:12 -0500852 /* We assume a cfg_addr not being set means we didn't setup the controller */
853 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Galad0f27d32010-07-08 22:37:44 -0500854 fdt_del_node(blob, off);
Kumar Gala326ed2f2010-03-30 10:07:12 -0500855 } else {
Kumar Galafe29f1f2008-10-23 00:01:06 -0500856 bus_range[0] = 0;
857 bus_range[1] = hose->last_busno - hose->first_busno;
858 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
859 fdt_pci_dma_ranges(blob, off, hose);
860 }
861}
862#endif