blob: 38a16e536196c74e3c81162ec878e5193b4cba65 [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
Ed Swarthout63cec582007-08-02 14:09:49 -050021/*
22 * PCI/PCIE Controller initialization for mpc85xx/mpc86xx soc's
23 *
24 * Initialize controller and call the common driver/pci pci_hose_scan to
25 * scan for bridges and devices.
26 *
27 * Hose fields which need to be pre-initialized by board specific code:
28 * regions[]
29 * first_busno
30 *
31 * Fields updated:
32 * last_busno
33 */
34
35#include <pci.h>
36#include <asm/immap_fsl_pci.h>
37
38void pciauto_prescan_setup_bridge(struct pci_controller *hose,
39 pci_dev_t dev, int sub_bus);
40void pciauto_postscan_setup_bridge(struct pci_controller *hose,
41 pci_dev_t dev, int sub_bus);
42
43void pciauto_config_init(struct pci_controller *hose);
44void
45fsl_pci_init(struct pci_controller *hose)
46{
47 u16 temp16;
48 u32 temp32;
49 int busno = hose->first_busno;
50 int enabled;
51 u16 ltssm;
52 u8 temp8;
53 int r;
54 int bridge;
Ed Swarthoutcb8250f2007-10-19 17:51:40 -050055 int inbound = 0;
Ed Swarthout63cec582007-08-02 14:09:49 -050056 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) hose->cfg_addr;
57 pci_dev_t dev = PCI_BDF(busno,0,0);
58
59 /* Initialize ATMU registers based on hose regions and flags */
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +020060 volatile pot_t *po = &pci->pot[1]; /* skip 0 */
61 volatile pit_t *pi = &pci->pit[0]; /* ranges from: 3 to 1 */
Ed Swarthout63cec582007-08-02 14:09:49 -050062
63#ifdef DEBUG
64 int neg_link_w;
65#endif
66
67 for (r=0; r<hose->region_count; r++) {
68 if (hose->regions[r].flags & PCI_REGION_MEMORY) { /* inbound */
69 pi->pitar = (hose->regions[r].bus_start >> 12) & 0x000fffff;
70 pi->piwbar = (hose->regions[r].phys_start >> 12) & 0x000fffff;
71 pi->piwbear = 0;
72 pi->piwar = PIWAR_EN | PIWAR_PF | PIWAR_LOCAL |
73 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP |
74 (__ilog2(hose->regions[r].size) - 1);
75 pi++;
Ed Swarthoutcb8250f2007-10-19 17:51:40 -050076 inbound = hose->regions[r].size > 0;
Ed Swarthout63cec582007-08-02 14:09:49 -050077 } else { /* Outbound */
78 po->powbar = (hose->regions[r].phys_start >> 12) & 0x000fffff;
79 po->potar = (hose->regions[r].bus_start >> 12) & 0x000fffff;
80 po->potear = 0;
81 if (hose->regions[r].flags & PCI_REGION_IO)
82 po->powar = POWAR_EN | POWAR_IO_READ | POWAR_IO_WRITE |
83 (__ilog2(hose->regions[r].size) - 1);
84 else
85 po->powar = POWAR_EN | POWAR_MEM_READ | POWAR_MEM_WRITE |
86 (__ilog2(hose->regions[r].size) - 1);
87 po++;
88 }
89 }
90
91 pci_register_hose(hose);
92 pciauto_config_init(hose); /* grab pci_{mem,prefetch,io} */
93 hose->current_busno = hose->first_busno;
94
95 pci->pedr = 0xffffffff; /* Clear any errors */
Ed Swarthout2e4d94f2007-07-27 01:50:45 -050096 pci->peer = ~0x20140; /* Enable All Error Interupts except
97 * - Master abort (pci)
98 * - Master PERR (pci)
99 * - ICCA (PCIe)
100 */
Ed Swarthout63cec582007-08-02 14:09:49 -0500101 pci_hose_read_config_dword (hose, dev, PCI_DCR, &temp32);
102 temp32 |= 0xf000e; /* set URR, FER, NFER (but not CER) */
103 pci_hose_write_config_dword(hose, dev, PCI_DCR, temp32);
104
105 pci_hose_read_config_byte (hose, dev, PCI_HEADER_TYPE, &temp8);
106 bridge = temp8 & PCI_HEADER_TYPE_BRIDGE; /* Bridge, such as pcie */
107
108 if ( bridge ) {
109
110 pci_hose_read_config_word(hose, dev, PCI_LTSSM, &ltssm);
111 enabled = ltssm >= PCI_LTSSM_L0;
112
Kumar Gala8ff3de62007-12-07 12:17:34 -0600113#ifdef CONFIG_FSL_PCIE_RESET
114 if (ltssm == 1) {
115 int i;
116 debug("....PCIe link error. "
117 "LTSSM=0x%02x.", ltssm);
118 pci->pdb_stat |= 0x08000000; /* assert PCIe reset */
119 temp32 = pci->pdb_stat;
120 udelay(100);
121 debug(" Asserting PCIe reset @%x = %x\n",
122 &pci->pdb_stat, pci->pdb_stat);
123 pci->pdb_stat &= ~0x08000000; /* clear reset */
124 asm("sync;isync");
125 for (i=0; i<100 && ltssm < PCI_LTSSM_L0; i++) {
126 pci_hose_read_config_word(hose, dev, PCI_LTSSM,
127 &ltssm);
128 udelay(1000);
129 debug("....PCIe link error. "
130 "LTSSM=0x%02x.\n", ltssm);
131 }
132 enabled = ltssm >= PCI_LTSSM_L0;
133 }
134#endif
135
Ed Swarthout63cec582007-08-02 14:09:49 -0500136 if (!enabled) {
137 debug("....PCIE link error. Skipping scan."
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500138 "LTSSM=0x%02x\n", ltssm);
Ed Swarthout63cec582007-08-02 14:09:49 -0500139 hose->last_busno = hose->first_busno;
140 return;
141 }
142
143 pci->pme_msg_det = 0xffffffff;
144 pci->pme_msg_int_en = 0xffffffff;
145#ifdef DEBUG
146 pci_hose_read_config_word(hose, dev, PCI_LSR, &temp16);
147 neg_link_w = (temp16 & 0x3f0 ) >> 4;
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500148 printf("...PCIE LTSSM=0x%x, Negotiated link width=%d\n",
Ed Swarthout63cec582007-08-02 14:09:49 -0500149 ltssm, neg_link_w);
150#endif
151 hose->current_busno++; /* Start scan with secondary */
152 pciauto_prescan_setup_bridge(hose, dev, hose->current_busno);
153
Ed Swarthout63cec582007-08-02 14:09:49 -0500154 }
155
Ed Swarthout16e23c32007-08-20 23:55:33 -0500156 /* Use generic setup_device to initialize standard pci regs,
157 * but do not allocate any windows since any BAR found (such
158 * as PCSRBAR) is not in this cpu's memory space.
159 */
Ed Swarthout1900fbf2007-08-30 02:26:17 -0500160
Ed Swarthout16e23c32007-08-20 23:55:33 -0500161 pciauto_setup_device(hose, dev, 0, hose->pci_mem,
Ed Swarthout63cec582007-08-02 14:09:49 -0500162 hose->pci_prefetch, hose->pci_io);
Ed Swarthout16e23c32007-08-20 23:55:33 -0500163
Ed Swarthoutcb8250f2007-10-19 17:51:40 -0500164 if (inbound) {
165 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &temp16);
166 pci_hose_write_config_word(hose, dev, PCI_COMMAND,
167 temp16 | PCI_COMMAND_MEMORY);
168 }
169
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500170#ifndef CONFIG_PCI_NOSCAN
Ed Swarthout6df0efd2008-10-08 23:38:00 -0500171 pci_hose_read_config_byte(hose, dev, PCI_CLASS_PROG, &temp8);
172
173 /* Programming Interface (PCI_CLASS_PROG)
174 * 0 == pci host or pcie root-complex,
175 * 1 == pci agent or pcie end-point
176 */
177 if (!temp8) {
178 printf(" Scanning PCI bus %02x\n",
179 hose->current_busno);
180 hose->last_busno = pci_hose_scan_bus(hose, hose->current_busno);
181 } else {
182 debug(" Not scanning PCI bus %02x. PI=%x\n",
183 hose->current_busno, temp8);
184 hose->last_busno = hose->current_busno;
185 }
Ed Swarthout63cec582007-08-02 14:09:49 -0500186
187 if ( bridge ) { /* update limit regs and subordinate busno */
188 pciauto_postscan_setup_bridge(hose, dev, hose->last_busno);
189 }
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500190#else
191 hose->last_busno = hose->current_busno;
192#endif
Ed Swarthout63cec582007-08-02 14:09:49 -0500193
194 /* Clear all error indications */
195
Kumar Gala876b8f92008-04-23 16:58:04 -0500196 if (bridge)
197 pci->pme_msg_det = 0xffffffff;
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500198 pci->pedr = 0xffffffff;
Ed Swarthout63cec582007-08-02 14:09:49 -0500199
200 pci_hose_read_config_word (hose, dev, PCI_DSR, &temp16);
201 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500202 pci_hose_write_config_word(hose, dev,
Ed Swarthout2e4d94f2007-07-27 01:50:45 -0500203 PCI_DSR, 0xffff);
Ed Swarthout63cec582007-08-02 14:09:49 -0500204 }
205
206 pci_hose_read_config_word (hose, dev, PCI_SEC_STATUS, &temp16);
207 if (temp16) {
Ed Swarthout63cec582007-08-02 14:09:49 -0500208 pci_hose_write_config_word(hose, dev, PCI_SEC_STATUS, 0xffff);
209 }
210}