blob: 247b3a6ecc94e962100d7e43532bc790503ab84a [file] [log] [blame]
Timur Tabi2ad6b512006-10-31 18:44:42 -06001/*
2 * Copyright (C) Freescale Semiconductor, Inc. 2006. All rights reserved.
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
24
25#ifdef CONFIG_PCI
26
27#include <asm/mmu.h>
28#include <asm/global_data.h>
29#include <pci.h>
30#include <asm/mpc8349_pci.h>
31#include <i2c.h>
32
33DECLARE_GLOBAL_DATA_PTR;
34
35/* System RAM mapped to PCI space */
36#define CONFIG_PCI_SYS_MEM_BUS CFG_SDRAM_BASE
37#define CONFIG_PCI_SYS_MEM_PHYS CFG_SDRAM_BASE
38
39#ifndef CONFIG_PCI_PNP
40static struct pci_config_table pci_mpc8349itx_config_table[] = {
41 {
42 PCI_ANY_ID,
43 PCI_ANY_ID,
44 PCI_ANY_ID,
45 PCI_ANY_ID,
46 PCI_IDSEL_NUMBER,
47 PCI_ANY_ID,
48 pci_cfgfunc_config_device,
49 {
50 PCI_ENET0_IOADDR,
51 PCI_ENET0_MEMADDR,
52 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}
53 },
54 {}
55};
56#endif
57
58static struct pci_controller pci_hose[] = {
59 {
60#ifndef CONFIG_PCI_PNP
61 config_table:pci_mpc8349itx_config_table,
62#endif
63 },
64 {
65#ifndef CONFIG_PCI_PNP
66 config_table:pci_mpc8349itx_config_table,
67#endif
68 }
69};
70
71/**************************************************************************
72 * pci_init_board()
73 *
74 * NOTICE: PCI2 is not currently supported
75 *
76 */
77void pci_init_board(void)
78{
79 volatile immap_t *immr;
80 volatile clk83xx_t *clk;
81 volatile law83xx_t *pci_law;
82 volatile pot83xx_t *pci_pot;
83 volatile pcictrl83xx_t *pci_ctrl;
84 volatile pciconf83xx_t *pci_conf;
85 u8 reg8;
86 u16 reg16;
87 u32 reg32;
88 u32 dev;
89 struct pci_controller *hose;
90
91 immr = (immap_t *) CFG_IMMRBAR;
92 clk = (clk83xx_t *) & immr->clk;
93 pci_law = immr->sysconf.pcilaw;
94 pci_pot = immr->ios.pot;
95 pci_ctrl = immr->pci_ctrl;
96 pci_conf = immr->pci_conf;
97
98 hose = &pci_hose[0];
99
100 /*
101 * Configure PCI controller and PCI_CLK_OUTPUT both in 66M mode
102 */
103
104 reg32 = clk->occr;
105 udelay(2000);
106
107#ifdef CONFIG_HARD_I2C
108 i2c_set_bus_num(I2C_BUS_2);
109 /* Read the PCI_M66EN jumper setting */
110 if ((i2c_read(CFG_I2C_8574_ADDR2, 0, 0, &reg8, sizeof(reg8)) == 0) ||
111 (i2c_read(CFG_I2C_8574A_ADDR2, 0, 0, &reg8, sizeof(reg8)) == 0)) {
112 if (reg8 & I2C_8574_PCI66)
113 clk->occr = 0xff000000; /* 66 MHz PCI */
114 else
115 clk->occr = 0xff600001; /* 33 MHz PCI */
116 } else {
117 clk->occr = 0xff600001; /* 33 MHz PCI */
118 }
119#else
120 clk->occr = 0xff000000; /* 66 MHz PCI */
121#endif
122
123 udelay(2000);
124
125 /*
126 * Release PCI RST Output signal
127 */
128 pci_ctrl[0].gcr = 0;
129 udelay(2000);
130 pci_ctrl[0].gcr = 1;
131
132#ifdef CONFIG_MPC83XX_PCI2
133 pci_ctrl[1].gcr = 0;
134 udelay(2000);
135 pci_ctrl[1].gcr = 1;
136#endif
137
138 /* We need to wait at least a 1sec based on PCI specs */
139 {
140 int i;
141
142 for (i = 0; i < 1000; i++)
143 udelay(1000);
144 }
145
146 /*
147 * Configure PCI Local Access Windows
148 */
149 pci_law[0].bar = CFG_PCI1_MEM_PHYS & LAWBAR_BAR;
150 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
151
152 pci_law[1].bar = CFG_PCI1_IO_PHYS & LAWBAR_BAR;
153 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_4M;
154
155 /*
156 * Configure PCI Outbound Translation Windows
157 */
158
159 /* PCI1 mem space - prefetch */
160 pci_pot[0].potar = (CFG_PCI1_MEM_BASE >> 12) & POTAR_TA_MASK;
161 pci_pot[0].pobar = (CFG_PCI1_MEM_PHYS >> 12) & POBAR_BA_MASK;
162 pci_pot[0].pocmr =
163 POCMR_EN | POCMR_PREFETCH_EN | (POCMR_CM_256M & POCMR_CM_MASK);
164
165 /* PCI1 IO space */
166 pci_pot[1].potar = (CFG_PCI1_IO_BASE >> 12) & POTAR_TA_MASK;
167 pci_pot[1].pobar = (CFG_PCI1_IO_PHYS >> 12) & POBAR_BA_MASK;
168 pci_pot[1].pocmr = POCMR_EN | POCMR_IO | (POCMR_CM_1M & POCMR_CM_MASK);
169
170 /* PCI1 mmio - non-prefetch mem space */
171 pci_pot[2].potar = (CFG_PCI1_MMIO_BASE >> 12) & POTAR_TA_MASK;
172 pci_pot[2].pobar = (CFG_PCI1_MMIO_PHYS >> 12) & POBAR_BA_MASK;
173 pci_pot[2].pocmr = POCMR_EN | (POCMR_CM_256M & POCMR_CM_MASK);
174
175 /*
176 * Configure PCI Inbound Translation Windows
177 */
178
179 /* we need RAM mapped to PCI space for the devices to
180 * access main memory */
181 pci_ctrl[0].pitar1 = 0x0;
182 pci_ctrl[0].pibar1 = 0x0;
183 pci_ctrl[0].piebar1 = 0x0;
184 pci_ctrl[0].piwar1 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
185 PIWAR_WTT_SNOOP | (__ilog2(gd->ram_size) - 1);
186
187 hose->first_busno = 0;
188 hose->last_busno = 0xff;
189
190 /* PCI memory prefetch space */
191 pci_set_region(hose->regions + 0,
192 CFG_PCI1_MEM_BASE,
193 CFG_PCI1_MEM_PHYS,
194 CFG_PCI1_MEM_SIZE, PCI_REGION_MEM | PCI_REGION_PREFETCH);
195
196 /* PCI memory space */
197 pci_set_region(hose->regions + 1,
198 CFG_PCI1_MMIO_BASE,
199 CFG_PCI1_MMIO_PHYS, CFG_PCI1_MMIO_SIZE, PCI_REGION_MEM);
200
201 /* PCI IO space */
202 pci_set_region(hose->regions + 2,
203 CFG_PCI1_IO_BASE,
204 CFG_PCI1_IO_PHYS, CFG_PCI1_IO_SIZE, PCI_REGION_IO);
205
206 /* System memory space */
207 pci_set_region(hose->regions + 3,
208 CONFIG_PCI_SYS_MEM_BUS,
209 CONFIG_PCI_SYS_MEM_PHYS,
210 gd->ram_size, PCI_REGION_MEM | PCI_REGION_MEMORY);
211
212 hose->region_count = 4;
213
214 pci_setup_indirect(hose,
215 (CFG_IMMRBAR + 0x8300), (CFG_IMMRBAR + 0x8304));
216
217 pci_register_hose(hose);
218
219 /*
220 * Write to Command register
221 */
222 reg16 = 0xff;
223 dev = PCI_BDF(hose->first_busno, 0, 0);
224 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &reg16);
225 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
226 pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16);
227
228 /*
229 * Clear non-reserved bits in status register.
230 */
231 pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff);
232 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
233 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
234
235#ifdef CONFIG_PCI_SCAN_SHOW
236 printf("PCI: Bus Dev VenId DevId Class Int\n");
237#endif
238 /*
239 * Hose scan.
240 */
241 hose->last_busno = pci_hose_scan(hose);
242
243#ifdef CONFIG_MPC83XX_PCI2
244 hose = &pci_hose[1];
245
246 /*
247 * Configure PCI Outbound Translation Windows
248 */
249
250 /* PCI2 mem space - prefetch */
251 pci_pot[3].potar = (CFG_PCI2_MEM_BASE >> 12) & POTAR_TA_MASK;
252 pci_pot[3].pobar = (CFG_PCI2_MEM_PHYS >> 12) & POBAR_BA_MASK;
253 pci_pot[3].pocmr =
254 POCMR_EN | POCMR_PCI2 | POCMR_PREFETCH_EN | (POCMR_CM_256M &
255 POCMR_CM_MASK);
256
257 /* PCI2 IO space */
258 pci_pot[4].potar = (CFG_PCI2_IO_BASE >> 12) & POTAR_TA_MASK;
259 pci_pot[4].pobar = (CFG_PCI2_IO_PHYS >> 12) & POBAR_BA_MASK;
260 pci_pot[4].pocmr =
261 POCMR_EN | POCMR_PCI2 | POCMR_IO | (POCMR_CM_1M & POCMR_CM_MASK);
262
263 /* PCI2 mmio - non-prefetch mem space */
264 pci_pot[5].potar = (CFG_PCI2_MMIO_BASE >> 12) & POTAR_TA_MASK;
265 pci_pot[5].pobar = (CFG_PCI2_MMIO_PHYS >> 12) & POBAR_BA_MASK;
266 pci_pot[5].pocmr =
267 POCMR_EN | POCMR_PCI2 | (POCMR_CM_256M & POCMR_CM_MASK);
268
269 /*
270 * Configure PCI Inbound Translation Windows
271 */
272
273 /* we need RAM mapped to PCI space for the devices to
274 * access main memory */
275 pci_ctrl[1].pitar1 = 0x0;
276 pci_ctrl[1].pibar1 = 0x0;
277 pci_ctrl[1].piebar1 = 0x0;
278 pci_ctrl[1].piwar1 =
279 PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP | PIWAR_WTT_SNOOP |
280 (__ilog2(gd->ram_size) - 1);
281
282 hose->first_busno = pci_hose[0].last_busno + 1;
283 hose->last_busno = 0xff;
284
285 /* PCI memory prefetch space */
286 pci_set_region(hose->regions + 0,
287 CFG_PCI2_MEM_BASE,
288 CFG_PCI2_MEM_PHYS,
289 CFG_PCI2_MEM_SIZE, PCI_REGION_MEM | PCI_REGION_PREFETCH);
290
291 /* PCI memory space */
292 pci_set_region(hose->regions + 1,
293 CFG_PCI2_MMIO_BASE,
294 CFG_PCI2_MMIO_PHYS, CFG_PCI2_MMIO_SIZE, PCI_REGION_MEM);
295
296 /* PCI IO space */
297 pci_set_region(hose->regions + 2,
298 CFG_PCI2_IO_BASE,
299 CFG_PCI2_IO_PHYS, CFG_PCI2_IO_SIZE, PCI_REGION_IO);
300
301 /* System memory space */
302 pci_set_region(hose->regions + 3,
303 CONFIG_PCI_SYS_MEM_BUS,
304 CONFIG_PCI_SYS_MEM_PHYS,
305 gd->ram_size, PCI_REGION_MEM | PCI_REGION_MEMORY);
306
307 hose->region_count = 4;
308
309 pci_setup_indirect(hose,
310 (CFG_IMMRBAR + 0x8380), (CFG_IMMRBAR + 0x8384));
311
312 pci_register_hose(hose);
313
314 /*
315 * Write to Command register
316 */
317 reg16 = 0xff;
318 dev = PCI_BDF(hose->first_busno, 0, 0);
319 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &reg16);
320 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
321 pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16);
322
323 /*
324 * Clear non-reserved bits in status register.
325 */
326 pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff);
327 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
328 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
329
330 /*
331 * Hose scan.
332 */
333 hose->last_busno = pci_hose_scan(hose);
334#endif
335}
336
337#endif /* CONFIG_PCI */