blob: 1d09c5ac4f6b146b37a01c98464d6b0036ddb9b2 [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 Glassc05ed002020-05-10 11:40:11 -060012#include <linux/delay.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050013
Kumar Galab9a1fa92008-10-22 14:06:24 -050014DECLARE_GLOBAL_DATA_PTR;
15
Ed Swarthout63cec582007-08-02 14:09:49 -050016/*
17 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
18 *
19 * Initialize controller and call the common driver/pci pci_hose_scan to
20 * scan for bridges and devices.
21 *
22 * Hose fields which need to be pre-initialized by board specific code:
23 * regions[]
24 * first_busno
25 *
26 * Fields updated:
27 * last_busno
28 */
29
30#include <pci.h>
Kumar Galaad19e7a2009-08-05 07:59:35 -050031#include <asm/io.h>
Kumar Galac8514622009-04-02 13:22:48 -050032#include <asm/fsl_pci.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050033
Kumar Galab9a1fa92008-10-22 14:06:24 -050034#ifndef CONFIG_SYS_PCI_MEMORY_BUS
35#define CONFIG_SYS_PCI_MEMORY_BUS 0
36#endif
37
38#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
39#define CONFIG_SYS_PCI_MEMORY_PHYS 0
40#endif
41
42#if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
43#define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
44#endif
45
Kumar Galaad19e7a2009-08-05 07:59:35 -050046/* Setup one inbound ATMU window.
47 *
48 * We let the caller decide what the window size should be
49 */
50static void set_inbound_window(volatile pit_t *pi,
51 struct pci_region *r,
52 u64 size)
Kumar Galab9a1fa92008-10-22 14:06:24 -050053{
Kumar Galaad19e7a2009-08-05 07:59:35 -050054 u32 sz = (__ilog2_u64(size) - 1);
Chunhe Lanf1a96ec2014-05-07 10:50:20 +080055#ifdef CONFIG_SYS_FSL_ERRATUM_A005434
56 u32 flag = 0;
57#else
58 u32 flag = PIWAR_LOCAL;
59#endif
60
61 flag |= PIWAR_EN | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
Kumar Galaad19e7a2009-08-05 07:59:35 -050062
63 out_be32(&pi->pitar, r->phys_start >> 12);
64 out_be32(&pi->piwbar, r->bus_start >> 12);
65#ifdef CONFIG_SYS_PCI_64BIT
66 out_be32(&pi->piwbear, r->bus_start >> 44);
67#else
68 out_be32(&pi->piwbear, 0);
69#endif
70 if (r->flags & PCI_REGION_PREFETCH)
71 flag |= PIWAR_PF;
72 out_be32(&pi->piwar, flag | sz);
73}
74
Kumar Galaee536502009-11-04 13:00:55 -060075int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
76{
77 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
78
John Schmoller96d61602010-10-22 00:20:23 -050079 /* Reset hose to make sure its in a clean state */
80 memset(hose, 0, sizeof(struct pci_controller));
81
Kumar Galaee536502009-11-04 13:00:55 -060082 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
83
84 return fsl_is_pci_agent(hose);
85}
86
Kumar Galaad19e7a2009-08-05 07:59:35 -050087static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
88 u64 out_lo, u8 pcie_cap,
89 volatile pit_t *pi)
90{
91 struct pci_region *r = hose->regions + hose->region_count;
92 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Galab9a1fa92008-10-22 14:06:24 -050093
94 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
95 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaad19e7a2009-08-05 07:59:35 -050096 pci_size_t pci_sz;
Kumar Galab9a1fa92008-10-22 14:06:24 -050097
Kumar Galaad19e7a2009-08-05 07:59:35 -050098 /* we have no space available for inbound memory mapping */
99 if (bus_start > out_lo) {
100 printf ("no space for inbound mapping of memory\n");
101 return 0;
102 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500103
Kumar Galaad19e7a2009-08-05 07:59:35 -0500104 /* limit size */
105 if ((bus_start + sz) > out_lo) {
106 sz = out_lo - bus_start;
107 debug ("limiting size to %llx\n", sz);
108 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500109
110 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500111 /*
112 * we can overlap inbound/outbound windows on PCI-E since RX & TX
113 * links a separate
114 */
115 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
116 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
117 (u64)bus_start, (u64)phys_start, (u64)sz);
118 pci_set_region(r, bus_start, phys_start, sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600119 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500120 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500121
122 /* if we aren't an exact power of two match, pci_sz is smaller
123 * round it up to the next power of two. We report the actual
124 * size to pci region tracking.
125 */
126 if (pci_sz != sz)
127 sz = 2ull << __ilog2_u64(sz);
128
129 set_inbound_window(pi--, r++, sz);
130 sz = 0; /* make sure we dont set the R2 window */
131 } else {
132 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
133 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
134 pci_set_region(r, bus_start, phys_start, pci_sz,
135 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
136 PCI_REGION_PREFETCH);
137 set_inbound_window(pi--, r++, pci_sz);
138
Kumar Galab9a1fa92008-10-22 14:06:24 -0500139 sz -= pci_sz;
140 bus_start += pci_sz;
141 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500142
143 pci_sz = 1ull << __ilog2_u64(sz);
144 if (sz) {
145 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
146 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
147 pci_set_region(r, bus_start, phys_start, pci_sz,
148 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
149 PCI_REGION_PREFETCH);
150 set_inbound_window(pi--, r++, pci_sz);
151 sz -= pci_sz;
152 bus_start += pci_sz;
153 phys_start += pci_sz;
154 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500155 }
156
157#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Brucecd425162008-10-27 16:09:42 -0500158 /*
159 * On 64-bit capable systems, set up a mapping for all of DRAM
160 * in high pci address space.
161 */
Kumar Galab9a1fa92008-10-22 14:06:24 -0500162 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
163 /* round up to the next largest power of two */
164 if (gd->ram_size > pci_sz)
Becky Brucecd425162008-10-27 16:09:42 -0500165 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500166 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Brucecd425162008-10-27 16:09:42 -0500167 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500168 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
169 (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500170 pci_set_region(r,
Becky Brucecd425162008-10-27 16:09:42 -0500171 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500172 CONFIG_SYS_PCI_MEMORY_PHYS,
173 pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600174 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500175 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500176 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500177#else
178 pci_sz = 1ull << __ilog2_u64(sz);
179 if (sz) {
180 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
181 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500182 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600183 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500184 PCI_REGION_PREFETCH);
185 sz -= pci_sz;
186 bus_start += pci_sz;
187 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500188 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500189 }
190#endif
191
Kumar Gala4c253fd2008-12-09 10:27:33 -0600192#ifdef CONFIG_PHYS_64BIT
Kumar Galab9a1fa92008-10-22 14:06:24 -0500193 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
194 printf("Was not able to map all of memory via "
195 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4c253fd2008-12-09 10:27:33 -0600196#endif
Kumar Galab9a1fa92008-10-22 14:06:24 -0500197
Kumar Galaad19e7a2009-08-05 07:59:35 -0500198 hose->region_count = r - hose->regions;
199
200 return 1;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500201}
202
Liu Gangc8b28152013-05-07 16:30:46 +0800203#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000204static void fsl_pcie_boot_master(pit_t *pi)
205{
206 /* configure inbound window for slave's u-boot image */
207 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
208 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
209 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
210 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
211 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
212 struct pci_region r_inbound;
213 u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE)
214 - 1;
215 pci_set_region(&r_inbound,
216 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
217 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
218 sz_inbound,
219 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
220
221 set_inbound_window(pi--, &r_inbound,
222 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
223
224 /* configure inbound window for slave's u-boot image */
225 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
226 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
227 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
228 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
229 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
230 pci_set_region(&r_inbound,
231 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
232 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
233 sz_inbound,
234 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
235
236 set_inbound_window(pi--, &r_inbound,
237 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
238
239 /* configure inbound window for slave's ucode and ENV */
240 debug("PCIEBOOT - MASTER: Inbound window for slave's "
241 "ucode and ENV; "
242 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
243 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
244 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
245 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
246 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE)
247 - 1;
248 pci_set_region(&r_inbound,
249 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
250 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
251 sz_inbound,
252 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
253
254 set_inbound_window(pi--, &r_inbound,
255 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
256}
257
258static void fsl_pcie_boot_master_release_slave(int port)
259{
260 unsigned long release_addr;
261
262 /* now release slave's core 0 */
263 switch (port) {
264 case 1:
265 release_addr = CONFIG_SYS_PCIE1_MEM_VIRT
266 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
267 break;
York Suna1e43182012-10-08 07:44:04 +0000268#ifdef CONFIG_SYS_PCIE2_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000269 case 2:
270 release_addr = CONFIG_SYS_PCIE2_MEM_VIRT
271 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
272 break;
York Suna1e43182012-10-08 07:44:04 +0000273#endif
274#ifdef CONFIG_SYS_PCIE3_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000275 case 3:
276 release_addr = CONFIG_SYS_PCIE3_MEM_VIRT
277 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
278 break;
York Suna1e43182012-10-08 07:44:04 +0000279#endif
Liu Gangb5f7c872012-08-09 05:10:02 +0000280 default:
281 release_addr = 0;
282 break;
283 }
284 if (release_addr != 0) {
285 out_be32((void *)release_addr,
286 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK);
287 debug("PCIEBOOT - MASTER: "
288 "Release slave successfully! Now the slave should start up!\n");
289 } else {
290 debug("PCIEBOOT - MASTER: "
291 "Release slave failed!\n");
292 }
293}
294#endif
295
Peter Tyser213ac732010-12-28 17:47:25 -0600296void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout63cec582007-08-02 14:09:49 -0500297{
Peter Tyser213ac732010-12-28 17:47:25 -0600298 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
299 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout63cec582007-08-02 14:09:49 -0500300 u16 temp16;
301 u32 temp32;
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530302 u32 block_rev;
Kumar Gala8295b942009-08-05 07:49:27 -0500303 int enabled, r, inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500304 u16 ltssm;
Kumar Gala8295b942009-08-05 07:49:27 -0500305 u8 temp8, pcie_cap;
Zhao Qiang287df012013-10-12 13:46:33 +0800306 int pcie_cap_pos;
307 int pci_dcr;
308 int pci_dsr;
309 int pci_lsr;
310
311#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
312 int pci_lcr;
313#endif
314
Kumar Galafb3143b2009-08-03 20:44:55 -0500315 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galacb151aa2009-08-03 21:02:02 -0500316 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Gala8295b942009-08-05 07:49:27 -0500317 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout63cec582007-08-02 14:09:49 -0500318
319 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200320 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530321 volatile pit_t *pi;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500322
323 u64 out_hi = 0, out_lo = -1ULL;
324 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout63cec582007-08-02 14:09:49 -0500325
Kumar Galafb3143b2009-08-03 20:44:55 -0500326 pci_setup_indirect(hose, cfg_addr, cfg_data);
327
Joakim Tjernlund6ce83fb2017-09-12 19:56:41 +0200328#ifdef PEX_CCB_DIV
329 /* Configure the PCIE controller core clock ratio */
330 pci_hose_write_config_dword(hose, dev, 0x440,
331 ((gd->bus_clk / 1000000) *
332 (16 / PEX_CCB_DIV)) / 333);
333#endif
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530334 block_rev = in_be32(&pci->block_rev1);
335 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
336 pi = &pci->pit[2]; /* 0xDC0 */
337 } else {
338 pi = &pci->pit[3]; /* 0xDE0 */
339 }
340
Kumar Galaad19e7a2009-08-05 07:59:35 -0500341 /* Handle setup of outbound windows first */
342 for (r = 0; r < hose->region_count; r++) {
343 unsigned long flags = hose->regions[r].flags;
Kumar Gala612ea012008-10-21 10:13:14 -0500344 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500345
346 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
347 if (flags != PCI_REGION_SYS_MEMORY) {
348 u64 start = hose->regions[r].bus_start;
349 u64 end = start + hose->regions[r].size;
350
351 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
352 out_be32(&po->potar, start >> 12);
Kumar Gala612ea012008-10-21 10:13:14 -0500353#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaad19e7a2009-08-05 07:59:35 -0500354 out_be32(&po->potear, start >> 44);
Kumar Gala612ea012008-10-21 10:13:14 -0500355#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500356 out_be32(&po->potear, 0);
Kumar Gala612ea012008-10-21 10:13:14 -0500357#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500358 if (hose->regions[r].flags & PCI_REGION_IO) {
359 out_be32(&po->powar, POWAR_EN | sz |
360 POWAR_IO_READ | POWAR_IO_WRITE);
361 } else {
362 out_be32(&po->powar, POWAR_EN | sz |
363 POWAR_MEM_READ | POWAR_MEM_WRITE);
364 out_lo = min(start, out_lo);
365 out_hi = max(end, out_hi);
366 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500367 po++;
368 }
369 }
Kumar Galaad19e7a2009-08-05 07:59:35 -0500370 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
371
372 /* setup PCSRBAR/PEXCSRBAR */
373 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
374 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
375 pcicsrbar_sz = ~pcicsrbar_sz + 1;
376
377 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
378 (out_lo > 0x100000000ull))
379 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
380 else
381 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
382 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
383
384 out_lo = min(out_lo, (u64)pcicsrbar);
385
386 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
387
388 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
389 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
390 hose->region_count++;
Ed Swarthout63cec582007-08-02 14:09:49 -0500391
Kumar Gala8295b942009-08-05 07:49:27 -0500392 /* see if we are a PCIe or PCI controller */
Zhao Qiang287df012013-10-12 13:46:33 +0800393 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
394 pci_dcr = pcie_cap_pos + 0x08;
395 pci_dsr = pcie_cap_pos + 0x0a;
396 pci_lsr = pcie_cap_pos + 0x12;
397
398 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Kumar Gala8295b942009-08-05 07:49:27 -0500399
Liu Gangc8b28152013-05-07 16:30:46 +0800400#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000401 /* boot from PCIE --master */
Simon Glass00caae62017-08-03 12:22:12 -0600402 char *s = env_get("bootmaster");
Liu Gangb5f7c872012-08-09 05:10:02 +0000403 char pcie[6];
404 sprintf(pcie, "PCIE%d", pci_info->pci_num);
405
406 if (s && (strcmp(s, pcie) == 0)) {
407 debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n",
408 pci_info->pci_num);
409 fsl_pcie_boot_master((pit_t *)pi);
410 } else {
411 /* inbound */
412 inbound = fsl_pci_setup_inbound_windows(hose,
413 out_lo, pcie_cap, pi);
414 }
415#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500416 /* inbound */
417 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
Liu Gangb5f7c872012-08-09 05:10:02 +0000418#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500419
420 for (r = 0; r < hose->region_count; r++)
Marek Vasutd015df82011-10-21 14:17:21 +0000421 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500422 (u64)hose->regions[r].phys_start,
Marek Vasutd015df82011-10-21 14:17:21 +0000423 (u64)hose->regions[r].bus_start,
424 (u64)hose->regions[r].size,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500425 hose->regions[r].flags);
426
Ed Swarthout63cec582007-08-02 14:09:49 -0500427 pci_register_hose(hose);
428 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
429 hose->current_busno = hose->first_busno;
430
Kumar Galaad19e7a2009-08-05 07:59:35 -0500431 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williams16263082011-07-22 04:01:30 +0000432 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500433 * - Master abort (pci)
434 * - Master PERR (pci)
435 * - ICCA (PCIe)
436 */
Zhao Qiang287df012013-10-12 13:46:33 +0800437 pci_hose_read_config_dword(hose, dev, pci_dcr, &temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500438 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
Zhao Qiang287df012013-10-12 13:46:33 +0800439 pci_hose_write_config_dword(hose, dev, pci_dcr, temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500440
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000441#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
Zhao Qiang287df012013-10-12 13:46:33 +0800442 pci_lcr = pcie_cap_pos + 0x10;
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000443 temp32 = 0;
Zhao Qiang287df012013-10-12 13:46:33 +0800444 pci_hose_read_config_dword(hose, dev, pci_lcr, &temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000445 temp32 &= ~0x03; /* Disable ASPM */
Zhao Qiang287df012013-10-12 13:46:33 +0800446 pci_hose_write_config_dword(hose, dev, pci_lcr, temp32);
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000447 udelay(1);
448#endif
Kumar Gala8295b942009-08-05 07:49:27 -0500449 if (pcie_cap == PCI_CAP_ID_EXP) {
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800450 if (block_rev >= PEX_IP_BLK_REV_3_0) {
451#define PEX_CSR0_LTSSM_MASK 0xFC
452#define PEX_CSR0_LTSSM_SHIFT 2
453 ltssm = (in_be32(&pci->pex_csr0)
454 & PEX_CSR0_LTSSM_MASK) >> PEX_CSR0_LTSSM_SHIFT;
455 enabled = (ltssm == 0x11) ? 1 : 0;
Zhao Qiang5066e622015-03-26 16:13:09 +0800456#ifdef CONFIG_FSL_PCIE_RESET
457 int i;
458 /* assert PCIe reset */
459 setbits_be32(&pci->pdb_stat, 0x08000000);
460 (void) in_be32(&pci->pdb_stat);
461 udelay(1000);
462 /* clear PCIe reset */
463 clrbits_be32(&pci->pdb_stat, 0x08000000);
464 asm("sync;isync");
465 for (i = 0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
466 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
467 &ltssm);
468 udelay(1000);
469 }
470#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800471 } else {
472 /* pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm); */
473 /* enabled = ltssm >= PCI_LTSSM_L0; */
Ed Swarthout63cec582007-08-02 14:09:49 -0500474 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
475 enabled = ltssm >= PCI_LTSSM_L0;
476
Kumar Gala8ff3de62007-12-07 12:17:34 -0600477#ifdef CONFIG_FSL_PCIE_RESET
478 if (ltssm == 1) {
479 int i;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500480 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
481 /* assert PCIe reset */
482 setbits_be32(&pci->pdb_stat, 0x08000000);
483 (void) in_be32(&pci->pdb_stat);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600484 udelay(100);
Marek Vasutd015df82011-10-21 14:17:21 +0000485 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaad19e7a2009-08-05 07:59:35 -0500486 &pci->pdb_stat, in_be32(&pci->pdb_stat));
487 /* clear PCIe reset */
488 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600489 asm("sync;isync");
490 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
491 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
492 &ltssm);
493 udelay(1000);
494 debug("....PCIe link error. "
495 "LTSSM=0x%02x.\n", ltssm);
496 }
497 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500498
499 /* we need to re-write the bar0 since a reset will
500 * clear it
501 */
502 pci_hose_write_config_dword(hose, dev,
503 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600504 }
505#endif
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800506 }
Kumar Gala8ff3de62007-12-07 12:17:34 -0600507
Yuanquan Chenc0a4e6b2012-11-26 23:49:45 +0000508#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
509 if (enabled == 0) {
510 serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
511 temp32 = in_be32(&srds_regs->srdspccr0);
512
513 if ((temp32 >> 28) == 3) {
514 int i;
515
516 out_be32(&srds_regs->srdspccr0, 2 << 28);
517 setbits_be32(&pci->pdb_stat, 0x08000000);
518 in_be32(&pci->pdb_stat);
519 udelay(100);
520 clrbits_be32(&pci->pdb_stat, 0x08000000);
521 asm("sync;isync");
522 for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
523 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
524 udelay(1000);
525 }
526 enabled = ltssm >= PCI_LTSSM_L0;
527 }
528 }
529#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500530 if (!enabled) {
Zang Roy-R6191132514d22014-06-12 14:49:23 -0500531 /* Let the user know there's no PCIe link for root
532 * complex. for endpoint, the link may not setup, so
533 * print undetermined.
534 */
535 if (fsl_is_pci_agent(hose))
536 printf("undetermined, regs @ 0x%lx\n", pci_info->regs);
537 else
538 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout63cec582007-08-02 14:09:49 -0500539 hose->last_busno = hose->first_busno;
540 return;
541 }
542
Kumar Galaad19e7a2009-08-05 07:59:35 -0500543 out_be32(&pci->pme_msg_det, 0xffffffff);
544 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser213ac732010-12-28 17:47:25 -0600545
546 /* Print the negotiated PCIe link width */
Zhao Qiang287df012013-10-12 13:46:33 +0800547 pci_hose_read_config_word(hose, dev, pci_lsr, &temp16);
Prabhakar Kushwahaaceea942014-01-25 12:53:32 +0530548 printf("x%d gen%d, regs @ 0x%lx\n", (temp16 & 0x3f0) >> 4,
549 (temp16 & 0xf), pci_info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600550
Ed Swarthout63cec582007-08-02 14:09:49 -0500551 hose->current_busno++; /* Start scan with secondary */
552 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout63cec582007-08-02 14:09:49 -0500553 }
554
Tony O'Brien09bfd962016-12-02 09:22:34 +1300555#ifdef CONFIG_SYS_FSL_ERRATUM_A007815
556 /* The Read-Only Write Enable bit defaults to 1 instead of 0.
557 * Set to 0 to protect the read-only registers.
558 */
559 clrbits_be32(&pci->dbi_ro_wr_en, 0x01);
560#endif
561
Ed Swarthout16e23c32007-08-20 23:55:33 -0500562 /* Use generic setup_device to initialize standard pci regs,
563 * but do not allocate any windows since any BAR found (such
564 * as PCSRBAR) is not in this cpu's memory space.
565 */
Ed Swarthout16e23c32007-08-20 23:55:33 -0500566 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500567 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500568
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500569 if (inbound) {
570 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
571 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
572 temp16 | PCI_COMMAND_MEMORY);
573 }
574
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500575#ifndef CONFIG_PCI_NOSCAN
Minghuan Lian505f3e62012-08-21 23:35:42 +0000576 if (!fsl_is_pci_agent(hose)) {
Peter Tyser37d03fc2010-10-29 17:59:26 -0500577 debug(" Scanning PCI bus %02x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500578 hose->current_busno);
579 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
580 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500581 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500582 hose->current_busno, temp8);
583 hose->last_busno = hose->current_busno;
584 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500585
Kumar Gala8295b942009-08-05 07:49:27 -0500586 /* if we are PCIe - update limit regs and subordinate busno
587 * for the virtual P2P bridge
588 */
589 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500590 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
591 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500592#else
593 hose->last_busno = hose->current_busno;
594#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500595
596 /* Clear all error indications */
Kumar Gala8295b942009-08-05 07:49:27 -0500597 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaad19e7a2009-08-05 07:59:35 -0500598 out_be32(&pci->pme_msg_det, 0xffffffff);
599 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500600
Zhao Qiang287df012013-10-12 13:46:33 +0800601 pci_hose_read_config_word(hose, dev, pci_dsr, &temp16);
Ed Swarthout63cec582007-08-02 14:09:49 -0500602 if (temp16) {
Zhao Qiang287df012013-10-12 13:46:33 +0800603 pci_hose_write_config_word(hose, dev, pci_dsr, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500604 }
605
606 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
607 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500608 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
609 }
610}
Kumar Galaa2aab462008-10-23 00:01:06 -0500611
Ed Swarthout715d8f72009-11-02 09:05:49 -0600612int fsl_is_pci_agent(struct pci_controller *hose)
613{
Zhao Qiang287df012013-10-12 13:46:33 +0800614 int pcie_cap_pos;
Minghuan Lian505f3e62012-08-21 23:35:42 +0000615 u8 pcie_cap;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600616 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
617
Zhao Qiang287df012013-10-12 13:46:33 +0800618 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
619 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Minghuan Lian505f3e62012-08-21 23:35:42 +0000620 if (pcie_cap == PCI_CAP_ID_EXP) {
621 u8 header_type;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600622
Minghuan Lian505f3e62012-08-21 23:35:42 +0000623 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE,
624 &header_type);
625 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL;
626 } else {
627 u8 prog_if;
628
629 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
Zang Roy-R619117b4e5842013-07-04 07:25:03 +0800630 /* Programming Interface (PCI_CLASS_PROG)
631 * 0 == pci host or pcie root-complex,
632 * 1 == pci agent or pcie end-point
633 */
Minghuan Lian505f3e62012-08-21 23:35:42 +0000634 return (prog_if == FSL_PROG_IF_AGENT);
635 }
Ed Swarthout715d8f72009-11-02 09:05:49 -0600636}
637
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530638int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Gala01471d52009-11-04 01:29:04 -0600639 struct pci_controller *hose, int busno)
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530640{
641 volatile ccsr_fsl_pci_t *pci;
642 struct pci_region *r;
Peter Tysera72dbae2010-10-28 15:24:59 -0500643 pci_dev_t dev = PCI_BDF(busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800644 int pcie_cap_pos;
Peter Tysera72dbae2010-10-28 15:24:59 -0500645 u8 pcie_cap;
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530646
647 pci = (ccsr_fsl_pci_t *) pci_info->regs;
648
649 /* on non-PCIe controllers we don't have pme_msg_det so this code
650 * should do nothing since the read will return 0
651 */
652 if (in_be32(&pci->pme_msg_det)) {
653 out_be32(&pci->pme_msg_det, 0xffffffff);
654 debug (" with errors. Clearing. Now 0x%08x",
655 pci->pme_msg_det);
656 }
657
658 r = hose->regions + hose->region_count;
659
660 /* outbound memory */
661 pci_set_region(r++,
662 pci_info->mem_bus,
663 pci_info->mem_phys,
664 pci_info->mem_size,
665 PCI_REGION_MEM);
666
667 /* outbound io */
668 pci_set_region(r++,
669 pci_info->io_bus,
670 pci_info->io_phys,
671 pci_info->io_size,
672 PCI_REGION_IO);
673
674 hose->region_count = r - hose->regions;
675 hose->first_busno = busno;
676
Peter Tyser213ac732010-12-28 17:47:25 -0600677 fsl_pci_init(hose, pci_info);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530678
Ed Swarthout715d8f72009-11-02 09:05:49 -0600679 if (fsl_is_pci_agent(hose)) {
680 fsl_pci_config_unlock(hose);
681 hose->last_busno = hose->first_busno;
Liu Gangc8b28152013-05-07 16:30:46 +0800682#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000683 } else {
684 /* boot from PCIE --master releases slave's core 0 */
Simon Glass00caae62017-08-03 12:22:12 -0600685 char *s = env_get("bootmaster");
Liu Gangb5f7c872012-08-09 05:10:02 +0000686 char pcie[6];
687 sprintf(pcie, "PCIE%d", pci_info->pci_num);
688
689 if (s && (strcmp(s, pcie) == 0))
690 fsl_pcie_boot_master_release_slave(pci_info->pci_num);
691#endif
Ed Swarthout715d8f72009-11-02 09:05:49 -0600692 }
693
Zhao Qiang287df012013-10-12 13:46:33 +0800694 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
695 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500696 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser213ac732010-12-28 17:47:25 -0600697 "e" : "", pci_info->pci_num,
Peter Tyser8ca78f22010-10-29 17:59:24 -0500698 hose->first_busno, hose->last_busno);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530699 return(hose->last_busno + 1);
700}
701
Peter Tyser7a897952008-10-29 12:39:26 -0500702/* Enable inbound PCI config cycles for agent/endpoint interface */
703void fsl_pci_config_unlock(struct pci_controller *hose)
704{
705 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
Zhao Qiang287df012013-10-12 13:46:33 +0800706 int pcie_cap_pos;
Peter Tyser7a897952008-10-29 12:39:26 -0500707 u8 pcie_cap;
708 u16 pbfr;
709
Minghuan Lian505f3e62012-08-21 23:35:42 +0000710 if (!fsl_is_pci_agent(hose))
Peter Tyser7a897952008-10-29 12:39:26 -0500711 return;
712
Zhao Qiang287df012013-10-12 13:46:33 +0800713 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
714 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser7a897952008-10-29 12:39:26 -0500715 if (pcie_cap != 0x0) {
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800716 ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)hose->cfg_addr;
717 u32 block_rev = in_be32(&pci->block_rev1);
Peter Tyser7a897952008-10-29 12:39:26 -0500718 /* PCIe - set CFG_READY bit of Configuration Ready Register */
Minghuan Lian1d0b59a2015-03-27 13:24:39 +0800719 if (block_rev >= PEX_IP_BLK_REV_3_0)
720 setbits_be32(&pci->config, FSL_PCIE_V3_CFG_RDY);
721 else
722 pci_hose_write_config_byte(hose, dev,
723 FSL_PCIE_CFG_RDY, 0x1);
Peter Tyser7a897952008-10-29 12:39:26 -0500724 } else {
725 /* PCI - clear ACL bit of PBFR */
726 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
727 pbfr &= ~0x20;
728 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
729 }
730}
731
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600732#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denkd1a24f02011-02-02 22:36:10 +0100733 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600734int fsl_configure_pcie(struct fsl_pci_info *info,
735 struct pci_controller *hose,
736 const char *connected, int busno)
737{
738 int is_endpoint;
739
740 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
741 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser213ac732010-12-28 17:47:25 -0600742
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600743 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600744 printf("PCIe%u: %s", info->pci_num,
745 is_endpoint ? "Endpoint" : "Root Complex");
746 if (connected)
747 printf(" of %s", connected);
748 puts(", ");
749
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600750 return fsl_pci_init_port(info, hose, busno);
751}
752
753#if defined(CONFIG_FSL_CORENET)
York Sun9e758752012-10-08 07:44:19 +0000754#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
755 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1
756 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2
757 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3
758 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4
759#else
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600760 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
761 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
762 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
763 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
York Sun9e758752012-10-08 07:44:19 +0000764#endif
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600765 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
766#elif defined(CONFIG_MPC85xx)
767 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
768 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
769 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
770 #define _DEVDISR_PCIE4 0
771 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
772#elif defined(CONFIG_MPC86xx)
773 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
774 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
775 #define _DEVDISR_PCIE3 0
776 #define _DEVDISR_PCIE4 0
777 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
778 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
779#else
780#error "No defines for DEVDISR_PCIE"
781#endif
782
783/* Implement a dummy function for those platforms w/o SERDES */
784static const char *__board_serdes_name(enum srds_prtcl device)
785{
786 switch (device) {
787#ifdef CONFIG_SYS_PCIE1_NAME
788 case PCIE1:
789 return CONFIG_SYS_PCIE1_NAME;
790#endif
791#ifdef CONFIG_SYS_PCIE2_NAME
792 case PCIE2:
793 return CONFIG_SYS_PCIE2_NAME;
794#endif
795#ifdef CONFIG_SYS_PCIE3_NAME
796 case PCIE3:
797 return CONFIG_SYS_PCIE3_NAME;
798#endif
799#ifdef CONFIG_SYS_PCIE4_NAME
800 case PCIE4:
801 return CONFIG_SYS_PCIE4_NAME;
802#endif
803 default:
804 return NULL;
805 }
806
807 return NULL;
808}
809
810__attribute__((weak, alias("__board_serdes_name"))) const char *
811board_serdes_name(enum srds_prtcl device);
812
813static u32 devdisr_mask[] = {
814 _DEVDISR_PCIE1,
815 _DEVDISR_PCIE2,
816 _DEVDISR_PCIE3,
817 _DEVDISR_PCIE4,
818};
819
820int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
821 struct fsl_pci_info *pci_info)
822{
823 struct pci_controller *hose;
824 int num = dev - PCIE1;
825
826 hose = calloc(1, sizeof(struct pci_controller));
827 if (!hose)
828 return busno;
829
830 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
831 busno = fsl_configure_pcie(pci_info, hose,
832 board_serdes_name(dev), busno);
833 } else {
Peter Tyser213ac732010-12-28 17:47:25 -0600834 printf("PCIe%d: disabled\n", num + 1);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600835 }
836
837 return busno;
838}
839
840int fsl_pcie_init_board(int busno)
841{
842 struct fsl_pci_info pci_info;
843 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
York Sun9e758752012-10-08 07:44:19 +0000844 u32 devdisr;
845 u32 *addr;
846
847#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
848 addr = &gur->devdisr3;
849#else
850 addr = &gur->devdisr;
851#endif
852 devdisr = in_be32(addr);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600853
854#ifdef CONFIG_PCIE1
855 SET_STD_PCIE_INFO(pci_info, 1);
856 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
857#else
York Sun9e758752012-10-08 07:44:19 +0000858 setbits_be32(addr, _DEVDISR_PCIE1); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600859#endif
860
861#ifdef CONFIG_PCIE2
862 SET_STD_PCIE_INFO(pci_info, 2);
863 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
864#else
York Sun9e758752012-10-08 07:44:19 +0000865 setbits_be32(addr, _DEVDISR_PCIE2); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600866#endif
867
868#ifdef CONFIG_PCIE3
869 SET_STD_PCIE_INFO(pci_info, 3);
870 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
871#else
York Sun9e758752012-10-08 07:44:19 +0000872 setbits_be32(addr, _DEVDISR_PCIE3); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600873#endif
874
875#ifdef CONFIG_PCIE4
876 SET_STD_PCIE_INFO(pci_info, 4);
877 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
878#else
York Sun9e758752012-10-08 07:44:19 +0000879 setbits_be32(addr, _DEVDISR_PCIE4); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600880#endif
881
882 return busno;
883}
884#else
885int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
886 struct fsl_pci_info *pci_info)
887{
888 return busno;
889}
890
891int fsl_pcie_init_board(int busno)
892{
893 return busno;
894}
895#endif
896
Kumar Galaa2aab462008-10-23 00:01:06 -0500897#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamadab08c8c42018-03-05 01:20:11 +0900898#include <linux/libfdt.h>
Kumar Galaa2aab462008-10-23 00:01:06 -0500899#include <fdt_support.h>
900
Kumar Gala6525d512010-07-08 22:37:44 -0500901void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600902 unsigned long ctrl_addr)
Kumar Galaa2aab462008-10-23 00:01:06 -0500903{
Kumar Gala6525d512010-07-08 22:37:44 -0500904 int off;
Kumar Gala5a85a302010-03-30 10:07:12 -0500905 u32 bus_range[2];
Kumar Gala6525d512010-07-08 22:37:44 -0500906 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600907 struct pci_controller *hose;
908
909 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Gala6525d512010-07-08 22:37:44 -0500910
911 /* convert ctrl_addr to true physical address */
912 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
913 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
914
915 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galaa2aab462008-10-23 00:01:06 -0500916
Kumar Gala5a85a302010-03-30 10:07:12 -0500917 if (off < 0)
918 return;
Kumar Galaa2aab462008-10-23 00:01:06 -0500919
Kumar Gala5a85a302010-03-30 10:07:12 -0500920 /* We assume a cfg_addr not being set means we didn't setup the controller */
921 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Gala6525d512010-07-08 22:37:44 -0500922 fdt_del_node(blob, off);
Kumar Gala5a85a302010-03-30 10:07:12 -0500923 } else {
Kumar Galaa2aab462008-10-23 00:01:06 -0500924 bus_range[0] = 0;
925 bus_range[1] = hose->last_busno - hose->first_busno;
926 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
927 fdt_pci_dma_ranges(blob, off, hose);
928 }
929}
930#endif