2 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
3 * Andreas Heppel <aheppel@sysgo.de>
5 * (C) Copyright 2002, 2003
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,
36 #include <asm/processor.h>
40 #define PCI_HOSE_OP(rw, size, type) \
41 int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
43 int offset, type value) \
45 return hose->rw##_##size(hose, dev, offset, value); \
48 PCI_HOSE_OP(read, byte, u8 *)
49 PCI_HOSE_OP(read, word, u16 *)
50 PCI_HOSE_OP(read, dword, u32 *)
51 PCI_HOSE_OP(write, byte, u8)
52 PCI_HOSE_OP(write, word, u16)
53 PCI_HOSE_OP(write, dword, u32)
56 #define PCI_OP(rw, size, type, error_code) \
57 int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
59 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
67 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
70 PCI_OP(read, byte, u8 *, *value = 0xff)
71 PCI_OP(read, word, u16 *, *value = 0xffff)
72 PCI_OP(read, dword, u32 *, *value = 0xffffffff)
73 PCI_OP(write, byte, u8, )
74 PCI_OP(write, word, u16, )
75 PCI_OP(write, dword, u32, )
76 #endif /* CONFIG_IXP425 */
78 #define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
79 int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
81 int offset, type val) \
85 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
90 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
95 #define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
96 int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
98 int offset, type val) \
100 u32 val32, mask, ldata, shift; \
102 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
105 shift = ((offset & (int)off_mask) * 8); \
106 ldata = (((unsigned long)val) & val_mask) << shift; \
107 mask = val_mask << shift; \
108 val32 = (val32 & ~mask) | ldata; \
110 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
116 PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
117 PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
118 PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
119 PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
125 static struct pci_controller* hose_head = NULL;
127 void pci_register_hose(struct pci_controller* hose)
129 struct pci_controller **phose = &hose_head;
132 phose = &(*phose)->next;
139 struct pci_controller *pci_bus_to_hose (int bus)
141 struct pci_controller *hose;
143 for (hose = hose_head; hose; hose = hose->next)
144 if (bus >= hose->first_busno && bus <= hose->last_busno)
147 printf("pci_bus_to_hose() failed\n");
151 #ifndef CONFIG_IXP425
152 pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
154 struct pci_controller * hose;
158 int i, bus, found_multi = 0;
160 for (hose = hose_head; hose; hose = hose->next)
162 #ifdef CFG_SCSI_SCAN_BUS_REVERSE
163 for (bus = hose->last_busno; bus >= hose->first_busno; bus--)
165 for (bus = hose->first_busno; bus <= hose->last_busno; bus++)
167 for (bdf = PCI_BDF(bus,0,0);
168 #if defined(CONFIG_ELPPC) || defined(CONFIG_PPMC7XX)
169 bdf < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
171 bdf < PCI_BDF(bus+1,0,0);
173 bdf += PCI_BDF(0,0,1))
175 if (!PCI_FUNC(bdf)) {
176 pci_read_config_byte(bdf,
180 found_multi = header_type & 0x80;
186 pci_read_config_word(bdf,
189 pci_read_config_word(bdf,
193 for (i=0; ids[i].vendor != 0; i++)
194 if (vendor == ids[i].vendor &&
195 device == ids[i].device)
207 #endif /* CONFIG_IXP425 */
209 pci_dev_t pci_find_device(unsigned int vendor, unsigned int device, int index)
211 static struct pci_device_id ids[2] = {{}, {0, 0}};
213 ids[0].vendor = vendor;
214 ids[0].device = device;
216 return pci_find_devices(ids, index);
223 unsigned long pci_hose_phys_to_bus (struct pci_controller *hose,
224 unsigned long phys_addr,
227 struct pci_region *res;
228 unsigned long bus_addr;
232 printf ("pci_hose_phys_to_bus: %s\n", "invalid hose");
236 for (i = 0; i < hose->region_count; i++) {
237 res = &hose->regions[i];
239 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
242 bus_addr = phys_addr - res->phys_start + res->bus_start;
244 if (bus_addr >= res->bus_start &&
245 bus_addr < res->bus_start + res->size) {
250 printf ("pci_hose_phys_to_bus: %s\n", "invalid physical address");
256 unsigned long pci_hose_bus_to_phys(struct pci_controller* hose,
257 unsigned long bus_addr,
260 struct pci_region *res;
264 printf ("pci_hose_bus_to_phys: %s\n", "invalid hose");
268 for (i = 0; i < hose->region_count; i++) {
269 res = &hose->regions[i];
271 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
274 if (bus_addr >= res->bus_start &&
275 bus_addr < res->bus_start + res->size) {
276 return bus_addr - res->bus_start + res->phys_start;
280 printf ("pci_hose_bus_to_phys: %s\n", "invalid physical address");
290 int pci_hose_config_device(struct pci_controller *hose,
294 unsigned long command)
296 unsigned int bar_response, bar_size, bar_value, old_command;
298 int bar, found_mem64;
300 debug ("PCI Config: I/O=0x%lx, Memory=0x%lx, Command=0x%lx\n",
303 pci_hose_write_config_dword (hose, dev, PCI_COMMAND, 0);
305 for (bar = PCI_BASE_ADDRESS_0; bar < PCI_BASE_ADDRESS_5; bar += 4) {
306 pci_hose_write_config_dword (hose, dev, bar, 0xffffffff);
307 pci_hose_read_config_dword (hose, dev, bar, &bar_response);
314 /* Check the BAR type and set our address mask */
315 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
316 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
317 /* round up region base address to a multiple of size */
318 io = ((io - 1) | (bar_size - 1)) + 1;
320 /* compute new region base address */
323 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
324 PCI_BASE_ADDRESS_MEM_TYPE_64)
327 bar_size = ~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1;
329 /* round up region base address to multiple of size */
330 mem = ((mem - 1) | (bar_size - 1)) + 1;
332 /* compute new region base address */
333 mem = mem + bar_size;
336 /* Write it out and update our limit */
337 pci_hose_write_config_dword (hose, dev, bar, bar_value);
341 pci_hose_write_config_dword (hose, dev, bar, 0x00000000);
345 /* Configure Cache Line Size Register */
346 pci_hose_write_config_byte (hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
348 /* Configure Latency Timer */
349 pci_hose_write_config_byte (hose, dev, PCI_LATENCY_TIMER, 0x80);
351 /* Disable interrupt line, if device says it wants to use interrupts */
352 pci_hose_read_config_byte (hose, dev, PCI_INTERRUPT_PIN, &pin);
354 pci_hose_write_config_byte (hose, dev, PCI_INTERRUPT_LINE, 0xff);
357 pci_hose_read_config_dword (hose, dev, PCI_COMMAND, &old_command);
358 pci_hose_write_config_dword (hose, dev, PCI_COMMAND,
359 (old_command & 0xffff0000) | command);
368 struct pci_config_table *pci_find_config(struct pci_controller *hose,
369 unsigned short class,
376 struct pci_config_table *table;
378 for (table = hose->config_table; table && table->vendor; table++) {
379 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
380 (table->device == PCI_ANY_ID || table->device == device) &&
381 (table->class == PCI_ANY_ID || table->class == class) &&
382 (table->bus == PCI_ANY_ID || table->bus == bus) &&
383 (table->dev == PCI_ANY_ID || table->dev == dev) &&
384 (table->func == PCI_ANY_ID || table->func == func)) {
392 void pci_cfgfunc_config_device(struct pci_controller *hose,
394 struct pci_config_table *entry)
396 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1], entry->priv[2]);
399 void pci_cfgfunc_do_nothing(struct pci_controller *hose,
400 pci_dev_t dev, struct pci_config_table *entry)
408 /* HJF: Changed this to return int. I think this is required
409 * to get the correct result when scanning bridges
411 extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
412 extern void pciauto_config_init(struct pci_controller *hose);
414 int pci_hose_scan_bus(struct pci_controller *hose, int bus)
416 unsigned int sub_bus, found_multi=0;
417 unsigned short vendor, device, class;
418 unsigned char header_type;
419 struct pci_config_table *cfg;
424 for (dev = PCI_BDF(bus,0,0);
425 dev < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
426 dev += PCI_BDF(0,0,1))
428 /* Skip our host bridge */
429 if ( dev == PCI_BDF(hose->first_busno,0,0) ) {
430 #if defined(CONFIG_PCI_CONFIG_HOST_BRIDGE) /* don't skip host bridge */
432 * Only skip hostbridge configuration if "pciconfighost" is not set
434 if (getenv("pciconfighost") == NULL) {
435 continue; /* Skip our host bridge */
438 continue; /* Skip our host bridge */
442 if (PCI_FUNC(dev) && !found_multi)
445 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
447 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
449 if (vendor != 0xffff && vendor != 0x0000) {
452 found_multi = header_type & 0x80;
454 debug ("PCI Scan: Found Bus %d, Device %d, Function %d\n",
455 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev) );
457 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
458 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
460 cfg = pci_find_config(hose, class, vendor, device,
461 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
463 cfg->config_device(hose, dev, cfg);
464 sub_bus = max(sub_bus, hose->current_busno);
465 #ifdef CONFIG_PCI_PNP
467 int n = pciauto_config_device(hose, dev);
469 sub_bus = max(sub_bus, n);
473 hose->fixup_irq(hose, dev);
475 #ifdef CONFIG_PCI_SCAN_SHOW
476 /* Skip our host bridge */
477 if ( dev != PCI_BDF(hose->first_busno,0,0) ) {
478 unsigned char int_line;
480 pci_hose_read_config_byte(hose, dev, PCI_INTERRUPT_LINE,
482 printf(" %02x %02x %04x %04x %04x %02x\n",
483 PCI_BUS(dev), PCI_DEV(dev), vendor, device, class,
493 int pci_hose_scan(struct pci_controller *hose)
495 /* Start scan at current_busno.
496 * PCIe will start scan at first_busno+1.
498 /* For legacy support, ensure current>=first */
499 if (hose->first_busno > hose->current_busno)
500 hose->current_busno = hose->first_busno;
501 #ifdef CONFIG_PCI_PNP
502 pciauto_config_init(hose);
504 return pci_hose_scan_bus(hose, hose->current_busno);
509 #if defined(CONFIG_PCI_BOOTDELAY)
513 /* wait "pcidelay" ms (if defined)... */
514 s = getenv ("pcidelay");
516 int val = simple_strtoul (s, NULL, 10);
517 for (i=0; i<val; i++)
520 #endif /* CONFIG_PCI_BOOTDELAY */
522 /* now call board specific pci_init()... */
526 #endif /* CONFIG_PCI */