blob: c2f61ea6ad72626b102e0f8ff43589015cb6c72a [file] [log] [blame]
Dave Liu24c3aca2006-12-07 21:13:15 +08001/*
2 * Copyright (C) 2006 Freescale Semiconductor, Inc.
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
13/*
14 * PCI Configuration space access support for MPC83xx PCI Bridge
15 */
16#include <asm/mmu.h>
17#include <asm/io.h>
18#include <common.h>
19#include <pci.h>
20#include <i2c.h>
Kim Phillips781e0262007-02-28 00:02:04 -060021#if defined(CONFIG_OF_FLAT_TREE)
22#include <ft_build.h>
Kim Phillips3fde9e82007-08-15 22:30:33 -050023#elif defined(CONFIG_OF_LIBFDT)
24#include <libfdt.h>
Kim Phillips781e0262007-02-28 00:02:04 -060025#endif
Dave Liu24c3aca2006-12-07 21:13:15 +080026
27#include <asm/fsl_i2c.h>
28
29DECLARE_GLOBAL_DATA_PTR;
30
31#if defined(CONFIG_PCI)
32#define PCI_FUNCTION_CONFIG 0x44
33#define PCI_FUNCTION_CFG_LOCK 0x20
34
35/*
36 * Initialize PCI Devices, report devices found
37 */
38#ifndef CONFIG_PCI_PNP
39static struct pci_config_table pci_mpc83xxemds_config_table[] = {
40 {
41 PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
42 pci_cfgfunc_config_device,
43 {PCI_ENET0_IOADDR,
44 PCI_ENET0_MEMADDR,
45 PCI_COMMON_MEMORY | PCI_COMMAND_MASTER}
46 },
47 {}
48}
49#endif
50static struct pci_controller hose[] = {
51 {
52#ifndef CONFIG_PCI_PNP
53 config_table:pci_mpc83xxemds_config_table,
54#endif
55 },
56};
57
58/**********************************************************************
59 * pci_init_board()
60 *********************************************************************/
61void pci_init_board(void)
62#ifdef CONFIG_PCISLAVE
63{
64 u16 reg16;
65 volatile immap_t *immr;
66 volatile law83xx_t *pci_law;
67 volatile pot83xx_t *pci_pot;
68 volatile pcictrl83xx_t *pci_ctrl;
69 volatile pciconf83xx_t *pci_conf;
70
71 immr = (immap_t *) CFG_IMMR;
72 pci_law = immr->sysconf.pcilaw;
73 pci_pot = immr->ios.pot;
74 pci_ctrl = immr->pci_ctrl;
75 pci_conf = immr->pci_conf;
76 /*
77 * Configure PCI Inbound Translation Windows
78 */
79 pci_ctrl[0].pitar0 = 0x0;
80 pci_ctrl[0].pibar0 = 0x0;
81 pci_ctrl[0].piwar0 = PIWAR_EN | PIWAR_RTT_SNOOP |
82 PIWAR_WTT_SNOOP | PIWAR_IWS_4K;
83
84 pci_ctrl[0].pitar1 = 0x0;
85 pci_ctrl[0].pibar1 = 0x0;
86 pci_ctrl[0].piebar1 = 0x0;
87 pci_ctrl[0].piwar1 &= ~PIWAR_EN;
88
89 pci_ctrl[0].pitar2 = 0x0;
90 pci_ctrl[0].pibar2 = 0x0;
91 pci_ctrl[0].piebar2 = 0x0;
92 pci_ctrl[0].piwar2 &= ~PIWAR_EN;
93
94 hose[0].first_busno = 0;
95 hose[0].last_busno = 0xff;
96 pci_setup_indirect(&hose[0],
97 (CFG_IMMR + 0x8300), (CFG_IMMR + 0x8304));
98 reg16 = 0xff;
99
100 pci_hose_read_config_word(&hose[0], PCI_BDF(0, 0, 0),
101 PCI_COMMAND, &reg16);
102 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MEMORY;
103 pci_hose_write_config_word(&hose[0], PCI_BDF(0, 0, 0),
104 PCI_COMMAND, reg16);
105
106 /*
107 * Clear non-reserved bits in status register.
108 */
109 pci_hose_write_config_word(&hose[0], PCI_BDF(0, 0, 0),
110 PCI_STATUS, 0xffff);
111 pci_hose_write_config_byte(&hose[0], PCI_BDF(0, 0, 0),
112 PCI_LATENCY_TIMER, 0x80);
113
114 /*
115 * Unlock configuration lock in PCI function configuration register.
116 */
117 pci_hose_read_config_word(&hose[0], PCI_BDF(0, 0, 0),
118 PCI_FUNCTION_CONFIG, &reg16);
119 reg16 &= ~(PCI_FUNCTION_CFG_LOCK);
120 pci_hose_write_config_word(&hose[0], PCI_BDF(0, 0, 0),
121 PCI_FUNCTION_CONFIG, reg16);
122
123 printf("Enabled PCI 32bit Agent Mode\n");
124}
125#else
126{
127 volatile immap_t *immr;
128 volatile clk83xx_t *clk;
129 volatile law83xx_t *pci_law;
130 volatile pot83xx_t *pci_pot;
131 volatile pcictrl83xx_t *pci_ctrl;
132 volatile pciconf83xx_t *pci_conf;
133
134 u8 val8, orig_i2c_bus;
135 u16 reg16;
136 u32 val32;
137 u32 dev;
138
139 immr = (immap_t *) CFG_IMMR;
140 clk = (clk83xx_t *) & immr->clk;
141 pci_law = immr->sysconf.pcilaw;
142 pci_pot = immr->ios.pot;
143 pci_ctrl = immr->pci_ctrl;
144 pci_conf = immr->pci_conf;
145 /*
146 * Configure PCI controller and PCI_CLK_OUTPUT both in 66M mode
147 */
148 val32 = clk->occr;
149 udelay(2000);
150#if defined(PCI_66M)
151 clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2;
152 printf("PCI clock is 66MHz\n");
153#elif defined(PCI_33M)
154 clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2 |
155 OCCR_PCICD0 | OCCR_PCICD1 | OCCR_PCICD2 | OCCR_PCICR;
156 printf("PCI clock is 33MHz\n");
157#else
158 clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2;
159 printf("PCI clock is 66MHz\n");
160#endif
161 udelay(2000);
162
163 /*
164 * Configure PCI Local Access Windows
165 */
166 pci_law[0].bar = CFG_PCI_MEM_PHYS & LAWBAR_BAR;
167 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_512M;
168
169 pci_law[1].bar = CFG_PCI_IO_PHYS & LAWBAR_BAR;
170 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_1M;
171
172 /*
173 * Configure PCI Outbound Translation Windows
174 */
175
176 /* PCI mem space - prefetch */
177 pci_pot[0].potar = (CFG_PCI_MEM_BASE >> 12) & POTAR_TA_MASK;
178 pci_pot[0].pobar = (CFG_PCI_MEM_PHYS >> 12) & POBAR_BA_MASK;
179 pci_pot[0].pocmr =
180 POCMR_EN | POCMR_SE | (POCMR_CM_256M & POCMR_CM_MASK);
181
182 /* PCI mmio - non-prefetch mem space */
183 pci_pot[1].potar = (CFG_PCI_MMIO_BASE >> 12) & POTAR_TA_MASK;
184 pci_pot[1].pobar = (CFG_PCI_MMIO_PHYS >> 12) & POBAR_BA_MASK;
185 pci_pot[1].pocmr = POCMR_EN | (POCMR_CM_256M & POCMR_CM_MASK);
186
187 /* PCI IO space */
188 pci_pot[2].potar = (CFG_PCI_IO_BASE >> 12) & POTAR_TA_MASK;
189 pci_pot[2].pobar = (CFG_PCI_IO_PHYS >> 12) & POBAR_BA_MASK;
190 pci_pot[2].pocmr = POCMR_EN | POCMR_IO | (POCMR_CM_1M & POCMR_CM_MASK);
191
192 /*
193 * Configure PCI Inbound Translation Windows
194 */
195 pci_ctrl[0].pitar1 = (CFG_PCI_SLV_MEM_LOCAL >> 12) & PITAR_TA_MASK;
196 pci_ctrl[0].pibar1 = (CFG_PCI_SLV_MEM_BUS >> 12) & PIBAR_MASK;
197 pci_ctrl[0].piebar1 = 0x0;
198 pci_ctrl[0].piwar1 =
199 PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP | PIWAR_WTT_SNOOP |
200 PIWAR_IWS_2G;
201
202 /*
203 * Assign PIB PMC slot to desired PCI bus
204 */
205
206 /* Switch temporarily to I2C bus #2 */
207 orig_i2c_bus = i2c_get_bus_num();
208 i2c_set_bus_num(1);
209
210 val8 = 0;
211 i2c_write(0x23, 0x6, 1, &val8, 1);
212 i2c_write(0x23, 0x7, 1, &val8, 1);
213 val8 = 0xff;
214 i2c_write(0x23, 0x2, 1, &val8, 1);
215 i2c_write(0x23, 0x3, 1, &val8, 1);
216
217 val8 = 0;
218 i2c_write(0x26, 0x6, 1, &val8, 1);
219 val8 = 0x34;
220 i2c_write(0x26, 0x7, 1, &val8, 1);
221
222 val8 = 0xf9; /* PMC2, PMC3 slot to PCI bus */
223 i2c_write(0x26, 0x2, 1, &val8, 1);
224 val8 = 0xff;
225 i2c_write(0x26, 0x3, 1, &val8, 1);
226
227 val8 = 0;
228 i2c_write(0x27, 0x6, 1, &val8, 1);
229 i2c_write(0x27, 0x7, 1, &val8, 1);
230 val8 = 0xff;
231 i2c_write(0x27, 0x2, 1, &val8, 1);
232 val8 = 0xef;
233 i2c_write(0x27, 0x3, 1, &val8, 1);
234 asm("eieio");
235
236 /* Reset to original I2C bus */
237 i2c_set_bus_num(orig_i2c_bus);
238
239 /*
240 * Release PCI RST Output signal
241 */
242 udelay(2000);
243 pci_ctrl[0].gcr = 1;
244 udelay(2000);
245
246 hose[0].first_busno = 0;
247 hose[0].last_busno = 0xff;
248
249 /* PCI memory prefetch space */
250 pci_set_region(hose[0].regions + 0,
251 CFG_PCI_MEM_BASE,
252 CFG_PCI_MEM_PHYS,
253 CFG_PCI_MEM_SIZE, PCI_REGION_MEM | PCI_REGION_PREFETCH);
254
255 /* PCI memory space */
256 pci_set_region(hose[0].regions + 1,
257 CFG_PCI_MMIO_BASE,
258 CFG_PCI_MMIO_PHYS, CFG_PCI_MMIO_SIZE, PCI_REGION_MEM);
259
260 /* PCI IO space */
261 pci_set_region(hose[0].regions + 2,
262 CFG_PCI_IO_BASE,
263 CFG_PCI_IO_PHYS, CFG_PCI_IO_SIZE, PCI_REGION_IO);
264
265 /* System memory space */
266 pci_set_region(hose[0].regions + 3,
267 CFG_PCI_SLV_MEM_LOCAL,
268 CFG_PCI_SLV_MEM_BUS,
269 CFG_PCI_SLV_MEM_SIZE,
270 PCI_REGION_MEM | PCI_REGION_MEMORY);
271
272 hose[0].region_count = 4;
273
274 pci_setup_indirect(&hose[0],
275 (CFG_IMMR + 0x8300), (CFG_IMMR + 0x8304));
276
277 pci_register_hose(hose);
278
279 /*
280 * Write command register
281 */
282 reg16 = 0xff;
283 dev = PCI_BDF(0, 0, 0);
284 pci_hose_read_config_word(&hose[0], dev, PCI_COMMAND, &reg16);
285 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
286 pci_hose_write_config_word(&hose[0], dev, PCI_COMMAND, reg16);
287
288 /*
289 * Clear non-reserved bits in status register.
290 */
291 pci_hose_write_config_word(&hose[0], dev, PCI_STATUS, 0xffff);
292 pci_hose_write_config_byte(&hose[0], dev, PCI_LATENCY_TIMER, 0x80);
293 pci_hose_write_config_byte(&hose[0], dev, PCI_CACHE_LINE_SIZE, 0x08);
294
295 printf("PCI 32bit bus on PMC2 & PMC3\n");
296
297 /*
298 * Hose scan.
299 */
300 hose->last_busno = pci_hose_scan(hose);
301}
302#endif /* CONFIG_PCISLAVE */
303
Kim Phillips3fde9e82007-08-15 22:30:33 -0500304#if defined(CONFIG_OF_LIBFDT)
305void
306ft_pci_setup(void *blob, bd_t *bd)
307{
308 int nodeoffset;
309 int err;
310 int tmp[2];
311
312 nodeoffset = fdt_find_node_by_path(blob, "/" OF_SOC "/pci@8500");
313 if (nodeoffset >= 0) {
314 tmp[0] = cpu_to_be32(hose[0].first_busno);
315 tmp[1] = cpu_to_be32(hose[0].last_busno);
316 err = fdt_setprop(blob, nodeoffset, "bus-range",
317 tmp, sizeof(tmp));
318
319 tmp[0] = cpu_to_be32(gd->pci_clk);
320 err = fdt_setprop(blob, nodeoffset, "clock-frequency",
321 tmp, sizeof(tmp[0]));
322 }
323}
324#elif defined(CONFIG_OF_FLAT_TREE)
Dave Liu24c3aca2006-12-07 21:13:15 +0800325void
326ft_pci_setup(void *blob, bd_t *bd)
327{
328 u32 *p;
329 int len;
330
331 p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8500/bus-range", &len);
332 if (p != NULL) {
333 p[0] = hose[0].first_busno;
334 p[1] = hose[0].last_busno;
335 }
336}
337#endif /* CONFIG_OF_FLAT_TREE */
338#endif /* CONFIG_PCI */