blob: e72a60c1318021e5f3231cb414e7cccf28073544 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ed Swarthout91080f72007-08-02 14:09:49 -05002/*
Minghuan Lianeb811d32012-08-21 23:35:42 +00003 * Copyright 2007-2012 Freescale Semiconductor, Inc.
Ed Swarthout91080f72007-08-02 14:09:49 -05004 */
Ed Swarthout15bc3e72007-07-27 01:50:45 -05005
Ed Swarthout91080f72007-08-02 14:09:49 -05006#include <common.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06007#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Kumar Gala4d4384e2010-12-15 14:21:41 -060010#include <malloc.h>
11#include <asm/fsl_serdes.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Simon Glassdbd79542020-05-10 11:40:11 -060013#include <linux/delay.h>
Ed Swarthout91080f72007-08-02 14:09:49 -050014
Kumar Gala47bf4782008-10-22 14:06:24 -050015DECLARE_GLOBAL_DATA_PTR;
16
Ed Swarthout91080f72007-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 Galaa37b9ce2009-08-05 07:59:35 -050032#include <asm/io.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050033#include <asm/fsl_pci.h>
Ed Swarthout91080f72007-08-02 14:09:49 -050034
Kumar Gala47bf4782008-10-22 14:06:24 -050035#ifndef CONFIG_SYS_PCI_MEMORY_BUS
36#define CONFIG_SYS_PCI_MEMORY_BUS 0
37#endif
38
39#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
40#define CONFIG_SYS_PCI_MEMORY_PHYS 0
41#endif
42
43#if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
44#define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
45#endif
46
Kumar Galaa37b9ce2009-08-05 07:59:35 -050047/* Setup one inbound ATMU window.
48 *
49 * We let the caller decide what the window size should be
50 */
51static void set_inbound_window(volatile pit_t *pi,
52 struct pci_region *r,
53 u64 size)
Kumar Gala47bf4782008-10-22 14:06:24 -050054{
Kumar Galaa37b9ce2009-08-05 07:59:35 -050055 u32 sz = (__ilog2_u64(size) - 1);
Chunhe Lan7155ad52014-05-07 10:50:20 +080056#ifdef CONFIG_SYS_FSL_ERRATUM_A005434
57 u32 flag = 0;
58#else
59 u32 flag = PIWAR_LOCAL;
60#endif
61
62 flag |= PIWAR_EN | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
Kumar Galaa37b9ce2009-08-05 07:59:35 -050063
64 out_be32(&pi->pitar, r->phys_start >> 12);
65 out_be32(&pi->piwbar, r->bus_start >> 12);
66#ifdef CONFIG_SYS_PCI_64BIT
67 out_be32(&pi->piwbear, r->bus_start >> 44);
68#else
69 out_be32(&pi->piwbear, 0);
70#endif
71 if (r->flags & PCI_REGION_PREFETCH)
72 flag |= PIWAR_PF;
73 out_be32(&pi->piwar, flag | sz);
74}
75
Kumar Galaa6c612c2009-11-04 13:00:55 -060076int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
77{
78 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
79
John Schmoller60e877f2010-10-22 00:20:23 -050080 /* Reset hose to make sure its in a clean state */
81 memset(hose, 0, sizeof(struct pci_controller));
82
Kumar Galaa6c612c2009-11-04 13:00:55 -060083 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
84
85 return fsl_is_pci_agent(hose);
86}
87
Kumar Galaa37b9ce2009-08-05 07:59:35 -050088static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
89 u64 out_lo, u8 pcie_cap,
90 volatile pit_t *pi)
91{
92 struct pci_region *r = hose->regions + hose->region_count;
93 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Gala47bf4782008-10-22 14:06:24 -050094
95 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
96 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaa37b9ce2009-08-05 07:59:35 -050097 pci_size_t pci_sz;
Kumar Gala47bf4782008-10-22 14:06:24 -050098
Kumar Galaa37b9ce2009-08-05 07:59:35 -050099 /* we have no space available for inbound memory mapping */
100 if (bus_start > out_lo) {
101 printf ("no space for inbound mapping of memory\n");
102 return 0;
103 }
Kumar Gala47bf4782008-10-22 14:06:24 -0500104
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500105 /* limit size */
106 if ((bus_start + sz) > out_lo) {
107 sz = out_lo - bus_start;
108 debug ("limiting size to %llx\n", sz);
109 }
Kumar Gala47bf4782008-10-22 14:06:24 -0500110
111 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500112 /*
113 * we can overlap inbound/outbound windows on PCI-E since RX & TX
114 * links a separate
115 */
116 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
117 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
118 (u64)bus_start, (u64)phys_start, (u64)sz);
119 pci_set_region(r, bus_start, phys_start, sz,
120 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
121 PCI_REGION_PREFETCH);
122
123 /* if we aren't an exact power of two match, pci_sz is smaller
124 * round it up to the next power of two. We report the actual
125 * size to pci region tracking.
126 */
127 if (pci_sz != sz)
128 sz = 2ull << __ilog2_u64(sz);
129
130 set_inbound_window(pi--, r++, sz);
131 sz = 0; /* make sure we dont set the R2 window */
132 } else {
133 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
Kumar Gala47bf4782008-10-22 14:06:24 -0500134 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500135 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600136 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Gala47bf4782008-10-22 14:06:24 -0500137 PCI_REGION_PREFETCH);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500138 set_inbound_window(pi--, r++, pci_sz);
139
Kumar Gala47bf4782008-10-22 14:06:24 -0500140 sz -= pci_sz;
141 bus_start += pci_sz;
142 phys_start += pci_sz;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500143
144 pci_sz = 1ull << __ilog2_u64(sz);
145 if (sz) {
146 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
147 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
148 pci_set_region(r, bus_start, phys_start, pci_sz,
149 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
150 PCI_REGION_PREFETCH);
151 set_inbound_window(pi--, r++, pci_sz);
152 sz -= pci_sz;
153 bus_start += pci_sz;
154 phys_start += pci_sz;
155 }
Kumar Gala47bf4782008-10-22 14:06:24 -0500156 }
157
158#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Bruce26176472008-10-27 16:09:42 -0500159 /*
160 * On 64-bit capable systems, set up a mapping for all of DRAM
161 * in high pci address space.
162 */
Kumar Gala47bf4782008-10-22 14:06:24 -0500163 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
164 /* round up to the next largest power of two */
165 if (gd->ram_size > pci_sz)
Becky Bruce26176472008-10-27 16:09:42 -0500166 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Gala47bf4782008-10-22 14:06:24 -0500167 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Bruce26176472008-10-27 16:09:42 -0500168 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Gala47bf4782008-10-22 14:06:24 -0500169 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
170 (u64)pci_sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500171 pci_set_region(r,
Becky Bruce26176472008-10-27 16:09:42 -0500172 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Gala47bf4782008-10-22 14:06:24 -0500173 CONFIG_SYS_PCI_MEMORY_PHYS,
174 pci_sz,
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600175 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Gala47bf4782008-10-22 14:06:24 -0500176 PCI_REGION_PREFETCH);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500177 set_inbound_window(pi--, r++, pci_sz);
Kumar Gala47bf4782008-10-22 14:06:24 -0500178#else
179 pci_sz = 1ull << __ilog2_u64(sz);
180 if (sz) {
181 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
182 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500183 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600184 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Gala47bf4782008-10-22 14:06:24 -0500185 PCI_REGION_PREFETCH);
186 sz -= pci_sz;
187 bus_start += pci_sz;
188 phys_start += pci_sz;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500189 set_inbound_window(pi--, r++, pci_sz);
Kumar Gala47bf4782008-10-22 14:06:24 -0500190 }
191#endif
192
Kumar Gala4e8001f2008-12-09 10:27:33 -0600193#ifdef CONFIG_PHYS_64BIT
Kumar Gala47bf4782008-10-22 14:06:24 -0500194 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
195 printf("Was not able to map all of memory via "
196 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4e8001f2008-12-09 10:27:33 -0600197#endif
Kumar Gala47bf4782008-10-22 14:06:24 -0500198
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500199 hose->region_count = r - hose->regions;
200
201 return 1;
Kumar Gala47bf4782008-10-22 14:06:24 -0500202}
203
Liu Gang27afb9c2013-05-07 16:30:46 +0800204#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gang99e0c292012-08-09 05:10:02 +0000205static void fsl_pcie_boot_master(pit_t *pi)
206{
207 /* configure inbound window for slave's u-boot image */
208 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
209 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
210 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
211 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
212 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
213 struct pci_region r_inbound;
214 u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE)
215 - 1;
216 pci_set_region(&r_inbound,
217 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
218 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
219 sz_inbound,
220 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
221
222 set_inbound_window(pi--, &r_inbound,
223 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
224
225 /* configure inbound window for slave's u-boot image */
226 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
227 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
228 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
229 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
230 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
231 pci_set_region(&r_inbound,
232 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
233 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
234 sz_inbound,
235 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
236
237 set_inbound_window(pi--, &r_inbound,
238 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
239
240 /* configure inbound window for slave's ucode and ENV */
241 debug("PCIEBOOT - MASTER: Inbound window for slave's "
242 "ucode and ENV; "
243 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
244 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
245 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
246 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
247 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE)
248 - 1;
249 pci_set_region(&r_inbound,
250 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
251 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
252 sz_inbound,
253 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
254
255 set_inbound_window(pi--, &r_inbound,
256 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
257}
258
259static void fsl_pcie_boot_master_release_slave(int port)
260{
261 unsigned long release_addr;
262
263 /* now release slave's core 0 */
264 switch (port) {
265 case 1:
266 release_addr = CONFIG_SYS_PCIE1_MEM_VIRT
267 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
268 break;
York Sun024498f2012-10-08 07:44:04 +0000269#ifdef CONFIG_SYS_PCIE2_MEM_VIRT
Liu Gang99e0c292012-08-09 05:10:02 +0000270 case 2:
271 release_addr = CONFIG_SYS_PCIE2_MEM_VIRT
272 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
273 break;
York Sun024498f2012-10-08 07:44:04 +0000274#endif
275#ifdef CONFIG_SYS_PCIE3_MEM_VIRT
Liu Gang99e0c292012-08-09 05:10:02 +0000276 case 3:
277 release_addr = CONFIG_SYS_PCIE3_MEM_VIRT
278 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
279 break;
York Sun024498f2012-10-08 07:44:04 +0000280#endif
Liu Gang99e0c292012-08-09 05:10:02 +0000281 default:
282 release_addr = 0;
283 break;
284 }
285 if (release_addr != 0) {
286 out_be32((void *)release_addr,
287 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK);
288 debug("PCIEBOOT - MASTER: "
289 "Release slave successfully! Now the slave should start up!\n");
290 } else {
291 debug("PCIEBOOT - MASTER: "
292 "Release slave failed!\n");
293 }
294}
295#endif
296
Peter Tyser3771ba32010-12-28 17:47:25 -0600297void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout91080f72007-08-02 14:09:49 -0500298{
Peter Tyser3771ba32010-12-28 17:47:25 -0600299 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
300 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout91080f72007-08-02 14:09:49 -0500301 u16 temp16;
302 u32 temp32;
Prabhakar Kushwahab582dae2011-02-04 09:00:43 +0530303 u32 block_rev;
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500304 int enabled, r, inbound = 0;
Ed Swarthout91080f72007-08-02 14:09:49 -0500305 u16 ltssm;
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500306 u8 temp8, pcie_cap;
Zhao Qiang5d39f742013-10-12 13:46:33 +0800307 int pcie_cap_pos;
308 int pci_dcr;
309 int pci_dsr;
310 int pci_lsr;
311
312#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
313 int pci_lcr;
314#endif
315
Kumar Gala65e198d2009-08-03 20:44:55 -0500316 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galae770f352009-08-03 21:02:02 -0500317 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500318 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout91080f72007-08-02 14:09:49 -0500319
320 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkdc770c72008-07-14 15:19:07 +0200321 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab582dae2011-02-04 09:00:43 +0530322 volatile pit_t *pi;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500323
324 u64 out_hi = 0, out_lo = -1ULL;
325 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout91080f72007-08-02 14:09:49 -0500326
Kumar Gala65e198d2009-08-03 20:44:55 -0500327 pci_setup_indirect(hose, cfg_addr, cfg_data);
328
Joakim Tjernlundbc42fde2017-09-12 19:56:41 +0200329#ifdef PEX_CCB_DIV
330 /* Configure the PCIE controller core clock ratio */
331 pci_hose_write_config_dword(hose, dev, 0x440,
332 ((gd->bus_clk / 1000000) *
333 (16 / PEX_CCB_DIV)) / 333);
334#endif
Prabhakar Kushwahab582dae2011-02-04 09:00:43 +0530335 block_rev = in_be32(&pci->block_rev1);
336 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
337 pi = &pci->pit[2]; /* 0xDC0 */
338 } else {
339 pi = &pci->pit[3]; /* 0xDE0 */
340 }
341
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500342 /* Handle setup of outbound windows first */
343 for (r = 0; r < hose->region_count; r++) {
344 unsigned long flags = hose->regions[r].flags;
345 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galae770f352009-08-03 21:02:02 -0500346
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500347 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
348 if (flags != PCI_REGION_SYS_MEMORY) {
349 u64 start = hose->regions[r].bus_start;
350 u64 end = start + hose->regions[r].size;
Kumar Galae770f352009-08-03 21:02:02 -0500351
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500352 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
353 out_be32(&po->potar, start >> 12);
Kumar Gala87006ca2008-10-21 10:13:14 -0500354#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500355 out_be32(&po->potear, start >> 44);
Kumar Gala87006ca2008-10-21 10:13:14 -0500356#else
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500357 out_be32(&po->potear, 0);
Kumar Gala87006ca2008-10-21 10:13:14 -0500358#endif
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500359 if (hose->regions[r].flags & PCI_REGION_IO) {
360 out_be32(&po->powar, POWAR_EN | sz |
361 POWAR_IO_READ | POWAR_IO_WRITE);
362 } else {
363 out_be32(&po->powar, POWAR_EN | sz |
364 POWAR_MEM_READ | POWAR_MEM_WRITE);
365 out_lo = min(start, out_lo);
366 out_hi = max(end, out_hi);
367 }
Ed Swarthout91080f72007-08-02 14:09:49 -0500368 po++;
369 }
370 }
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500371 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
372
373 /* setup PCSRBAR/PEXCSRBAR */
374 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
375 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
376 pcicsrbar_sz = ~pcicsrbar_sz + 1;
377
378 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
379 (out_lo > 0x100000000ull))
380 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
381 else
382 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
383 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
384
385 out_lo = min(out_lo, (u64)pcicsrbar);
386
387 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
388
389 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
390 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
391 hose->region_count++;
Ed Swarthout91080f72007-08-02 14:09:49 -0500392
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500393 /* see if we are a PCIe or PCI controller */
Zhao Qiang5d39f742013-10-12 13:46:33 +0800394 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
395 pci_dcr = pcie_cap_pos + 0x08;
396 pci_dsr = pcie_cap_pos + 0x0a;
397 pci_lsr = pcie_cap_pos + 0x12;
398
399 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500400
Liu Gang27afb9c2013-05-07 16:30:46 +0800401#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gang99e0c292012-08-09 05:10:02 +0000402 /* boot from PCIE --master */
Simon Glass64b723f2017-08-03 12:22:12 -0600403 char *s = env_get("bootmaster");
Liu Gang99e0c292012-08-09 05:10:02 +0000404 char pcie[6];
405 sprintf(pcie, "PCIE%d", pci_info->pci_num);
406
407 if (s && (strcmp(s, pcie) == 0)) {
408 debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n",
409 pci_info->pci_num);
410 fsl_pcie_boot_master((pit_t *)pi);
411 } else {
412 /* inbound */
413 inbound = fsl_pci_setup_inbound_windows(hose,
414 out_lo, pcie_cap, pi);
415 }
416#else
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500417 /* inbound */
418 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
Liu Gang99e0c292012-08-09 05:10:02 +0000419#endif
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500420
421 for (r = 0; r < hose->region_count; r++)
Marek Vasut2e662ee2011-10-21 14:17:21 +0000422 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500423 (u64)hose->regions[r].phys_start,
Marek Vasut2e662ee2011-10-21 14:17:21 +0000424 (u64)hose->regions[r].bus_start,
425 (u64)hose->regions[r].size,
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500426 hose->regions[r].flags);
427
Ed Swarthout91080f72007-08-02 14:09:49 -0500428 pci_register_hose(hose);
429 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
430 hose->current_busno = hose->first_busno;
431
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500432 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williamsbf895ad2011-07-22 04:01:30 +0000433 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout15bc3e72007-07-27 01:50:45 -0500434 * - Master abort (pci)
435 * - Master PERR (pci)
436 * - ICCA (PCIe)
437 */
Zhao Qiang5d39f742013-10-12 13:46:33 +0800438 pci_hose_read_config_dword(hose, dev, pci_dcr, &temp32);
Ed Swarthout91080f72007-08-02 14:09:49 -0500439 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
Zhao Qiang5d39f742013-10-12 13:46:33 +0800440 pci_hose_write_config_dword(hose, dev, pci_dcr, temp32);
Ed Swarthout91080f72007-08-02 14:09:49 -0500441
Prabhakar Kushwaha1c48e772011-02-01 15:55:58 +0000442#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
Zhao Qiang5d39f742013-10-12 13:46:33 +0800443 pci_lcr = pcie_cap_pos + 0x10;
Prabhakar Kushwaha1c48e772011-02-01 15:55:58 +0000444 temp32 = 0;
Zhao Qiang5d39f742013-10-12 13:46:33 +0800445 pci_hose_read_config_dword(hose, dev, pci_lcr, &temp32);
Prabhakar Kushwaha1c48e772011-02-01 15:55:58 +0000446 temp32 &= ~0x03; /* Disable ASPM */
Zhao Qiang5d39f742013-10-12 13:46:33 +0800447 pci_hose_write_config_dword(hose, dev, pci_lcr, temp32);
Prabhakar Kushwaha1c48e772011-02-01 15:55:58 +0000448 udelay(1);
449#endif
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500450 if (pcie_cap == PCI_CAP_ID_EXP) {
Zang Roy-R6191169982822013-07-04 07:25:03 +0800451 if (block_rev >= PEX_IP_BLK_REV_3_0) {
452#define PEX_CSR0_LTSSM_MASK 0xFC
453#define PEX_CSR0_LTSSM_SHIFT 2
454 ltssm = (in_be32(&pci->pex_csr0)
455 & PEX_CSR0_LTSSM_MASK) >> PEX_CSR0_LTSSM_SHIFT;
456 enabled = (ltssm == 0x11) ? 1 : 0;
Zhao Qiangf36e0ba2015-03-26 16:13:09 +0800457#ifdef CONFIG_FSL_PCIE_RESET
458 int i;
459 /* assert PCIe reset */
460 setbits_be32(&pci->pdb_stat, 0x08000000);
461 (void) in_be32(&pci->pdb_stat);
462 udelay(1000);
463 /* clear PCIe reset */
464 clrbits_be32(&pci->pdb_stat, 0x08000000);
465 asm("sync;isync");
466 for (i = 0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
467 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
468 &ltssm);
469 udelay(1000);
470 }
471#endif
Zang Roy-R6191169982822013-07-04 07:25:03 +0800472 } else {
473 /* pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm); */
474 /* enabled = ltssm >= PCI_LTSSM_L0; */
Ed Swarthout91080f72007-08-02 14:09:49 -0500475 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
476 enabled = ltssm >= PCI_LTSSM_L0;
477
Kumar Gala93166d22007-12-07 12:17:34 -0600478#ifdef CONFIG_FSL_PCIE_RESET
479 if (ltssm == 1) {
480 int i;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500481 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
482 /* assert PCIe reset */
483 setbits_be32(&pci->pdb_stat, 0x08000000);
484 (void) in_be32(&pci->pdb_stat);
Kumar Gala93166d22007-12-07 12:17:34 -0600485 udelay(100);
Marek Vasut2e662ee2011-10-21 14:17:21 +0000486 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500487 &pci->pdb_stat, in_be32(&pci->pdb_stat));
488 /* clear PCIe reset */
489 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala93166d22007-12-07 12:17:34 -0600490 asm("sync;isync");
491 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
492 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
493 &ltssm);
494 udelay(1000);
495 debug("....PCIe link error. "
496 "LTSSM=0x%02x.\n", ltssm);
497 }
498 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500499
500 /* we need to re-write the bar0 since a reset will
501 * clear it
502 */
503 pci_hose_write_config_dword(hose, dev,
504 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala93166d22007-12-07 12:17:34 -0600505 }
506#endif
Zang Roy-R6191169982822013-07-04 07:25:03 +0800507 }
Kumar Gala93166d22007-12-07 12:17:34 -0600508
Yuanquan Chenc48234e2012-11-26 23:49:45 +0000509#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
510 if (enabled == 0) {
511 serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
512 temp32 = in_be32(&srds_regs->srdspccr0);
513
514 if ((temp32 >> 28) == 3) {
515 int i;
516
517 out_be32(&srds_regs->srdspccr0, 2 << 28);
518 setbits_be32(&pci->pdb_stat, 0x08000000);
519 in_be32(&pci->pdb_stat);
520 udelay(100);
521 clrbits_be32(&pci->pdb_stat, 0x08000000);
522 asm("sync;isync");
523 for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
524 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
525 udelay(1000);
526 }
527 enabled = ltssm >= PCI_LTSSM_L0;
528 }
529 }
530#endif
Ed Swarthout91080f72007-08-02 14:09:49 -0500531 if (!enabled) {
Zang Roy-R61911cd940612014-06-12 14:49:23 -0500532 /* Let the user know there's no PCIe link for root
533 * complex. for endpoint, the link may not setup, so
534 * print undetermined.
535 */
536 if (fsl_is_pci_agent(hose))
537 printf("undetermined, regs @ 0x%lx\n", pci_info->regs);
538 else
539 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout91080f72007-08-02 14:09:49 -0500540 hose->last_busno = hose->first_busno;
541 return;
542 }
543
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500544 out_be32(&pci->pme_msg_det, 0xffffffff);
545 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser3771ba32010-12-28 17:47:25 -0600546
547 /* Print the negotiated PCIe link width */
Zhao Qiang5d39f742013-10-12 13:46:33 +0800548 pci_hose_read_config_word(hose, dev, pci_lsr, &temp16);
Prabhakar Kushwaha5e5b6ee2014-01-25 12:53:32 +0530549 printf("x%d gen%d, regs @ 0x%lx\n", (temp16 & 0x3f0) >> 4,
550 (temp16 & 0xf), pci_info->regs);
Peter Tyser3771ba32010-12-28 17:47:25 -0600551
Ed Swarthout91080f72007-08-02 14:09:49 -0500552 hose->current_busno++; /* Start scan with secondary */
553 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout91080f72007-08-02 14:09:49 -0500554 }
555
Tony O'Brien8acb1272016-12-02 09:22:34 +1300556#ifdef CONFIG_SYS_FSL_ERRATUM_A007815
557 /* The Read-Only Write Enable bit defaults to 1 instead of 0.
558 * Set to 0 to protect the read-only registers.
559 */
560 clrbits_be32(&pci->dbi_ro_wr_en, 0x01);
561#endif
562
Ed Swarthout1ab6def2007-08-20 23:55:33 -0500563 /* Use generic setup_device to initialize standard pci regs,
564 * but do not allocate any windows since any BAR found (such
565 * as PCSRBAR) is not in this cpu's memory space.
566 */
Ed Swarthout1ab6def2007-08-20 23:55:33 -0500567 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout91080f72007-08-02 14:09:49 -0500568 hose->pci_prefetch, hose->pci_io);
Ed Swarthout1ab6def2007-08-20 23:55:33 -0500569
Ed Swarthoutd6e526c2007-10-19 17:51:40 -0500570 if (inbound) {
571 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
572 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
573 temp16 | PCI_COMMAND_MEMORY);
574 }
575
Ed Swarthout15bc3e72007-07-27 01:50:45 -0500576#ifndef CONFIG_PCI_NOSCAN
Minghuan Lianeb811d32012-08-21 23:35:42 +0000577 if (!fsl_is_pci_agent(hose)) {
Peter Tyser826fd9d2010-10-29 17:59:26 -0500578 debug(" Scanning PCI bus %02x\n",
Ed Swarthout3c13d702008-10-08 23:38:00 -0500579 hose->current_busno);
580 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
581 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500582 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout3c13d702008-10-08 23:38:00 -0500583 hose->current_busno, temp8);
584 hose->last_busno = hose->current_busno;
585 }
Ed Swarthout91080f72007-08-02 14:09:49 -0500586
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500587 /* if we are PCIe - update limit regs and subordinate busno
588 * for the virtual P2P bridge
589 */
590 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout91080f72007-08-02 14:09:49 -0500591 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
592 }
Ed Swarthout15bc3e72007-07-27 01:50:45 -0500593#else
594 hose->last_busno = hose->current_busno;
595#endif
Ed Swarthout91080f72007-08-02 14:09:49 -0500596
597 /* Clear all error indications */
Kumar Galaa0a5dbd2009-08-05 07:49:27 -0500598 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaa37b9ce2009-08-05 07:59:35 -0500599 out_be32(&pci->pme_msg_det, 0xffffffff);
600 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout91080f72007-08-02 14:09:49 -0500601
Zhao Qiang5d39f742013-10-12 13:46:33 +0800602 pci_hose_read_config_word(hose, dev, pci_dsr, &temp16);
Ed Swarthout91080f72007-08-02 14:09:49 -0500603 if (temp16) {
Zhao Qiang5d39f742013-10-12 13:46:33 +0800604 pci_hose_write_config_word(hose, dev, pci_dsr, 0xffff);
Ed Swarthout91080f72007-08-02 14:09:49 -0500605 }
606
607 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
608 if (temp16) {
Ed Swarthout91080f72007-08-02 14:09:49 -0500609 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
610 }
611}
Kumar Galafe29f1f2008-10-23 00:01:06 -0500612
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600613int fsl_is_pci_agent(struct pci_controller *hose)
614{
Zhao Qiang5d39f742013-10-12 13:46:33 +0800615 int pcie_cap_pos;
Minghuan Lianeb811d32012-08-21 23:35:42 +0000616 u8 pcie_cap;
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600617 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
618
Zhao Qiang5d39f742013-10-12 13:46:33 +0800619 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
620 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Minghuan Lianeb811d32012-08-21 23:35:42 +0000621 if (pcie_cap == PCI_CAP_ID_EXP) {
622 u8 header_type;
623
624 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE,
625 &header_type);
626 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL;
627 } else {
628 u8 prog_if;
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600629
Minghuan Lianeb811d32012-08-21 23:35:42 +0000630 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
Zang Roy-R6191169982822013-07-04 07:25:03 +0800631 /* Programming Interface (PCI_CLASS_PROG)
632 * 0 == pci host or pcie root-complex,
633 * 1 == pci agent or pcie end-point
634 */
Minghuan Lianeb811d32012-08-21 23:35:42 +0000635 return (prog_if == FSL_PROG_IF_AGENT);
636 }
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600637}
638
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530639int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Galab83ff072009-11-04 01:29:04 -0600640 struct pci_controller *hose, int busno)
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530641{
642 volatile ccsr_fsl_pci_t *pci;
643 struct pci_region *r;
Peter Tyser149dcbc2010-10-28 15:24:59 -0500644 pci_dev_t dev = PCI_BDF(busno,0,0);
Zhao Qiang5d39f742013-10-12 13:46:33 +0800645 int pcie_cap_pos;
Peter Tyser149dcbc2010-10-28 15:24:59 -0500646 u8 pcie_cap;
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530647
648 pci = (ccsr_fsl_pci_t *) pci_info->regs;
649
650 /* on non-PCIe controllers we don't have pme_msg_det so this code
651 * should do nothing since the read will return 0
652 */
653 if (in_be32(&pci->pme_msg_det)) {
654 out_be32(&pci->pme_msg_det, 0xffffffff);
655 debug (" with errors. Clearing. Now 0x%08x",
656 pci->pme_msg_det);
657 }
658
659 r = hose->regions + hose->region_count;
660
661 /* outbound memory */
662 pci_set_region(r++,
663 pci_info->mem_bus,
664 pci_info->mem_phys,
665 pci_info->mem_size,
666 PCI_REGION_MEM);
667
668 /* outbound io */
669 pci_set_region(r++,
670 pci_info->io_bus,
671 pci_info->io_phys,
672 pci_info->io_size,
673 PCI_REGION_IO);
674
675 hose->region_count = r - hose->regions;
676 hose->first_busno = busno;
677
Peter Tyser3771ba32010-12-28 17:47:25 -0600678 fsl_pci_init(hose, pci_info);
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530679
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600680 if (fsl_is_pci_agent(hose)) {
681 fsl_pci_config_unlock(hose);
682 hose->last_busno = hose->first_busno;
Liu Gang27afb9c2013-05-07 16:30:46 +0800683#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gang99e0c292012-08-09 05:10:02 +0000684 } else {
685 /* boot from PCIE --master releases slave's core 0 */
Simon Glass64b723f2017-08-03 12:22:12 -0600686 char *s = env_get("bootmaster");
Liu Gang99e0c292012-08-09 05:10:02 +0000687 char pcie[6];
688 sprintf(pcie, "PCIE%d", pci_info->pci_num);
689
690 if (s && (strcmp(s, pcie) == 0))
691 fsl_pcie_boot_master_release_slave(pci_info->pci_num);
692#endif
Ed Swarthout4451a6d2009-11-02 09:05:49 -0600693 }
694
Zhao Qiang5d39f742013-10-12 13:46:33 +0800695 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
696 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyser2b91f712010-10-29 17:59:24 -0500697 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser3771ba32010-12-28 17:47:25 -0600698 "e" : "", pci_info->pci_num,
Peter Tyser2b91f712010-10-29 17:59:24 -0500699 hose->first_busno, hose->last_busno);
Poonam Aggrwal1c796172009-08-21 07:29:42 +0530700 return(hose->last_busno + 1);
701}
702
Peter Tyserbc98e542008-10-29 12:39:26 -0500703/* Enable inbound PCI config cycles for agent/endpoint interface */
704void fsl_pci_config_unlock(struct pci_controller *hose)
705{
706 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
Zhao Qiang5d39f742013-10-12 13:46:33 +0800707 int pcie_cap_pos;
Peter Tyserbc98e542008-10-29 12:39:26 -0500708 u8 pcie_cap;
709 u16 pbfr;
710
Minghuan Lianeb811d32012-08-21 23:35:42 +0000711 if (!fsl_is_pci_agent(hose))
Peter Tyserbc98e542008-10-29 12:39:26 -0500712 return;
713
Zhao Qiang5d39f742013-10-12 13:46:33 +0800714 pcie_cap_pos = pci_hose_find_capability(hose, dev, PCI_CAP_ID_EXP);
715 pci_hose_read_config_byte(hose, dev, pcie_cap_pos, &pcie_cap);
Peter Tyserbc98e542008-10-29 12:39:26 -0500716 if (pcie_cap != 0x0) {
Minghuan Lian143adc92015-03-27 13:24:39 +0800717 ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)hose->cfg_addr;
718 u32 block_rev = in_be32(&pci->block_rev1);
Peter Tyserbc98e542008-10-29 12:39:26 -0500719 /* PCIe - set CFG_READY bit of Configuration Ready Register */
Minghuan Lian143adc92015-03-27 13:24:39 +0800720 if (block_rev >= PEX_IP_BLK_REV_3_0)
721 setbits_be32(&pci->config, FSL_PCIE_V3_CFG_RDY);
722 else
723 pci_hose_write_config_byte(hose, dev,
724 FSL_PCIE_CFG_RDY, 0x1);
Peter Tyserbc98e542008-10-29 12:39:26 -0500725 } else {
726 /* PCI - clear ACL bit of PBFR */
727 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
728 pbfr &= ~0x20;
729 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
730 }
731}
732
Kumar Gala4d4384e2010-12-15 14:21:41 -0600733#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denka4de8352011-02-02 22:36:10 +0100734 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Gala4d4384e2010-12-15 14:21:41 -0600735int fsl_configure_pcie(struct fsl_pci_info *info,
736 struct pci_controller *hose,
737 const char *connected, int busno)
738{
739 int is_endpoint;
740
741 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
742 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser3771ba32010-12-28 17:47:25 -0600743
Kumar Gala4d4384e2010-12-15 14:21:41 -0600744 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser3771ba32010-12-28 17:47:25 -0600745 printf("PCIe%u: %s", info->pci_num,
746 is_endpoint ? "Endpoint" : "Root Complex");
747 if (connected)
748 printf(" of %s", connected);
749 puts(", ");
750
Kumar Gala4d4384e2010-12-15 14:21:41 -0600751 return fsl_pci_init_port(info, hose, busno);
752}
753
754#if defined(CONFIG_FSL_CORENET)
York Sun9941a222012-10-08 07:44:19 +0000755#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
756 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1
757 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2
758 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3
759 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4
760#else
Kumar Gala4d4384e2010-12-15 14:21:41 -0600761 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
762 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
763 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
764 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
York Sun9941a222012-10-08 07:44:19 +0000765#endif
Kumar Gala4d4384e2010-12-15 14:21:41 -0600766 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
767#elif defined(CONFIG_MPC85xx)
768 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
769 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
770 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
771 #define _DEVDISR_PCIE4 0
772 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
773#elif defined(CONFIG_MPC86xx)
774 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
775 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
776 #define _DEVDISR_PCIE3 0
777 #define _DEVDISR_PCIE4 0
778 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
779 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
780#else
781#error "No defines for DEVDISR_PCIE"
782#endif
783
784/* Implement a dummy function for those platforms w/o SERDES */
785static const char *__board_serdes_name(enum srds_prtcl device)
786{
787 switch (device) {
788#ifdef CONFIG_SYS_PCIE1_NAME
789 case PCIE1:
790 return CONFIG_SYS_PCIE1_NAME;
791#endif
792#ifdef CONFIG_SYS_PCIE2_NAME
793 case PCIE2:
794 return CONFIG_SYS_PCIE2_NAME;
795#endif
796#ifdef CONFIG_SYS_PCIE3_NAME
797 case PCIE3:
798 return CONFIG_SYS_PCIE3_NAME;
799#endif
800#ifdef CONFIG_SYS_PCIE4_NAME
801 case PCIE4:
802 return CONFIG_SYS_PCIE4_NAME;
803#endif
804 default:
805 return NULL;
806 }
807
808 return NULL;
809}
810
811__attribute__((weak, alias("__board_serdes_name"))) const char *
812board_serdes_name(enum srds_prtcl device);
813
814static u32 devdisr_mask[] = {
815 _DEVDISR_PCIE1,
816 _DEVDISR_PCIE2,
817 _DEVDISR_PCIE3,
818 _DEVDISR_PCIE4,
819};
820
821int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
822 struct fsl_pci_info *pci_info)
823{
824 struct pci_controller *hose;
825 int num = dev - PCIE1;
826
827 hose = calloc(1, sizeof(struct pci_controller));
828 if (!hose)
829 return busno;
830
831 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
832 busno = fsl_configure_pcie(pci_info, hose,
833 board_serdes_name(dev), busno);
834 } else {
Peter Tyser3771ba32010-12-28 17:47:25 -0600835 printf("PCIe%d: disabled\n", num + 1);
Kumar Gala4d4384e2010-12-15 14:21:41 -0600836 }
837
838 return busno;
839}
840
841int fsl_pcie_init_board(int busno)
842{
843 struct fsl_pci_info pci_info;
844 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
York Sun9941a222012-10-08 07:44:19 +0000845 u32 devdisr;
846 u32 *addr;
847
848#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
849 addr = &gur->devdisr3;
850#else
851 addr = &gur->devdisr;
852#endif
853 devdisr = in_be32(addr);
Kumar Gala4d4384e2010-12-15 14:21:41 -0600854
855#ifdef CONFIG_PCIE1
856 SET_STD_PCIE_INFO(pci_info, 1);
857 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
858#else
York Sun9941a222012-10-08 07:44:19 +0000859 setbits_be32(addr, _DEVDISR_PCIE1); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600860#endif
861
862#ifdef CONFIG_PCIE2
863 SET_STD_PCIE_INFO(pci_info, 2);
864 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
865#else
York Sun9941a222012-10-08 07:44:19 +0000866 setbits_be32(addr, _DEVDISR_PCIE2); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600867#endif
868
869#ifdef CONFIG_PCIE3
870 SET_STD_PCIE_INFO(pci_info, 3);
871 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
872#else
York Sun9941a222012-10-08 07:44:19 +0000873 setbits_be32(addr, _DEVDISR_PCIE3); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600874#endif
875
876#ifdef CONFIG_PCIE4
877 SET_STD_PCIE_INFO(pci_info, 4);
878 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
879#else
York Sun9941a222012-10-08 07:44:19 +0000880 setbits_be32(addr, _DEVDISR_PCIE4); /* disable */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600881#endif
882
883 return busno;
884}
885#else
886int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
887 struct fsl_pci_info *pci_info)
888{
889 return busno;
890}
891
892int fsl_pcie_init_board(int busno)
893{
894 return busno;
895}
896#endif
897
Kumar Galafe29f1f2008-10-23 00:01:06 -0500898#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamada75f82d02018-03-05 01:20:11 +0900899#include <linux/libfdt.h>
Kumar Galafe29f1f2008-10-23 00:01:06 -0500900#include <fdt_support.h>
901
Kumar Galad0f27d32010-07-08 22:37:44 -0500902void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Galadb943ed2010-12-17 05:57:25 -0600903 unsigned long ctrl_addr)
Kumar Galafe29f1f2008-10-23 00:01:06 -0500904{
Kumar Galad0f27d32010-07-08 22:37:44 -0500905 int off;
Kumar Gala326ed2f2010-03-30 10:07:12 -0500906 u32 bus_range[2];
Kumar Galad0f27d32010-07-08 22:37:44 -0500907 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Galadb943ed2010-12-17 05:57:25 -0600908 struct pci_controller *hose;
909
910 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Galad0f27d32010-07-08 22:37:44 -0500911
912 /* convert ctrl_addr to true physical address */
913 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
914 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
915
916 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galafe29f1f2008-10-23 00:01:06 -0500917
Kumar Gala326ed2f2010-03-30 10:07:12 -0500918 if (off < 0)
919 return;
Kumar Galafe29f1f2008-10-23 00:01:06 -0500920
Kumar Gala326ed2f2010-03-30 10:07:12 -0500921 /* We assume a cfg_addr not being set means we didn't setup the controller */
922 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Galad0f27d32010-07-08 22:37:44 -0500923 fdt_del_node(blob, off);
Kumar Gala326ed2f2010-03-30 10:07:12 -0500924 } else {
Kumar Galafe29f1f2008-10-23 00:01:06 -0500925 bus_range[0] = 0;
926 bus_range[1] = hose->last_busno - hose->first_busno;
927 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
928 fdt_pci_dma_ranges(blob, off, hose);
929 }
930}
931#endif