blob: 52584ce62bf8bbb05e84b967a6818a0d0cf6f794 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
3 * Andreas Heppel <aheppel@sysgo.de>
4 *
5 * (C) Copyright 2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27/*
28 * PCI routines
29 */
30
31#include <common.h>
32
33#ifdef CONFIG_PCI
34
35#include <command.h>
36#include <cmd_boot.h>
37#include <asm/processor.h>
38#include <asm/io.h>
39#include <pci.h>
40
41#ifdef DEBUG
42#define DEBUGF(x...) printf(x)
43#else
44#define DEBUGF(x...)
45#endif /* DEBUG */
46
47/*
48 *
49 */
50
51#define PCI_HOSE_OP(rw, size, type) \
52int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
53 pci_dev_t dev, \
54 int offset, type value) \
55{ \
56 return hose->rw##_##size(hose, dev, offset, value); \
57}
58
59PCI_HOSE_OP(read, byte, u8 *)
60PCI_HOSE_OP(read, word, u16 *)
61PCI_HOSE_OP(read, dword, u32 *)
62PCI_HOSE_OP(write, byte, u8)
63PCI_HOSE_OP(write, word, u16)
64PCI_HOSE_OP(write, dword, u32)
65
66#define PCI_OP(rw, size, type, error_code) \
67int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
68{ \
69 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
70 \
71 if (!hose) \
72 { \
73 error_code; \
74 return -1; \
75 } \
76 \
77 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
78}
79
80PCI_OP(read, byte, u8 *, *value = 0xff)
81PCI_OP(read, word, u16 *, *value = 0xffff)
82PCI_OP(read, dword, u32 *, *value = 0xffffffff)
83PCI_OP(write, byte, u8, )
84PCI_OP(write, word, u16, )
85PCI_OP(write, dword, u32, )
86
87#define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
88int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose, \
89 pci_dev_t dev, \
90 int offset, type val) \
91{ \
92 u32 val32; \
93 \
94 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) \
95 return -1; \
96 \
97 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
98 \
99 return 0; \
100}
101
102#define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
103int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose, \
104 pci_dev_t dev, \
105 int offset, type val) \
106{ \
107 u32 val32, mask, ldata; \
108 \
109 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) \
110 return -1; \
111 \
112 mask = val_mask; \
113 ldata = (((unsigned long)val) & mask) << ((offset & (int)off_mask) * 8);\
114 mask <<= ((mask & (int)off_mask) * 8); \
115 val32 = (val32 & ~mask) | ldata; \
116 \
117 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0) \
118 return -1; \
119 \
120 return 0; \
121}
122
123PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
124PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
125PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
126PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
127
128/*
129 *
130 */
131
132static struct pci_controller* hose_head = NULL;
133
134void pci_register_hose(struct pci_controller* hose)
135{
136 struct pci_controller **phose = &hose_head;
137
138 while(*phose)
139 phose = &(*phose)->next;
140
141 hose->next = NULL;
142
143 *phose = hose;
144}
145
146struct pci_controller* pci_bus_to_hose(int bus)
147{
148 struct pci_controller *hose;
149
150 for (hose = hose_head; hose; hose = hose->next)
151 if (bus >= hose->first_busno &&
152 bus <= hose->last_busno)
153 return hose;
154
155 return NULL;
156}
157
158pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
159{
160 struct pci_controller * hose;
161 u16 vendor, device;
162 u8 header_type;
163 pci_dev_t bdf;
164 int i, bus, found_multi = 0;
165
166 for (hose = hose_head; hose; hose = hose->next)
167 {
168#if CFG_SCSI_SCAN_BUS_REVERSE
169 for (bus = hose->last_busno; bus >= hose->first_busno; bus--)
170#else
171 for (bus = hose->first_busno; bus <= hose->last_busno; bus++)
172#endif
173 for (bdf = PCI_BDF(bus,0,0);
174#ifdef CONFIG_ELPPC
175 bdf < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
176#else
177 bdf < PCI_BDF(bus+1,0,0);
178#endif
179 bdf += PCI_BDF(0,0,1))
180 {
181 if (!PCI_FUNC(bdf))
182 {
183 pci_read_config_byte(bdf,
184 PCI_HEADER_TYPE,
185 &header_type);
186
187 found_multi = header_type & 0x80;
188 }
189 else
190 {
191 if (!found_multi)
192 continue;
193 }
194
195 pci_read_config_word(bdf,
196 PCI_VENDOR_ID,
197 &vendor);
198 pci_read_config_word(bdf,
199 PCI_DEVICE_ID,
200 &device);
201
202 for (i=0; ids[i].vendor != 0; i++)
203 if (vendor == ids[i].vendor &&
204 device == ids[i].device)
205 {
206 if (index <= 0)
207 return bdf;
208
209 index--;
210 }
211 }
212 }
213
214 return (-1);
215}
216
217pci_dev_t pci_find_device(unsigned int vendor, unsigned int device, int index)
218{
219 static struct pci_device_id ids[2] = {{}, {0, 0}};
220
221 ids[0].vendor = vendor;
222 ids[0].device = device;
223
224 return pci_find_devices(ids, index);
225}
226
227/*
228 *
229 */
230
231unsigned long pci_hose_phys_to_bus(struct pci_controller* hose,
232 unsigned long phys_addr,
233 unsigned long flags)
234{
235 struct pci_region *res;
236 unsigned long bus_addr;
237 int i;
238
239 if (!hose)
240 {
241 printf("pci_hose_phys_to_bus: %s\n", "invalid hose");
242 goto Done;
243 }
244
245 for (i=0; i<hose->region_count; i++)
246 {
247 res = &hose->regions[i];
248
249 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
250 continue;
251
252 bus_addr = phys_addr - res->phys_start + res->bus_start;
253
254 if (bus_addr >= res->bus_start &&
255 bus_addr < res->bus_start + res->size)
256 {
257 return bus_addr;
258 }
259 }
260
261 printf("pci_hose_phys_to_bus: %s\n", "invalid physical address");
262
263 Done:
264 return 0;
265}
266
267unsigned long pci_hose_bus_to_phys(struct pci_controller* hose,
268 unsigned long bus_addr,
269 unsigned long flags)
270{
271 struct pci_region *res;
272 int i;
273
274 if (!hose)
275 {
276 printf("pci_hose_bus_to_phys: %s\n", "invalid hose");
277 goto Done;
278 }
279
280 for (i=0; i<hose->region_count; i++)
281 {
282 res = &hose->regions[i];
283
284 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
285 continue;
286
287 if (bus_addr >= res->bus_start &&
288 bus_addr < res->bus_start + res->size)
289 {
290 return bus_addr - res->bus_start + res->phys_start;
291 }
292 }
293
294 printf("pci_hose_bus_to_phys: %s\n", "invalid physical address");
295
296 Done:
297 return 0;
298}
299
300/*
301 *
302 */
303
304int pci_hose_config_device(struct pci_controller *hose,
305 pci_dev_t dev,
306 unsigned long io,
307 unsigned long mem,
308 unsigned long command)
309{
310 unsigned int bar_response, bar_size, bar_value, old_command;
311 unsigned char pin;
312 int bar, found_mem64;
313
314 DEBUGF("PCI Config: I/O=0x%lx, Memory=0x%lx, Command=0x%lx\n", io, mem, command);
315
316 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
317
318 for (bar = PCI_BASE_ADDRESS_0; bar < PCI_BASE_ADDRESS_5; bar += 4)
319 {
320 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
321 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
322
323 if (!bar_response)
324 continue;
325
326 found_mem64 = 0;
327
328 /* Check the BAR type and set our address mask */
329 if (bar_response & PCI_BASE_ADDRESS_SPACE)
330 {
331 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
332 bar_value = io;
333
334 io = ((io - 1) | (bar_size - 1)) + 1;
335 }
336 else
337 {
338 if ( (bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
339 PCI_BASE_ADDRESS_MEM_TYPE_64)
340 found_mem64 = 1;
341
342 bar_size = ~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1;
343 bar_value = mem;
344
345 mem = ((mem - 1) | (bar_size - 1)) + 1;
346 }
347
348 /* Write it out and update our limit */
349 pci_hose_write_config_dword(hose, dev, bar, bar_value);
350
351 if (found_mem64)
352 {
353 bar += 4;
354 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
355 }
356 }
357
358 /* Configure Cache Line Size Register */
359 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
360
361 /* Configure Latency Timer */
362 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
363
364 /* Disable interrupt line, if device says it wants to use interrupts */
365 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
366 if (pin != 0)
367 {
368 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, 0xff);
369 }
370
371 pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &old_command);
372 pci_hose_write_config_dword(hose, dev, PCI_COMMAND,
373 (old_command & 0xffff0000) | command );
374
375 return 0;
376}
377
378/*
379 *
380 */
381
382struct pci_config_table *pci_find_config(struct pci_controller *hose,
383 unsigned short class,
384 unsigned int vendor,
385 unsigned int device,
386 unsigned int bus,
387 unsigned int dev,
388 unsigned int func)
389{
390 struct pci_config_table *table;
391
392 for (table = hose->config_table; table && table->vendor; table++)
393 {
394 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
395 (table->device == PCI_ANY_ID || table->device == device) &&
396 (table->class == PCI_ANY_ID || table->class == class) &&
397 (table->bus == PCI_ANY_ID || table->bus == bus) &&
398 (table->dev == PCI_ANY_ID || table->dev == dev) &&
399 (table->func == PCI_ANY_ID || table->func == func))
400 {
401 return table;
402 }
403 }
404
405 return NULL;
406}
407
408void pci_cfgfunc_config_device(struct pci_controller *hose,
409 pci_dev_t dev,
410 struct pci_config_table *entry)
411{
412 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1], entry->priv[2]);
413}
414
415void pci_cfgfunc_do_nothing(struct pci_controller *hose,
416 pci_dev_t dev, struct pci_config_table *entry)
417{
418}
419
420/*
421 *
422 */
423
424extern void pciauto_config_init(struct pci_controller *hose);
425extern void pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
426
427int pci_hose_scan_bus(struct pci_controller *hose, int bus)
428{
429 unsigned int sub_bus, found_multi=0;
430 unsigned short vendor, device, class;
431 unsigned char header_type;
432 struct pci_config_table *cfg;
433 pci_dev_t dev;
434
435 sub_bus = bus;
436
437 for (dev = PCI_BDF(bus,0,0);
438 dev < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
439 dev += PCI_BDF(0,0,1))
440 {
441#ifndef CONFIG_405GP /* don't skip host bridge on ppc405gp */
442 /* Skip our host bridge */
443 if ( dev == PCI_BDF(hose->first_busno,0,0) )
444 continue;
445#endif
446
447 if (PCI_FUNC(dev) && !found_multi)
448 continue;
449
450 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
451
452 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
453
454 if (vendor != 0xffff && vendor != 0x0000)
455 {
456
457 if (!PCI_FUNC(dev))
458 found_multi = header_type & 0x80;
459
460 DEBUGF("PCI Scan: Found Bus %d, Device %d, Function %d\n",
461 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev) );
462
463 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
464 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
465
466 cfg = pci_find_config(hose, class, vendor, device,
467 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
468 if (cfg)
469 cfg->config_device(hose, dev, cfg);
470#ifdef CONFIG_PCI_PNP
471 else
472 pciauto_config_device(hose, dev);
473#endif
474 if (hose->fixup_irq)
475 hose->fixup_irq(hose, dev);
476
477#ifdef CONFIG_PCI_SCAN_SHOW
478 /* Skip our host bridge */
479 if ( dev != PCI_BDF(hose->first_busno,0,0) ) {
480 unsigned char int_line;
481
482 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_LINE,
483 &int_line);
484 printf(" %02x %02x %04x %04x %04x %02x\n",
485 PCI_BUS(dev), PCI_DEV(dev), vendor, device, class,
486 int_line);
487 }
488#endif
489 }
490 }
491
492 return sub_bus;
493}
494
495int pci_hose_scan(struct pci_controller *hose)
496{
497#ifdef CONFIG_PCI_PNP
498 pciauto_config_init(hose);
499#endif
500 return pci_hose_scan_bus(hose, hose->first_busno);
501}
502
503#endif /* CONFIG_PCI */