blob: b4c855668613938267f4f20ec8ac2786ec423aaa [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ed Swarthout63cec582007-08-02 14:09:49 -05002/*
Minghuan Lian505f3e62012-08-21 23:35:42 +00003 * Copyright 2007-2012 Freescale Semiconductor, Inc.
Ed Swarthout63cec582007-08-02 14:09:49 -05004 */
Ed Swarthout2e4d94f2007-07-27 01:50:45 -05005
Ed Swarthout63cec582007-08-02 14:09:49 -05006#include <common.h>
Kumar Galaa4aafcc2010-12-15 14:21:41 -06007#include <malloc.h>
8#include <asm/fsl_serdes.h>
Ed Swarthout63cec582007-08-02 14:09:49 -05009
Kumar Galab9a1fa92008-10-22 14:06:24 -050010DECLARE_GLOBAL_DATA_PTR;
11
Ed Swarthout63cec582007-08-02 14:09:49 -050012/*
13 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
14 *
15 * Initialize controller and call the common driver/pci pci_hose_scan to
16 * scan for bridges and devices.
17 *
18 * Hose fields which need to be pre-initialized by board specific code:
19 * regions[]
20 * first_busno
21 *
22 * Fields updated:
23 * last_busno
24 */
25
26#include <pci.h>
Kumar Galaad19e7a2009-08-05 07:59:35 -050027#include <asm/io.h>
Kumar Galac8514622009-04-02 13:22:48 -050028#include <asm/fsl_pci.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050029
Kumar Galab9a1fa92008-10-22 14:06:24 -050030#ifndef CONFIG_SYS_PCI_MEMORY_BUS
31#define CONFIG_SYS_PCI_MEMORY_BUS 0
32#endif
33
34#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
35#define CONFIG_SYS_PCI_MEMORY_PHYS 0
36#endif
37
38#if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
39#define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
40#endif
41
Kumar Galaad19e7a2009-08-05 07:59:35 -050042/* Setup one inbound ATMU window.
43 *
44 * We let the caller decide what the window size should be
45 */
46static void set_inbound_window(volatile pit_t *pi,
47 struct pci_region *r,
48 u64 size)
Kumar Galab9a1fa92008-10-22 14:06:24 -050049{
Kumar Galaad19e7a2009-08-05 07:59:35 -050050 u32 sz = (__ilog2_u64(size) - 1);
Chunhe Lanf1a96ec2014-05-07 10:50:20 +080051#ifdef CONFIG_SYS_FSL_ERRATUM_A005434
52 u32 flag = 0;
53#else
54 u32 flag = PIWAR_LOCAL;
55#endif
56
57 flag |= PIWAR_EN | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
Kumar Galaad19e7a2009-08-05 07:59:35 -050058
59 out_be32(&pi->pitar, r->phys_start >> 12);
60 out_be32(&pi->piwbar, r->bus_start >> 12);
61#ifdef CONFIG_SYS_PCI_64BIT
62 out_be32(&pi->piwbear, r->bus_start >> 44);
63#else
64 out_be32(&pi->piwbear, 0);
65#endif
66 if (r->flags & PCI_REGION_PREFETCH)
67 flag |= PIWAR_PF;
68 out_be32(&pi->piwar, flag | sz);
69}
70
Kumar Galaee536502009-11-04 13:00:55 -060071int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
72{
73 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
74
John Schmoller96d61602010-10-22 00:20:23 -050075 /* Reset hose to make sure its in a clean state */
76 memset(hose, 0, sizeof(struct pci_controller));
77
Kumar Galaee536502009-11-04 13:00:55 -060078 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
79
80 return fsl_is_pci_agent(hose);
81}
82
Kumar Galaad19e7a2009-08-05 07:59:35 -050083static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
84 u64 out_lo, u8 pcie_cap,
85 volatile pit_t *pi)
86{
87 struct pci_region *r = hose->regions + hose->region_count;
88 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Galab9a1fa92008-10-22 14:06:24 -050089
90 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
91 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaad19e7a2009-08-05 07:59:35 -050092 pci_size_t pci_sz;
Kumar Galab9a1fa92008-10-22 14:06:24 -050093
Kumar Galaad19e7a2009-08-05 07:59:35 -050094 /* we have no space available for inbound memory mapping */
95 if (bus_start > out_lo) {
96 printf ("no space for inbound mapping of memory\n");
97 return 0;
98 }
Kumar Galab9a1fa92008-10-22 14:06:24 -050099
Kumar Galaad19e7a2009-08-05 07:59:35 -0500100 /* limit size */
101 if ((bus_start + sz) > out_lo) {
102 sz = out_lo - bus_start;
103 debug ("limiting size to %llx\n", sz);
104 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500105
106 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500107 /*
108 * we can overlap inbound/outbound windows on PCI-E since RX & TX
109 * links a separate
110 */
111 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
112 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
113 (u64)bus_start, (u64)phys_start, (u64)sz);
114 pci_set_region(r, bus_start, phys_start, sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600115 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500116 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500117
118 /* if we aren't an exact power of two match, pci_sz is smaller
119 * round it up to the next power of two. We report the actual
120 * size to pci region tracking.
121 */
122 if (pci_sz != sz)
123 sz = 2ull << __ilog2_u64(sz);
124
125 set_inbound_window(pi--, r++, sz);
126 sz = 0; /* make sure we dont set the R2 window */
127 } else {
128 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
129 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
130 pci_set_region(r, bus_start, phys_start, pci_sz,
131 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
132 PCI_REGION_PREFETCH);
133 set_inbound_window(pi--, r++, pci_sz);
134
Kumar Galab9a1fa92008-10-22 14:06:24 -0500135 sz -= pci_sz;
136 bus_start += pci_sz;
137 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500138
139 pci_sz = 1ull << __ilog2_u64(sz);
140 if (sz) {
141 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
142 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
143 pci_set_region(r, bus_start, phys_start, pci_sz,
144 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
145 PCI_REGION_PREFETCH);
146 set_inbound_window(pi--, r++, pci_sz);
147 sz -= pci_sz;
148 bus_start += pci_sz;
149 phys_start += pci_sz;
150 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500151 }
152
153#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Brucecd425162008-10-27 16:09:42 -0500154 /*
155 * On 64-bit capable systems, set up a mapping for all of DRAM
156 * in high pci address space.
157 */
Kumar Galab9a1fa92008-10-22 14:06:24 -0500158 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
159 /* round up to the next largest power of two */
160 if (gd->ram_size > pci_sz)
Becky Brucecd425162008-10-27 16:09:42 -0500161 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500162 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Brucecd425162008-10-27 16:09:42 -0500163 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500164 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
165 (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500166 pci_set_region(r,
Becky Brucecd425162008-10-27 16:09:42 -0500167 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500168 CONFIG_SYS_PCI_MEMORY_PHYS,
169 pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600170 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500171 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500172 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500173#else
174 pci_sz = 1ull << __ilog2_u64(sz);
175 if (sz) {
176 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
177 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500178 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600179 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500180 PCI_REGION_PREFETCH);
181 sz -= pci_sz;
182 bus_start += pci_sz;
183 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500184 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500185 }
186#endif
187
Kumar Gala4c253fd2008-12-09 10:27:33 -0600188#ifdef CONFIG_PHYS_64BIT
Kumar Galab9a1fa92008-10-22 14:06:24 -0500189 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
190 printf("Was not able to map all of memory via "
191 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4c253fd2008-12-09 10:27:33 -0600192#endif
Kumar Galab9a1fa92008-10-22 14:06:24 -0500193
Kumar Galaad19e7a2009-08-05 07:59:35 -0500194 hose->region_count = r - hose->regions;
195
196 return 1;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500197}
198
Liu Gangc8b28152013-05-07 16:30:46 +0800199#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000200static void fsl_pcie_boot_master(pit_t *pi)
201{
202 /* configure inbound window for slave's u-boot image */
203 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
204 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
205 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
206 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
207 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
208 struct pci_region r_inbound;
209 u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE)
210 - 1;
211 pci_set_region(&r_inbound,
212 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
213 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
214 sz_inbound,
215 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
216
217 set_inbound_window(pi--, &r_inbound,
218 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
219
220 /* configure inbound window for slave's u-boot image */
221 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
222 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
223 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
224 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
225 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
226 pci_set_region(&r_inbound,
227 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
228 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
229 sz_inbound,
230 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
231
232 set_inbound_window(pi--, &r_inbound,
233 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
234
235 /* configure inbound window for slave's ucode and ENV */
236 debug("PCIEBOOT - MASTER: Inbound window for slave's "
237 "ucode and ENV; "
238 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
239 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
240 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
241 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
242 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE)
243 - 1;
244 pci_set_region(&r_inbound,
245 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
246 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
247 sz_inbound,
248 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
249
250 set_inbound_window(pi--, &r_inbound,
251 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
252}
253
254static void fsl_pcie_boot_master_release_slave(int port)
255{
256 unsigned long release_addr;
257
258 /* now release slave's core 0 */
259 switch (port) {
260 case 1:
261 release_addr = CONFIG_SYS_PCIE1_MEM_VIRT
262 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
263 break;
York Suna1e43182012-10-08 07:44:04 +0000264#ifdef CONFIG_SYS_PCIE2_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000265 case 2:
266 release_addr = CONFIG_SYS_PCIE2_MEM_VIRT
267 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
268 break;
York Suna1e43182012-10-08 07:44:04 +0000269#endif
270#ifdef CONFIG_SYS_PCIE3_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000271 case 3:
272 release_addr = CONFIG_SYS_PCIE3_MEM_VIRT
273 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
274 break;
York Suna1e43182012-10-08 07:44:04 +0000275#endif
Liu Gangb5f7c872012-08-09 05:10:02 +0000276 default:
277 release_addr = 0;
278 break;
279 }
280 if (release_addr != 0) {
281 out_be32((void *)release_addr,
282 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK);
283 debug("PCIEBOOT - MASTER: "
284 "Release slave successfully! Now the slave should start up!\n");
285 } else {
286 debug("PCIEBOOT - MASTER: "
287 "Release slave failed!\n");
288 }
289}
290#endif
291
Peter Tyser213ac732010-12-28 17:47:25 -0600292void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout63cec582007-08-02 14:09:49 -0500293{
Peter Tyser213ac732010-12-28 17:47:25 -0600294 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
295 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout63cec582007-08-02 14:09:49 -0500296 u16 temp16;
297 u32 temp32;
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530298 u32 block_rev;
Kumar Gala8295b942009-08-05 07:49:27 -0500299 int enabled, r, inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500300 u16 ltssm;
Kumar Gala8295b942009-08-05 07:49:27 -0500301 u8 temp8, pcie_cap;
Zhao Qiang287df012013-10-12 13:46:33 +0800302 int pcie_cap_pos;
303 int pci_dcr;
304 int pci_dsr;
305 int pci_lsr;
306
307#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
308 int pci_lcr;
309#endif
310
Kumar Galafb3143b2009-08-03 20:44:55 -0500311 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galacb151aa2009-08-03 21:02:02 -0500312 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Gala8295b942009-08-05 07:49:27 -0500313 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout63cec582007-08-02 14:09:49 -0500314
315 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200316 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530317 volatile pit_t *pi;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500318
319 u64 out_hi = 0, out_lo = -1ULL;
320 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout63cec582007-08-02 14:09:49 -0500321
Kumar Galafb3143b2009-08-03 20:44:55 -0500322 pci_setup_indirect(hose, cfg_addr, cfg_data);
323
Joakim Tjernlund6ce83fb2017-09-12 19:56:41 +0200324#ifdef PEX_CCB_DIV
325 /* Configure the PCIE controller core clock ratio */
326 pci_hose_write_config_dword(hose, dev, 0x440,
327 ((gd->bus_clk / 1000000) *
328 (16 / PEX_CCB_DIV)) / 333);
329#endif
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530330 block_rev = in_be32(&pci->block_rev1);
331 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
332 pi = &pci->pit[2]; /* 0xDC0 */
333 } else {
334 pi = &pci->pit[3]; /* 0xDE0 */
335 }
336
Kumar Galaad19e7a2009-08-05 07:59:35 -0500337 /* Handle setup of outbound windows first */
338 for (r = 0; r < hose->region_count; r++) {
339 unsigned long flags = hose->regions[r].flags;
Kumar Gala612ea012008-10-21 10:13:14 -0500340 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500341
342 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
343 if (flags != PCI_REGION_SYS_MEMORY) {
344 u64 start = hose->regions[r].bus_start;
345 u64 end = start + hose->regions[r].size;
346
347 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
348 out_be32(&po->potar, start >> 12);
Kumar Gala612ea012008-10-21 10:13:14 -0500349#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaad19e7a2009-08-05 07:59:35 -0500350 out_be32(&po->potear, start >> 44);
Kumar Gala612ea012008-10-21 10:13:14 -0500351#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500352 out_be32(&po->potear, 0);
Kumar Gala612ea012008-10-21 10:13:14 -0500353#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500354 if (hose->regions[r].flags & PCI_REGION_IO) {
355 out_be32(&po->powar, POWAR_EN | sz |
356 POWAR_IO_READ | POWAR_IO_WRITE);
357 } else {
358 out_be32(&po->powar, POWAR_EN | sz |
359 POWAR_MEM_READ | POWAR_MEM_WRITE);
360 out_lo = min(start, out_lo);
361 out_hi = max(end, out_hi);
362 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500363 po++;
364 }
365 }
Kumar Galaad19e7a2009-08-05 07:59:35 -0500366 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
367
368 /* setup PCSRBAR/PEXCSRBAR */
369 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
370 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
371 pcicsrbar_sz = ~pcicsrbar_sz + 1;
372
373 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
374 (out_lo > 0x100000000ull))
375 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
376 else
377 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
378 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
379
380 out_lo = min(out_lo, (u64)pcicsrbar);
381
382 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
383
384 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
385 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
386 hose->region_count++;
Ed Swarthout63cec582007-08-02 14:09:49 -0500387
Kumar Gala8295b942009-08-05 07:49:27 -0500388 /* see if we are a PCIe or PCI controller */
Zhao Qiang287df012013-10-12 13:46:33 +0800389 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
390 pci_dcr = pcie_cap_pos + 0x08;
391 pci_dsr = pcie_cap_pos + 0x0a;
392 pci_lsr = pcie_cap_pos + 0x12;
393
394 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Kumar Gala8295b942009-08-05 07:49:27 -0500395
Liu Gangc8b28152013-05-07 16:30:46 +0800396#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000397 /* boot from PCIE --master */
Simon Glass00caae62017-08-03 12:22:12 -0600398 char *s = env_get("bootmaster");
Liu Gangb5f7c872012-08-09 05:10:02 +0000399 char pcie[6];
400 sprintf(pcie, "PCIE%d", pci_info->pci_num);
401
402 if (s && (strcmp(s, pcie) == 0)) {
403 debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n",
404 pci_info->pci_num);
405 fsl_pcie_boot_master((pit_t *)pi);
406 } else {
407 /* inbound */
408 inbound = fsl_pci_setup_inbound_windows(hose,
409 out_lo, pcie_cap, pi);
410 }
411#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500412 /* inbound */
413 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
Liu Gangb5f7c872012-08-09 05:10:02 +0000414#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500415
416 for (r = 0; r < hose->region_count; r++)
Marek Vasutd015df82011-10-21 14:17:21 +0000417 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500418 (u64)hose->regions[r].phys_start,
Marek Vasutd015df82011-10-21 14:17:21 +0000419 (u64)hose->regions[r].bus_start,
420 (u64)hose->regions[r].size,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500421 hose->regions[r].flags);
422
Ed Swarthout63cec582007-08-02 14:09:49 -0500423 pci_register_hose(hose);
424 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
425 hose->current_busno = hose->first_busno;
426
Kumar Galaad19e7a2009-08-05 07:59:35 -0500427 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williams16263082011-07-22 04:01:30 +0000428 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500429 * - Master abort (pci)
430 * - Master PERR (pci)
431 * - ICCA (PCIe)
432 */
Zhao Qiang287df012013-10-12 13:46:33 +0800433 pci_hose_read_config_dword(hose, dev, pci_dcr, &temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500434 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
Zhao Qiang287df012013-10-12 13:46:33 +0800435 pci_hose_write_config_dword(hose, dev, pci_dcr, temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500436
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000437#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
Zhao Qiang287df012013-10-12 13:46:33 +0800438 pci_lcr = pcie_cap_pos + 0x10;
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000439 temp32 = 0;
Zhao Qiang287df012013-10-12 13:46:33 +0800440 pci_hose_read_config_dword(hose, dev, pci_lcr, &temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000441 temp32 &= ~0x03; /* Disable ASPM */
Zhao Qiang287df012013-10-12 13:46:33 +0800442 pci_hose_write_config_dword(hose, dev, pci_lcr, temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000443 udelay(1);
444#endif
Kumar Gala8295b942009-08-05 07:49:27 -0500445 if (pcie_cap == PCI_CAP_ID_EXP) {
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800446 if (block_rev >= PEX_IP_BLK_REV_3_0) {
447#define PEX_CSR0_LTSSM_MASK 0xFC
448#define PEX_CSR0_LTSSM_SHIFT 2
449 ltssm = (in_be32(&pci->pex_csr0)
450 & PEX_CSR0_LTSSM_MASK) >> PEX_CSR0_LTSSM_SHIFT;
451 enabled = (ltssm == 0x11) ? 1 : 0;
Zhao Qiang5066e622015-03-26 16:13:09 +0800452#ifdef CONFIG_FSL_PCIE_RESET
453 int i;
454 /* assert PCIe reset */
455 setbits_be32(&pci->pdb_stat, 0x08000000);
456 (void) in_be32(&pci->pdb_stat);
457 udelay(1000);
458 /* clear PCIe reset */
459 clrbits_be32(&pci->pdb_stat, 0x08000000);
460 asm("sync;isync");
461 for (i = 0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
462 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
463 &ltssm);
464 udelay(1000);
465 }
466#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800467 } else {
468 /* pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm); */
469 /* enabled = ltssm >= PCI_LTSSM_L0; */
Ed Swarthout63cec582007-08-02 14:09:49 -0500470 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
471 enabled = ltssm >= PCI_LTSSM_L0;
472
Kumar Gala8ff3de62007-12-07 12:17:34 -0600473#ifdef CONFIG_FSL_PCIE_RESET
474 if (ltssm == 1) {
475 int i;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500476 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
477 /* assert PCIe reset */
478 setbits_be32(&pci->pdb_stat, 0x08000000);
479 (void) in_be32(&pci->pdb_stat);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600480 udelay(100);
Marek Vasutd015df82011-10-21 14:17:21 +0000481 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaad19e7a2009-08-05 07:59:35 -0500482 &pci->pdb_stat, in_be32(&pci->pdb_stat));
483 /* clear PCIe reset */
484 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600485 asm("sync;isync");
486 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
487 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
488 &ltssm);
489 udelay(1000);
490 debug("....PCIe link error. "
491 "LTSSM=0x%02x.\n", ltssm);
492 }
493 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500494
495 /* we need to re-write the bar0 since a reset will
496 * clear it
497 */
498 pci_hose_write_config_dword(hose, dev,
499 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600500 }
501#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800502 }
Kumar Gala8ff3de62007-12-07 12:17:34 -0600503
Yuanquan Chenc0a4e6b2012-11-26 23:49:45 +0000504#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
505 if (enabled == 0) {
506 serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
507 temp32 = in_be32(&srds_regs->srdspccr0);
508
509 if ((temp32 >> 28) == 3) {
510 int i;
511
512 out_be32(&srds_regs->srdspccr0, 2 << 28);
513 setbits_be32(&pci->pdb_stat, 0x08000000);
514 in_be32(&pci->pdb_stat);
515 udelay(100);
516 clrbits_be32(&pci->pdb_stat, 0x08000000);
517 asm("sync;isync");
518 for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
519 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
520 udelay(1000);
521 }
522 enabled = ltssm >= PCI_LTSSM_L0;
523 }
524 }
525#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500526 if (!enabled) {
Zang Roy-R6191132514d22014-06-12 14:49:23 -0500527 /* Let the user know there's no PCIe link for root
528 * complex. for endpoint, the link may not setup, so
529 * print undetermined.
530 */
531 if (fsl_is_pci_agent(hose))
532 printf("undetermined, regs @ 0x%lx\n", pci_info->regs);
533 else
534 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout63cec582007-08-02 14:09:49 -0500535 hose->last_busno = hose->first_busno;
536 return;
537 }
538
Kumar Galaad19e7a2009-08-05 07:59:35 -0500539 out_be32(&pci->pme_msg_det, 0xffffffff);
540 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser213ac732010-12-28 17:47:25 -0600541
542 /* Print the negotiated PCIe link width */
Zhao Qiang287df012013-10-12 13:46:33 +0800543 pci_hose_read_config_word(hose, dev, pci_lsr, &temp16);
Prabhakar Kushwahaaceea942014-01-25 12:53:32 +0530544 printf("x%d gen%d, regs @ 0x%lx\n", (temp16 & 0x3f0) >> 4,
545 (temp16 & 0xf), pci_info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600546
Ed Swarthout63cec582007-08-02 14:09:49 -0500547 hose->current_busno++; /* Start scan with secondary */
548 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout63cec582007-08-02 14:09:49 -0500549 }
550
Tony O'Brien09bfd962016-12-02 09:22:34 +1300551#ifdef CONFIG_SYS_FSL_ERRATUM_A007815
552 /* The Read-Only Write Enable bit defaults to 1 instead of 0.
553 * Set to 0 to protect the read-only registers.
554 */
555 clrbits_be32(&pci->dbi_ro_wr_en, 0x01);
556#endif
557
Ed Swarthout16e23c32007-08-20 23:55:33 -0500558 /* Use generic setup_device to initialize standard pci regs,
559 * but do not allocate any windows since any BAR found (such
560 * as PCSRBAR) is not in this cpu's memory space.
561 */
Ed Swarthout16e23c32007-08-20 23:55:33 -0500562 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500563 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500564
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500565 if (inbound) {
566 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
567 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
568 temp16 | PCI_COMMAND_MEMORY);
569 }
570
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500571#ifndef CONFIG_PCI_NOSCAN
Minghuan Lian505f3e62012-08-21 23:35:42 +0000572 if (!fsl_is_pci_agent(hose)) {
Peter Tyser37d03fc2010-10-29 17:59:26 -0500573 debug(" Scanning PCI bus %02x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500574 hose->current_busno);
575 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
576 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500577 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500578 hose->current_busno, temp8);
579 hose->last_busno = hose->current_busno;
580 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500581
Kumar Gala8295b942009-08-05 07:49:27 -0500582 /* if we are PCIe - update limit regs and subordinate busno
583 * for the virtual P2P bridge
584 */
585 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500586 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
587 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500588#else
589 hose->last_busno = hose->current_busno;
590#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500591
592 /* Clear all error indications */
Kumar Gala8295b942009-08-05 07:49:27 -0500593 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaad19e7a2009-08-05 07:59:35 -0500594 out_be32(&pci->pme_msg_det, 0xffffffff);
595 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500596
Zhao Qiang287df012013-10-12 13:46:33 +0800597 pci_hose_read_config_word(hose, dev, pci_dsr, &temp16);
Ed Swarthout63cec582007-08-02 14:09:49 -0500598 if (temp16) {
Zhao Qiang287df012013-10-12 13:46:33 +0800599 pci_hose_write_config_word(hose, dev, pci_dsr, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500600 }
601
602 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
603 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500604 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
605 }
606}
Kumar Galaa2aab462008-10-23 00:01:06 -0500607
Ed Swarthout715d8f72009-11-02 09:05:49 -0600608int fsl_is_pci_agent(struct pci_controller *hose)
609{
Zhao Qiang287df012013-10-12 13:46:33 +0800610 int pcie_cap_pos;
Minghuan Lian505f3e62012-08-21 23:35:42 +0000611 u8 pcie_cap;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600612 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
613
Zhao Qiang287df012013-10-12 13:46:33 +0800614 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
615 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Minghuan Lian505f3e62012-08-21 23:35:42 +0000616 if (pcie_cap == PCI_CAP_ID_EXP) {
617 u8 header_type;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600618
Minghuan Lian505f3e62012-08-21 23:35:42 +0000619 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE,
620 &header_type);
621 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL;
622 } else {
623 u8 prog_if;
624
625 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800626 /* Programming Interface (PCI_CLASS_PROG)
627 * 0 == pci host or pcie root-complex,
628 * 1 == pci agent or pcie end-point
629 */
Minghuan Lian505f3e62012-08-21 23:35:42 +0000630 return (prog_if == FSL_PROG_IF_AGENT);
631 }
Ed Swarthout715d8f72009-11-02 09:05:49 -0600632}
633
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530634int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Gala01471d52009-11-04 01:29:04 -0600635 struct pci_controller *hose, int busno)
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530636{
637 volatile ccsr_fsl_pci_t *pci;
638 struct pci_region *r;
Peter Tysera72dbae2010-10-28 15:24:59 -0500639 pci_dev_t dev = PCI_BDF(busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800640 int pcie_cap_pos;
Peter Tysera72dbae2010-10-28 15:24:59 -0500641 u8 pcie_cap;
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530642
643 pci = (ccsr_fsl_pci_t *) pci_info->regs;
644
645 /* on non-PCIe controllers we don't have pme_msg_det so this code
646 * should do nothing since the read will return 0
647 */
648 if (in_be32(&pci->pme_msg_det)) {
649 out_be32(&pci->pme_msg_det, 0xffffffff);
650 debug (" with errors. Clearing. Now 0x%08x",
651 pci->pme_msg_det);
652 }
653
654 r = hose->regions + hose->region_count;
655
656 /* outbound memory */
657 pci_set_region(r++,
658 pci_info->mem_bus,
659 pci_info->mem_phys,
660 pci_info->mem_size,
661 PCI_REGION_MEM);
662
663 /* outbound io */
664 pci_set_region(r++,
665 pci_info->io_bus,
666 pci_info->io_phys,
667 pci_info->io_size,
668 PCI_REGION_IO);
669
670 hose->region_count = r - hose->regions;
671 hose->first_busno = busno;
672
Peter Tyser213ac732010-12-28 17:47:25 -0600673 fsl_pci_init(hose, pci_info);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530674
Ed Swarthout715d8f72009-11-02 09:05:49 -0600675 if (fsl_is_pci_agent(hose)) {
676 fsl_pci_config_unlock(hose);
677 hose->last_busno = hose->first_busno;
Liu Gangc8b28152013-05-07 16:30:46 +0800678#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000679 } else {
680 /* boot from PCIE --master releases slave's core 0 */
Simon Glass00caae62017-08-03 12:22:12 -0600681 char *s = env_get("bootmaster");
Liu Gangb5f7c872012-08-09 05:10:02 +0000682 char pcie[6];
683 sprintf(pcie, "PCIE%d", pci_info->pci_num);
684
685 if (s && (strcmp(s, pcie) == 0))
686 fsl_pcie_boot_master_release_slave(pci_info->pci_num);
687#endif
Ed Swarthout715d8f72009-11-02 09:05:49 -0600688 }
689
Zhao Qiang287df012013-10-12 13:46:33 +0800690 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
691 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500692 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser213ac732010-12-28 17:47:25 -0600693 "e" : "", pci_info->pci_num,
Peter Tyser8ca78f22010-10-29 17:59:24 -0500694 hose->first_busno, hose->last_busno);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530695 return(hose->last_busno + 1);
696}
697
Peter Tyser7a897952008-10-29 12:39:26 -0500698/* Enable inbound PCI config cycles for agent/endpoint interface */
699void fsl_pci_config_unlock(struct pci_controller *hose)
700{
701 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800702 int pcie_cap_pos;
Peter Tyser7a897952008-10-29 12:39:26 -0500703 u8 pcie_cap;
704 u16 pbfr;
705
Minghuan Lian505f3e62012-08-21 23:35:42 +0000706 if (!fsl_is_pci_agent(hose))
Peter Tyser7a897952008-10-29 12:39:26 -0500707 return;
708
Zhao Qiang287df012013-10-12 13:46:33 +0800709 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
710 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser7a897952008-10-29 12:39:26 -0500711 if (pcie_cap != 0x0) {
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800712 ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)hose->cfg_addr;
713 u32 block_rev = in_be32(&pci->block_rev1);
Peter Tyser7a897952008-10-29 12:39:26 -0500714 /* PCIe - set CFG_READY bit of Configuration Ready Register */
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800715 if (block_rev >= PEX_IP_BLK_REV_3_0)
716 setbits_be32(&pci->config, FSL_PCIE_V3_CFG_RDY);
717 else
718 pci_hose_write_config_byte(hose, dev,
719 FSL_PCIE_CFG_RDY, 0x1);
Peter Tyser7a897952008-10-29 12:39:26 -0500720 } else {
721 /* PCI - clear ACL bit of PBFR */
722 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
723 pbfr &= ~0x20;
724 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
725 }
726}
727
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600728#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denkd1a24f02011-02-02 22:36:10 +0100729 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600730int fsl_configure_pcie(struct fsl_pci_info *info,
731 struct pci_controller *hose,
732 const char *connected, int busno)
733{
734 int is_endpoint;
735
736 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
737 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser213ac732010-12-28 17:47:25 -0600738
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600739 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600740 printf("PCIe%u: %s", info->pci_num,
741 is_endpoint ? "Endpoint" : "Root Complex");
742 if (connected)
743 printf(" of %s", connected);
744 puts(", ");
745
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600746 return fsl_pci_init_port(info, hose, busno);
747}
748
749#if defined(CONFIG_FSL_CORENET)
York Sun9e758752012-10-08 07:44:19 +0000750#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
751 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1
752 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2
753 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3
754 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4
755#else
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600756 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
757 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
758 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
759 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
York Sun9e758752012-10-08 07:44:19 +0000760#endif
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600761 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
762#elif defined(CONFIG_MPC85xx)
763 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
764 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
765 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
766 #define _DEVDISR_PCIE4 0
767 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
768#elif defined(CONFIG_MPC86xx)
769 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
770 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
771 #define _DEVDISR_PCIE3 0
772 #define _DEVDISR_PCIE4 0
773 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
774 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
775#else
776#error "No defines for DEVDISR_PCIE"
777#endif
778
779/* Implement a dummy function for those platforms w/o SERDES */
780static const char *__board_serdes_name(enum srds_prtcl device)
781{
782 switch (device) {
783#ifdef CONFIG_SYS_PCIE1_NAME
784 case PCIE1:
785 return CONFIG_SYS_PCIE1_NAME;
786#endif
787#ifdef CONFIG_SYS_PCIE2_NAME
788 case PCIE2:
789 return CONFIG_SYS_PCIE2_NAME;
790#endif
791#ifdef CONFIG_SYS_PCIE3_NAME
792 case PCIE3:
793 return CONFIG_SYS_PCIE3_NAME;
794#endif
795#ifdef CONFIG_SYS_PCIE4_NAME
796 case PCIE4:
797 return CONFIG_SYS_PCIE4_NAME;
798#endif
799 default:
800 return NULL;
801 }
802
803 return NULL;
804}
805
806__attribute__((weak, alias("__board_serdes_name"))) const char *
807board_serdes_name(enum srds_prtcl device);
808
809static u32 devdisr_mask[] = {
810 _DEVDISR_PCIE1,
811 _DEVDISR_PCIE2,
812 _DEVDISR_PCIE3,
813 _DEVDISR_PCIE4,
814};
815
816int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
817 struct fsl_pci_info *pci_info)
818{
819 struct pci_controller *hose;
820 int num = dev - PCIE1;
821
822 hose = calloc(1, sizeof(struct pci_controller));
823 if (!hose)
824 return busno;
825
826 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
827 busno = fsl_configure_pcie(pci_info, hose,
828 board_serdes_name(dev), busno);
829 } else {
Peter Tyser213ac732010-12-28 17:47:25 -0600830 printf("PCIe%d: disabled\n", num + 1);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600831 }
832
833 return busno;
834}
835
836int fsl_pcie_init_board(int busno)
837{
838 struct fsl_pci_info pci_info;
839 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
York Sun9e758752012-10-08 07:44:19 +0000840 u32 devdisr;
841 u32 *addr;
842
843#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
844 addr = &gur->devdisr3;
845#else
846 addr = &gur->devdisr;
847#endif
848 devdisr = in_be32(addr);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600849
850#ifdef CONFIG_PCIE1
851 SET_STD_PCIE_INFO(pci_info, 1);
852 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
853#else
York Sun9e758752012-10-08 07:44:19 +0000854 setbits_be32(addr, _DEVDISR_PCIE1); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600855#endif
856
857#ifdef CONFIG_PCIE2
858 SET_STD_PCIE_INFO(pci_info, 2);
859 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
860#else
York Sun9e758752012-10-08 07:44:19 +0000861 setbits_be32(addr, _DEVDISR_PCIE2); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600862#endif
863
864#ifdef CONFIG_PCIE3
865 SET_STD_PCIE_INFO(pci_info, 3);
866 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
867#else
York Sun9e758752012-10-08 07:44:19 +0000868 setbits_be32(addr, _DEVDISR_PCIE3); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600869#endif
870
871#ifdef CONFIG_PCIE4
872 SET_STD_PCIE_INFO(pci_info, 4);
873 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
874#else
York Sun9e758752012-10-08 07:44:19 +0000875 setbits_be32(addr, _DEVDISR_PCIE4); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600876#endif
877
878 return busno;
879}
880#else
881int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
882 struct fsl_pci_info *pci_info)
883{
884 return busno;
885}
886
887int fsl_pcie_init_board(int busno)
888{
889 return busno;
890}
891#endif
892
Kumar Galaa2aab462008-10-23 00:01:06 -0500893#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamadab08c8c42018-03-05 01:20:11 +0900894#include <linux/libfdt.h>
Kumar Galaa2aab462008-10-23 00:01:06 -0500895#include <fdt_support.h>
896
Kumar Gala6525d512010-07-08 22:37:44 -0500897void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600898 unsigned long ctrl_addr)
Kumar Galaa2aab462008-10-23 00:01:06 -0500899{
Kumar Gala6525d512010-07-08 22:37:44 -0500900 int off;
Kumar Gala5a85a302010-03-30 10:07:12 -0500901 u32 bus_range[2];
Kumar Gala6525d512010-07-08 22:37:44 -0500902 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600903 struct pci_controller *hose;
904
905 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Gala6525d512010-07-08 22:37:44 -0500906
907 /* convert ctrl_addr to true physical address */
908 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
909 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
910
911 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galaa2aab462008-10-23 00:01:06 -0500912
Kumar Gala5a85a302010-03-30 10:07:12 -0500913 if (off < 0)
914 return;
Kumar Galaa2aab462008-10-23 00:01:06 -0500915
Kumar Gala5a85a302010-03-30 10:07:12 -0500916 /* We assume a cfg_addr not being set means we didn't setup the controller */
917 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Gala6525d512010-07-08 22:37:44 -0500918 fdt_del_node(blob, off);
Kumar Gala5a85a302010-03-30 10:07:12 -0500919 } else {
Kumar Galaa2aab462008-10-23 00:01:06 -0500920 bus_range[0] = 0;
921 bus_range[1] = hose->last_busno - hose->first_busno;
922 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
923 fdt_pci_dma_ranges(blob, off, hose);
924 }
925}
926#endif