2 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
3 * Andreas Heppel <aheppel@sysgo.de>
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * See file CREDITS for list of people who contributed to this
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.
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.
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,
37 #include <asm/processor.h>
42 #define DEBUGF(x...) printf(x)
51 #define PCI_HOSE_OP(rw, size, type) \
52 int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
54 int offset, type value) \
56 return hose->rw##_##size(hose, dev, offset, value); \
59 PCI_HOSE_OP(read, byte, u8 *)
60 PCI_HOSE_OP(read, word, u16 *)
61 PCI_HOSE_OP(read, dword, u32 *)
62 PCI_HOSE_OP(write, byte, u8)
63 PCI_HOSE_OP(write, word, u16)
64 PCI_HOSE_OP(write, dword, u32)
66 #define PCI_OP(rw, size, type, error_code) \
67 int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
69 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
77 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
80 PCI_OP(read, byte, u8 *, *value = 0xff)
81 PCI_OP(read, word, u16 *, *value = 0xffff)
82 PCI_OP(read, dword, u32 *, *value = 0xffffffff)
83 PCI_OP(write, byte, u8, )
84 PCI_OP(write, word, u16, )
85 PCI_OP(write, dword, u32, )
87 #define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
88 int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose, \
90 int offset, type val) \
94 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) \
97 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
102 #define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
103 int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose, \
105 int offset, type val) \
107 u32 val32, mask, ldata; \
109 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) \
113 ldata = (((unsigned long)val) & mask) << ((offset & (int)off_mask) * 8);\
114 mask <<= ((mask & (int)off_mask) * 8); \
115 val32 = (val32 & ~mask) | ldata; \
117 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0) \
123 PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
124 PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
125 PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
126 PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
132 static struct pci_controller* hose_head = NULL;
134 void pci_register_hose(struct pci_controller* hose)
136 struct pci_controller **phose = &hose_head;
139 phose = &(*phose)->next;
146 struct pci_controller* pci_bus_to_hose(int bus)
148 struct pci_controller *hose;
150 for (hose = hose_head; hose; hose = hose->next)
151 if (bus >= hose->first_busno &&
152 bus <= hose->last_busno)
158 pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
160 struct pci_controller * hose;
164 int i, bus, found_multi = 0;
166 for (hose = hose_head; hose; hose = hose->next)
168 #if CFG_SCSI_SCAN_BUS_REVERSE
169 for (bus = hose->last_busno; bus >= hose->first_busno; bus--)
171 for (bus = hose->first_busno; bus <= hose->last_busno; bus++)
173 for (bdf = PCI_BDF(bus,0,0);
175 bdf < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
177 bdf < PCI_BDF(bus+1,0,0);
179 bdf += PCI_BDF(0,0,1))
183 pci_read_config_byte(bdf,
187 found_multi = header_type & 0x80;
195 pci_read_config_word(bdf,
198 pci_read_config_word(bdf,
202 for (i=0; ids[i].vendor != 0; i++)
203 if (vendor == ids[i].vendor &&
204 device == ids[i].device)
217 pci_dev_t pci_find_device(unsigned int vendor, unsigned int device, int index)
219 static struct pci_device_id ids[2] = {{}, {0, 0}};
221 ids[0].vendor = vendor;
222 ids[0].device = device;
224 return pci_find_devices(ids, index);
231 unsigned long pci_hose_phys_to_bus(struct pci_controller* hose,
232 unsigned long phys_addr,
235 struct pci_region *res;
236 unsigned long bus_addr;
241 printf("pci_hose_phys_to_bus: %s\n", "invalid hose");
245 for (i=0; i<hose->region_count; i++)
247 res = &hose->regions[i];
249 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
252 bus_addr = phys_addr - res->phys_start + res->bus_start;
254 if (bus_addr >= res->bus_start &&
255 bus_addr < res->bus_start + res->size)
261 printf("pci_hose_phys_to_bus: %s\n", "invalid physical address");
267 unsigned long pci_hose_bus_to_phys(struct pci_controller* hose,
268 unsigned long bus_addr,
271 struct pci_region *res;
276 printf("pci_hose_bus_to_phys: %s\n", "invalid hose");
280 for (i=0; i<hose->region_count; i++)
282 res = &hose->regions[i];
284 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
287 if (bus_addr >= res->bus_start &&
288 bus_addr < res->bus_start + res->size)
290 return bus_addr - res->bus_start + res->phys_start;
294 printf("pci_hose_bus_to_phys: %s\n", "invalid physical address");
304 int pci_hose_config_device(struct pci_controller *hose,
308 unsigned long command)
310 unsigned int bar_response, bar_size, bar_value, old_command;
312 int bar, found_mem64;
314 DEBUGF("PCI Config: I/O=0x%lx, Memory=0x%lx, Command=0x%lx\n", io, mem, command);
316 pci_hose_write_config_dword(hose, dev, PCI_COMMAND, 0);
318 for (bar = PCI_BASE_ADDRESS_0; bar < PCI_BASE_ADDRESS_5; bar += 4)
320 pci_hose_write_config_dword(hose, dev, bar, 0xffffffff);
321 pci_hose_read_config_dword(hose, dev, bar, &bar_response);
328 /* Check the BAR type and set our address mask */
329 if (bar_response & PCI_BASE_ADDRESS_SPACE)
331 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
334 io = ((io - 1) | (bar_size - 1)) + 1;
338 if ( (bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
339 PCI_BASE_ADDRESS_MEM_TYPE_64)
342 bar_size = ~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1;
345 mem = ((mem - 1) | (bar_size - 1)) + 1;
348 /* Write it out and update our limit */
349 pci_hose_write_config_dword(hose, dev, bar, bar_value);
354 pci_hose_write_config_dword(hose, dev, bar, 0x00000000);
358 /* Configure Cache Line Size Register */
359 pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
361 /* Configure Latency Timer */
362 pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
364 /* Disable interrupt line, if device says it wants to use interrupts */
365 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_PIN, &pin);
368 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, 0xff);
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 );
382 struct pci_config_table *pci_find_config(struct pci_controller *hose,
383 unsigned short class,
390 struct pci_config_table *table;
392 for (table = hose->config_table; table && table->vendor; table++)
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))
408 void pci_cfgfunc_config_device(struct pci_controller *hose,
410 struct pci_config_table *entry)
412 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1], entry->priv[2]);
415 void pci_cfgfunc_do_nothing(struct pci_controller *hose,
416 pci_dev_t dev, struct pci_config_table *entry)
424 /* HJF: Changed this to return int. I think this is required
425 * to get the correct result when scanning bridges
427 extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
428 extern void pciauto_config_init(struct pci_controller *hose);
430 int pci_hose_scan_bus(struct pci_controller *hose, int bus)
432 unsigned int sub_bus, found_multi=0;
433 unsigned short vendor, device, class;
434 unsigned char header_type;
435 struct pci_config_table *cfg;
440 for (dev = PCI_BDF(bus,0,0);
441 dev < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
442 dev += PCI_BDF(0,0,1))
444 #ifndef CONFIG_405GP /* don't skip host bridge on ppc405gp */
445 /* Skip our host bridge */
446 if ( dev == PCI_BDF(hose->first_busno,0,0) )
450 if (PCI_FUNC(dev) && !found_multi)
453 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
455 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
457 if (vendor != 0xffff && vendor != 0x0000) {
460 found_multi = header_type & 0x80;
462 DEBUGF("PCI Scan: Found Bus %d, Device %d, Function %d\n",
463 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev) );
465 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
466 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
468 cfg = pci_find_config(hose, class, vendor, device,
469 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
471 cfg->config_device(hose, dev, cfg);
472 #ifdef CONFIG_PCI_PNP
474 int n = pciauto_config_device(hose, dev);
476 sub_bus = max(sub_bus, n);
480 hose->fixup_irq(hose, dev);
482 #ifdef CONFIG_PCI_SCAN_SHOW
483 /* Skip our host bridge */
484 if ( dev != PCI_BDF(hose->first_busno,0,0) ) {
485 unsigned char int_line;
487 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_LINE,
489 printf(" %02x %02x %04x %04x %04x %02x\n",
490 PCI_BUS(dev), PCI_DEV(dev), vendor, device, class,
500 int pci_hose_scan(struct pci_controller *hose)
502 #ifdef CONFIG_PCI_PNP
503 pciauto_config_init(hose);
505 return pci_hose_scan_bus(hose, hose->first_busno);
510 #if defined(CONFIG_PCI_BOOTDELAY)
514 /* wait "pcidelay" ms (if defined)... */
515 s = getenv ("pcidelay");
517 int val = simple_strtoul (s, NULL, 10);
518 for (i=0; i<val; i++)
521 #endif /* CONFIG_PCI_BOOTDELAY */
523 /* now call board specific pci_init()... */
527 #endif /* CONFIG_PCI */