blob: d04a08c6e8fc8a3ebae404b82b3ac63d0b675ae5 [file] [log] [blame]
Ed Swarthout63cec582007-08-02 14:09:49 -05001/*
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +05302 * Copyright 2007-2011 Freescale Semiconductor, Inc.
Ed Swarthout63cec582007-08-02 14:09:49 -05003 *
Kumar Gala5a85a302010-03-30 10:07:12 -05004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
Ed Swarthout63cec582007-08-02 14:09:49 -05008 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
17 * MA 02111-1307 USA
18 */
Ed Swarthout2e4d94f2007-07-27 01:50:45 -050019
Ed Swarthout63cec582007-08-02 14:09:49 -050020#include <common.h>
Kumar Galaa4aafcc2010-12-15 14:21:41 -060021#include <malloc.h>
22#include <asm/fsl_serdes.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050023
Kumar Galab9a1fa92008-10-22 14:06:24 -050024DECLARE_GLOBAL_DATA_PTR;
25
Ed Swarthout63cec582007-08-02 14:09:49 -050026/*
27 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
28 *
29 * Initialize controller and call the common driver/pci pci_hose_scan to
30 * scan for bridges and devices.
31 *
32 * Hose fields which need to be pre-initialized by board specific code:
33 * regions[]
34 * first_busno
35 *
36 * Fields updated:
37 * last_busno
38 */
39
40#include <pci.h>
Kumar Galaad19e7a2009-08-05 07:59:35 -050041#include <asm/io.h>
Kumar Galac8514622009-04-02 13:22:48 -050042#include <asm/fsl_pci.h>
Ed Swarthout63cec582007-08-02 14:09:49 -050043
Peter Tyser7a897952008-10-29 12:39:26 -050044/* Freescale-specific PCI config registers */
45#define FSL_PCI_PBFR 0x44
46#define FSL_PCIE_CAP_ID 0x4c
47#define FSL_PCIE_CFG_RDY 0x4b0
Ed Swarthout715d8f72009-11-02 09:05:49 -060048#define FSL_PROG_IF_AGENT 0x1
Peter Tyser7a897952008-10-29 12:39:26 -050049
Ed Swarthout63cec582007-08-02 14:09:49 -050050void pciauto_prescan_setup_bridge(struct pci_controller *hose,
51 pci_dev_t dev, int sub_bus);
52void pciauto_postscan_setup_bridge(struct pci_controller *hose,
53 pci_dev_t dev, int sub_bus);
Kumar Gala612ea012008-10-21 10:13:14 -050054
Kumar Galab9a1fa92008-10-22 14:06:24 -050055#ifndef CONFIG_SYS_PCI_MEMORY_BUS
56#define CONFIG_SYS_PCI_MEMORY_BUS 0
57#endif
58
59#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
60#define CONFIG_SYS_PCI_MEMORY_PHYS 0
61#endif
62
63#if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
64#define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
65#endif
66
Kumar Galaad19e7a2009-08-05 07:59:35 -050067/* Setup one inbound ATMU window.
68 *
69 * We let the caller decide what the window size should be
70 */
71static void set_inbound_window(volatile pit_t *pi,
72 struct pci_region *r,
73 u64 size)
Kumar Galab9a1fa92008-10-22 14:06:24 -050074{
Kumar Galaad19e7a2009-08-05 07:59:35 -050075 u32 sz = (__ilog2_u64(size) - 1);
76 u32 flag = PIWAR_EN | PIWAR_LOCAL |
77 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
78
79 out_be32(&pi->pitar, r->phys_start >> 12);
80 out_be32(&pi->piwbar, r->bus_start >> 12);
81#ifdef CONFIG_SYS_PCI_64BIT
82 out_be32(&pi->piwbear, r->bus_start >> 44);
83#else
84 out_be32(&pi->piwbear, 0);
85#endif
86 if (r->flags & PCI_REGION_PREFETCH)
87 flag |= PIWAR_PF;
88 out_be32(&pi->piwar, flag | sz);
89}
90
Kumar Galaee536502009-11-04 13:00:55 -060091int fsl_setup_hose(struct pci_controller *hose, unsigned long addr)
92{
93 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) addr;
94
John Schmoller96d61602010-10-22 00:20:23 -050095 /* Reset hose to make sure its in a clean state */
96 memset(hose, 0, sizeof(struct pci_controller));
97
Kumar Galaee536502009-11-04 13:00:55 -060098 pci_setup_indirect(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
99
100 return fsl_is_pci_agent(hose);
101}
102
Kumar Galaad19e7a2009-08-05 07:59:35 -0500103static int fsl_pci_setup_inbound_windows(struct pci_controller *hose,
104 u64 out_lo, u8 pcie_cap,
105 volatile pit_t *pi)
106{
107 struct pci_region *r = hose->regions + hose->region_count;
108 u64 sz = min((u64)gd->ram_size, (1ull << 32));
Kumar Galab9a1fa92008-10-22 14:06:24 -0500109
110 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
111 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500112 pci_size_t pci_sz;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500113
Kumar Galaad19e7a2009-08-05 07:59:35 -0500114 /* we have no space available for inbound memory mapping */
115 if (bus_start > out_lo) {
116 printf ("no space for inbound mapping of memory\n");
117 return 0;
118 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500119
Kumar Galaad19e7a2009-08-05 07:59:35 -0500120 /* limit size */
121 if ((bus_start + sz) > out_lo) {
122 sz = out_lo - bus_start;
123 debug ("limiting size to %llx\n", sz);
124 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500125
126 pci_sz = 1ull << __ilog2_u64(sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500127 /*
128 * we can overlap inbound/outbound windows on PCI-E since RX & TX
129 * links a separate
130 */
131 if ((pcie_cap == PCI_CAP_ID_EXP) && (pci_sz < sz)) {
132 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
133 (u64)bus_start, (u64)phys_start, (u64)sz);
134 pci_set_region(r, bus_start, phys_start, sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600135 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500136 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500137
138 /* if we aren't an exact power of two match, pci_sz is smaller
139 * round it up to the next power of two. We report the actual
140 * size to pci region tracking.
141 */
142 if (pci_sz != sz)
143 sz = 2ull << __ilog2_u64(sz);
144
145 set_inbound_window(pi--, r++, sz);
146 sz = 0; /* make sure we dont set the R2 window */
147 } else {
148 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
149 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
150 pci_set_region(r, bus_start, phys_start, pci_sz,
151 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
152 PCI_REGION_PREFETCH);
153 set_inbound_window(pi--, r++, pci_sz);
154
Kumar Galab9a1fa92008-10-22 14:06:24 -0500155 sz -= pci_sz;
156 bus_start += pci_sz;
157 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500158
159 pci_sz = 1ull << __ilog2_u64(sz);
160 if (sz) {
161 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
162 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
163 pci_set_region(r, bus_start, phys_start, pci_sz,
164 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
165 PCI_REGION_PREFETCH);
166 set_inbound_window(pi--, r++, pci_sz);
167 sz -= pci_sz;
168 bus_start += pci_sz;
169 phys_start += pci_sz;
170 }
Kumar Galab9a1fa92008-10-22 14:06:24 -0500171 }
172
173#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Brucecd425162008-10-27 16:09:42 -0500174 /*
175 * On 64-bit capable systems, set up a mapping for all of DRAM
176 * in high pci address space.
177 */
Kumar Galab9a1fa92008-10-22 14:06:24 -0500178 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
179 /* round up to the next largest power of two */
180 if (gd->ram_size > pci_sz)
Becky Brucecd425162008-10-27 16:09:42 -0500181 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500182 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Brucecd425162008-10-27 16:09:42 -0500183 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500184 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
185 (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500186 pci_set_region(r,
Becky Brucecd425162008-10-27 16:09:42 -0500187 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500188 CONFIG_SYS_PCI_MEMORY_PHYS,
189 pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600190 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500191 PCI_REGION_PREFETCH);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500192 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500193#else
194 pci_sz = 1ull << __ilog2_u64(sz);
195 if (sz) {
196 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
197 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500198 pci_set_region(r, bus_start, phys_start, pci_sz,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600199 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500200 PCI_REGION_PREFETCH);
201 sz -= pci_sz;
202 bus_start += pci_sz;
203 phys_start += pci_sz;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500204 set_inbound_window(pi--, r++, pci_sz);
Kumar Galab9a1fa92008-10-22 14:06:24 -0500205 }
206#endif
207
Kumar Gala4c253fd2008-12-09 10:27:33 -0600208#ifdef CONFIG_PHYS_64BIT
Kumar Galab9a1fa92008-10-22 14:06:24 -0500209 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
210 printf("Was not able to map all of memory via "
211 "inbound windows -- %lld remaining\n", sz);
Kumar Gala4c253fd2008-12-09 10:27:33 -0600212#endif
Kumar Galab9a1fa92008-10-22 14:06:24 -0500213
Kumar Galaad19e7a2009-08-05 07:59:35 -0500214 hose->region_count = r - hose->regions;
215
216 return 1;
Kumar Galab9a1fa92008-10-22 14:06:24 -0500217}
218
Peter Tyser213ac732010-12-28 17:47:25 -0600219void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info)
Ed Swarthout63cec582007-08-02 14:09:49 -0500220{
Peter Tyser213ac732010-12-28 17:47:25 -0600221 u32 cfg_addr = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_addr;
222 u32 cfg_data = (u32)&((ccsr_fsl_pci_t *)pci_info->regs)->cfg_data;
Ed Swarthout63cec582007-08-02 14:09:49 -0500223 u16 temp16;
224 u32 temp32;
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530225 u32 block_rev;
Kumar Gala8295b942009-08-05 07:49:27 -0500226 int enabled, r, inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500227 u16 ltssm;
Kumar Gala8295b942009-08-05 07:49:27 -0500228 u8 temp8, pcie_cap;
Kumar Galafb3143b2009-08-03 20:44:55 -0500229 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)cfg_addr;
Kumar Galacb151aa2009-08-03 21:02:02 -0500230 struct pci_region *reg = hose->regions + hose->region_count;
Kumar Gala8295b942009-08-05 07:49:27 -0500231 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
Ed Swarthout63cec582007-08-02 14:09:49 -0500232
233 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200234 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530235 volatile pit_t *pi;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500236
237 u64 out_hi = 0, out_lo = -1ULL;
238 u32 pcicsrbar, pcicsrbar_sz;
Ed Swarthout63cec582007-08-02 14:09:49 -0500239
Kumar Galafb3143b2009-08-03 20:44:55 -0500240 pci_setup_indirect(hose, cfg_addr, cfg_data);
241
Prabhakar Kushwahab6ccd2c2011-02-04 09:00:43 +0530242 block_rev = in_be32(&pci->block_rev1);
243 if (PEX_IP_BLK_REV_2_2 <= block_rev) {
244 pi = &pci->pit[2]; /* 0xDC0 */
245 } else {
246 pi = &pci->pit[3]; /* 0xDE0 */
247 }
248
Kumar Galaad19e7a2009-08-05 07:59:35 -0500249 /* Handle setup of outbound windows first */
250 for (r = 0; r < hose->region_count; r++) {
251 unsigned long flags = hose->regions[r].flags;
Kumar Gala612ea012008-10-21 10:13:14 -0500252 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Kumar Galaad19e7a2009-08-05 07:59:35 -0500253
254 flags &= PCI_REGION_SYS_MEMORY|PCI_REGION_TYPE;
255 if (flags != PCI_REGION_SYS_MEMORY) {
256 u64 start = hose->regions[r].bus_start;
257 u64 end = start + hose->regions[r].size;
258
259 out_be32(&po->powbar, hose->regions[r].phys_start >> 12);
260 out_be32(&po->potar, start >> 12);
Kumar Gala612ea012008-10-21 10:13:14 -0500261#ifdef CONFIG_SYS_PCI_64BIT
Kumar Galaad19e7a2009-08-05 07:59:35 -0500262 out_be32(&po->potear, start >> 44);
Kumar Gala612ea012008-10-21 10:13:14 -0500263#else
Kumar Galaad19e7a2009-08-05 07:59:35 -0500264 out_be32(&po->potear, 0);
Kumar Gala612ea012008-10-21 10:13:14 -0500265#endif
Kumar Galaad19e7a2009-08-05 07:59:35 -0500266 if (hose->regions[r].flags & PCI_REGION_IO) {
267 out_be32(&po->powar, POWAR_EN | sz |
268 POWAR_IO_READ | POWAR_IO_WRITE);
269 } else {
270 out_be32(&po->powar, POWAR_EN | sz |
271 POWAR_MEM_READ | POWAR_MEM_WRITE);
272 out_lo = min(start, out_lo);
273 out_hi = max(end, out_hi);
274 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500275 po++;
276 }
277 }
Kumar Galaad19e7a2009-08-05 07:59:35 -0500278 debug("Outbound memory range: %llx:%llx\n", out_lo, out_hi);
279
280 /* setup PCSRBAR/PEXCSRBAR */
281 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, 0xffffffff);
282 pci_hose_read_config_dword (hose, dev, PCI_BASE_ADDRESS_0, &pcicsrbar_sz);
283 pcicsrbar_sz = ~pcicsrbar_sz + 1;
284
285 if (out_hi < (0x100000000ull - pcicsrbar_sz) ||
286 (out_lo > 0x100000000ull))
287 pcicsrbar = 0x100000000ull - pcicsrbar_sz;
288 else
289 pcicsrbar = (out_lo - pcicsrbar_sz) & -pcicsrbar_sz;
290 pci_hose_write_config_dword(hose, dev, PCI_BASE_ADDRESS_0, pcicsrbar);
291
292 out_lo = min(out_lo, (u64)pcicsrbar);
293
294 debug("PCICSRBAR @ 0x%x\n", pcicsrbar);
295
296 pci_set_region(reg++, pcicsrbar, CONFIG_SYS_CCSRBAR_PHYS,
297 pcicsrbar_sz, PCI_REGION_SYS_MEMORY);
298 hose->region_count++;
Ed Swarthout63cec582007-08-02 14:09:49 -0500299
Kumar Gala8295b942009-08-05 07:49:27 -0500300 /* see if we are a PCIe or PCI controller */
301 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
302
Kumar Galaad19e7a2009-08-05 07:59:35 -0500303 /* inbound */
304 inbound = fsl_pci_setup_inbound_windows(hose, out_lo, pcie_cap, pi);
305
306 for (r = 0; r < hose->region_count; r++)
Marek Vasutd015df82011-10-21 14:17:21 +0000307 debug("PCI reg:%d %016llx:%016llx %016llx %08lx\n", r,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500308 (u64)hose->regions[r].phys_start,
Marek Vasutd015df82011-10-21 14:17:21 +0000309 (u64)hose->regions[r].bus_start,
310 (u64)hose->regions[r].size,
Kumar Galaad19e7a2009-08-05 07:59:35 -0500311 hose->regions[r].flags);
312
Ed Swarthout63cec582007-08-02 14:09:49 -0500313 pci_register_hose(hose);
314 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
315 hose->current_busno = hose->first_busno;
316
Kumar Galaad19e7a2009-08-05 07:59:35 -0500317 out_be32(&pci->pedr, 0xffffffff); /* Clear any errors */
Mike Williams16263082011-07-22 04:01:30 +0000318 out_be32(&pci->peer, ~0x20140); /* Enable All Error Interrupts except
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500319 * - Master abort (pci)
320 * - Master PERR (pci)
321 * - ICCA (PCIe)
322 */
Kumar Galaad19e7a2009-08-05 07:59:35 -0500323 pci_hose_read_config_dword(hose, dev, PCI_DCR, &temp32);
Ed Swarthout63cec582007-08-02 14:09:49 -0500324 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
325 pci_hose_write_config_dword(hose, dev, PCI_DCR, temp32);
326
Prabhakar Kushwahab03a4662011-02-01 15:55:58 +0000327#if defined(CONFIG_FSL_PCIE_DISABLE_ASPM)
328 temp32 = 0;
329 pci_hose_read_config_dword(hose, dev, PCI_LCR, &temp32);
330 temp32 &= ~0x03; /* Disable ASPM */
331 pci_hose_write_config_dword(hose, dev, PCI_LCR, temp32);
332 udelay(1);
333#endif
Kumar Gala8295b942009-08-05 07:49:27 -0500334 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500335 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
336 enabled = ltssm >= PCI_LTSSM_L0;
337
Kumar Gala8ff3de62007-12-07 12:17:34 -0600338#ifdef CONFIG_FSL_PCIE_RESET
339 if (ltssm == 1) {
340 int i;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500341 debug("....PCIe link error. " "LTSSM=0x%02x.", ltssm);
342 /* assert PCIe reset */
343 setbits_be32(&pci->pdb_stat, 0x08000000);
344 (void) in_be32(&pci->pdb_stat);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600345 udelay(100);
Marek Vasutd015df82011-10-21 14:17:21 +0000346 debug(" Asserting PCIe reset @%p = %x\n",
Kumar Galaad19e7a2009-08-05 07:59:35 -0500347 &pci->pdb_stat, in_be32(&pci->pdb_stat));
348 /* clear PCIe reset */
349 clrbits_be32(&pci->pdb_stat, 0x08000000);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600350 asm("sync;isync");
351 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
352 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
353 &ltssm);
354 udelay(1000);
355 debug("....PCIe link error. "
356 "LTSSM=0x%02x.\n", ltssm);
357 }
358 enabled = ltssm >= PCI_LTSSM_L0;
Kumar Galaad19e7a2009-08-05 07:59:35 -0500359
360 /* we need to re-write the bar0 since a reset will
361 * clear it
362 */
363 pci_hose_write_config_dword(hose, dev,
364 PCI_BASE_ADDRESS_0, pcicsrbar);
Kumar Gala8ff3de62007-12-07 12:17:34 -0600365 }
366#endif
367
Ed Swarthout63cec582007-08-02 14:09:49 -0500368 if (!enabled) {
Peter Tyser213ac732010-12-28 17:47:25 -0600369 /* Let the user know there's no PCIe link */
370 printf("no link, regs @ 0x%lx\n", pci_info->regs);
Ed Swarthout63cec582007-08-02 14:09:49 -0500371 hose->last_busno = hose->first_busno;
372 return;
373 }
374
Kumar Galaad19e7a2009-08-05 07:59:35 -0500375 out_be32(&pci->pme_msg_det, 0xffffffff);
376 out_be32(&pci->pme_msg_int_en, 0xffffffff);
Peter Tyser213ac732010-12-28 17:47:25 -0600377
378 /* Print the negotiated PCIe link width */
Ed Swarthout63cec582007-08-02 14:09:49 -0500379 pci_hose_read_config_word(hose, dev, PCI_LSR, &temp16);
Peter Tyser213ac732010-12-28 17:47:25 -0600380 printf("x%d, regs @ 0x%lx\n", (temp16 & 0x3f0 ) >> 4,
381 pci_info->regs);
382
Ed Swarthout63cec582007-08-02 14:09:49 -0500383 hose->current_busno++; /* Start scan with secondary */
384 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
Ed Swarthout63cec582007-08-02 14:09:49 -0500385 }
386
Ed Swarthout16e23c32007-08-20 23:55:33 -0500387 /* Use generic setup_device to initialize standard pci regs,
388 * but do not allocate any windows since any BAR found (such
389 * as PCSRBAR) is not in this cpu's memory space.
390 */
Ed Swarthout16e23c32007-08-20 23:55:33 -0500391 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500392 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500393
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500394 if (inbound) {
395 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
396 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
397 temp16 | PCI_COMMAND_MEMORY);
398 }
399
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500400#ifndef CONFIG_PCI_NOSCAN
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500401 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &temp8);
402
403 /* Programming Interface (PCI_CLASS_PROG)
404 * 0 == pci host or pcie root-complex,
405 * 1 == pci agent or pcie end-point
406 */
407 if (!temp8) {
Peter Tyser37d03fc2010-10-29 17:59:26 -0500408 debug(" Scanning PCI bus %02x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500409 hose->current_busno);
410 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
411 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500412 debug(" Not scanning PCI bus %02x. PI=%x\n",
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500413 hose->current_busno, temp8);
414 hose->last_busno = hose->current_busno;
415 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500416
Kumar Gala8295b942009-08-05 07:49:27 -0500417 /* if we are PCIe - update limit regs and subordinate busno
418 * for the virtual P2P bridge
419 */
420 if (pcie_cap == PCI_CAP_ID_EXP) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500421 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
422 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500423#else
424 hose->last_busno = hose->current_busno;
425#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500426
427 /* Clear all error indications */
Kumar Gala8295b942009-08-05 07:49:27 -0500428 if (pcie_cap == PCI_CAP_ID_EXP)
Kumar Galaad19e7a2009-08-05 07:59:35 -0500429 out_be32(&pci->pme_msg_det, 0xffffffff);
430 out_be32(&pci->pedr, 0xffffffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500431
432 pci_hose_read_config_word (hose, dev, PCI_DSR, &temp16);
433 if (temp16) {
Kumar Gala8295b942009-08-05 07:49:27 -0500434 pci_hose_write_config_word(hose, dev, PCI_DSR, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500435 }
436
437 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
438 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500439 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
440 }
441}
Kumar Galaa2aab462008-10-23 00:01:06 -0500442
Ed Swarthout715d8f72009-11-02 09:05:49 -0600443int fsl_is_pci_agent(struct pci_controller *hose)
444{
445 u8 prog_if;
446 pci_dev_t dev = PCI_BDF(hose->first_busno, 0, 0);
447
448 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &prog_if);
449
450 return (prog_if == FSL_PROG_IF_AGENT);
451}
452
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530453int fsl_pci_init_port(struct fsl_pci_info *pci_info,
Kumar Gala01471d52009-11-04 01:29:04 -0600454 struct pci_controller *hose, int busno)
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530455{
456 volatile ccsr_fsl_pci_t *pci;
457 struct pci_region *r;
Peter Tysera72dbae2010-10-28 15:24:59 -0500458 pci_dev_t dev = PCI_BDF(busno,0,0);
459 u8 pcie_cap;
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530460
461 pci = (ccsr_fsl_pci_t *) pci_info->regs;
462
463 /* on non-PCIe controllers we don't have pme_msg_det so this code
464 * should do nothing since the read will return 0
465 */
466 if (in_be32(&pci->pme_msg_det)) {
467 out_be32(&pci->pme_msg_det, 0xffffffff);
468 debug (" with errors. Clearing. Now 0x%08x",
469 pci->pme_msg_det);
470 }
471
472 r = hose->regions + hose->region_count;
473
474 /* outbound memory */
475 pci_set_region(r++,
476 pci_info->mem_bus,
477 pci_info->mem_phys,
478 pci_info->mem_size,
479 PCI_REGION_MEM);
480
481 /* outbound io */
482 pci_set_region(r++,
483 pci_info->io_bus,
484 pci_info->io_phys,
485 pci_info->io_size,
486 PCI_REGION_IO);
487
488 hose->region_count = r - hose->regions;
489 hose->first_busno = busno;
490
Peter Tyser213ac732010-12-28 17:47:25 -0600491 fsl_pci_init(hose, pci_info);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530492
Ed Swarthout715d8f72009-11-02 09:05:49 -0600493 if (fsl_is_pci_agent(hose)) {
494 fsl_pci_config_unlock(hose);
495 hose->last_busno = hose->first_busno;
496 }
497
Peter Tysera72dbae2010-10-28 15:24:59 -0500498 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500499 printf("PCI%s%x: Bus %02x - %02x\n", pcie_cap == PCI_CAP_ID_EXP ?
Peter Tyser213ac732010-12-28 17:47:25 -0600500 "e" : "", pci_info->pci_num,
Peter Tyser8ca78f22010-10-29 17:59:24 -0500501 hose->first_busno, hose->last_busno);
Poonam Aggrwal0d3d68b2009-08-21 07:29:42 +0530502
503 return(hose->last_busno + 1);
504}
505
Peter Tyser7a897952008-10-29 12:39:26 -0500506/* Enable inbound PCI config cycles for agent/endpoint interface */
507void fsl_pci_config_unlock(struct pci_controller *hose)
508{
509 pci_dev_t dev = PCI_BDF(hose->first_busno,0,0);
510 u8 agent;
511 u8 pcie_cap;
512 u16 pbfr;
513
514 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &agent);
515 if (!agent)
516 return;
517
518 pci_hose_read_config_byte(hose, dev, FSL_PCIE_CAP_ID, &pcie_cap);
519 if (pcie_cap != 0x0) {
520 /* PCIe - set CFG_READY bit of Configuration Ready Register */
521 pci_hose_write_config_byte(hose, dev, FSL_PCIE_CFG_RDY, 0x1);
522 } else {
523 /* PCI - clear ACL bit of PBFR */
524 pci_hose_read_config_word(hose, dev, FSL_PCI_PBFR, &pbfr);
525 pbfr &= ~0x20;
526 pci_hose_write_config_word(hose, dev, FSL_PCI_PBFR, pbfr);
527 }
528}
529
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600530#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || \
Wolfgang Denkd1a24f02011-02-02 22:36:10 +0100531 defined(CONFIG_PCIE3) || defined(CONFIG_PCIE4)
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600532int fsl_configure_pcie(struct fsl_pci_info *info,
533 struct pci_controller *hose,
534 const char *connected, int busno)
535{
536 int is_endpoint;
537
538 set_next_law(info->mem_phys, law_size_bits(info->mem_size), info->law);
539 set_next_law(info->io_phys, law_size_bits(info->io_size), info->law);
Peter Tyser213ac732010-12-28 17:47:25 -0600540
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600541 is_endpoint = fsl_setup_hose(hose, info->regs);
Peter Tyser213ac732010-12-28 17:47:25 -0600542 printf("PCIe%u: %s", info->pci_num,
543 is_endpoint ? "Endpoint" : "Root Complex");
544 if (connected)
545 printf(" of %s", connected);
546 puts(", ");
547
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600548 return fsl_pci_init_port(info, hose, busno);
549}
550
551#if defined(CONFIG_FSL_CORENET)
552 #define _DEVDISR_PCIE1 FSL_CORENET_DEVDISR_PCIE1
553 #define _DEVDISR_PCIE2 FSL_CORENET_DEVDISR_PCIE2
554 #define _DEVDISR_PCIE3 FSL_CORENET_DEVDISR_PCIE3
555 #define _DEVDISR_PCIE4 FSL_CORENET_DEVDISR_PCIE4
556 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
557#elif defined(CONFIG_MPC85xx)
558 #define _DEVDISR_PCIE1 MPC85xx_DEVDISR_PCIE
559 #define _DEVDISR_PCIE2 MPC85xx_DEVDISR_PCIE2
560 #define _DEVDISR_PCIE3 MPC85xx_DEVDISR_PCIE3
561 #define _DEVDISR_PCIE4 0
562 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
563#elif defined(CONFIG_MPC86xx)
564 #define _DEVDISR_PCIE1 MPC86xx_DEVDISR_PCIE1
565 #define _DEVDISR_PCIE2 MPC86xx_DEVDISR_PCIE2
566 #define _DEVDISR_PCIE3 0
567 #define _DEVDISR_PCIE4 0
568 #define CONFIG_SYS_MPC8xxx_GUTS_ADDR \
569 (&((immap_t *)CONFIG_SYS_IMMR)->im_gur)
570#else
571#error "No defines for DEVDISR_PCIE"
572#endif
573
574/* Implement a dummy function for those platforms w/o SERDES */
575static const char *__board_serdes_name(enum srds_prtcl device)
576{
577 switch (device) {
578#ifdef CONFIG_SYS_PCIE1_NAME
579 case PCIE1:
580 return CONFIG_SYS_PCIE1_NAME;
581#endif
582#ifdef CONFIG_SYS_PCIE2_NAME
583 case PCIE2:
584 return CONFIG_SYS_PCIE2_NAME;
585#endif
586#ifdef CONFIG_SYS_PCIE3_NAME
587 case PCIE3:
588 return CONFIG_SYS_PCIE3_NAME;
589#endif
590#ifdef CONFIG_SYS_PCIE4_NAME
591 case PCIE4:
592 return CONFIG_SYS_PCIE4_NAME;
593#endif
594 default:
595 return NULL;
596 }
597
598 return NULL;
599}
600
601__attribute__((weak, alias("__board_serdes_name"))) const char *
602board_serdes_name(enum srds_prtcl device);
603
604static u32 devdisr_mask[] = {
605 _DEVDISR_PCIE1,
606 _DEVDISR_PCIE2,
607 _DEVDISR_PCIE3,
608 _DEVDISR_PCIE4,
609};
610
611int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
612 struct fsl_pci_info *pci_info)
613{
614 struct pci_controller *hose;
615 int num = dev - PCIE1;
616
617 hose = calloc(1, sizeof(struct pci_controller));
618 if (!hose)
619 return busno;
620
621 if (is_serdes_configured(dev) && !(devdisr & devdisr_mask[num])) {
622 busno = fsl_configure_pcie(pci_info, hose,
623 board_serdes_name(dev), busno);
624 } else {
Peter Tyser213ac732010-12-28 17:47:25 -0600625 printf("PCIe%d: disabled\n", num + 1);
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600626 }
627
628 return busno;
629}
630
631int fsl_pcie_init_board(int busno)
632{
633 struct fsl_pci_info pci_info;
634 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC8xxx_GUTS_ADDR;
635 u32 devdisr = in_be32(&gur->devdisr);
636
637#ifdef CONFIG_PCIE1
638 SET_STD_PCIE_INFO(pci_info, 1);
639 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE1, &pci_info);
640#else
641 setbits_be32(&gur->devdisr, _DEVDISR_PCIE1); /* disable */
642#endif
643
644#ifdef CONFIG_PCIE2
645 SET_STD_PCIE_INFO(pci_info, 2);
646 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE2, &pci_info);
647#else
648 setbits_be32(&gur->devdisr, _DEVDISR_PCIE2); /* disable */
649#endif
650
651#ifdef CONFIG_PCIE3
652 SET_STD_PCIE_INFO(pci_info, 3);
653 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE3, &pci_info);
654#else
655 setbits_be32(&gur->devdisr, _DEVDISR_PCIE3); /* disable */
656#endif
657
658#ifdef CONFIG_PCIE4
659 SET_STD_PCIE_INFO(pci_info, 4);
660 busno = fsl_pcie_init_ctrl(busno, devdisr, PCIE4, &pci_info);
661#else
662 setbits_be32(&gur->devdisr, _DEVDISR_PCIE4); /* disable */
663#endif
664
665 return busno;
666}
667#else
668int fsl_pcie_init_ctrl(int busno, u32 devdisr, enum srds_prtcl dev,
669 struct fsl_pci_info *pci_info)
670{
671 return busno;
672}
673
674int fsl_pcie_init_board(int busno)
675{
676 return busno;
677}
678#endif
679
Kumar Galaa2aab462008-10-23 00:01:06 -0500680#ifdef CONFIG_OF_BOARD_SETUP
681#include <libfdt.h>
682#include <fdt_support.h>
683
Kumar Gala6525d512010-07-08 22:37:44 -0500684void ft_fsl_pci_setup(void *blob, const char *pci_compat,
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600685 unsigned long ctrl_addr)
Kumar Galaa2aab462008-10-23 00:01:06 -0500686{
Kumar Gala6525d512010-07-08 22:37:44 -0500687 int off;
Kumar Gala5a85a302010-03-30 10:07:12 -0500688 u32 bus_range[2];
Kumar Gala6525d512010-07-08 22:37:44 -0500689 phys_addr_t p_ctrl_addr = (phys_addr_t)ctrl_addr;
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600690 struct pci_controller *hose;
691
692 hose = find_hose_by_cfg_addr((void *)(ctrl_addr));
Kumar Gala6525d512010-07-08 22:37:44 -0500693
694 /* convert ctrl_addr to true physical address */
695 p_ctrl_addr = (phys_addr_t)ctrl_addr - CONFIG_SYS_CCSRBAR;
696 p_ctrl_addr += CONFIG_SYS_CCSRBAR_PHYS;
697
698 off = fdt_node_offset_by_compat_reg(blob, pci_compat, p_ctrl_addr);
Kumar Galaa2aab462008-10-23 00:01:06 -0500699
Kumar Gala5a85a302010-03-30 10:07:12 -0500700 if (off < 0)
701 return;
Kumar Galaa2aab462008-10-23 00:01:06 -0500702
Kumar Gala5a85a302010-03-30 10:07:12 -0500703 /* We assume a cfg_addr not being set means we didn't setup the controller */
704 if ((hose == NULL) || (hose->cfg_addr == NULL)) {
Kumar Gala6525d512010-07-08 22:37:44 -0500705 fdt_del_node(blob, off);
Kumar Gala5a85a302010-03-30 10:07:12 -0500706 } else {
Kumar Galaa2aab462008-10-23 00:01:06 -0500707 bus_range[0] = 0;
708 bus_range[1] = hose->last_busno - hose->first_busno;
709 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
710 fdt_pci_dma_ranges(blob, off, hose);
711 }
712}
713#endif