blob: 17ca961abf93f74e38a06c25bf1669164ba78bc0 [file] [log] [blame]
Ed Swarthout63cec582007-08-02 14:09:49 -05001/*
Minghuan Lian505f3e62012-08-21 23:35:42 +00002 * Copyright 2007-2012 Freescale Semiconductor, Inc.
Ed Swarthout63cec582007-08-02 14:09:49 -05003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Ed Swarthout63cec582007-08-02 14:09:49 -05005 */
Ed Swarthout2e4d94f2007-07-27 01:50:45 -05006
Ed Swarthout63cec582007-08-02 14:09:49 -05007#include <common.h>
Kumar Galaa4aafcc2010-12-15 14:21:41 -06008#include <malloc.h>
9#include <asm/fsl_serdes.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050010
Kumar Galab9a1fa92008-10-22 14:06:24 -050011DECLARE_GLOBAL_DATA_PTR;
12
Ed Swarthout63cec582007-08-02 14:09:49 -050013/*
14 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
15 *
16 * Initialize controller and call the common driver/pci pci_hose_scan to
17 * scan for bridges and devices.
18 *
19 * Hose fields which need to be pre-initialized by board specific code:
20 * regions[]
21 * first_busno
22 *
23 * Fields updated:
24 * last_busno
25 */
26
27#include <pci.h>
Kumar Galaad19e7a2009-08-05 07:59:35 -050028#include <asm/io.h>
Kumar Galac8514622009-04-02 13:22:48 -050029#include <asm/fsl_pci.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050030
Peter Tyser7a897952008-10-29 12:39:26 -050031/* Freescale-specific PCI config registers */
32#define FSL_PCI_PBFR 0x44
33#define FSL_PCIE_CAP_ID 0x4c
34#define FSL_PCIE_CFG_RDY 0x4b0
Ed Swarthout715d8f72009-11-02 09:05:49 -060035#define FSL_PROG_IF_AGENT 0x1
Peter Tyser7a897952008-10-29 12:39:26 -050036
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);
58 u32 flag = PIWAR_EN | PIWAR_LOCAL |
59 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
60
61 out_be32(&pi->pitar, r->phys_start >> 12);
62 out_be32(&pi->piwbar, r->bus_start >> 12);
63#ifdef CONFIG_SYS_PCI_64BIT
64 out_be32(&pi->piwbear, r->bus_start >> 44);
65#else
66 out_be32(&pi->piwbear, 0);
67#endif
68 if (r->flags & PCI_REGION_PREFETCH)
69 flag |= PIWAR_PF;
70 out_be32(&pi->piwar, flag | sz);
71}
72
Kumar Galaee536502009-11-04 13:00:55 -060073int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
74{
75 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
76
John Schmoller96d61602010-10-22 00:20:23 -050077 /* Reset hose to make sure its in a clean state */
78 memset(hose, 0, sizeof(struct pci_controller));
79
Kumar Galaee536502009-11-04 13:00:55 -060080 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
81
82 return fsl_is_pci_agent(hose);
83}
84
Kumar Galaad19e7a2009-08-05 07:59:35 -050085static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
86 u64 out_lo, u8 pcie_cap,
87 volatile pit_t *pi)
88{
89 struct pci_region *r = hose->regions + hose->region_count;
90 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Galab9a1fa92008-10-22 14:06:24 -050091
92 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
93 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaad19e7a2009-08-05 07:59:35 -050094 pci_size_t pci_sz;
Kumar Galab9a1fa92008-10-22 14:06:24 -050095
Kumar Galaad19e7a2009-08-05 07:59:35 -050096 /* we have no space available for inbound memory mapping */
97 if (bus_start > out_lo) {
98 printf ("no space for inbound mapping of memory\n");
99 return 0;
100 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500101
Kumar Galaad19e7a2009-08-05 07:59:35 -0500102 /* limit size */
103 if ((bus_start + sz) > out_lo) {
104 sz = out_lo - bus_start;
105 debug ("limiting size to %llx\n", sz);
106 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500107
108 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500109 /*
110 * we can overlap inbound/outbound windows on PCI-E since RX & TX
111 * links a separate
112 */
113 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
114 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
115 (u64)bus_start, (u64)phys_start, (u64)sz);
116 pci_set_region(r, bus_start, phys_start, sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600117 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500118 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500119
120 /* if we aren't an exact power of two match, pci_sz is smaller
121 * round it up to the next power of two. We report the actual
122 * size to pci region tracking.
123 */
124 if (pci_sz != sz)
125 sz = 2ull << __ilog2_u64(sz);
126
127 set_inbound_window(pi--, r++, sz);
128 sz = 0; /* make sure we dont set the R2 window */
129 } else {
130 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
131 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
132 pci_set_region(r, bus_start, phys_start, pci_sz,
133 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
134 PCI_REGION_PREFETCH);
135 set_inbound_window(pi--, r++, pci_sz);
136
Kumar Galab9a1fa92008-10-22 14:06:24 -0500137 sz -= pci_sz;
138 bus_start += pci_sz;
139 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500140
141 pci_sz = 1ull << __ilog2_u64(sz);
142 if (sz) {
143 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
144 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
145 pci_set_region(r, bus_start, phys_start, pci_sz,
146 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
147 PCI_REGION_PREFETCH);
148 set_inbound_window(pi--, r++, pci_sz);
149 sz -= pci_sz;
150 bus_start += pci_sz;
151 phys_start += pci_sz;
152 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500153 }
154
155#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Brucecd425162008-10-27 16:09:42 -0500156 /*
157 * On 64-bit capable systems, set up a mapping for all of DRAM
158 * in high pci address space.
159 */
Kumar Galab9a1fa92008-10-22 14:06:24 -0500160 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
161 /* round up to the next largest power of two */
162 if (gd->ram_size > pci_sz)
Becky Brucecd425162008-10-27 16:09:42 -0500163 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500164 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Brucecd425162008-10-27 16:09:42 -0500165 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500166 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
167 (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500168 pci_set_region(r,
Becky Brucecd425162008-10-27 16:09:42 -0500169 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500170 CONFIG_SYS_PCI_MEMORY_PHYS,
171 pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600172 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500173 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500174 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500175#else
176 pci_sz = 1ull << __ilog2_u64(sz);
177 if (sz) {
178 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
179 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500180 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600181 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500182 PCI_REGION_PREFETCH);
183 sz -= pci_sz;
184 bus_start += pci_sz;
185 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500186 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500187 }
188#endif
189
Kumar Gala4c253fd2008-12-09 10:27:33 -0600190#ifdef CONFIG_PHYS_64BIT
Kumar Galab9a1fa92008-10-22 14:06:24 -0500191 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
192 printf("Was not able to map all of memory via "
193 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4c253fd2008-12-09 10:27:33 -0600194#endif
Kumar Galab9a1fa92008-10-22 14:06:24 -0500195
Kumar Galaad19e7a2009-08-05 07:59:35 -0500196 hose->region_count = r - hose->regions;
197
198 return 1;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500199}
200
Liu Gangc8b28152013-05-07 16:30:46 +0800201#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000202static void fsl_pcie_boot_master(pit_t *pi)
203{
204 /* configure inbound window for slave's u-boot image */
205 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
206 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
207 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
208 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
209 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
210 struct pci_region r_inbound;
211 u32 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE)
212 - 1;
213 pci_set_region(&r_inbound,
214 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS1,
215 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
216 sz_inbound,
217 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
218
219 set_inbound_window(pi--, &r_inbound,
220 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
221
222 /* configure inbound window for slave's u-boot image */
223 debug("PCIEBOOT - MASTER: Inbound window for slave's image; "
224 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
225 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
226 (u64)CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
227 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
228 pci_set_region(&r_inbound,
229 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_BUS2,
230 CONFIG_SRIO_PCIE_BOOT_IMAGE_MEM_PHYS,
231 sz_inbound,
232 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
233
234 set_inbound_window(pi--, &r_inbound,
235 CONFIG_SRIO_PCIE_BOOT_IMAGE_SIZE);
236
237 /* configure inbound window for slave's ucode and ENV */
238 debug("PCIEBOOT - MASTER: Inbound window for slave's "
239 "ucode and ENV; "
240 "Local = 0x%llx, Bus = 0x%llx, Size = 0x%x\n",
241 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
242 (u64)CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
243 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
244 sz_inbound = __ilog2_u64(CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE)
245 - 1;
246 pci_set_region(&r_inbound,
247 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_BUS,
248 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_MEM_PHYS,
249 sz_inbound,
250 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
251
252 set_inbound_window(pi--, &r_inbound,
253 CONFIG_SRIO_PCIE_BOOT_UCODE_ENV_SIZE);
254}
255
256static void fsl_pcie_boot_master_release_slave(int port)
257{
258 unsigned long release_addr;
259
260 /* now release slave's core 0 */
261 switch (port) {
262 case 1:
263 release_addr = CONFIG_SYS_PCIE1_MEM_VIRT
264 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
265 break;
York Suna1e43182012-10-08 07:44:04 +0000266#ifdef CONFIG_SYS_PCIE2_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000267 case 2:
268 release_addr = CONFIG_SYS_PCIE2_MEM_VIRT
269 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
270 break;
York Suna1e43182012-10-08 07:44:04 +0000271#endif
272#ifdef CONFIG_SYS_PCIE3_MEM_VIRT
Liu Gangb5f7c872012-08-09 05:10:02 +0000273 case 3:
274 release_addr = CONFIG_SYS_PCIE3_MEM_VIRT
275 + CONFIG_SRIO_PCIE_BOOT_BRR_OFFSET;
276 break;
York Suna1e43182012-10-08 07:44:04 +0000277#endif
Liu Gangb5f7c872012-08-09 05:10:02 +0000278 default:
279 release_addr = 0;
280 break;
281 }
282 if (release_addr != 0) {
283 out_be32((void *)release_addr,
284 CONFIG_SRIO_PCIE_BOOT_RELEASE_MASK);
285 debug("PCIEBOOT - MASTER: "
286 "Release slave successfully! Now the slave should start up!\n");
287 } else {
288 debug("PCIEBOOT - MASTER: "
289 "Release slave failed!\n");
290 }
291}
292#endif
293
Peter Tyser213ac732010-12-28 17:47:25 -0600294void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout63cec582007-08-02 14:09:49 -0500295{
Peter Tyser213ac732010-12-28 17:47:25 -0600296 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
297 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout63cec582007-08-02 14:09:49 -0500298 u16 temp16;
299 u32 temp32;
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530300 u32 block_rev;
Kumar Gala8295b942009-08-05 07:49:27 -0500301 int enabled, r, inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500302 u16 ltssm;
Kumar Gala8295b942009-08-05 07:49:27 -0500303 u8 temp8, pcie_cap;
Kumar Galafb3143b2009-08-03 20:44:55 -0500304 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galacb151aa2009-08-03 21:02:02 -0500305 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Gala8295b942009-08-05 07:49:27 -0500306 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout63cec582007-08-02 14:09:49 -0500307
308 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200309 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530310 volatile pit_t *pi;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500311
312 u64 out_hi = 0, out_lo = -1ULL;
313 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout63cec582007-08-02 14:09:49 -0500314
Kumar Galafb3143b2009-08-03 20:44:55 -0500315 pci_setup_indirect(hose, cfg_addr, cfg_data);
316
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530317 block_rev = in_be32(&pci->block_rev1);
318 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
319 pi = &pci->pit[2]; /* 0xDC0 */
320 } else {
321 pi = &pci->pit[3]; /* 0xDE0 */
322 }
323
Kumar Galaad19e7a2009-08-05 07:59:35 -0500324 /* Handle setup of outbound windows first */
325 for (r = 0; r < hose->region_count; r++) {
326 unsigned long flags = hose->regions[r].flags;
Kumar Gala612ea012008-10-21 10:13:14 -0500327 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500328
329 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
330 if (flags != PCI_REGION_SYS_MEMORY) {
331 u64 start = hose->regions[r].bus_start;
332 u64 end = start + hose->regions[r].size;
333
334 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
335 out_be32(&po->potar, start >> 12);
Kumar Gala612ea012008-10-21 10:13:14 -0500336#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaad19e7a2009-08-05 07:59:35 -0500337 out_be32(&po->potear, start >> 44);
Kumar Gala612ea012008-10-21 10:13:14 -0500338#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500339 out_be32(&po->potear, 0);
Kumar Gala612ea012008-10-21 10:13:14 -0500340#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500341 if (hose->regions[r].flags & PCI_REGION_IO) {
342 out_be32(&po->powar, POWAR_EN | sz |
343 POWAR_IO_READ | POWAR_IO_WRITE);
344 } else {
345 out_be32(&po->powar, POWAR_EN | sz |
346 POWAR_MEM_READ | POWAR_MEM_WRITE);
347 out_lo = min(start, out_lo);
348 out_hi = max(end, out_hi);
349 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500350 po++;
351 }
352 }
Kumar Galaad19e7a2009-08-05 07:59:35 -0500353 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
354
355 /* setup PCSRBAR/PEXCSRBAR */
356 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
357 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
358 pcicsrbar_sz = ~pcicsrbar_sz + 1;
359
360 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
361 (out_lo > 0x100000000ull))
362 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
363 else
364 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
365 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
366
367 out_lo = min(out_lo, (u64)pcicsrbar);
368
369 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
370
371 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
372 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
373 hose->region_count++;
Ed Swarthout63cec582007-08-02 14:09:49 -0500374
Kumar Gala8295b942009-08-05 07:49:27 -0500375 /* see if we are a PCIe or PCI controller */
376 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
377
Liu Gangc8b28152013-05-07 16:30:46 +0800378#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000379 /* boot from PCIE --master */
380 char *s = getenv("bootmaster");
381 char pcie[6];
382 sprintf(pcie, "PCIE%d", pci_info->pci_num);
383
384 if (s && (strcmp(s, pcie) == 0)) {
385 debug("PCIEBOOT - MASTER: Master port [ %d ] for pcie boot.\n",
386 pci_info->pci_num);
387 fsl_pcie_boot_master((pit_t *)pi);
388 } else {
389 /* inbound */
390 inbound = fsl_pci_setup_inbound_windows(hose,
391 out_lo, pcie_cap, pi);
392 }
393#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500394 /* inbound */
395 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
Liu Gangb5f7c872012-08-09 05:10:02 +0000396#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500397
398 for (r = 0; r < hose->region_count; r++)
Marek Vasutd015df82011-10-21 14:17:21 +0000399 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500400 (u64)hose->regions[r].phys_start,
Marek Vasutd015df82011-10-21 14:17:21 +0000401 (u64)hose->regions[r].bus_start,
402 (u64)hose->regions[r].size,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500403 hose->regions[r].flags);
404
Ed Swarthout63cec582007-08-02 14:09:49 -0500405 pci_register_hose(hose);
406 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
407 hose->current_busno = hose->first_busno;
408
Kumar Galaad19e7a2009-08-05 07:59:35 -0500409 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williams16263082011-07-22 04:01:30 +0000410 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500411 * - Master abort (pci)
412 * - Master PERR (pci)
413 * - ICCA (PCIe)
414 */
Kumar Galaad19e7a2009-08-05 07:59:35 -0500415 pci_hose_read_config_dword(hose, dev, PCI_DCR, &temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500416 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
417 pci_hose_write_config_dword(hose, dev, PCI_DCR, temp32);
418
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000419#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
420 temp32 = 0;
421 pci_hose_read_config_dword(hose, dev, PCI_LCR, &temp32);
422 temp32 &= ~0x03; /* Disable ASPM */
423 pci_hose_write_config_dword(hose, dev, PCI_LCR, temp32);
424 udelay(1);
425#endif
Kumar Gala8295b942009-08-05 07:49:27 -0500426 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500427 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
428 enabled = ltssm >= PCI_LTSSM_L0;
429
Kumar Gala8ff3de62007-12-07 12:17:34 -0600430#ifdef CONFIG_FSL_PCIE_RESET
431 if (ltssm == 1) {
432 int i;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500433 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
434 /* assert PCIe reset */
435 setbits_be32(&pci->pdb_stat, 0x08000000);
436 (void) in_be32(&pci->pdb_stat);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600437 udelay(100);
Marek Vasutd015df82011-10-21 14:17:21 +0000438 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaad19e7a2009-08-05 07:59:35 -0500439 &pci->pdb_stat, in_be32(&pci->pdb_stat));
440 /* clear PCIe reset */
441 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600442 asm("sync;isync");
443 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
444 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
445 &ltssm);
446 udelay(1000);
447 debug("....PCIe link error. "
448 "LTSSM=0x%02x.\n", ltssm);
449 }
450 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500451
452 /* we need to re-write the bar0 since a reset will
453 * clear it
454 */
455 pci_hose_write_config_dword(hose, dev,
456 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600457 }
458#endif
459
Yuanquan Chenc0a4e6b2012-11-26 23:49:45 +0000460#ifdef CONFIG_SYS_P4080_ERRATUM_PCIE_A003
461 if (enabled == 0) {
462 serdes_corenet_t *srds_regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
463 temp32 = in_be32(&srds_regs->srdspccr0);
464
465 if ((temp32 >> 28) == 3) {
466 int i;
467
468 out_be32(&srds_regs->srdspccr0, 2 << 28);
469 setbits_be32(&pci->pdb_stat, 0x08000000);
470 in_be32(&pci->pdb_stat);
471 udelay(100);
472 clrbits_be32(&pci->pdb_stat, 0x08000000);
473 asm("sync;isync");
474 for (i=0; i < 100 && ltssm < PCI_LTSSM_L0; i++) {
475 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
476 udelay(1000);
477 }
478 enabled = ltssm >= PCI_LTSSM_L0;
479 }
480 }
481#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500482 if (!enabled) {
Peter Tyser213ac732010-12-28 17:47:25 -0600483 /* Let the user know there's no PCIe link */
484 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout63cec582007-08-02 14:09:49 -0500485 hose->last_busno = hose->first_busno;
486 return;
487 }
488
Kumar Galaad19e7a2009-08-05 07:59:35 -0500489 out_be32(&pci->pme_msg_det, 0xffffffff);
490 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser213ac732010-12-28 17:47:25 -0600491
492 /* Print the negotiated PCIe link width */
Ed Swarthout63cec582007-08-02 14:09:49 -0500493 pci_hose_read_config_word(hose, dev, PCI_LSR, &temp16);
Peter Tyser213ac732010-12-28 17:47:25 -0600494 printf("x%d, regs @ 0x%lx\n", (temp16 & 0x3f0 ) >> 4,
495 pci_info->regs);
496
Ed Swarthout63cec582007-08-02 14:09:49 -0500497 hose->current_busno++; /* Start scan with secondary */
498 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout63cec582007-08-02 14:09:49 -0500499 }
500
Ed Swarthout16e23c32007-08-20 23:55:33 -0500501 /* Use generic setup_device to initialize standard pci regs,
502 * but do not allocate any windows since any BAR found (such
503 * as PCSRBAR) is not in this cpu's memory space.
504 */
Ed Swarthout16e23c32007-08-20 23:55:33 -0500505 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500506 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500507
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500508 if (inbound) {
509 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
510 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
511 temp16 | PCI_COMMAND_MEMORY);
512 }
513
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500514#ifndef CONFIG_PCI_NOSCAN
Minghuan Lian505f3e62012-08-21 23:35:42 +0000515 if (!fsl_is_pci_agent(hose)) {
Peter Tyser37d03fc2010-10-29 17:59:26 -0500516 debug(" Scanning PCI bus %02x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500517 hose->current_busno);
518 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
519 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500520 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500521 hose->current_busno, temp8);
522 hose->last_busno = hose->current_busno;
523 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500524
Kumar Gala8295b942009-08-05 07:49:27 -0500525 /* if we are PCIe - update limit regs and subordinate busno
526 * for the virtual P2P bridge
527 */
528 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500529 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
530 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500531#else
532 hose->last_busno = hose->current_busno;
533#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500534
535 /* Clear all error indications */
Kumar Gala8295b942009-08-05 07:49:27 -0500536 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaad19e7a2009-08-05 07:59:35 -0500537 out_be32(&pci->pme_msg_det, 0xffffffff);
538 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500539
540 pci_hose_read_config_word (hose, dev, PCI_DSR, &temp16);
541 if (temp16) {
Kumar Gala8295b942009-08-05 07:49:27 -0500542 pci_hose_write_config_word(hose, dev, PCI_DSR, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500543 }
544
545 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
546 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500547 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
548 }
549}
Kumar Galaa2aab462008-10-23 00:01:06 -0500550
Ed Swarthout715d8f72009-11-02 09:05:49 -0600551int fsl_is_pci_agent(struct pci_controller *hose)
552{
Minghuan Lian505f3e62012-08-21 23:35:42 +0000553 u8 pcie_cap;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600554 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
555
Minghuan Lian505f3e62012-08-21 23:35:42 +0000556 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
557 if (pcie_cap == PCI_CAP_ID_EXP) {
558 u8 header_type;
Ed Swarthout715d8f72009-11-02 09:05:49 -0600559
Minghuan Lian505f3e62012-08-21 23:35:42 +0000560 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE,
561 &header_type);
562 return (header_type & 0x7f) == PCI_HEADER_TYPE_NORMAL;
563 } else {
564 u8 prog_if;
565
566 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
567 return (prog_if == FSL_PROG_IF_AGENT);
568 }
Ed Swarthout715d8f72009-11-02 09:05:49 -0600569}
570
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530571int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Gala01471d52009-11-04 01:29:04 -0600572 struct pci_controller *hose, int busno)
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530573{
574 volatile ccsr_fsl_pci_t *pci;
575 struct pci_region *r;
Peter Tysera72dbae2010-10-28 15:24:59 -0500576 pci_dev_t dev = PCI_BDF(busno,0,0);
577 u8 pcie_cap;
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530578
579 pci = (ccsr_fsl_pci_t *) pci_info->regs;
580
581 /* on non-PCIe controllers we don't have pme_msg_det so this code
582 * should do nothing since the read will return 0
583 */
584 if (in_be32(&pci->pme_msg_det)) {
585 out_be32(&pci->pme_msg_det, 0xffffffff);
586 debug (" with errors. Clearing. Now 0x%08x",
587 pci->pme_msg_det);
588 }
589
590 r = hose->regions + hose->region_count;
591
592 /* outbound memory */
593 pci_set_region(r++,
594 pci_info->mem_bus,
595 pci_info->mem_phys,
596 pci_info->mem_size,
597 PCI_REGION_MEM);
598
599 /* outbound io */
600 pci_set_region(r++,
601 pci_info->io_bus,
602 pci_info->io_phys,
603 pci_info->io_size,
604 PCI_REGION_IO);
605
606 hose->region_count = r - hose->regions;
607 hose->first_busno = busno;
608
Peter Tyser213ac732010-12-28 17:47:25 -0600609 fsl_pci_init(hose, pci_info);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530610
Ed Swarthout715d8f72009-11-02 09:05:49 -0600611 if (fsl_is_pci_agent(hose)) {
612 fsl_pci_config_unlock(hose);
613 hose->last_busno = hose->first_busno;
Liu Gangc8b28152013-05-07 16:30:46 +0800614#ifdef CONFIG_SRIO_PCIE_BOOT_MASTER
Liu Gangb5f7c872012-08-09 05:10:02 +0000615 } else {
616 /* boot from PCIE --master releases slave's core 0 */
617 char *s = getenv("bootmaster");
618 char pcie[6];
619 sprintf(pcie, "PCIE%d", pci_info->pci_num);
620
621 if (s && (strcmp(s, pcie) == 0))
622 fsl_pcie_boot_master_release_slave(pci_info->pci_num);
623#endif
Ed Swarthout715d8f72009-11-02 09:05:49 -0600624 }
625
Peter Tysera72dbae2010-10-28 15:24:59 -0500626 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500627 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser213ac732010-12-28 17:47:25 -0600628 "e" : "", pci_info->pci_num,
Peter Tyser8ca78f22010-10-29 17:59:24 -0500629 hose->first_busno, hose->last_busno);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530630
631 return(hose->last_busno + 1);
632}
633
Peter Tyser7a897952008-10-29 12:39:26 -0500634/* Enable inbound PCI config cycles for agent/endpoint interface */
635void fsl_pci_config_unlock(struct pci_controller *hose)
636{
637 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
Peter Tyser7a897952008-10-29 12:39:26 -0500638 u8 pcie_cap;
639 u16 pbfr;
640
Minghuan Lian505f3e62012-08-21 23:35:42 +0000641 if (!fsl_is_pci_agent(hose))
Peter Tyser7a897952008-10-29 12:39:26 -0500642 return;
643
644 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
645 if (pcie_cap != 0x0) {
646 /* PCIe - set CFG_READY bit of Configuration Ready Register */
647 pci_hose_write_config_byte(hose, dev, FSL_PCIE_CFG_RDY, 0x1);
648 } else {
649 /* PCI - clear ACL bit of PBFR */
650 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
651 pbfr &= ~0x20;
652 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
653 }
654}
655
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600656#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denkd1a24f02011-02-02 22:36:10 +0100657 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600658int fsl_configure_pcie(struct fsl_pci_info *info,
659 struct pci_controller *hose,
660 const char *connected, int busno)
661{
662 int is_endpoint;
663
664 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
665 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser213ac732010-12-28 17:47:25 -0600666
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600667 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600668 printf("PCIe%u: %s", info->pci_num,
669 is_endpoint ? "Endpoint" : "Root Complex");
670 if (connected)
671 printf(" of %s", connected);
672 puts(", ");
673
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600674 return fsl_pci_init_port(info, hose, busno);
675}
676
677#if defined(CONFIG_FSL_CORENET)
York Sun9e758752012-10-08 07:44:19 +0000678#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
679 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR3_PCIE1
680 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR3_PCIE2
681 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR3_PCIE3
682 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR3_PCIE4
683#else
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600684 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
685 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
686 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
687 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
York Sun9e758752012-10-08 07:44:19 +0000688#endif
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600689 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
690#elif defined(CONFIG_MPC85xx)
691 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
692 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
693 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
694 #define _DEVDISR_PCIE4 0
695 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
696#elif defined(CONFIG_MPC86xx)
697 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
698 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
699 #define _DEVDISR_PCIE3 0
700 #define _DEVDISR_PCIE4 0
701 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
702 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
703#else
704#error "No defines for DEVDISR_PCIE"
705#endif
706
707/* Implement a dummy function for those platforms w/o SERDES */
708static const char *__board_serdes_name(enum srds_prtcl device)
709{
710 switch (device) {
711#ifdef CONFIG_SYS_PCIE1_NAME
712 case PCIE1:
713 return CONFIG_SYS_PCIE1_NAME;
714#endif
715#ifdef CONFIG_SYS_PCIE2_NAME
716 case PCIE2:
717 return CONFIG_SYS_PCIE2_NAME;
718#endif
719#ifdef CONFIG_SYS_PCIE3_NAME
720 case PCIE3:
721 return CONFIG_SYS_PCIE3_NAME;
722#endif
723#ifdef CONFIG_SYS_PCIE4_NAME
724 case PCIE4:
725 return CONFIG_SYS_PCIE4_NAME;
726#endif
727 default:
728 return NULL;
729 }
730
731 return NULL;
732}
733
734__attribute__((weak, alias("__board_serdes_name"))) const char *
735board_serdes_name(enum srds_prtcl device);
736
737static u32 devdisr_mask[] = {
738 _DEVDISR_PCIE1,
739 _DEVDISR_PCIE2,
740 _DEVDISR_PCIE3,
741 _DEVDISR_PCIE4,
742};
743
744int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
745 struct fsl_pci_info *pci_info)
746{
747 struct pci_controller *hose;
748 int num = dev - PCIE1;
749
750 hose = calloc(1, sizeof(struct pci_controller));
751 if (!hose)
752 return busno;
753
754 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
755 busno = fsl_configure_pcie(pci_info, hose,
756 board_serdes_name(dev), busno);
757 } else {
Peter Tyser213ac732010-12-28 17:47:25 -0600758 printf("PCIe%d: disabled\n", num + 1);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600759 }
760
761 return busno;
762}
763
764int fsl_pcie_init_board(int busno)
765{
766 struct fsl_pci_info pci_info;
767 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
York Sun9e758752012-10-08 07:44:19 +0000768 u32 devdisr;
769 u32 *addr;
770
771#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
772 addr = &gur->devdisr3;
773#else
774 addr = &gur->devdisr;
775#endif
776 devdisr = in_be32(addr);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600777
778#ifdef CONFIG_PCIE1
779 SET_STD_PCIE_INFO(pci_info, 1);
780 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
781#else
York Sun9e758752012-10-08 07:44:19 +0000782 setbits_be32(addr, _DEVDISR_PCIE1); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600783#endif
784
785#ifdef CONFIG_PCIE2
786 SET_STD_PCIE_INFO(pci_info, 2);
787 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
788#else
York Sun9e758752012-10-08 07:44:19 +0000789 setbits_be32(addr, _DEVDISR_PCIE2); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600790#endif
791
792#ifdef CONFIG_PCIE3
793 SET_STD_PCIE_INFO(pci_info, 3);
794 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
795#else
York Sun9e758752012-10-08 07:44:19 +0000796 setbits_be32(addr, _DEVDISR_PCIE3); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600797#endif
798
799#ifdef CONFIG_PCIE4
800 SET_STD_PCIE_INFO(pci_info, 4);
801 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
802#else
York Sun9e758752012-10-08 07:44:19 +0000803 setbits_be32(addr, _DEVDISR_PCIE4); /* disable */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600804#endif
805
806 return busno;
807}
808#else
809int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
810 struct fsl_pci_info *pci_info)
811{
812 return busno;
813}
814
815int fsl_pcie_init_board(int busno)
816{
817 return busno;
818}
819#endif
820
Kumar Galaa2aab462008-10-23 00:01:06 -0500821#ifdef CONFIG_OF_BOARD_SETUP
822#include <libfdt.h>
823#include <fdt_support.h>
824
Kumar Gala6525d512010-07-08 22:37:44 -0500825void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600826 unsigned long ctrl_addr)
Kumar Galaa2aab462008-10-23 00:01:06 -0500827{
Kumar Gala6525d512010-07-08 22:37:44 -0500828 int off;
Kumar Gala5a85a302010-03-30 10:07:12 -0500829 u32 bus_range[2];
Kumar Gala6525d512010-07-08 22:37:44 -0500830 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600831 struct pci_controller *hose;
832
833 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Gala6525d512010-07-08 22:37:44 -0500834
835 /* convert ctrl_addr to true physical address */
836 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
837 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
838
839 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galaa2aab462008-10-23 00:01:06 -0500840
Kumar Gala5a85a302010-03-30 10:07:12 -0500841 if (off < 0)
842 return;
Kumar Galaa2aab462008-10-23 00:01:06 -0500843
Kumar Gala5a85a302010-03-30 10:07:12 -0500844 /* We assume a cfg_addr not being set means we didn't setup the controller */
845 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Gala6525d512010-07-08 22:37:44 -0500846 fdt_del_node(blob, off);
Kumar Gala5a85a302010-03-30 10:07:12 -0500847 } else {
Kumar Galaa2aab462008-10-23 00:01:06 -0500848 bus_range[0] = 0;
849 bus_range[1] = hose->last_busno - hose->first_busno;
850 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
851 fdt_pci_dma_ranges(blob, off, hose);
852 }
853}
854#endif