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,
34 #include <asm/processor.h>
38 #define PCI_HOSE_OP(rw, size, type) \
39 int pci_hose_##rw##_config_##size(struct pci_controller *hose, \
41 int offset, type value) \
43 return hose->rw##_##size(hose, dev, offset, value); \
46 PCI_HOSE_OP(read, byte, u8 *)
47 PCI_HOSE_OP(read, word, u16 *)
48 PCI_HOSE_OP(read, dword, u32 *)
49 PCI_HOSE_OP(write, byte, u8)
50 PCI_HOSE_OP(write, word, u16)
51 PCI_HOSE_OP(write, dword, u32)
53 #define PCI_OP(rw, size, type, error_code) \
54 int pci_##rw##_config_##size(pci_dev_t dev, int offset, type value) \
56 struct pci_controller *hose = pci_bus_to_hose(PCI_BUS(dev)); \
64 return pci_hose_##rw##_config_##size(hose, dev, offset, value); \
67 PCI_OP(read, byte, u8 *, *value = 0xff)
68 PCI_OP(read, word, u16 *, *value = 0xffff)
69 PCI_OP(read, dword, u32 *, *value = 0xffffffff)
70 PCI_OP(write, byte, u8, )
71 PCI_OP(write, word, u16, )
72 PCI_OP(write, dword, u32, )
74 #define PCI_READ_VIA_DWORD_OP(size, type, off_mask) \
75 int pci_hose_read_config_##size##_via_dword(struct pci_controller *hose,\
77 int offset, type val) \
81 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0) { \
86 *val = (val32 >> ((offset & (int)off_mask) * 8)); \
91 #define PCI_WRITE_VIA_DWORD_OP(size, type, off_mask, val_mask) \
92 int pci_hose_write_config_##size##_via_dword(struct pci_controller *hose,\
94 int offset, type val) \
96 u32 val32, mask, ldata, shift; \
98 if (pci_hose_read_config_dword(hose, dev, offset & 0xfc, &val32) < 0)\
101 shift = ((offset & (int)off_mask) * 8); \
102 ldata = (((unsigned long)val) & val_mask) << shift; \
103 mask = val_mask << shift; \
104 val32 = (val32 & ~mask) | ldata; \
106 if (pci_hose_write_config_dword(hose, dev, offset & 0xfc, val32) < 0)\
112 PCI_READ_VIA_DWORD_OP(byte, u8 *, 0x03)
113 PCI_READ_VIA_DWORD_OP(word, u16 *, 0x02)
114 PCI_WRITE_VIA_DWORD_OP(byte, u8, 0x03, 0x000000ff)
115 PCI_WRITE_VIA_DWORD_OP(word, u16, 0x02, 0x0000ffff)
117 /* Get a virtual address associated with a BAR region */
118 void *pci_map_bar(pci_dev_t pdev, int bar, int flags)
120 pci_addr_t pci_bus_addr;
123 /* read BAR address */
124 pci_read_config_dword(pdev, bar, &bar_response);
125 pci_bus_addr = (pci_addr_t)(bar_response & ~0xf);
128 * Pass "0" as the length argument to pci_bus_to_virt. The arg
129 * isn't actualy used on any platform because u-boot assumes a static
130 * linear mapping. In the future, this could read the BAR size
131 * and pass that as the size if needed.
133 return pci_bus_to_virt(pdev, pci_bus_addr, flags, 0, MAP_NOCACHE);
140 static struct pci_controller* hose_head;
142 void pci_register_hose(struct pci_controller* hose)
144 struct pci_controller **phose = &hose_head;
147 phose = &(*phose)->next;
154 struct pci_controller *pci_bus_to_hose (int bus)
156 struct pci_controller *hose;
158 for (hose = hose_head; hose; hose = hose->next)
159 if (bus >= hose->first_busno && bus <= hose->last_busno)
162 printf("pci_bus_to_hose() failed\n");
166 struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr)
168 struct pci_controller *hose;
170 for (hose = hose_head; hose; hose = hose->next) {
171 if (hose->cfg_addr == cfg_addr)
178 int pci_last_busno(void)
180 struct pci_controller *hose = hose_head;
188 return hose->last_busno;
191 pci_dev_t pci_find_devices(struct pci_device_id *ids, int index)
193 struct pci_controller * hose;
197 int i, bus, found_multi = 0;
199 for (hose = hose_head; hose; hose = hose->next)
201 #ifdef CONFIG_SYS_SCSI_SCAN_BUS_REVERSE
202 for (bus = hose->last_busno; bus >= hose->first_busno; bus--)
204 for (bus = hose->first_busno; bus <= hose->last_busno; bus++)
206 for (bdf = PCI_BDF(bus,0,0);
207 #if defined(CONFIG_ELPPC) || defined(CONFIG_PPMC7XX)
208 bdf < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
210 bdf < PCI_BDF(bus+1,0,0);
212 bdf += PCI_BDF(0,0,1))
214 if (!PCI_FUNC(bdf)) {
215 pci_read_config_byte(bdf,
219 found_multi = header_type & 0x80;
225 pci_read_config_word(bdf,
228 pci_read_config_word(bdf,
232 for (i=0; ids[i].vendor != 0; i++)
233 if (vendor == ids[i].vendor &&
234 device == ids[i].device)
247 pci_dev_t pci_find_device(unsigned int vendor, unsigned int device, int index)
249 static struct pci_device_id ids[2] = {{}, {0, 0}};
251 ids[0].vendor = vendor;
252 ids[0].device = device;
254 return pci_find_devices(ids, index);
261 int __pci_hose_phys_to_bus (struct pci_controller *hose,
262 phys_addr_t phys_addr,
264 unsigned long skip_mask,
267 struct pci_region *res;
271 for (i = 0; i < hose->region_count; i++) {
272 res = &hose->regions[i];
274 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
277 if (res->flags & skip_mask)
280 bus_addr = phys_addr - res->phys_start + res->bus_start;
282 if (bus_addr >= res->bus_start &&
283 bus_addr < res->bus_start + res->size) {
292 pci_addr_t pci_hose_phys_to_bus (struct pci_controller *hose,
293 phys_addr_t phys_addr,
296 pci_addr_t bus_addr = 0;
300 puts ("pci_hose_phys_to_bus: invalid hose\n");
304 /* if PCI_REGION_MEM is set we do a two pass search with preference
305 * on matches that don't have PCI_REGION_SYS_MEMORY set */
306 if ((flags & PCI_REGION_MEM) == PCI_REGION_MEM) {
307 ret = __pci_hose_phys_to_bus(hose, phys_addr,
308 flags, PCI_REGION_SYS_MEMORY, &bus_addr);
313 ret = __pci_hose_phys_to_bus(hose, phys_addr, flags, 0, &bus_addr);
316 puts ("pci_hose_phys_to_bus: invalid physical address\n");
321 int __pci_hose_bus_to_phys (struct pci_controller *hose,
324 unsigned long skip_mask,
327 struct pci_region *res;
330 for (i = 0; i < hose->region_count; i++) {
331 res = &hose->regions[i];
333 if (((res->flags ^ flags) & PCI_REGION_TYPE) != 0)
336 if (res->flags & skip_mask)
339 if (bus_addr >= res->bus_start &&
340 bus_addr < res->bus_start + res->size) {
341 *pa = (bus_addr - res->bus_start + res->phys_start);
349 phys_addr_t pci_hose_bus_to_phys(struct pci_controller* hose,
353 phys_addr_t phys_addr = 0;
357 puts ("pci_hose_bus_to_phys: invalid hose\n");
361 /* if PCI_REGION_MEM is set we do a two pass search with preference
362 * on matches that don't have PCI_REGION_SYS_MEMORY set */
363 if ((flags & PCI_REGION_MEM) == PCI_REGION_MEM) {
364 ret = __pci_hose_bus_to_phys(hose, bus_addr,
365 flags, PCI_REGION_SYS_MEMORY, &phys_addr);
370 ret = __pci_hose_bus_to_phys(hose, bus_addr, flags, 0, &phys_addr);
373 puts ("pci_hose_bus_to_phys: invalid physical address\n");
382 int pci_hose_config_device(struct pci_controller *hose,
386 unsigned long command)
388 unsigned int bar_response, old_command;
389 pci_addr_t bar_value;
392 int bar, found_mem64;
394 debug ("PCI Config: I/O=0x%lx, Memory=0x%llx, Command=0x%lx\n",
395 io, (u64)mem, command);
397 pci_hose_write_config_dword (hose, dev, PCI_COMMAND, 0);
399 for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) {
400 pci_hose_write_config_dword (hose, dev, bar, 0xffffffff);
401 pci_hose_read_config_dword (hose, dev, bar, &bar_response);
408 /* Check the BAR type and set our address mask */
409 if (bar_response & PCI_BASE_ADDRESS_SPACE) {
410 bar_size = ~(bar_response & PCI_BASE_ADDRESS_IO_MASK) + 1;
411 /* round up region base address to a multiple of size */
412 io = ((io - 1) | (bar_size - 1)) + 1;
414 /* compute new region base address */
417 if ((bar_response & PCI_BASE_ADDRESS_MEM_TYPE_MASK) ==
418 PCI_BASE_ADDRESS_MEM_TYPE_64) {
419 u32 bar_response_upper;
421 pci_hose_write_config_dword(hose, dev, bar+4, 0xffffffff);
422 pci_hose_read_config_dword(hose, dev, bar+4, &bar_response_upper);
424 bar64 = ((u64)bar_response_upper << 32) | bar_response;
426 bar_size = ~(bar64 & PCI_BASE_ADDRESS_MEM_MASK) + 1;
429 bar_size = (u32)(~(bar_response & PCI_BASE_ADDRESS_MEM_MASK) + 1);
432 /* round up region base address to multiple of size */
433 mem = ((mem - 1) | (bar_size - 1)) + 1;
435 /* compute new region base address */
436 mem = mem + bar_size;
439 /* Write it out and update our limit */
440 pci_hose_write_config_dword (hose, dev, bar, (u32)bar_value);
444 #ifdef CONFIG_SYS_PCI_64BIT
445 pci_hose_write_config_dword(hose, dev, bar, (u32)(bar_value>>32));
447 pci_hose_write_config_dword (hose, dev, bar, 0x00000000);
452 /* Configure Cache Line Size Register */
453 pci_hose_write_config_byte (hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
455 /* Configure Latency Timer */
456 pci_hose_write_config_byte (hose, dev, PCI_LATENCY_TIMER, 0x80);
458 /* Disable interrupt line, if device says it wants to use interrupts */
459 pci_hose_read_config_byte (hose, dev, PCI_INTERRUPT_PIN, &pin);
461 pci_hose_write_config_byte (hose, dev, PCI_INTERRUPT_LINE, 0xff);
464 pci_hose_read_config_dword (hose, dev, PCI_COMMAND, &old_command);
465 pci_hose_write_config_dword (hose, dev, PCI_COMMAND,
466 (old_command & 0xffff0000) | command);
475 struct pci_config_table *pci_find_config(struct pci_controller *hose,
476 unsigned short class,
483 struct pci_config_table *table;
485 for (table = hose->config_table; table && table->vendor; table++) {
486 if ((table->vendor == PCI_ANY_ID || table->vendor == vendor) &&
487 (table->device == PCI_ANY_ID || table->device == device) &&
488 (table->class == PCI_ANY_ID || table->class == class) &&
489 (table->bus == PCI_ANY_ID || table->bus == bus) &&
490 (table->dev == PCI_ANY_ID || table->dev == dev) &&
491 (table->func == PCI_ANY_ID || table->func == func)) {
499 void pci_cfgfunc_config_device(struct pci_controller *hose,
501 struct pci_config_table *entry)
503 pci_hose_config_device(hose, dev, entry->priv[0], entry->priv[1], entry->priv[2]);
506 void pci_cfgfunc_do_nothing(struct pci_controller *hose,
507 pci_dev_t dev, struct pci_config_table *entry)
515 /* HJF: Changed this to return int. I think this is required
516 * to get the correct result when scanning bridges
518 extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
519 extern void pciauto_config_init(struct pci_controller *hose);
521 #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI_SCAN_SHOW)
522 const char * pci_class_str(u8 class)
525 case PCI_CLASS_NOT_DEFINED:
526 return "Build before PCI Rev2.0";
528 case PCI_BASE_CLASS_STORAGE:
529 return "Mass storage controller";
531 case PCI_BASE_CLASS_NETWORK:
532 return "Network controller";
534 case PCI_BASE_CLASS_DISPLAY:
535 return "Display controller";
537 case PCI_BASE_CLASS_MULTIMEDIA:
538 return "Multimedia device";
540 case PCI_BASE_CLASS_MEMORY:
541 return "Memory controller";
543 case PCI_BASE_CLASS_BRIDGE:
544 return "Bridge device";
546 case PCI_BASE_CLASS_COMMUNICATION:
547 return "Simple comm. controller";
549 case PCI_BASE_CLASS_SYSTEM:
550 return "Base system peripheral";
552 case PCI_BASE_CLASS_INPUT:
553 return "Input device";
555 case PCI_BASE_CLASS_DOCKING:
556 return "Docking station";
558 case PCI_BASE_CLASS_PROCESSOR:
561 case PCI_BASE_CLASS_SERIAL:
562 return "Serial bus controller";
564 case PCI_BASE_CLASS_INTELLIGENT:
565 return "Intelligent controller";
567 case PCI_BASE_CLASS_SATELLITE:
568 return "Satellite controller";
570 case PCI_BASE_CLASS_CRYPT:
571 return "Cryptographic device";
573 case PCI_BASE_CLASS_SIGNAL_PROCESSING:
576 case PCI_CLASS_OTHERS:
577 return "Does not fit any class";
584 #endif /* CONFIG_CMD_PCI || CONFIG_PCI_SCAN_SHOW */
586 int __pci_skip_dev(struct pci_controller *hose, pci_dev_t dev)
589 * Check if pci device should be skipped in configuration
591 if (dev == PCI_BDF(hose->first_busno, 0, 0)) {
592 #if defined(CONFIG_PCI_CONFIG_HOST_BRIDGE) /* don't skip host bridge */
594 * Only skip configuration if "pciconfighost" is not set
596 if (getenv("pciconfighost") == NULL)
605 int pci_skip_dev(struct pci_controller *hose, pci_dev_t dev)
606 __attribute__((weak, alias("__pci_skip_dev")));
608 #ifdef CONFIG_PCI_SCAN_SHOW
609 int __pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
611 if (dev == PCI_BDF(hose->first_busno, 0, 0))
616 int pci_print_dev(struct pci_controller *hose, pci_dev_t dev)
617 __attribute__((weak, alias("__pci_print_dev")));
618 #endif /* CONFIG_PCI_SCAN_SHOW */
620 int pci_hose_scan_bus(struct pci_controller *hose, int bus)
622 unsigned int sub_bus, found_multi=0;
623 unsigned short vendor, device, class;
624 unsigned char header_type;
625 struct pci_config_table *cfg;
627 #ifdef CONFIG_PCI_SCAN_SHOW
628 static int indent = 0;
633 for (dev = PCI_BDF(bus,0,0);
634 dev < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1);
635 dev += PCI_BDF(0,0,1)) {
637 if (pci_skip_dev(hose, dev))
640 if (PCI_FUNC(dev) && !found_multi)
643 pci_hose_read_config_byte(hose, dev, PCI_HEADER_TYPE, &header_type);
645 pci_hose_read_config_word(hose, dev, PCI_VENDOR_ID, &vendor);
647 if (vendor == 0xffff || vendor == 0x0000)
651 found_multi = header_type & 0x80;
653 debug ("PCI Scan: Found Bus %d, Device %d, Function %d\n",
654 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev) );
656 pci_hose_read_config_word(hose, dev, PCI_DEVICE_ID, &device);
657 pci_hose_read_config_word(hose, dev, PCI_CLASS_DEVICE, &class);
659 #ifdef CONFIG_PCI_SCAN_SHOW
662 /* Print leading space, including bus indentation */
663 printf("%*c", indent + 1, ' ');
665 if (pci_print_dev(hose, dev)) {
666 printf("%02x:%02x.%-*x - %04x:%04x - %s\n",
667 PCI_BUS(dev), PCI_DEV(dev), 6 - indent, PCI_FUNC(dev),
668 vendor, device, pci_class_str(class >> 8));
672 cfg = pci_find_config(hose, class, vendor, device,
673 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev));
675 cfg->config_device(hose, dev, cfg);
676 sub_bus = max(sub_bus, hose->current_busno);
677 #ifdef CONFIG_PCI_PNP
679 int n = pciauto_config_device(hose, dev);
681 sub_bus = max(sub_bus, n);
685 #ifdef CONFIG_PCI_SCAN_SHOW
690 hose->fixup_irq(hose, dev);
696 int pci_hose_scan(struct pci_controller *hose)
698 #if defined(CONFIG_PCI_BOOTDELAY)
699 static int pcidelay_done;
703 if (!pcidelay_done) {
704 /* wait "pcidelay" ms (if defined)... */
705 s = getenv("pcidelay");
707 int val = simple_strtoul(s, NULL, 10);
708 for (i = 0; i < val; i++)
713 #endif /* CONFIG_PCI_BOOTDELAY */
715 /* Start scan at current_busno.
716 * PCIe will start scan at first_busno+1.
718 /* For legacy support, ensure current>=first */
719 if (hose->first_busno > hose->current_busno)
720 hose->current_busno = hose->first_busno;
721 #ifdef CONFIG_PCI_PNP
722 pciauto_config_init(hose);
724 return pci_hose_scan_bus(hose, hose->current_busno);
731 /* now call board specific pci_init()... */