blob: 52792dcd5973895582220de9fc81fccacc1b4277 [file] [log] [blame]
Ed Swarthout63cec582007-08-02 14:09:49 -05001/*
Minghuan Lian505f3e62012-08-21 23:35:42 +00002 * Copyright 2007-2012 Freescale Semiconductor, Inc.
Ed Swarthout63cec582007-08-02 14:09:49 -05003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Ed Swarthout63cec582007-08-02 14:09:49 -05005 */
Ed Swarthout2e4d94f2007-07-27 01:50:45 -05006
Ed Swarthout63cec582007-08-02 14:09:49 -05007#include <common.h>
Kumar Galaa4aafcc2010-12-15 14:21:41 -06008#include <malloc.h>
9#include <asm/fsl_serdes.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050010
Kumar Galab9a1fa92008-10-22 14:06:24 -050011DECLARE_GLOBAL_DATA_PTR;
12
Ed Swarthout63cec582007-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 Galaad19e7a2009-08-05 07:59:35 -050028#include <asm/io.h>
Kumar Galac8514622009-04-02 13:22:48 -050029#include <asm/fsl_pci.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050030
Kumar Galab9a1fa92008-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 Galaad19e7a2009-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 Galab9a1fa92008-10-22 14:06:24 -050050{
Kumar Galaad19e7a2009-08-05 07:59:35 -050051 u32 sz = (__ilog2_u64(size) - 1);
Chunhe Lanf1a96ec2014-05-07 10:50:20 +080052#ifdef CONFIG_SYS_FSL_ERRATUM_A005434
53 u32 flag = 0;
54#else
55 u32 flag = PIWAR_LOCAL;
56#endif
57
58 flag |= PIWAR_EN | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
Kumar Galaad19e7a2009-08-05 07:59:35 -050059
60 out_be32(&pi->pitar, r->phys_start >> 12);
61 out_be32(&pi->piwbar, r->bus_start >> 12);
62#ifdef CONFIG_SYS_PCI_64BIT
63 out_be32(&pi->piwbear, r->bus_start >> 44);
64#else
65 out_be32(&pi->piwbear, 0);
66#endif
67 if (r->flags & PCI_REGION_PREFETCH)
68 flag |= PIWAR_PF;
69 out_be32(&pi->piwar, flag | sz);
70}
71
Kumar Galaee536502009-11-04 13:00:55 -060072int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
73{
74 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
75
John Schmoller96d61602010-10-22 00:20:23 -050076 /* Reset hose to make sure its in a clean state */
77 memset(hose, 0, sizeof(struct pci_controller));
78
Kumar Galaee536502009-11-04 13:00:55 -060079 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
80
81 return fsl_is_pci_agent(hose);
82}
83
Kumar Galaad19e7a2009-08-05 07:59:35 -050084static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
85 u64 out_lo, u8 pcie_cap,
86 volatile pit_t *pi)
87{
88 struct pci_region *r = hose->regions + hose->region_count;
89 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Galab9a1fa92008-10-22 14:06:24 -050090
91 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
92 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaad19e7a2009-08-05 07:59:35 -050093 pci_size_t pci_sz;
Kumar Galab9a1fa92008-10-22 14:06:24 -050094
Kumar Galaad19e7a2009-08-05 07:59:35 -050095 /* we have no space available for inbound memory mapping */
96 if (bus_start > out_lo) {
97 printf ("no space for inbound mapping of memory\n");
98 return 0;
99 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500100
Kumar Galaad19e7a2009-08-05 07:59:35 -0500101 /* limit size */
102 if ((bus_start + sz) > out_lo) {
103 sz = out_lo - bus_start;
104 debug ("limiting size to %llx\n", sz);
105 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500106
107 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500108 /*
109 * we can overlap inbound/outbound windows on PCI-E since RX & TX
110 * links a separate
111 */
112 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
113 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
114 (u64)bus_start, (u64)phys_start, (u64)sz);
115 pci_set_region(r, bus_start, phys_start, sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600116 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500117 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500118
119 /* if we aren't an exact power of two match, pci_sz is smaller
120 * round it up to the next power of two. We report the actual
121 * size to pci region tracking.
122 */
123 if (pci_sz != sz)
124 sz = 2ull << __ilog2_u64(sz);
125
126 set_inbound_window(pi--, r++, sz);
127 sz = 0; /* make sure we dont set the R2 window */
128 } else {
129 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
130 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
131 pci_set_region(r, bus_start, phys_start, pci_sz,
132 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
133 PCI_REGION_PREFETCH);
134 set_inbound_window(pi--, r++, pci_sz);
135
Kumar Galab9a1fa92008-10-22 14:06:24 -0500136 sz -= pci_sz;
137 bus_start += pci_sz;
138 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500139
140 pci_sz = 1ull << __ilog2_u64(sz);
141 if (sz) {
142 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
143 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
144 pci_set_region(r, bus_start, phys_start, pci_sz,
145 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
146 PCI_REGION_PREFETCH);
147 set_inbound_window(pi--, r++, pci_sz);
148 sz -= pci_sz;
149 bus_start += pci_sz;
150 phys_start += pci_sz;
151 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500152 }
153
154#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Brucecd425162008-10-27 16:09:42 -0500155 /*
156 * On 64-bit capable systems, set up a mapping for all of DRAM
157 * in high pci address space.
158 */
Kumar Galab9a1fa92008-10-22 14:06:24 -0500159 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
160 /* round up to the next largest power of two */
161 if (gd->ram_size > pci_sz)
Becky Brucecd425162008-10-27 16:09:42 -0500162 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500163 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Brucecd425162008-10-27 16:09:42 -0500164 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500165 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
166 (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500167 pci_set_region(r,
Becky Brucecd425162008-10-27 16:09:42 -0500168 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500169 CONFIG_SYS_PCI_MEMORY_PHYS,
170 pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600171 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500172 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500173 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500174#else
175 pci_sz = 1ull << __ilog2_u64(sz);
176 if (sz) {
177 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
178 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500179 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600180 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500181 PCI_REGION_PREFETCH);
182 sz -= pci_sz;
183 bus_start += pci_sz;
184 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500185 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500186 }
187#endif
188
Kumar Gala4c253fd2008-12-09 10:27:33 -0600189#ifdef CONFIG_PHYS_64BIT
Kumar Galab9a1fa92008-10-22 14:06:24 -0500190 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
191 printf("Was not able to map all of memory via "
192 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4c253fd2008-12-09 10:27:33 -0600193#endif
Kumar Galab9a1fa92008-10-22 14:06:24 -0500194
Kumar Galaad19e7a2009-08-05 07:59:35 -0500195 hose->region_count = r - hose->regions;
196
197 return 1;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500198}
199
Liu Gangc8b28152013-05-07 16:30:46 +0800200#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000201static void fsl_pcie_boot_master(pit_t *pi)
202{
203 /* configure inbound window for slave's u-boot image */
204 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
205 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
206 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
207 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
208 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
209 struct pci_region r_inbound;
210 u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE)
211 - 1;
212 pci_set_region(&r_inbound,
213 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
214 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
215 sz_inbound,
216 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
217
218 set_inbound_window(pi--, &r_inbound,
219 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
220
221 /* configure inbound window for slave's u-boot image */
222 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
223 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
224 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
225 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
226 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
227 pci_set_region(&r_inbound,
228 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
229 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
230 sz_inbound,
231 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
232
233 set_inbound_window(pi--, &r_inbound,
234 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
235
236 /* configure inbound window for slave's ucode and ENV */
237 debug("PCIEBOOT - MASTER: Inbound window for slave's "
238 "ucode and ENV; "
239 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
240 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
241 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
242 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
243 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE)
244 - 1;
245 pci_set_region(&r_inbound,
246 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
247 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
248 sz_inbound,
249 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
250
251 set_inbound_window(pi--, &r_inbound,
252 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
253}
254
255static void fsl_pcie_boot_master_release_slave(int port)
256{
257 unsigned long release_addr;
258
259 /* now release slave's core 0 */
260 switch (port) {
261 case 1:
262 release_addr = CONFIG_SYS_PCIE1_MEM_VIRT
263 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
264 break;
York Suna1e43182012-10-08 07:44:04 +0000265#ifdef CONFIG_SYS_PCIE2_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000266 case 2:
267 release_addr = CONFIG_SYS_PCIE2_MEM_VIRT
268 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
269 break;
York Suna1e43182012-10-08 07:44:04 +0000270#endif
271#ifdef CONFIG_SYS_PCIE3_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000272 case 3:
273 release_addr = CONFIG_SYS_PCIE3_MEM_VIRT
274 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
275 break;
York Suna1e43182012-10-08 07:44:04 +0000276#endif
Liu Gangb5f7c872012-08-09 05:10:02 +0000277 default:
278 release_addr = 0;
279 break;
280 }
281 if (release_addr != 0) {
282 out_be32((void *)release_addr,
283 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK);
284 debug("PCIEBOOT - MASTER: "
285 "Release slave successfully! Now the slave should start up!\n");
286 } else {
287 debug("PCIEBOOT - MASTER: "
288 "Release slave failed!\n");
289 }
290}
291#endif
292
Peter Tyser213ac732010-12-28 17:47:25 -0600293void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout63cec582007-08-02 14:09:49 -0500294{
Peter Tyser213ac732010-12-28 17:47:25 -0600295 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
296 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout63cec582007-08-02 14:09:49 -0500297 u16 temp16;
298 u32 temp32;
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530299 u32 block_rev;
Kumar Gala8295b942009-08-05 07:49:27 -0500300 int enabled, r, inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500301 u16 ltssm;
Kumar Gala8295b942009-08-05 07:49:27 -0500302 u8 temp8, pcie_cap;
Zhao Qiang287df012013-10-12 13:46:33 +0800303 int pcie_cap_pos;
304 int pci_dcr;
305 int pci_dsr;
306 int pci_lsr;
307
308#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
309 int pci_lcr;
310#endif
311
Kumar Galafb3143b2009-08-03 20:44:55 -0500312 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galacb151aa2009-08-03 21:02:02 -0500313 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Gala8295b942009-08-05 07:49:27 -0500314 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout63cec582007-08-02 14:09:49 -0500315
316 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200317 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530318 volatile pit_t *pi;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500319
320 u64 out_hi = 0, out_lo = -1ULL;
321 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout63cec582007-08-02 14:09:49 -0500322
Kumar Galafb3143b2009-08-03 20:44:55 -0500323 pci_setup_indirect(hose, cfg_addr, cfg_data);
324
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530325 block_rev = in_be32(&pci->block_rev1);
326 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
327 pi = &pci->pit[2]; /* 0xDC0 */
328 } else {
329 pi = &pci->pit[3]; /* 0xDE0 */
330 }
331
Kumar Galaad19e7a2009-08-05 07:59:35 -0500332 /* Handle setup of outbound windows first */
333 for (r = 0; r < hose->region_count; r++) {
334 unsigned long flags = hose->regions[r].flags;
Kumar Gala612ea012008-10-21 10:13:14 -0500335 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500336
337 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
338 if (flags != PCI_REGION_SYS_MEMORY) {
339 u64 start = hose->regions[r].bus_start;
340 u64 end = start + hose->regions[r].size;
341
342 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
343 out_be32(&po->potar, start >> 12);
Kumar Gala612ea012008-10-21 10:13:14 -0500344#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaad19e7a2009-08-05 07:59:35 -0500345 out_be32(&po->potear, start >> 44);
Kumar Gala612ea012008-10-21 10:13:14 -0500346#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500347 out_be32(&po->potear, 0);
Kumar Gala612ea012008-10-21 10:13:14 -0500348#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500349 if (hose->regions[r].flags & PCI_REGION_IO) {
350 out_be32(&po->powar, POWAR_EN | sz |
351 POWAR_IO_READ | POWAR_IO_WRITE);
352 } else {
353 out_be32(&po->powar, POWAR_EN | sz |
354 POWAR_MEM_READ | POWAR_MEM_WRITE);
355 out_lo = min(start, out_lo);
356 out_hi = max(end, out_hi);
357 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500358 po++;
359 }
360 }
Kumar Galaad19e7a2009-08-05 07:59:35 -0500361 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
362
363 /* setup PCSRBAR/PEXCSRBAR */
364 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
365 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
366 pcicsrbar_sz = ~pcicsrbar_sz + 1;
367
368 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
369 (out_lo > 0x100000000ull))
370 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
371 else
372 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
373 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
374
375 out_lo = min(out_lo, (u64)pcicsrbar);
376
377 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
378
379 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
380 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
381 hose->region_count++;
Ed Swarthout63cec582007-08-02 14:09:49 -0500382
Kumar Gala8295b942009-08-05 07:49:27 -0500383 /* see if we are a PCIe or PCI controller */
Zhao Qiang287df012013-10-12 13:46:33 +0800384 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
385 pci_dcr = pcie_cap_pos + 0x08;
386 pci_dsr = pcie_cap_pos + 0x0a;
387 pci_lsr = pcie_cap_pos + 0x12;
388
389 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Kumar Gala8295b942009-08-05 07:49:27 -0500390
Liu Gangc8b28152013-05-07 16:30:46 +0800391#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000392 /* boot from PCIE --master */
393 char *s = getenv("bootmaster");
394 char pcie[6];
395 sprintf(pcie, "PCIE%d", pci_info->pci_num);
396
397 if (s && (strcmp(s, pcie) == 0)) {
398 debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n",
399 pci_info->pci_num);
400 fsl_pcie_boot_master((pit_t *)pi);
401 } else {
402 /* inbound */
403 inbound = fsl_pci_setup_inbound_windows(hose,
404 out_lo, pcie_cap, pi);
405 }
406#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500407 /* inbound */
408 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
Liu Gangb5f7c872012-08-09 05:10:02 +0000409#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500410
411 for (r = 0; r < hose->region_count; r++)
Marek Vasutd015df82011-10-21 14:17:21 +0000412 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500413 (u64)hose->regions[r].phys_start,
Marek Vasutd015df82011-10-21 14:17:21 +0000414 (u64)hose->regions[r].bus_start,
415 (u64)hose->regions[r].size,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500416 hose->regions[r].flags);
417
Ed Swarthout63cec582007-08-02 14:09:49 -0500418 pci_register_hose(hose);
419 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
420 hose->current_busno = hose->first_busno;
421
Kumar Galaad19e7a2009-08-05 07:59:35 -0500422 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williams16263082011-07-22 04:01:30 +0000423 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500424 * - Master abort (pci)
425 * - Master PERR (pci)
426 * - ICCA (PCIe)
427 */
Zhao Qiang287df012013-10-12 13:46:33 +0800428 pci_hose_read_config_dword(hose, dev, pci_dcr, &temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500429 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
Zhao Qiang287df012013-10-12 13:46:33 +0800430 pci_hose_write_config_dword(hose, dev, pci_dcr, temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500431
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000432#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
Zhao Qiang287df012013-10-12 13:46:33 +0800433 pci_lcr = pcie_cap_pos + 0x10;
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000434 temp32 = 0;
Zhao Qiang287df012013-10-12 13:46:33 +0800435 pci_hose_read_config_dword(hose, dev, pci_lcr, &temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000436 temp32 &= ~0x03; /* Disable ASPM */
Zhao Qiang287df012013-10-12 13:46:33 +0800437 pci_hose_write_config_dword(hose, dev, pci_lcr, temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000438 udelay(1);
439#endif
Kumar Gala8295b942009-08-05 07:49:27 -0500440 if (pcie_cap == PCI_CAP_ID_EXP) {
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800441 if (block_rev >= PEX_IP_BLK_REV_3_0) {
442#define PEX_CSR0_LTSSM_MASK 0xFC
443#define PEX_CSR0_LTSSM_SHIFT 2
444 ltssm = (in_be32(&pci->pex_csr0)
445 & PEX_CSR0_LTSSM_MASK) >> PEX_CSR0_LTSSM_SHIFT;
446 enabled = (ltssm == 0x11) ? 1 : 0;
Zhao Qiang5066e622015-03-26 16:13:09 +0800447#ifdef CONFIG_FSL_PCIE_RESET
448 int i;
449 /* assert PCIe reset */
450 setbits_be32(&pci->pdb_stat, 0x08000000);
451 (void) in_be32(&pci->pdb_stat);
452 udelay(1000);
453 /* clear PCIe reset */
454 clrbits_be32(&pci->pdb_stat, 0x08000000);
455 asm("sync;isync");
456 for (i = 0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
457 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
458 &ltssm);
459 udelay(1000);
460 }
461#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800462 } else {
463 /* pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm); */
464 /* enabled = ltssm >= PCI_LTSSM_L0; */
Ed Swarthout63cec582007-08-02 14:09:49 -0500465 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
466 enabled = ltssm >= PCI_LTSSM_L0;
467
Kumar Gala8ff3de62007-12-07 12:17:34 -0600468#ifdef CONFIG_FSL_PCIE_RESET
469 if (ltssm == 1) {
470 int i;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500471 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
472 /* assert PCIe reset */
473 setbits_be32(&pci->pdb_stat, 0x08000000);
474 (void) in_be32(&pci->pdb_stat);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600475 udelay(100);
Marek Vasutd015df82011-10-21 14:17:21 +0000476 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaad19e7a2009-08-05 07:59:35 -0500477 &pci->pdb_stat, in_be32(&pci->pdb_stat));
478 /* clear PCIe reset */
479 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600480 asm("sync;isync");
481 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
482 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
483 &ltssm);
484 udelay(1000);
485 debug("....PCIe link error. "
486 "LTSSM=0x%02x.\n", ltssm);
487 }
488 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500489
490 /* we need to re-write the bar0 since a reset will
491 * clear it
492 */
493 pci_hose_write_config_dword(hose, dev,
494 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600495 }
496#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800497 }
Kumar Gala8ff3de62007-12-07 12:17:34 -0600498
Yuanquan Chenc0a4e6b2012-11-26 23:49:45 +0000499#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
500 if (enabled == 0) {
501 serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
502 temp32 = in_be32(&srds_regs->srdspccr0);
503
504 if ((temp32 >> 28) == 3) {
505 int i;
506
507 out_be32(&srds_regs->srdspccr0, 2 << 28);
508 setbits_be32(&pci->pdb_stat, 0x08000000);
509 in_be32(&pci->pdb_stat);
510 udelay(100);
511 clrbits_be32(&pci->pdb_stat, 0x08000000);
512 asm("sync;isync");
513 for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
514 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
515 udelay(1000);
516 }
517 enabled = ltssm >= PCI_LTSSM_L0;
518 }
519 }
520#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500521 if (!enabled) {
Zang Roy-R6191132514d22014-06-12 14:49:23 -0500522 /* Let the user know there's no PCIe link for root
523 * complex. for endpoint, the link may not setup, so
524 * print undetermined.
525 */
526 if (fsl_is_pci_agent(hose))
527 printf("undetermined, regs @ 0x%lx\n", pci_info->regs);
528 else
529 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout63cec582007-08-02 14:09:49 -0500530 hose->last_busno = hose->first_busno;
531 return;
532 }
533
Kumar Galaad19e7a2009-08-05 07:59:35 -0500534 out_be32(&pci->pme_msg_det, 0xffffffff);
535 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser213ac732010-12-28 17:47:25 -0600536
537 /* Print the negotiated PCIe link width */
Zhao Qiang287df012013-10-12 13:46:33 +0800538 pci_hose_read_config_word(hose, dev, pci_lsr, &temp16);
Prabhakar Kushwahaaceea942014-01-25 12:53:32 +0530539 printf("x%d gen%d, regs @ 0x%lx\n", (temp16 & 0x3f0) >> 4,
540 (temp16 & 0xf), pci_info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600541
Ed Swarthout63cec582007-08-02 14:09:49 -0500542 hose->current_busno++; /* Start scan with secondary */
543 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout63cec582007-08-02 14:09:49 -0500544 }
545
Ed Swarthout16e23c32007-08-20 23:55:33 -0500546 /* Use generic setup_device to initialize standard pci regs,
547 * but do not allocate any windows since any BAR found (such
548 * as PCSRBAR) is not in this cpu's memory space.
549 */
Ed Swarthout16e23c32007-08-20 23:55:33 -0500550 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500551 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500552
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500553 if (inbound) {
554 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
555 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
556 temp16 | PCI_COMMAND_MEMORY);
557 }
558
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500559#ifndef CONFIG_PCI_NOSCAN
Minghuan Lian505f3e62012-08-21 23:35:42 +0000560 if (!fsl_is_pci_agent(hose)) {
Peter Tyser37d03fc2010-10-29 17:59:26 -0500561 debug(" Scanning PCI bus %02x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500562 hose->current_busno);
563 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
564 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500565 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500566 hose->current_busno, temp8);
567 hose->last_busno = hose->current_busno;
568 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500569
Kumar Gala8295b942009-08-05 07:49:27 -0500570 /* if we are PCIe - update limit regs and subordinate busno
571 * for the virtual P2P bridge
572 */
573 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500574 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
575 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500576#else
577 hose->last_busno = hose->current_busno;
578#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500579
580 /* Clear all error indications */
Kumar Gala8295b942009-08-05 07:49:27 -0500581 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaad19e7a2009-08-05 07:59:35 -0500582 out_be32(&pci->pme_msg_det, 0xffffffff);
583 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500584
Zhao Qiang287df012013-10-12 13:46:33 +0800585 pci_hose_read_config_word(hose, dev, pci_dsr, &temp16);
Ed Swarthout63cec582007-08-02 14:09:49 -0500586 if (temp16) {
Zhao Qiang287df012013-10-12 13:46:33 +0800587 pci_hose_write_config_word(hose, dev, pci_dsr, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500588 }
589
590 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
591 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500592 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
593 }
594}
Kumar Galaa2aab462008-10-23 00:01:06 -0500595
Ed Swarthout715d8f72009-11-02 09:05:49 -0600596int fsl_is_pci_agent(struct pci_controller *hose)
597{
Zhao Qiang287df012013-10-12 13:46:33 +0800598 int pcie_cap_pos;
Minghuan Lian505f3e62012-08-21 23:35:42 +0000599 u8 pcie_cap;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600600 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
601
Zhao Qiang287df012013-10-12 13:46:33 +0800602 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
603 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Minghuan Lian505f3e62012-08-21 23:35:42 +0000604 if (pcie_cap == PCI_CAP_ID_EXP) {
605 u8 header_type;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600606
Minghuan Lian505f3e62012-08-21 23:35:42 +0000607 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE,
608 &header_type);
609 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL;
610 } else {
611 u8 prog_if;
612
613 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800614 /* Programming Interface (PCI_CLASS_PROG)
615 * 0 == pci host or pcie root-complex,
616 * 1 == pci agent or pcie end-point
617 */
Minghuan Lian505f3e62012-08-21 23:35:42 +0000618 return (prog_if == FSL_PROG_IF_AGENT);
619 }
Ed Swarthout715d8f72009-11-02 09:05:49 -0600620}
621
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530622int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Gala01471d52009-11-04 01:29:04 -0600623 struct pci_controller *hose, int busno)
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530624{
625 volatile ccsr_fsl_pci_t *pci;
626 struct pci_region *r;
Peter Tysera72dbae2010-10-28 15:24:59 -0500627 pci_dev_t dev = PCI_BDF(busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800628 int pcie_cap_pos;
Peter Tysera72dbae2010-10-28 15:24:59 -0500629 u8 pcie_cap;
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530630
631 pci = (ccsr_fsl_pci_t *) pci_info->regs;
632
633 /* on non-PCIe controllers we don't have pme_msg_det so this code
634 * should do nothing since the read will return 0
635 */
636 if (in_be32(&pci->pme_msg_det)) {
637 out_be32(&pci->pme_msg_det, 0xffffffff);
638 debug (" with errors. Clearing. Now 0x%08x",
639 pci->pme_msg_det);
640 }
641
642 r = hose->regions + hose->region_count;
643
644 /* outbound memory */
645 pci_set_region(r++,
646 pci_info->mem_bus,
647 pci_info->mem_phys,
648 pci_info->mem_size,
649 PCI_REGION_MEM);
650
651 /* outbound io */
652 pci_set_region(r++,
653 pci_info->io_bus,
654 pci_info->io_phys,
655 pci_info->io_size,
656 PCI_REGION_IO);
657
658 hose->region_count = r - hose->regions;
659 hose->first_busno = busno;
660
Peter Tyser213ac732010-12-28 17:47:25 -0600661 fsl_pci_init(hose, pci_info);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530662
Ed Swarthout715d8f72009-11-02 09:05:49 -0600663 if (fsl_is_pci_agent(hose)) {
664 fsl_pci_config_unlock(hose);
665 hose->last_busno = hose->first_busno;
Liu Gangc8b28152013-05-07 16:30:46 +0800666#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000667 } else {
668 /* boot from PCIE --master releases slave's core 0 */
669 char *s = getenv("bootmaster");
670 char pcie[6];
671 sprintf(pcie, "PCIE%d", pci_info->pci_num);
672
673 if (s && (strcmp(s, pcie) == 0))
674 fsl_pcie_boot_master_release_slave(pci_info->pci_num);
675#endif
Ed Swarthout715d8f72009-11-02 09:05:49 -0600676 }
677
Zhao Qiang287df012013-10-12 13:46:33 +0800678 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
679 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500680 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser213ac732010-12-28 17:47:25 -0600681 "e" : "", pci_info->pci_num,
Peter Tyser8ca78f22010-10-29 17:59:24 -0500682 hose->first_busno, hose->last_busno);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530683 return(hose->last_busno + 1);
684}
685
Peter Tyser7a897952008-10-29 12:39:26 -0500686/* Enable inbound PCI config cycles for agent/endpoint interface */
687void fsl_pci_config_unlock(struct pci_controller *hose)
688{
689 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800690 int pcie_cap_pos;
Peter Tyser7a897952008-10-29 12:39:26 -0500691 u8 pcie_cap;
692 u16 pbfr;
693
Minghuan Lian505f3e62012-08-21 23:35:42 +0000694 if (!fsl_is_pci_agent(hose))
Peter Tyser7a897952008-10-29 12:39:26 -0500695 return;
696
Zhao Qiang287df012013-10-12 13:46:33 +0800697 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
698 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser7a897952008-10-29 12:39:26 -0500699 if (pcie_cap != 0x0) {
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800700 ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)hose->cfg_addr;
701 u32 block_rev = in_be32(&pci->block_rev1);
Peter Tyser7a897952008-10-29 12:39:26 -0500702 /* PCIe - set CFG_READY bit of Configuration Ready Register */
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800703 if (block_rev >= PEX_IP_BLK_REV_3_0)
704 setbits_be32(&pci->config, FSL_PCIE_V3_CFG_RDY);
705 else
706 pci_hose_write_config_byte(hose, dev,
707 FSL_PCIE_CFG_RDY, 0x1);
Peter Tyser7a897952008-10-29 12:39:26 -0500708 } else {
709 /* PCI - clear ACL bit of PBFR */
710 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
711 pbfr &= ~0x20;
712 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
713 }
714}
715
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600716#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denkd1a24f02011-02-02 22:36:10 +0100717 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600718int fsl_configure_pcie(struct fsl_pci_info *info,
719 struct pci_controller *hose,
720 const char *connected, int busno)
721{
722 int is_endpoint;
723
724 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
725 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser213ac732010-12-28 17:47:25 -0600726
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600727 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600728 printf("PCIe%u: %s", info->pci_num,
729 is_endpoint ? "Endpoint" : "Root Complex");
730 if (connected)
731 printf(" of %s", connected);
732 puts(", ");
733
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600734 return fsl_pci_init_port(info, hose, busno);
735}
736
737#if defined(CONFIG_FSL_CORENET)
York Sun9e758752012-10-08 07:44:19 +0000738#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
739 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1
740 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2
741 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3
742 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4
743#else
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600744 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
745 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
746 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
747 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
York Sun9e758752012-10-08 07:44:19 +0000748#endif
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600749 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
750#elif defined(CONFIG_MPC85xx)
751 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
752 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
753 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
754 #define _DEVDISR_PCIE4 0
755 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
756#elif defined(CONFIG_MPC86xx)
757 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
758 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
759 #define _DEVDISR_PCIE3 0
760 #define _DEVDISR_PCIE4 0
761 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
762 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
763#else
764#error "No defines for DEVDISR_PCIE"
765#endif
766
767/* Implement a dummy function for those platforms w/o SERDES */
768static const char *__board_serdes_name(enum srds_prtcl device)
769{
770 switch (device) {
771#ifdef CONFIG_SYS_PCIE1_NAME
772 case PCIE1:
773 return CONFIG_SYS_PCIE1_NAME;
774#endif
775#ifdef CONFIG_SYS_PCIE2_NAME
776 case PCIE2:
777 return CONFIG_SYS_PCIE2_NAME;
778#endif
779#ifdef CONFIG_SYS_PCIE3_NAME
780 case PCIE3:
781 return CONFIG_SYS_PCIE3_NAME;
782#endif
783#ifdef CONFIG_SYS_PCIE4_NAME
784 case PCIE4:
785 return CONFIG_SYS_PCIE4_NAME;
786#endif
787 default:
788 return NULL;
789 }
790
791 return NULL;
792}
793
794__attribute__((weak, alias("__board_serdes_name"))) const char *
795board_serdes_name(enum srds_prtcl device);
796
797static u32 devdisr_mask[] = {
798 _DEVDISR_PCIE1,
799 _DEVDISR_PCIE2,
800 _DEVDISR_PCIE3,
801 _DEVDISR_PCIE4,
802};
803
804int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
805 struct fsl_pci_info *pci_info)
806{
807 struct pci_controller *hose;
808 int num = dev - PCIE1;
809
810 hose = calloc(1, sizeof(struct pci_controller));
811 if (!hose)
812 return busno;
813
814 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
815 busno = fsl_configure_pcie(pci_info, hose,
816 board_serdes_name(dev), busno);
817 } else {
Peter Tyser213ac732010-12-28 17:47:25 -0600818 printf("PCIe%d: disabled\n", num + 1);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600819 }
820
821 return busno;
822}
823
824int fsl_pcie_init_board(int busno)
825{
826 struct fsl_pci_info pci_info;
827 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
York Sun9e758752012-10-08 07:44:19 +0000828 u32 devdisr;
829 u32 *addr;
830
831#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
832 addr = &gur->devdisr3;
833#else
834 addr = &gur->devdisr;
835#endif
836 devdisr = in_be32(addr);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600837
838#ifdef CONFIG_PCIE1
839 SET_STD_PCIE_INFO(pci_info, 1);
840 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
841#else
York Sun9e758752012-10-08 07:44:19 +0000842 setbits_be32(addr, _DEVDISR_PCIE1); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600843#endif
844
845#ifdef CONFIG_PCIE2
846 SET_STD_PCIE_INFO(pci_info, 2);
847 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
848#else
York Sun9e758752012-10-08 07:44:19 +0000849 setbits_be32(addr, _DEVDISR_PCIE2); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600850#endif
851
852#ifdef CONFIG_PCIE3
853 SET_STD_PCIE_INFO(pci_info, 3);
854 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
855#else
York Sun9e758752012-10-08 07:44:19 +0000856 setbits_be32(addr, _DEVDISR_PCIE3); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600857#endif
858
859#ifdef CONFIG_PCIE4
860 SET_STD_PCIE_INFO(pci_info, 4);
861 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
862#else
York Sun9e758752012-10-08 07:44:19 +0000863 setbits_be32(addr, _DEVDISR_PCIE4); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600864#endif
865
866 return busno;
867}
868#else
869int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
870 struct fsl_pci_info *pci_info)
871{
872 return busno;
873}
874
875int fsl_pcie_init_board(int busno)
876{
877 return busno;
878}
879#endif
880
Kumar Galaa2aab462008-10-23 00:01:06 -0500881#ifdef CONFIG_OF_BOARD_SETUP
882#include <libfdt.h>
883#include <fdt_support.h>
884
Kumar Gala6525d512010-07-08 22:37:44 -0500885void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600886 unsigned long ctrl_addr)
Kumar Galaa2aab462008-10-23 00:01:06 -0500887{
Kumar Gala6525d512010-07-08 22:37:44 -0500888 int off;
Kumar Gala5a85a302010-03-30 10:07:12 -0500889 u32 bus_range[2];
Kumar Gala6525d512010-07-08 22:37:44 -0500890 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600891 struct pci_controller *hose;
892
893 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Gala6525d512010-07-08 22:37:44 -0500894
895 /* convert ctrl_addr to true physical address */
896 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
897 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
898
899 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galaa2aab462008-10-23 00:01:06 -0500900
Kumar Gala5a85a302010-03-30 10:07:12 -0500901 if (off < 0)
902 return;
Kumar Galaa2aab462008-10-23 00:01:06 -0500903
Kumar Gala5a85a302010-03-30 10:07:12 -0500904 /* We assume a cfg_addr not being set means we didn't setup the controller */
905 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Gala6525d512010-07-08 22:37:44 -0500906 fdt_del_node(blob, off);
Kumar Gala5a85a302010-03-30 10:07:12 -0500907 } else {
Kumar Galaa2aab462008-10-23 00:01:06 -0500908 bus_range[0] = 0;
909 bus_range[1] = hose->last_busno - hose->first_busno;
910 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
911 fdt_pci_dma_ranges(blob, off, hose);
912 }
913}
914#endif