blob: e57acba0d27e7ce425109410d4399d82b9514e3e [file] [log] [blame]
Ed Swarthout63cec582007-08-02 14:09:49 -05001/*
2 * Copyright 2007 Freescale Semiconductor, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
16 * MA 02111-1307 USA
17 */
Ed Swarthout2e4d94f2007-07-27 01:50:45 -050018
Ed Swarthout63cec582007-08-02 14:09:49 -050019#include <common.h>
20
Kumar Galab9a1fa92008-10-22 14:06:24 -050021DECLARE_GLOBAL_DATA_PTR;
22
Ed Swarthout63cec582007-08-02 14:09:49 -050023/*
24 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
25 *
26 * Initialize controller and call the common driver/pci pci_hose_scan to
27 * scan for bridges and devices.
28 *
29 * Hose fields which need to be pre-initialized by board specific code:
30 * regions[]
31 * first_busno
32 *
33 * Fields updated:
34 * last_busno
35 */
36
37#include <pci.h>
38#include <asm/immap_fsl_pci.h>
39
40void pciauto_prescan_setup_bridge(struct pci_controller *hose,
41 pci_dev_t dev, int sub_bus);
42void pciauto_postscan_setup_bridge(struct pci_controller *hose,
43 pci_dev_t dev, int sub_bus);
Ed Swarthout63cec582007-08-02 14:09:49 -050044void pciauto_config_init(struct pci_controller *hose);
Kumar Gala612ea012008-10-21 10:13:14 -050045
Kumar Galab9a1fa92008-10-22 14:06:24 -050046#ifndef CONFIG_SYS_PCI_MEMORY_BUS
47#define CONFIG_SYS_PCI_MEMORY_BUS 0
48#endif
49
50#ifndef CONFIG_SYS_PCI_MEMORY_PHYS
51#define CONFIG_SYS_PCI_MEMORY_PHYS 0
52#endif
53
54#if defined(CONFIG_SYS_PCI_64BIT) && !defined(CONFIG_SYS_PCI64_MEMORY_BUS)
55#define CONFIG_SYS_PCI64_MEMORY_BUS (64ull*1024*1024*1024)
56#endif
57
58int fsl_pci_setup_inbound_windows(struct pci_region *r)
59{
60 struct pci_region *rgn_base = r;
Becky Bruce35db1c62008-11-21 19:24:22 -060061 u64 sz = min((u64)gd->ram_size, (1ull << 32) - 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -050062
63 phys_addr_t phys_start = CONFIG_SYS_PCI_MEMORY_PHYS;
64 pci_addr_t bus_start = CONFIG_SYS_PCI_MEMORY_BUS;
65 pci_size_t pci_sz = 1ull << __ilog2_u64(sz);
66
67 debug ("R0 bus_start: %llx phys_start: %llx size: %llx\n",
68 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
69 pci_set_region(r++, bus_start, phys_start, pci_sz,
Kumar Gala219542a2008-10-27 13:16:20 -050070 PCI_REGION_MEM | PCI_REGION_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -050071 PCI_REGION_PREFETCH);
72
73 sz -= pci_sz;
74 bus_start += pci_sz;
75 phys_start += pci_sz;
76
77 pci_sz = 1ull << __ilog2_u64(sz);
78 if (sz) {
79 debug ("R1 bus_start: %llx phys_start: %llx size: %llx\n",
80 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
81 pci_set_region(r++, bus_start, phys_start, pci_sz,
Kumar Gala219542a2008-10-27 13:16:20 -050082 PCI_REGION_MEM | PCI_REGION_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -050083 PCI_REGION_PREFETCH);
84 sz -= pci_sz;
85 bus_start += pci_sz;
86 phys_start += pci_sz;
87 }
88
89#if defined(CONFIG_PHYS_64BIT) && defined(CONFIG_SYS_PCI_64BIT)
Becky Brucecd425162008-10-27 16:09:42 -050090 /*
91 * On 64-bit capable systems, set up a mapping for all of DRAM
92 * in high pci address space.
93 */
Kumar Galab9a1fa92008-10-22 14:06:24 -050094 pci_sz = 1ull << __ilog2_u64(gd->ram_size);
95 /* round up to the next largest power of two */
96 if (gd->ram_size > pci_sz)
Becky Brucecd425162008-10-27 16:09:42 -050097 pci_sz = 1ull << (__ilog2_u64(gd->ram_size) + 1);
Kumar Galab9a1fa92008-10-22 14:06:24 -050098 debug ("R64 bus_start: %llx phys_start: %llx size: %llx\n",
Becky Brucecd425162008-10-27 16:09:42 -050099 (u64)CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500100 (u64)CONFIG_SYS_PCI_MEMORY_PHYS,
101 (u64)pci_sz);
102 pci_set_region(r++,
Becky Brucecd425162008-10-27 16:09:42 -0500103 CONFIG_SYS_PCI64_MEMORY_BUS,
Kumar Galab9a1fa92008-10-22 14:06:24 -0500104 CONFIG_SYS_PCI_MEMORY_PHYS,
105 pci_sz,
Kumar Gala219542a2008-10-27 13:16:20 -0500106 PCI_REGION_MEM | PCI_REGION_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500107 PCI_REGION_PREFETCH);
108#else
109 pci_sz = 1ull << __ilog2_u64(sz);
110 if (sz) {
111 debug ("R2 bus_start: %llx phys_start: %llx size: %llx\n",
112 (u64)bus_start, (u64)phys_start, (u64)pci_sz);
113 pci_set_region(r++, bus_start, phys_start, pci_sz,
Kumar Gala219542a2008-10-27 13:16:20 -0500114 PCI_REGION_MEM | PCI_REGION_MEMORY |
Kumar Galab9a1fa92008-10-22 14:06:24 -0500115 PCI_REGION_PREFETCH);
116 sz -= pci_sz;
117 bus_start += pci_sz;
118 phys_start += pci_sz;
119 }
120#endif
121
122 if (sz && (((u64)gd->ram_size) < (1ull << 32)))
123 printf("Was not able to map all of memory via "
124 "inbound windows -- %lld remaining\n", sz);
125
126 return r - rgn_base;
127}
128
Kumar Gala612ea012008-10-21 10:13:14 -0500129void fsl_pci_init(struct pci_controller *hose)
Ed Swarthout63cec582007-08-02 14:09:49 -0500130{
131 u16 temp16;
132 u32 temp32;
133 int busno = hose->first_busno;
134 int enabled;
135 u16 ltssm;
136 u8 temp8;
137 int r;
138 int bridge;
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500139 int inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500140 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) hose->cfg_addr;
141 pci_dev_t dev = PCI_BDF(busno,0,0);
142
143 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +0200144 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
145 volatile pit_t *pi = &pci->pit[0]; /* ranges from: 3 to 1 */
Ed Swarthout63cec582007-08-02 14:09:49 -0500146
147#ifdef DEBUG
148 int neg_link_w;
149#endif
150
151 for (r=0; r<hose->region_count; r++) {
Kumar Gala612ea012008-10-21 10:13:14 -0500152 u32 sz = (__ilog2_u64((u64)hose->regions[r].size) - 1);
Ed Swarthout63cec582007-08-02 14:09:49 -0500153 if (hose->regions[r].flags & PCI_REGION_MEMORY) { /* inbound */
Kumar Gala219542a2008-10-27 13:16:20 -0500154 u32 flag = PIWAR_EN | PIWAR_LOCAL |
Kumar Gala612ea012008-10-21 10:13:14 -0500155 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP;
156 pi->pitar = (hose->regions[r].phys_start >> 12);
157 pi->piwbar = (hose->regions[r].bus_start >> 12);
158#ifdef CONFIG_SYS_PCI_64BIT
159 pi->piwbear = (hose->regions[r].bus_start >> 44);
160#else
Ed Swarthout63cec582007-08-02 14:09:49 -0500161 pi->piwbear = 0;
Kumar Gala612ea012008-10-21 10:13:14 -0500162#endif
163 if (hose->regions[r].flags & PCI_REGION_PREFETCH)
164 flag |= PIWAR_PF;
165 pi->piwar = flag | sz;
Ed Swarthout63cec582007-08-02 14:09:49 -0500166 pi++;
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500167 inbound = hose->regions[r].size > 0;
Ed Swarthout63cec582007-08-02 14:09:49 -0500168 } else { /* Outbound */
Kumar Gala612ea012008-10-21 10:13:14 -0500169 po->powbar = (hose->regions[r].phys_start >> 12);
170 po->potar = (hose->regions[r].bus_start >> 12);
171#ifdef CONFIG_SYS_PCI_64BIT
172 po->potear = (hose->regions[r].bus_start >> 44);
173#else
Ed Swarthout63cec582007-08-02 14:09:49 -0500174 po->potear = 0;
Kumar Gala612ea012008-10-21 10:13:14 -0500175#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500176 if (hose->regions[r].flags & PCI_REGION_IO)
Kumar Gala219542a2008-10-27 13:16:20 -0500177 po->powar = POWAR_EN | sz |
Kumar Gala612ea012008-10-21 10:13:14 -0500178 POWAR_IO_READ | POWAR_IO_WRITE;
Ed Swarthout63cec582007-08-02 14:09:49 -0500179 else
Kumar Gala219542a2008-10-27 13:16:20 -0500180 po->powar = POWAR_EN | sz |
Kumar Gala612ea012008-10-21 10:13:14 -0500181 POWAR_MEM_READ | POWAR_MEM_WRITE;
Ed Swarthout63cec582007-08-02 14:09:49 -0500182 po++;
183 }
184 }
185
186 pci_register_hose(hose);
187 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
188 hose->current_busno = hose->first_busno;
189
190 pci->pedr = 0xffffffff; /* Clear any errors */
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500191 pci->peer = ~0x20140; /* Enable All Error Interupts except
192 * - Master abort (pci)
193 * - Master PERR (pci)
194 * - ICCA (PCIe)
195 */
Ed Swarthout63cec582007-08-02 14:09:49 -0500196 pci_hose_read_config_dword (hose, dev, PCI_DCR, &temp32);
197 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
198 pci_hose_write_config_dword(hose, dev, PCI_DCR, temp32);
199
200 pci_hose_read_config_byte (hose, dev, PCI_HEADER_TYPE, &temp8);
201 bridge = temp8 & PCI_HEADER_TYPE_BRIDGE; /* Bridge, such as pcie */
202
203 if ( bridge ) {
204
205 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
206 enabled = ltssm >= PCI_LTSSM_L0;
207
Kumar Gala8ff3de62007-12-07 12:17:34 -0600208#ifdef CONFIG_FSL_PCIE_RESET
209 if (ltssm == 1) {
210 int i;
211 debug("....PCIe link error. "
212 "LTSSM=0x%02x.", ltssm);
213 pci->pdb_stat |= 0x08000000; /* assert PCIe reset */
214 temp32 = pci->pdb_stat;
215 udelay(100);
216 debug(" Asserting PCIe reset @%x = %x\n",
217 &pci->pdb_stat, pci->pdb_stat);
218 pci->pdb_stat &= ~0x08000000; /* clear reset */
219 asm("sync;isync");
220 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
221 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
222 &ltssm);
223 udelay(1000);
224 debug("....PCIe link error. "
225 "LTSSM=0x%02x.\n", ltssm);
226 }
227 enabled = ltssm >= PCI_LTSSM_L0;
228 }
229#endif
230
Ed Swarthout63cec582007-08-02 14:09:49 -0500231 if (!enabled) {
232 debug("....PCIE link error. Skipping scan."
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500233 "LTSSM=0x%02x\n", ltssm);
Ed Swarthout63cec582007-08-02 14:09:49 -0500234 hose->last_busno = hose->first_busno;
235 return;
236 }
237
238 pci->pme_msg_det = 0xffffffff;
239 pci->pme_msg_int_en = 0xffffffff;
240#ifdef DEBUG
241 pci_hose_read_config_word(hose, dev, PCI_LSR, &temp16);
242 neg_link_w = (temp16 & 0x3f0 ) >> 4;
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500243 printf("...PCIE LTSSM=0x%x, Negotiated link width=%d\n",
Ed Swarthout63cec582007-08-02 14:09:49 -0500244 ltssm, neg_link_w);
245#endif
246 hose->current_busno++; /* Start scan with secondary */
247 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
248
Ed Swarthout63cec582007-08-02 14:09:49 -0500249 }
250
Ed Swarthout16e23c32007-08-20 23:55:33 -0500251 /* Use generic setup_device to initialize standard pci regs,
252 * but do not allocate any windows since any BAR found (such
253 * as PCSRBAR) is not in this cpu's memory space.
254 */
Ed Swarthout1900fbf2007-08-30 02:26:17 -0500255
Ed Swarthout16e23c32007-08-20 23:55:33 -0500256 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500257 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500258
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500259 if (inbound) {
260 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
261 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
262 temp16 | PCI_COMMAND_MEMORY);
263 }
264
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500265#ifndef CONFIG_PCI_NOSCAN
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500266 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &temp8);
267
268 /* Programming Interface (PCI_CLASS_PROG)
269 * 0 == pci host or pcie root-complex,
270 * 1 == pci agent or pcie end-point
271 */
272 if (!temp8) {
273 printf(" Scanning PCI bus %02x\n",
274 hose->current_busno);
275 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
276 } else {
277 debug(" Not scanning PCI bus %02x. PI=%x\n",
278 hose->current_busno, temp8);
279 hose->last_busno = hose->current_busno;
280 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500281
282 if ( bridge ) { /* update limit regs and subordinate busno */
283 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
284 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500285#else
286 hose->last_busno = hose->current_busno;
287#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500288
289 /* Clear all error indications */
290
Kumar Gala876b8f92008-04-23 16:58:04 -0500291 if (bridge)
292 pci->pme_msg_det = 0xffffffff;
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500293 pci->pedr = 0xffffffff;
Ed Swarthout63cec582007-08-02 14:09:49 -0500294
295 pci_hose_read_config_word (hose, dev, PCI_DSR, &temp16);
296 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500297 pci_hose_write_config_word(hose, dev,
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500298 PCI_DSR, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500299 }
300
301 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
302 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500303 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
304 }
305}
Kumar Galaa2aab462008-10-23 00:01:06 -0500306
307#ifdef CONFIG_OF_BOARD_SETUP
308#include <libfdt.h>
309#include <fdt_support.h>
310
311void ft_fsl_pci_setup(void *blob, const char *pci_alias,
312 struct pci_controller *hose)
313{
314 int off = fdt_path_offset(blob, pci_alias);
315
316 if (off >= 0) {
317 u32 bus_range[2];
318
319 bus_range[0] = 0;
320 bus_range[1] = hose->last_busno - hose->first_busno;
321 fdt_setprop(blob, off, "bus-range", &bus_range[0], 2*4);
322 fdt_pci_dma_ranges(blob, off, hose);
323 }
324}
325#endif