blob: fc3327ec539cb51c717e5033cde1c2e0be3760ad [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>
Simon Glass7b51b572019-08-01 09:46:52 -06007#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -06008#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Kumar Galaa4aafcc2010-12-15 14:21:41 -060010#include <malloc.h>
11#include <asm/fsl_serdes.h>
Simon Glass401d1c42020-10-30 21:38:53 -060012#include <asm/global_data.h>
Simon Glassc05ed002020-05-10 11:40:11 -060013#include <linux/delay.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050014
Kumar Galab9a1fa92008-10-22 14:06:24 -050015DECLARE_GLOBAL_DATA_PTR;
16
Ed Swarthout63cec582007-08-02 14:09:49 -050017/*
18 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
19 *
20 * Initialize controller and call the common driver/pci pci_hose_scan to
21 * scan for bridges and devices.
22 *
23 * Hose fields which need to be pre-initialized by board specific code:
24 * regions[]
25 * first_busno
26 *
27 * Fields updated:
28 * last_busno
29 */
30
31#include <pci.h>
Kumar Galaad19e7a2009-08-05 07:59:35 -050032#include <asm/io.h>
Kumar Galac8514622009-04-02 13:22:48 -050033#include <asm/fsl_pci.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050034
Bin Meng7365a032021-02-25 17:22:22 +080035#define MAX_PCI_REGIONS 7
36
Kumar Galab9a1fa92008-10-22 14:06:24 -050037#ifndef CONFIG_SYS_PCI_MEMORY_BUS
38#define CONFIG_SYS_PCI_MEMORY_BUS 0
39#endif
40
41#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
42#define CONFIG_SYS_PCI_MEMORY_PHYS 0
43#endif
44
45#if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
46#define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
47#endif
48
Kumar Galaad19e7a2009-08-05 07:59:35 -050049/* Setup one inbound ATMU window.
50 *
51 * We let the caller decide what the window size should be
52 */
53static void set_inbound_window(volatile pit_t *pi,
54 struct pci_region *r,
55 u64 size)
Kumar Galab9a1fa92008-10-22 14:06:24 -050056{
Kumar Galaad19e7a2009-08-05 07:59:35 -050057 u32 sz = (__ilog2_u64(size) - 1);
Chunhe Lanf1a96ec2014-05-07 10:50:20 +080058#ifdef CONFIG_SYS_FSL_ERRATUM_A005434
59 u32 flag = 0;
60#else
61 u32 flag = PIWAR_LOCAL;
62#endif
63
64 flag |= PIWAR_EN | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
Kumar Galaad19e7a2009-08-05 07:59:35 -050065
66 out_be32(&pi->pitar, r->phys_start >> 12);
67 out_be32(&pi->piwbar, r->bus_start >> 12);
68#ifdef CONFIG_SYS_PCI_64BIT
69 out_be32(&pi->piwbear, r->bus_start >> 44);
70#else
71 out_be32(&pi->piwbear, 0);
72#endif
73 if (r->flags & PCI_REGION_PREFETCH)
74 flag |= PIWAR_PF;
75 out_be32(&pi->piwar, flag | sz);
76}
77
Kumar Galaee536502009-11-04 13:00:55 -060078int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
79{
80 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
81
John Schmoller96d61602010-10-22 00:20:23 -050082 /* Reset hose to make sure its in a clean state */
83 memset(hose, 0, sizeof(struct pci_controller));
84
Bin Meng7365a032021-02-25 17:22:22 +080085 hose->regions = (struct pci_region *)
86 calloc(1, MAX_PCI_REGIONS * sizeof(struct pci_region));
87
Kumar Galaee536502009-11-04 13:00:55 -060088 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
89
90 return fsl_is_pci_agent(hose);
91}
92
Kumar Galaad19e7a2009-08-05 07:59:35 -050093static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
94 u64 out_lo, u8 pcie_cap,
95 volatile pit_t *pi)
96{
97 struct pci_region *r = hose->regions + hose->region_count;
98 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Galab9a1fa92008-10-22 14:06:24 -050099
100 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
101 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500102 pci_size_t pci_sz;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500103
Kumar Galaad19e7a2009-08-05 07:59:35 -0500104 /* we have no space available for inbound memory mapping */
105 if (bus_start > out_lo) {
106 printf ("no space for inbound mapping of memory\n");
107 return 0;
108 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500109
Kumar Galaad19e7a2009-08-05 07:59:35 -0500110 /* limit size */
111 if ((bus_start + sz) > out_lo) {
112 sz = out_lo - bus_start;
113 debug ("limiting size to %llx\n", sz);
114 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500115
116 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500117 /*
118 * we can overlap inbound/outbound windows on PCI-E since RX & TX
119 * links a separate
120 */
121 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
122 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
123 (u64)bus_start, (u64)phys_start, (u64)sz);
124 pci_set_region(r, bus_start, phys_start, sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600125 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500126 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500127
128 /* if we aren't an exact power of two match, pci_sz is smaller
129 * round it up to the next power of two. We report the actual
130 * size to pci region tracking.
131 */
132 if (pci_sz != sz)
133 sz = 2ull << __ilog2_u64(sz);
134
135 set_inbound_window(pi--, r++, sz);
136 sz = 0; /* make sure we dont set the R2 window */
137 } else {
138 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
139 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
140 pci_set_region(r, bus_start, phys_start, pci_sz,
141 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
142 PCI_REGION_PREFETCH);
143 set_inbound_window(pi--, r++, pci_sz);
144
Kumar Galab9a1fa92008-10-22 14:06:24 -0500145 sz -= pci_sz;
146 bus_start += pci_sz;
147 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500148
149 pci_sz = 1ull << __ilog2_u64(sz);
150 if (sz) {
151 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
152 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
153 pci_set_region(r, bus_start, phys_start, pci_sz,
154 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
155 PCI_REGION_PREFETCH);
156 set_inbound_window(pi--, r++, pci_sz);
157 sz -= pci_sz;
158 bus_start += pci_sz;
159 phys_start += pci_sz;
160 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500161 }
162
163#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Brucecd425162008-10-27 16:09:42 -0500164 /*
165 * On 64-bit capable systems, set up a mapping for all of DRAM
166 * in high pci address space.
167 */
Kumar Galab9a1fa92008-10-22 14:06:24 -0500168 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
169 /* round up to the next largest power of two */
170 if (gd->ram_size > pci_sz)
Becky Brucecd425162008-10-27 16:09:42 -0500171 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500172 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Brucecd425162008-10-27 16:09:42 -0500173 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500174 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
175 (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500176 pci_set_region(r,
Becky Brucecd425162008-10-27 16:09:42 -0500177 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500178 CONFIG_SYS_PCI_MEMORY_PHYS,
179 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);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500182 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500183#else
184 pci_sz = 1ull << __ilog2_u64(sz);
185 if (sz) {
186 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
187 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500188 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600189 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500190 PCI_REGION_PREFETCH);
191 sz -= pci_sz;
192 bus_start += pci_sz;
193 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500194 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500195 }
196#endif
197
Kumar Gala4c253fd2008-12-09 10:27:33 -0600198#ifdef CONFIG_PHYS_64BIT
Kumar Galab9a1fa92008-10-22 14:06:24 -0500199 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
200 printf("Was not able to map all of memory via "
201 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4c253fd2008-12-09 10:27:33 -0600202#endif
Kumar Galab9a1fa92008-10-22 14:06:24 -0500203
Kumar Galaad19e7a2009-08-05 07:59:35 -0500204 hose->region_count = r - hose->regions;
205
206 return 1;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500207}
208
Liu Gangc8b28152013-05-07 16:30:46 +0800209#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000210static void fsl_pcie_boot_master(pit_t *pi)
211{
212 /* configure inbound window for slave's u-boot image */
213 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
214 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
215 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
216 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
217 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
218 struct pci_region r_inbound;
219 u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE)
220 - 1;
221 pci_set_region(&r_inbound,
222 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
223 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
224 sz_inbound,
225 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
226
227 set_inbound_window(pi--, &r_inbound,
228 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
229
230 /* configure inbound window for slave's u-boot image */
231 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
232 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
233 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
234 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
235 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
236 pci_set_region(&r_inbound,
237 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
238 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
239 sz_inbound,
240 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
241
242 set_inbound_window(pi--, &r_inbound,
243 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
244
245 /* configure inbound window for slave's ucode and ENV */
246 debug("PCIEBOOT - MASTER: Inbound window for slave's "
247 "ucode and ENV; "
248 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
249 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
250 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
251 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
252 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE)
253 - 1;
254 pci_set_region(&r_inbound,
255 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
256 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
257 sz_inbound,
258 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
259
260 set_inbound_window(pi--, &r_inbound,
261 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
262}
263
264static void fsl_pcie_boot_master_release_slave(int port)
265{
266 unsigned long release_addr;
267
268 /* now release slave's core 0 */
269 switch (port) {
270 case 1:
271 release_addr = CONFIG_SYS_PCIE1_MEM_VIRT
272 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
273 break;
York Suna1e43182012-10-08 07:44:04 +0000274#ifdef CONFIG_SYS_PCIE2_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000275 case 2:
276 release_addr = CONFIG_SYS_PCIE2_MEM_VIRT
277 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
278 break;
York Suna1e43182012-10-08 07:44:04 +0000279#endif
280#ifdef CONFIG_SYS_PCIE3_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000281 case 3:
282 release_addr = CONFIG_SYS_PCIE3_MEM_VIRT
283 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
284 break;
York Suna1e43182012-10-08 07:44:04 +0000285#endif
Liu Gangb5f7c872012-08-09 05:10:02 +0000286 default:
287 release_addr = 0;
288 break;
289 }
290 if (release_addr != 0) {
291 out_be32((void *)release_addr,
292 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK);
293 debug("PCIEBOOT - MASTER: "
294 "Release slave successfully! Now the slave should start up!\n");
295 } else {
296 debug("PCIEBOOT - MASTER: "
297 "Release slave failed!\n");
298 }
299}
300#endif
301
Peter Tyser213ac732010-12-28 17:47:25 -0600302void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout63cec582007-08-02 14:09:49 -0500303{
Peter Tyser213ac732010-12-28 17:47:25 -0600304 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
305 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout63cec582007-08-02 14:09:49 -0500306 u16 temp16;
307 u32 temp32;
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530308 u32 block_rev;
Kumar Gala8295b942009-08-05 07:49:27 -0500309 int enabled, r, inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500310 u16 ltssm;
Kumar Gala8295b942009-08-05 07:49:27 -0500311 u8 temp8, pcie_cap;
Zhao Qiang287df012013-10-12 13:46:33 +0800312 int pcie_cap_pos;
313 int pci_dcr;
314 int pci_dsr;
315 int pci_lsr;
316
317#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
318 int pci_lcr;
319#endif
320
Kumar Galafb3143b2009-08-03 20:44:55 -0500321 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galacb151aa2009-08-03 21:02:02 -0500322 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Gala8295b942009-08-05 07:49:27 -0500323 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout63cec582007-08-02 14:09:49 -0500324
325 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200326 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530327 volatile pit_t *pi;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500328
329 u64 out_hi = 0, out_lo = -1ULL;
330 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout63cec582007-08-02 14:09:49 -0500331
Kumar Galafb3143b2009-08-03 20:44:55 -0500332 pci_setup_indirect(hose, cfg_addr, cfg_data);
333
Joakim Tjernlund6ce83fb2017-09-12 19:56:41 +0200334#ifdef PEX_CCB_DIV
335 /* Configure the PCIE controller core clock ratio */
336 pci_hose_write_config_dword(hose, dev, 0x440,
337 ((gd->bus_clk / 1000000) *
338 (16 / PEX_CCB_DIV)) / 333);
339#endif
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530340 block_rev = in_be32(&pci->block_rev1);
341 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
342 pi = &pci->pit[2]; /* 0xDC0 */
343 } else {
344 pi = &pci->pit[3]; /* 0xDE0 */
345 }
346
Kumar Galaad19e7a2009-08-05 07:59:35 -0500347 /* Handle setup of outbound windows first */
348 for (r = 0; r < hose->region_count; r++) {
349 unsigned long flags = hose->regions[r].flags;
Kumar Gala612ea012008-10-21 10:13:14 -0500350 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500351
352 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
353 if (flags != PCI_REGION_SYS_MEMORY) {
354 u64 start = hose->regions[r].bus_start;
355 u64 end = start + hose->regions[r].size;
356
357 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
358 out_be32(&po->potar, start >> 12);
Kumar Gala612ea012008-10-21 10:13:14 -0500359#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaad19e7a2009-08-05 07:59:35 -0500360 out_be32(&po->potear, start >> 44);
Kumar Gala612ea012008-10-21 10:13:14 -0500361#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500362 out_be32(&po->potear, 0);
Kumar Gala612ea012008-10-21 10:13:14 -0500363#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500364 if (hose->regions[r].flags & PCI_REGION_IO) {
365 out_be32(&po->powar, POWAR_EN | sz |
366 POWAR_IO_READ | POWAR_IO_WRITE);
367 } else {
368 out_be32(&po->powar, POWAR_EN | sz |
369 POWAR_MEM_READ | POWAR_MEM_WRITE);
370 out_lo = min(start, out_lo);
371 out_hi = max(end, out_hi);
372 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500373 po++;
374 }
375 }
Kumar Galaad19e7a2009-08-05 07:59:35 -0500376 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
377
378 /* setup PCSRBAR/PEXCSRBAR */
379 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
380 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
381 pcicsrbar_sz = ~pcicsrbar_sz + 1;
382
383 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
384 (out_lo > 0x100000000ull))
385 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
386 else
387 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
388 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
389
390 out_lo = min(out_lo, (u64)pcicsrbar);
391
392 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
393
394 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
395 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
396 hose->region_count++;
Ed Swarthout63cec582007-08-02 14:09:49 -0500397
Kumar Gala8295b942009-08-05 07:49:27 -0500398 /* see if we are a PCIe or PCI controller */
Zhao Qiang287df012013-10-12 13:46:33 +0800399 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
400 pci_dcr = pcie_cap_pos + 0x08;
401 pci_dsr = pcie_cap_pos + 0x0a;
402 pci_lsr = pcie_cap_pos + 0x12;
403
404 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Kumar Gala8295b942009-08-05 07:49:27 -0500405
Liu Gangc8b28152013-05-07 16:30:46 +0800406#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000407 /* boot from PCIE --master */
Simon Glass00caae62017-08-03 12:22:12 -0600408 char *s = env_get("bootmaster");
Liu Gangb5f7c872012-08-09 05:10:02 +0000409 char pcie[6];
410 sprintf(pcie, "PCIE%d", pci_info->pci_num);
411
412 if (s && (strcmp(s, pcie) == 0)) {
413 debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n",
414 pci_info->pci_num);
415 fsl_pcie_boot_master((pit_t *)pi);
416 } else {
417 /* inbound */
418 inbound = fsl_pci_setup_inbound_windows(hose,
419 out_lo, pcie_cap, pi);
420 }
421#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500422 /* inbound */
423 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
Liu Gangb5f7c872012-08-09 05:10:02 +0000424#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500425
426 for (r = 0; r < hose->region_count; r++)
Marek Vasutd015df82011-10-21 14:17:21 +0000427 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500428 (u64)hose->regions[r].phys_start,
Marek Vasutd015df82011-10-21 14:17:21 +0000429 (u64)hose->regions[r].bus_start,
430 (u64)hose->regions[r].size,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500431 hose->regions[r].flags);
432
Ed Swarthout63cec582007-08-02 14:09:49 -0500433 pci_register_hose(hose);
434 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
435 hose->current_busno = hose->first_busno;
436
Kumar Galaad19e7a2009-08-05 07:59:35 -0500437 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williams16263082011-07-22 04:01:30 +0000438 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500439 * - Master abort (pci)
440 * - Master PERR (pci)
441 * - ICCA (PCIe)
442 */
Zhao Qiang287df012013-10-12 13:46:33 +0800443 pci_hose_read_config_dword(hose, dev, pci_dcr, &temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500444 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
Zhao Qiang287df012013-10-12 13:46:33 +0800445 pci_hose_write_config_dword(hose, dev, pci_dcr, temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500446
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000447#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
Zhao Qiang287df012013-10-12 13:46:33 +0800448 pci_lcr = pcie_cap_pos + 0x10;
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000449 temp32 = 0;
Zhao Qiang287df012013-10-12 13:46:33 +0800450 pci_hose_read_config_dword(hose, dev, pci_lcr, &temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000451 temp32 &= ~0x03; /* Disable ASPM */
Zhao Qiang287df012013-10-12 13:46:33 +0800452 pci_hose_write_config_dword(hose, dev, pci_lcr, temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000453 udelay(1);
454#endif
Kumar Gala8295b942009-08-05 07:49:27 -0500455 if (pcie_cap == PCI_CAP_ID_EXP) {
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800456 if (block_rev >= PEX_IP_BLK_REV_3_0) {
457#define PEX_CSR0_LTSSM_MASK 0xFC
458#define PEX_CSR0_LTSSM_SHIFT 2
459 ltssm = (in_be32(&pci->pex_csr0)
460 & PEX_CSR0_LTSSM_MASK) >> PEX_CSR0_LTSSM_SHIFT;
461 enabled = (ltssm == 0x11) ? 1 : 0;
Zhao Qiang5066e622015-03-26 16:13:09 +0800462#ifdef CONFIG_FSL_PCIE_RESET
463 int i;
464 /* assert PCIe reset */
465 setbits_be32(&pci->pdb_stat, 0x08000000);
466 (void) in_be32(&pci->pdb_stat);
467 udelay(1000);
468 /* clear PCIe reset */
469 clrbits_be32(&pci->pdb_stat, 0x08000000);
470 asm("sync;isync");
471 for (i = 0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
472 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
473 &ltssm);
474 udelay(1000);
475 }
476#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800477 } else {
478 /* pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm); */
479 /* enabled = ltssm >= PCI_LTSSM_L0; */
Ed Swarthout63cec582007-08-02 14:09:49 -0500480 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
481 enabled = ltssm >= PCI_LTSSM_L0;
482
Kumar Gala8ff3de62007-12-07 12:17:34 -0600483#ifdef CONFIG_FSL_PCIE_RESET
484 if (ltssm == 1) {
485 int i;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500486 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
487 /* assert PCIe reset */
488 setbits_be32(&pci->pdb_stat, 0x08000000);
489 (void) in_be32(&pci->pdb_stat);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600490 udelay(100);
Marek Vasutd015df82011-10-21 14:17:21 +0000491 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaad19e7a2009-08-05 07:59:35 -0500492 &pci->pdb_stat, in_be32(&pci->pdb_stat));
493 /* clear PCIe reset */
494 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600495 asm("sync;isync");
496 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
497 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
498 &ltssm);
499 udelay(1000);
500 debug("....PCIe link error. "
501 "LTSSM=0x%02x.\n", ltssm);
502 }
503 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500504
505 /* we need to re-write the bar0 since a reset will
506 * clear it
507 */
508 pci_hose_write_config_dword(hose, dev,
509 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600510 }
511#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800512 }
Kumar Gala8ff3de62007-12-07 12:17:34 -0600513
Yuanquan Chenc0a4e6b2012-11-26 23:49:45 +0000514#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
515 if (enabled == 0) {
516 serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
517 temp32 = in_be32(&srds_regs->srdspccr0);
518
519 if ((temp32 >> 28) == 3) {
520 int i;
521
522 out_be32(&srds_regs->srdspccr0, 2 << 28);
523 setbits_be32(&pci->pdb_stat, 0x08000000);
524 in_be32(&pci->pdb_stat);
525 udelay(100);
526 clrbits_be32(&pci->pdb_stat, 0x08000000);
527 asm("sync;isync");
528 for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
529 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
530 udelay(1000);
531 }
532 enabled = ltssm >= PCI_LTSSM_L0;
533 }
534 }
535#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500536 if (!enabled) {
Zang Roy-R6191132514d22014-06-12 14:49:23 -0500537 /* Let the user know there's no PCIe link for root
538 * complex. for endpoint, the link may not setup, so
539 * print undetermined.
540 */
541 if (fsl_is_pci_agent(hose))
542 printf("undetermined, regs @ 0x%lx\n", pci_info->regs);
543 else
544 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout63cec582007-08-02 14:09:49 -0500545 hose->last_busno = hose->first_busno;
546 return;
547 }
548
Kumar Galaad19e7a2009-08-05 07:59:35 -0500549 out_be32(&pci->pme_msg_det, 0xffffffff);
550 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser213ac732010-12-28 17:47:25 -0600551
552 /* Print the negotiated PCIe link width */
Zhao Qiang287df012013-10-12 13:46:33 +0800553 pci_hose_read_config_word(hose, dev, pci_lsr, &temp16);
Prabhakar Kushwahaaceea942014-01-25 12:53:32 +0530554 printf("x%d gen%d, regs @ 0x%lx\n", (temp16 & 0x3f0) >> 4,
555 (temp16 & 0xf), pci_info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600556
Ed Swarthout63cec582007-08-02 14:09:49 -0500557 hose->current_busno++; /* Start scan with secondary */
558 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout63cec582007-08-02 14:09:49 -0500559 }
560
Tony O'Brien09bfd962016-12-02 09:22:34 +1300561#ifdef CONFIG_SYS_FSL_ERRATUM_A007815
562 /* The Read-Only Write Enable bit defaults to 1 instead of 0.
563 * Set to 0 to protect the read-only registers.
564 */
565 clrbits_be32(&pci->dbi_ro_wr_en, 0x01);
566#endif
567
Ed Swarthout16e23c32007-08-20 23:55:33 -0500568 /* Use generic setup_device to initialize standard pci regs,
569 * but do not allocate any windows since any BAR found (such
570 * as PCSRBAR) is not in this cpu's memory space.
571 */
Ed Swarthout16e23c32007-08-20 23:55:33 -0500572 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500573 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500574
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500575 if (inbound) {
576 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
577 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
578 temp16 | PCI_COMMAND_MEMORY);
579 }
580
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500581#ifndef CONFIG_PCI_NOSCAN
Minghuan Lian505f3e62012-08-21 23:35:42 +0000582 if (!fsl_is_pci_agent(hose)) {
Peter Tyser37d03fc2010-10-29 17:59:26 -0500583 debug(" Scanning PCI bus %02x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500584 hose->current_busno);
585 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
586 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500587 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500588 hose->current_busno, temp8);
589 hose->last_busno = hose->current_busno;
590 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500591
Kumar Gala8295b942009-08-05 07:49:27 -0500592 /* if we are PCIe - update limit regs and subordinate busno
593 * for the virtual P2P bridge
594 */
595 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500596 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
597 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500598#else
599 hose->last_busno = hose->current_busno;
600#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500601
602 /* Clear all error indications */
Kumar Gala8295b942009-08-05 07:49:27 -0500603 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaad19e7a2009-08-05 07:59:35 -0500604 out_be32(&pci->pme_msg_det, 0xffffffff);
605 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500606
Zhao Qiang287df012013-10-12 13:46:33 +0800607 pci_hose_read_config_word(hose, dev, pci_dsr, &temp16);
Ed Swarthout63cec582007-08-02 14:09:49 -0500608 if (temp16) {
Zhao Qiang287df012013-10-12 13:46:33 +0800609 pci_hose_write_config_word(hose, dev, pci_dsr, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500610 }
611
612 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
613 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500614 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
615 }
616}
Kumar Galaa2aab462008-10-23 00:01:06 -0500617
Ed Swarthout715d8f72009-11-02 09:05:49 -0600618int fsl_is_pci_agent(struct pci_controller *hose)
619{
Zhao Qiang287df012013-10-12 13:46:33 +0800620 int pcie_cap_pos;
Minghuan Lian505f3e62012-08-21 23:35:42 +0000621 u8 pcie_cap;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600622 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
623
Zhao Qiang287df012013-10-12 13:46:33 +0800624 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
625 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Minghuan Lian505f3e62012-08-21 23:35:42 +0000626 if (pcie_cap == PCI_CAP_ID_EXP) {
627 u8 header_type;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600628
Minghuan Lian505f3e62012-08-21 23:35:42 +0000629 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE,
630 &header_type);
631 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL;
632 } else {
633 u8 prog_if;
634
635 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800636 /* Programming Interface (PCI_CLASS_PROG)
637 * 0 == pci host or pcie root-complex,
638 * 1 == pci agent or pcie end-point
639 */
Minghuan Lian505f3e62012-08-21 23:35:42 +0000640 return (prog_if == FSL_PROG_IF_AGENT);
641 }
Ed Swarthout715d8f72009-11-02 09:05:49 -0600642}
643
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530644int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Gala01471d52009-11-04 01:29:04 -0600645 struct pci_controller *hose, int busno)
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530646{
647 volatile ccsr_fsl_pci_t *pci;
648 struct pci_region *r;
Peter Tysera72dbae2010-10-28 15:24:59 -0500649 pci_dev_t dev = PCI_BDF(busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800650 int pcie_cap_pos;
Peter Tysera72dbae2010-10-28 15:24:59 -0500651 u8 pcie_cap;
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530652
653 pci = (ccsr_fsl_pci_t *) pci_info->regs;
654
655 /* on non-PCIe controllers we don't have pme_msg_det so this code
656 * should do nothing since the read will return 0
657 */
658 if (in_be32(&pci->pme_msg_det)) {
659 out_be32(&pci->pme_msg_det, 0xffffffff);
660 debug (" with errors. Clearing. Now 0x%08x",
661 pci->pme_msg_det);
662 }
663
664 r = hose->regions + hose->region_count;
665
666 /* outbound memory */
667 pci_set_region(r++,
668 pci_info->mem_bus,
669 pci_info->mem_phys,
670 pci_info->mem_size,
671 PCI_REGION_MEM);
672
673 /* outbound io */
674 pci_set_region(r++,
675 pci_info->io_bus,
676 pci_info->io_phys,
677 pci_info->io_size,
678 PCI_REGION_IO);
679
680 hose->region_count = r - hose->regions;
681 hose->first_busno = busno;
682
Peter Tyser213ac732010-12-28 17:47:25 -0600683 fsl_pci_init(hose, pci_info);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530684
Ed Swarthout715d8f72009-11-02 09:05:49 -0600685 if (fsl_is_pci_agent(hose)) {
686 fsl_pci_config_unlock(hose);
687 hose->last_busno = hose->first_busno;
Liu Gangc8b28152013-05-07 16:30:46 +0800688#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000689 } else {
690 /* boot from PCIE --master releases slave's core 0 */
Simon Glass00caae62017-08-03 12:22:12 -0600691 char *s = env_get("bootmaster");
Liu Gangb5f7c872012-08-09 05:10:02 +0000692 char pcie[6];
693 sprintf(pcie, "PCIE%d", pci_info->pci_num);
694
695 if (s && (strcmp(s, pcie) == 0))
696 fsl_pcie_boot_master_release_slave(pci_info->pci_num);
697#endif
Ed Swarthout715d8f72009-11-02 09:05:49 -0600698 }
699
Zhao Qiang287df012013-10-12 13:46:33 +0800700 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
701 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500702 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser213ac732010-12-28 17:47:25 -0600703 "e" : "", pci_info->pci_num,
Peter Tyser8ca78f22010-10-29 17:59:24 -0500704 hose->first_busno, hose->last_busno);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530705 return(hose->last_busno + 1);
706}
707
Peter Tyser7a897952008-10-29 12:39:26 -0500708/* Enable inbound PCI config cycles for agent/endpoint interface */
709void fsl_pci_config_unlock(struct pci_controller *hose)
710{
711 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800712 int pcie_cap_pos;
Peter Tyser7a897952008-10-29 12:39:26 -0500713 u8 pcie_cap;
714 u16 pbfr;
715
Minghuan Lian505f3e62012-08-21 23:35:42 +0000716 if (!fsl_is_pci_agent(hose))
Peter Tyser7a897952008-10-29 12:39:26 -0500717 return;
718
Zhao Qiang287df012013-10-12 13:46:33 +0800719 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
720 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser7a897952008-10-29 12:39:26 -0500721 if (pcie_cap != 0x0) {
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800722 ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)hose->cfg_addr;
723 u32 block_rev = in_be32(&pci->block_rev1);
Peter Tyser7a897952008-10-29 12:39:26 -0500724 /* PCIe - set CFG_READY bit of Configuration Ready Register */
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800725 if (block_rev >= PEX_IP_BLK_REV_3_0)
726 setbits_be32(&pci->config, FSL_PCIE_V3_CFG_RDY);
727 else
728 pci_hose_write_config_byte(hose, dev,
729 FSL_PCIE_CFG_RDY, 0x1);
Peter Tyser7a897952008-10-29 12:39:26 -0500730 } else {
731 /* PCI - clear ACL bit of PBFR */
732 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
733 pbfr &= ~0x20;
734 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
735 }
736}
737
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600738#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denkd1a24f02011-02-02 22:36:10 +0100739 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600740int fsl_configure_pcie(struct fsl_pci_info *info,
741 struct pci_controller *hose,
742 const char *connected, int busno)
743{
744 int is_endpoint;
745
746 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
747 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser213ac732010-12-28 17:47:25 -0600748
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600749 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600750 printf("PCIe%u: %s", info->pci_num,
751 is_endpoint ? "Endpoint" : "Root Complex");
752 if (connected)
753 printf(" of %s", connected);
754 puts(", ");
755
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600756 return fsl_pci_init_port(info, hose, busno);
757}
758
759#if defined(CONFIG_FSL_CORENET)
York Sun9e758752012-10-08 07:44:19 +0000760#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
761 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1
762 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2
763 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3
764 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4
765#else
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600766 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
767 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
768 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
769 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
York Sun9e758752012-10-08 07:44:19 +0000770#endif
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600771 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
772#elif defined(CONFIG_MPC85xx)
773 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
774 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
775 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
776 #define _DEVDISR_PCIE4 0
777 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
778#elif defined(CONFIG_MPC86xx)
779 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
780 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
781 #define _DEVDISR_PCIE3 0
782 #define _DEVDISR_PCIE4 0
783 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
784 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
785#else
786#error "No defines for DEVDISR_PCIE"
787#endif
788
789/* Implement a dummy function for those platforms w/o SERDES */
790static const char *__board_serdes_name(enum srds_prtcl device)
791{
792 switch (device) {
793#ifdef CONFIG_SYS_PCIE1_NAME
794 case PCIE1:
795 return CONFIG_SYS_PCIE1_NAME;
796#endif
797#ifdef CONFIG_SYS_PCIE2_NAME
798 case PCIE2:
799 return CONFIG_SYS_PCIE2_NAME;
800#endif
801#ifdef CONFIG_SYS_PCIE3_NAME
802 case PCIE3:
803 return CONFIG_SYS_PCIE3_NAME;
804#endif
805#ifdef CONFIG_SYS_PCIE4_NAME
806 case PCIE4:
807 return CONFIG_SYS_PCIE4_NAME;
808#endif
809 default:
810 return NULL;
811 }
812
813 return NULL;
814}
815
816__attribute__((weak, alias("__board_serdes_name"))) const char *
817board_serdes_name(enum srds_prtcl device);
818
819static u32 devdisr_mask[] = {
820 _DEVDISR_PCIE1,
821 _DEVDISR_PCIE2,
822 _DEVDISR_PCIE3,
823 _DEVDISR_PCIE4,
824};
825
826int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
827 struct fsl_pci_info *pci_info)
828{
829 struct pci_controller *hose;
830 int num = dev - PCIE1;
831
832 hose = calloc(1, sizeof(struct pci_controller));
833 if (!hose)
834 return busno;
835
836 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
837 busno = fsl_configure_pcie(pci_info, hose,
838 board_serdes_name(dev), busno);
839 } else {
Peter Tyser213ac732010-12-28 17:47:25 -0600840 printf("PCIe%d: disabled\n", num + 1);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600841 }
842
843 return busno;
844}
845
846int fsl_pcie_init_board(int busno)
847{
848 struct fsl_pci_info pci_info;
849 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
York Sun9e758752012-10-08 07:44:19 +0000850 u32 devdisr;
851 u32 *addr;
852
853#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
854 addr = &gur->devdisr3;
855#else
856 addr = &gur->devdisr;
857#endif
858 devdisr = in_be32(addr);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600859
860#ifdef CONFIG_PCIE1
861 SET_STD_PCIE_INFO(pci_info, 1);
862 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
863#else
York Sun9e758752012-10-08 07:44:19 +0000864 setbits_be32(addr, _DEVDISR_PCIE1); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600865#endif
866
867#ifdef CONFIG_PCIE2
868 SET_STD_PCIE_INFO(pci_info, 2);
869 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
870#else
York Sun9e758752012-10-08 07:44:19 +0000871 setbits_be32(addr, _DEVDISR_PCIE2); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600872#endif
873
874#ifdef CONFIG_PCIE3
875 SET_STD_PCIE_INFO(pci_info, 3);
876 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
877#else
York Sun9e758752012-10-08 07:44:19 +0000878 setbits_be32(addr, _DEVDISR_PCIE3); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600879#endif
880
881#ifdef CONFIG_PCIE4
882 SET_STD_PCIE_INFO(pci_info, 4);
883 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
884#else
York Sun9e758752012-10-08 07:44:19 +0000885 setbits_be32(addr, _DEVDISR_PCIE4); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600886#endif
887
888 return busno;
889}
890#else
891int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
892 struct fsl_pci_info *pci_info)
893{
894 return busno;
895}
896
897int fsl_pcie_init_board(int busno)
898{
899 return busno;
900}
901#endif
902
Kumar Galaa2aab462008-10-23 00:01:06 -0500903#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamadab08c8c42018-03-05 01:20:11 +0900904#include <linux/libfdt.h>
Kumar Galaa2aab462008-10-23 00:01:06 -0500905#include <fdt_support.h>
906
Kumar Gala6525d512010-07-08 22:37:44 -0500907void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600908 unsigned long ctrl_addr)
Kumar Galaa2aab462008-10-23 00:01:06 -0500909{
Kumar Gala6525d512010-07-08 22:37:44 -0500910 int off;
Kumar Gala5a85a302010-03-30 10:07:12 -0500911 u32 bus_range[2];
Kumar Gala6525d512010-07-08 22:37:44 -0500912 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600913 struct pci_controller *hose;
914
915 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Gala6525d512010-07-08 22:37:44 -0500916
917 /* convert ctrl_addr to true physical address */
918 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
919 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
920
921 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galaa2aab462008-10-23 00:01:06 -0500922
Kumar Gala5a85a302010-03-30 10:07:12 -0500923 if (off < 0)
924 return;
Kumar Galaa2aab462008-10-23 00:01:06 -0500925
Kumar Gala5a85a302010-03-30 10:07:12 -0500926 /* We assume a cfg_addr not being set means we didn't setup the controller */
927 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Gala6525d512010-07-08 22:37:44 -0500928 fdt_del_node(blob, off);
Kumar Gala5a85a302010-03-30 10:07:12 -0500929 } else {
Kumar Galaa2aab462008-10-23 00:01:06 -0500930 bus_range[0] = 0;
931 bus_range[1] = hose->last_busno - hose->first_busno;
932 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
933 fdt_pci_dma_ranges(blob, off, hose);
934 }
935}
936#endif