blob: 5ca094d4cbcc52d3b6217631f061b8ab11138de9 [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>
Timur Tabibe5e6182006-11-03 19:15:00 -060032#if defined(CONFIG_OF_FLAT_TREE)
33#include <ft_build.h>
Kim Phillips3fde9e82007-08-15 22:30:33 -050034#elif defined(CONFIG_OF_LIBFDT)
35#include <libfdt.h>
Timur Tabibe5e6182006-11-03 19:15:00 -060036#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -060037
38DECLARE_GLOBAL_DATA_PTR;
39
40/* System RAM mapped to PCI space */
41#define CONFIG_PCI_SYS_MEM_BUS CFG_SDRAM_BASE
42#define CONFIG_PCI_SYS_MEM_PHYS CFG_SDRAM_BASE
43
44#ifndef CONFIG_PCI_PNP
45static struct pci_config_table pci_mpc8349itx_config_table[] = {
46 {
47 PCI_ANY_ID,
48 PCI_ANY_ID,
49 PCI_ANY_ID,
50 PCI_ANY_ID,
51 PCI_IDSEL_NUMBER,
52 PCI_ANY_ID,
53 pci_cfgfunc_config_device,
54 {
55 PCI_ENET0_IOADDR,
56 PCI_ENET0_MEMADDR,
57 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}
58 },
59 {}
60};
61#endif
62
63static struct pci_controller pci_hose[] = {
64 {
65#ifndef CONFIG_PCI_PNP
66 config_table:pci_mpc8349itx_config_table,
67#endif
68 },
69 {
70#ifndef CONFIG_PCI_PNP
71 config_table:pci_mpc8349itx_config_table,
72#endif
73 }
74};
75
76/**************************************************************************
77 * pci_init_board()
78 *
79 * NOTICE: PCI2 is not currently supported
80 *
81 */
82void pci_init_board(void)
83{
84 volatile immap_t *immr;
85 volatile clk83xx_t *clk;
86 volatile law83xx_t *pci_law;
87 volatile pot83xx_t *pci_pot;
88 volatile pcictrl83xx_t *pci_ctrl;
89 volatile pciconf83xx_t *pci_conf;
90 u8 reg8;
91 u16 reg16;
92 u32 reg32;
93 u32 dev;
94 struct pci_controller *hose;
95
Timur Tabid239d742006-11-03 12:00:28 -060096 immr = (immap_t *) CFG_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -060097 clk = (clk83xx_t *) & immr->clk;
98 pci_law = immr->sysconf.pcilaw;
99 pci_pot = immr->ios.pot;
100 pci_ctrl = immr->pci_ctrl;
101 pci_conf = immr->pci_conf;
102
103 hose = &pci_hose[0];
104
105 /*
106 * Configure PCI controller and PCI_CLK_OUTPUT both in 66M mode
107 */
108
109 reg32 = clk->occr;
110 udelay(2000);
111
112#ifdef CONFIG_HARD_I2C
Timur Tabibe5e6182006-11-03 19:15:00 -0600113 i2c_set_bus_num(1);
Timur Tabi2ad6b512006-10-31 18:44:42 -0600114 /* Read the PCI_M66EN jumper setting */
115 if ((i2c_read(CFG_I2C_8574_ADDR2, 0, 0, &reg8, sizeof(reg8)) == 0) ||
116 (i2c_read(CFG_I2C_8574A_ADDR2, 0, 0, &reg8, sizeof(reg8)) == 0)) {
117 if (reg8 & I2C_8574_PCI66)
118 clk->occr = 0xff000000; /* 66 MHz PCI */
119 else
120 clk->occr = 0xff600001; /* 33 MHz PCI */
121 } else {
122 clk->occr = 0xff600001; /* 33 MHz PCI */
123 }
124#else
125 clk->occr = 0xff000000; /* 66 MHz PCI */
126#endif
127
128 udelay(2000);
129
130 /*
131 * Release PCI RST Output signal
132 */
133 pci_ctrl[0].gcr = 0;
134 udelay(2000);
135 pci_ctrl[0].gcr = 1;
136
137#ifdef CONFIG_MPC83XX_PCI2
138 pci_ctrl[1].gcr = 0;
139 udelay(2000);
140 pci_ctrl[1].gcr = 1;
141#endif
142
143 /* We need to wait at least a 1sec based on PCI specs */
144 {
145 int i;
146
147 for (i = 0; i < 1000; i++)
148 udelay(1000);
149 }
150
151 /*
152 * Configure PCI Local Access Windows
153 */
154 pci_law[0].bar = CFG_PCI1_MEM_PHYS & LAWBAR_BAR;
155 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
156
157 pci_law[1].bar = CFG_PCI1_IO_PHYS & LAWBAR_BAR;
Timur Tabi98883332006-10-31 19:14:41 -0600158 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_32M;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600159
160 /*
161 * Configure PCI Outbound Translation Windows
162 */
163
164 /* PCI1 mem space - prefetch */
165 pci_pot[0].potar = (CFG_PCI1_MEM_BASE >> 12) & POTAR_TA_MASK;
166 pci_pot[0].pobar = (CFG_PCI1_MEM_PHYS >> 12) & POBAR_BA_MASK;
Timur Tabi98883332006-10-31 19:14:41 -0600167 pci_pot[0].pocmr = POCMR_EN | POCMR_PREFETCH_EN | POCMR_CM_256M;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600168
169 /* PCI1 IO space */
170 pci_pot[1].potar = (CFG_PCI1_IO_BASE >> 12) & POTAR_TA_MASK;
171 pci_pot[1].pobar = (CFG_PCI1_IO_PHYS >> 12) & POBAR_BA_MASK;
Timur Tabi98883332006-10-31 19:14:41 -0600172 pci_pot[1].pocmr = POCMR_EN | POCMR_IO | POCMR_CM_16M;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600173
174 /* PCI1 mmio - non-prefetch mem space */
175 pci_pot[2].potar = (CFG_PCI1_MMIO_BASE >> 12) & POTAR_TA_MASK;
176 pci_pot[2].pobar = (CFG_PCI1_MMIO_PHYS >> 12) & POBAR_BA_MASK;
Timur Tabi98883332006-10-31 19:14:41 -0600177 pci_pot[2].pocmr = POCMR_EN | POCMR_CM_256M;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600178
179 /*
180 * Configure PCI Inbound Translation Windows
181 */
182
183 /* we need RAM mapped to PCI space for the devices to
184 * access main memory */
185 pci_ctrl[0].pitar1 = 0x0;
186 pci_ctrl[0].pibar1 = 0x0;
187 pci_ctrl[0].piebar1 = 0x0;
188 pci_ctrl[0].piwar1 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
189 PIWAR_WTT_SNOOP | (__ilog2(gd->ram_size) - 1);
190
191 hose->first_busno = 0;
192 hose->last_busno = 0xff;
193
194 /* PCI memory prefetch space */
195 pci_set_region(hose->regions + 0,
196 CFG_PCI1_MEM_BASE,
197 CFG_PCI1_MEM_PHYS,
198 CFG_PCI1_MEM_SIZE, PCI_REGION_MEM | PCI_REGION_PREFETCH);
199
200 /* PCI memory space */
201 pci_set_region(hose->regions + 1,
202 CFG_PCI1_MMIO_BASE,
203 CFG_PCI1_MMIO_PHYS, CFG_PCI1_MMIO_SIZE, PCI_REGION_MEM);
204
205 /* PCI IO space */
206 pci_set_region(hose->regions + 2,
207 CFG_PCI1_IO_BASE,
208 CFG_PCI1_IO_PHYS, CFG_PCI1_IO_SIZE, PCI_REGION_IO);
209
210 /* System memory space */
211 pci_set_region(hose->regions + 3,
212 CONFIG_PCI_SYS_MEM_BUS,
213 CONFIG_PCI_SYS_MEM_PHYS,
214 gd->ram_size, PCI_REGION_MEM | PCI_REGION_MEMORY);
215
216 hose->region_count = 4;
217
218 pci_setup_indirect(hose,
Timur Tabid239d742006-11-03 12:00:28 -0600219 (CFG_IMMR + 0x8300), (CFG_IMMR + 0x8304));
Timur Tabi2ad6b512006-10-31 18:44:42 -0600220
221 pci_register_hose(hose);
222
223 /*
224 * Write to Command register
225 */
226 reg16 = 0xff;
227 dev = PCI_BDF(hose->first_busno, 0, 0);
228 pci_hose_read_config_word(hose, dev, PCI_COMMAND, &reg16);
229 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
230 pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16);
231
232 /*
233 * Clear non-reserved bits in status register.
234 */
235 pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff);
236 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
237 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
238
239#ifdef CONFIG_PCI_SCAN_SHOW
240 printf("PCI: Bus Dev VenId DevId Class Int\n");
241#endif
242 /*
243 * Hose scan.
244 */
245 hose->last_busno = pci_hose_scan(hose);
246
247#ifdef CONFIG_MPC83XX_PCI2
248 hose = &pci_hose[1];
249
250 /*
251 * Configure PCI Outbound Translation Windows
252 */
253
254 /* PCI2 mem space - prefetch */
255 pci_pot[3].potar = (CFG_PCI2_MEM_BASE >> 12) & POTAR_TA_MASK;
256 pci_pot[3].pobar = (CFG_PCI2_MEM_PHYS >> 12) & POBAR_BA_MASK;
Timur Tabi98883332006-10-31 19:14:41 -0600257 pci_pot[3].pocmr = POCMR_EN | POCMR_PCI2 | POCMR_PREFETCH_EN | POCMR_CM_256M;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600258
259 /* PCI2 IO space */
260 pci_pot[4].potar = (CFG_PCI2_IO_BASE >> 12) & POTAR_TA_MASK;
261 pci_pot[4].pobar = (CFG_PCI2_IO_PHYS >> 12) & POBAR_BA_MASK;
Timur Tabi98883332006-10-31 19:14:41 -0600262 pci_pot[4].pocmr = POCMR_EN | POCMR_PCI2 | POCMR_IO | POCMR_CM_16M;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600263
264 /* PCI2 mmio - non-prefetch mem space */
265 pci_pot[5].potar = (CFG_PCI2_MMIO_BASE >> 12) & POTAR_TA_MASK;
266 pci_pot[5].pobar = (CFG_PCI2_MMIO_PHYS >> 12) & POBAR_BA_MASK;
Timur Tabi98883332006-10-31 19:14:41 -0600267 pci_pot[5].pocmr = POCMR_EN | POCMR_PCI2 | POCMR_CM_256M;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600268
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,
Timur Tabid239d742006-11-03 12:00:28 -0600310 (CFG_IMMR + 0x8380), (CFG_IMMR + 0x8384));
Timur Tabi2ad6b512006-10-31 18:44:42 -0600311
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
Kim Phillips3fde9e82007-08-15 22:30:33 -0500337#if defined(CONFIG_OF_LIBFDT)
338void
339ft_pci_setup(void *blob, bd_t *bd)
340{
341 int nodeoffset;
342 int err;
343 int tmp[2];
344
345 nodeoffset = fdt_find_node_by_path(blob, "/" OF_SOC "/pci@8500");
346 if (nodeoffset >= 0) {
347 tmp[0] = cpu_to_be32(pci_hose[0].first_busno);
348 tmp[1] = cpu_to_be32(pci_hose[0].last_busno);
349 err = fdt_setprop(blob, nodeoffset, "bus-range",
350 tmp, sizeof(tmp));
351
352 tmp[0] = cpu_to_be32(gd->pci_clk);
353 err = fdt_setprop(blob, nodeoffset, "clock-frequency",
354 tmp, sizeof(tmp[0]));
355 }
356#ifdef CONFIG_MPC83XX_PCI2
357 nodeoffset = fdt_find_node_by_path(blob, "/" OF_SOC "/pci@8500");
358 if (nodeoffset >= 0) {
359 tmp[0] = cpu_to_be32(pci_hose[1].first_busno);
360 tmp[1] = cpu_to_be32(pci_hose[1].last_busno);
361 err = fdt_setprop(blob, nodeoffset, "bus-range",
362 tmp, sizeof(tmp));
363
364 tmp[0] = cpu_to_be32(gd->pci_clk);
365 err = fdt_setprop(blob, nodeoffset, "clock-frequency",
366 tmp, sizeof(tmp[0]));
367 }
368#endif
369}
370#elif defined(CONFIG_OF_FLAT_TREE)
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600371void
372ft_pci_setup(void *blob, bd_t *bd)
373{
374 u32 *p;
375 int len;
376
377 p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8500/bus-range", &len);
378 if (p != NULL) {
379 p[0] = pci_hose[0].first_busno;
380 p[1] = pci_hose[0].last_busno;
381 }
382
383#ifdef CONFIG_MPC83XX_PCI2
384 p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8600/bus-range", &len);
385 if (p != NULL) {
386 p[0] = pci_hose[1].first_busno;
387 p[1] = pci_hose[1].last_busno;
388 }
389#endif
390}
391#endif /* CONFIG_OF_FLAT_TREE */
Kim Phillips3fde9e82007-08-15 22:30:33 -0500392#endif /* CONFIG_PCI */