2 * Low-Level PCI Support for PC
4 * (c) 1999--2000 Martin Mares <mj@suse.cz>
7 #include <linux/config.h>
8 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/sched.h>
11 #include <linux/pci.h>
12 #include <linux/init.h>
13 #include <linux/ioport.h>
15 #include <asm/segment.h>
20 unsigned int pci_probe
= PCI_PROBE_BIOS
| PCI_PROBE_CONF1
| PCI_PROBE_CONF2
;
22 int pcibios_last_bus
= -1;
23 struct pci_bus
*pci_root_bus
;
24 struct pci_ops
*pci_root_ops
;
27 * Direct access to PCI hardware...
30 #ifdef CONFIG_PCI_DIRECT
33 * Functions for accessing PCI configuration space with type 1 accesses
36 #define CONFIG_CMD(dev, where) (0x80000000 | (dev->bus->number << 16) | (dev->devfn << 8) | (where & ~3))
38 static int pci_conf1_read_config_byte(struct pci_dev
*dev
, int where
, u8
*value
)
40 outl(CONFIG_CMD(dev
,where
), 0xCF8);
41 *value
= inb(0xCFC + (where
&3));
42 return PCIBIOS_SUCCESSFUL
;
45 static int pci_conf1_read_config_word(struct pci_dev
*dev
, int where
, u16
*value
)
47 outl(CONFIG_CMD(dev
,where
), 0xCF8);
48 *value
= inw(0xCFC + (where
&2));
49 return PCIBIOS_SUCCESSFUL
;
52 static int pci_conf1_read_config_dword(struct pci_dev
*dev
, int where
, u32
*value
)
54 outl(CONFIG_CMD(dev
,where
), 0xCF8);
56 return PCIBIOS_SUCCESSFUL
;
59 static int pci_conf1_write_config_byte(struct pci_dev
*dev
, int where
, u8 value
)
61 outl(CONFIG_CMD(dev
,where
), 0xCF8);
62 outb(value
, 0xCFC + (where
&3));
63 return PCIBIOS_SUCCESSFUL
;
66 static int pci_conf1_write_config_word(struct pci_dev
*dev
, int where
, u16 value
)
68 outl(CONFIG_CMD(dev
,where
), 0xCF8);
69 outw(value
, 0xCFC + (where
&2));
70 return PCIBIOS_SUCCESSFUL
;
73 static int pci_conf1_write_config_dword(struct pci_dev
*dev
, int where
, u32 value
)
75 outl(CONFIG_CMD(dev
,where
), 0xCF8);
77 return PCIBIOS_SUCCESSFUL
;
82 static struct pci_ops pci_direct_conf1
= {
83 pci_conf1_read_config_byte
,
84 pci_conf1_read_config_word
,
85 pci_conf1_read_config_dword
,
86 pci_conf1_write_config_byte
,
87 pci_conf1_write_config_word
,
88 pci_conf1_write_config_dword
92 * Functions for accessing PCI configuration space with type 2 accesses
95 #define IOADDR(devfn, where) ((0xC000 | ((devfn & 0x78) << 5)) + where)
96 #define FUNC(devfn) (((devfn & 7) << 1) | 0xf0)
97 #define SET(dev) if (dev->devfn & 0x80) return PCIBIOS_DEVICE_NOT_FOUND; \
98 outb(FUNC(dev->devfn), 0xCF8); \
99 outb(dev->bus->number, 0xCFA);
101 static int pci_conf2_read_config_byte(struct pci_dev
*dev
, int where
, u8
*value
)
104 *value
= inb(IOADDR(dev
->devfn
,where
));
106 return PCIBIOS_SUCCESSFUL
;
109 static int pci_conf2_read_config_word(struct pci_dev
*dev
, int where
, u16
*value
)
112 *value
= inw(IOADDR(dev
->devfn
,where
));
114 return PCIBIOS_SUCCESSFUL
;
117 static int pci_conf2_read_config_dword(struct pci_dev
*dev
, int where
, u32
*value
)
120 *value
= inl (IOADDR(dev
->devfn
,where
));
122 return PCIBIOS_SUCCESSFUL
;
125 static int pci_conf2_write_config_byte(struct pci_dev
*dev
, int where
, u8 value
)
128 outb (value
, IOADDR(dev
->devfn
,where
));
130 return PCIBIOS_SUCCESSFUL
;
133 static int pci_conf2_write_config_word(struct pci_dev
*dev
, int where
, u16 value
)
136 outw (value
, IOADDR(dev
->devfn
,where
));
138 return PCIBIOS_SUCCESSFUL
;
141 static int pci_conf2_write_config_dword(struct pci_dev
*dev
, int where
, u32 value
)
144 outl (value
, IOADDR(dev
->devfn
,where
));
146 return PCIBIOS_SUCCESSFUL
;
153 static struct pci_ops pci_direct_conf2
= {
154 pci_conf2_read_config_byte
,
155 pci_conf2_read_config_word
,
156 pci_conf2_read_config_dword
,
157 pci_conf2_write_config_byte
,
158 pci_conf2_write_config_word
,
159 pci_conf2_write_config_dword
163 * Before we decide to use direct hardware access mechanisms, we try to do some
164 * trivial checks to ensure it at least _seems_ to be working -- we just test
165 * whether bus 00 contains a host bridge (this is similar to checking
166 * techniques used in XFree86, but ours should be more reliable since we
167 * attempt to make use of direct access hints provided by the PCI BIOS).
169 * This should be close to trivial, but it isn't, because there are buggy
170 * chipsets (yes, you guessed it, by Intel and Compaq) that have no class ID.
172 static int __init
pci_sanity_check(struct pci_ops
*o
)
175 struct pci_bus bus
; /* Fake bus and device */
178 if (pci_probe
& PCI_NO_CHECKS
)
182 for(dev
.devfn
=0; dev
.devfn
< 0x100; dev
.devfn
++)
183 if ((!o
->read_word(&dev
, PCI_CLASS_DEVICE
, &x
) &&
184 (x
== PCI_CLASS_BRIDGE_HOST
|| x
== PCI_CLASS_DISPLAY_VGA
)) ||
185 (!o
->read_word(&dev
, PCI_VENDOR_ID
, &x
) &&
186 (x
== PCI_VENDOR_ID_INTEL
|| x
== PCI_VENDOR_ID_COMPAQ
)))
188 DBG("PCI: Sanity check failed\n");
192 static struct pci_ops
* __init
pci_check_direct(void)
197 __save_flags(flags
); __cli();
200 * Check if configuration type 1 works.
202 if (pci_probe
& PCI_PROBE_CONF1
) {
205 outl (0x80000000, 0xCF8);
206 if (inl (0xCF8) == 0x80000000 &&
207 pci_sanity_check(&pci_direct_conf1
)) {
209 __restore_flags(flags
);
210 printk("PCI: Using configuration type 1\n");
211 request_region(0xCF8, 8, "PCI conf1");
212 return &pci_direct_conf1
;
218 * Check if configuration type 2 works.
220 if (pci_probe
& PCI_PROBE_CONF2
) {
224 if (inb (0xCF8) == 0x00 && inb (0xCFA) == 0x00 &&
225 pci_sanity_check(&pci_direct_conf2
)) {
226 __restore_flags(flags
);
227 printk("PCI: Using configuration type 2\n");
228 request_region(0xCF8, 4, "PCI conf2");
229 return &pci_direct_conf2
;
233 __restore_flags(flags
);
240 * BIOS32 and PCI BIOS handling.
243 #ifdef CONFIG_PCI_BIOS
245 #define PCIBIOS_PCI_FUNCTION_ID 0xb1XX
246 #define PCIBIOS_PCI_BIOS_PRESENT 0xb101
247 #define PCIBIOS_FIND_PCI_DEVICE 0xb102
248 #define PCIBIOS_FIND_PCI_CLASS_CODE 0xb103
249 #define PCIBIOS_GENERATE_SPECIAL_CYCLE 0xb106
250 #define PCIBIOS_READ_CONFIG_BYTE 0xb108
251 #define PCIBIOS_READ_CONFIG_WORD 0xb109
252 #define PCIBIOS_READ_CONFIG_DWORD 0xb10a
253 #define PCIBIOS_WRITE_CONFIG_BYTE 0xb10b
254 #define PCIBIOS_WRITE_CONFIG_WORD 0xb10c
255 #define PCIBIOS_WRITE_CONFIG_DWORD 0xb10d
256 #define PCIBIOS_GET_ROUTING_OPTIONS 0xb10e
257 #define PCIBIOS_SET_PCI_HW_INT 0xb10f
259 /* BIOS32 signature: "_32_" */
260 #define BIOS32_SIGNATURE (('_' << 0) + ('3' << 8) + ('2' << 16) + ('_' << 24))
262 /* PCI signature: "PCI " */
263 #define PCI_SIGNATURE (('P' << 0) + ('C' << 8) + ('I' << 16) + (' ' << 24))
265 /* PCI service signature: "$PCI" */
266 #define PCI_SERVICE (('$' << 0) + ('P' << 8) + ('C' << 16) + ('I' << 24))
268 /* PCI BIOS hardware mechanism flags */
269 #define PCIBIOS_HW_TYPE1 0x01
270 #define PCIBIOS_HW_TYPE2 0x02
271 #define PCIBIOS_HW_TYPE1_SPEC 0x10
272 #define PCIBIOS_HW_TYPE2_SPEC 0x20
275 * This is the standard structure used to identify the entry point
276 * to the BIOS32 Service Directory, as documented in
277 * Standard BIOS 32-bit Service Directory Proposal
278 * Revision 0.4 May 24, 1993
279 * Phoenix Technologies Ltd.
281 * and the PCI BIOS specification.
286 unsigned long signature
; /* _32_ */
287 unsigned long entry
; /* 32 bit physical address */
288 unsigned char revision
; /* Revision level, 0 */
289 unsigned char length
; /* Length in paragraphs should be 01 */
290 unsigned char checksum
; /* All bytes must add up to zero */
291 unsigned char reserved
[5]; /* Must be zero */
297 * Physical address of the service directory. I don't know if we're
298 * allowed to have more than one of these or not, so just in case
299 * we'll make pcibios_present() take a memory start parameter and store
304 unsigned long address
;
305 unsigned short segment
;
306 } bios32_indirect
= { 0, __KERNEL_CS
};
309 * Returns the entry point for the given service, NULL on error
312 static unsigned long bios32_service(unsigned long service
)
314 unsigned char return_code
; /* %al */
315 unsigned long address
; /* %ebx */
316 unsigned long length
; /* %ecx */
317 unsigned long entry
; /* %edx */
320 __save_flags(flags
); __cli();
321 __asm__("lcall (%%edi); cld"
322 : "=a" (return_code
),
328 "D" (&bios32_indirect
));
329 __restore_flags(flags
);
331 switch (return_code
) {
333 return address
+ entry
;
334 case 0x80: /* Not present */
335 printk("bios32_service(0x%lx): not present\n", service
);
337 default: /* Shouldn't happen */
338 printk("bios32_service(0x%lx): returned 0x%x -- BIOS bug!\n",
339 service
, return_code
);
345 unsigned long address
;
346 unsigned short segment
;
347 } pci_indirect
= { 0, __KERNEL_CS
};
349 static int pci_bios_present
;
351 static int __init
check_pcibios(void)
353 u32 signature
, eax
, ebx
, ecx
;
354 u8 status
, major_ver
, minor_ver
, hw_mech
;
355 unsigned long flags
, pcibios_entry
;
357 if ((pcibios_entry
= bios32_service(PCI_SERVICE
))) {
358 pci_indirect
.address
= pcibios_entry
+ PAGE_OFFSET
;
360 __save_flags(flags
); __cli();
362 "lcall (%%edi); cld\n\t"
370 : "1" (PCIBIOS_PCI_BIOS_PRESENT
),
373 __restore_flags(flags
);
375 status
= (eax
>> 8) & 0xff;
376 hw_mech
= eax
& 0xff;
377 major_ver
= (ebx
>> 8) & 0xff;
378 minor_ver
= ebx
& 0xff;
379 if (pcibios_last_bus
< 0)
380 pcibios_last_bus
= ecx
& 0xff;
381 DBG("PCI: BIOS probe returned s=%02x hw=%02x ver=%02x.%02x l=%02x\n",
382 status
, hw_mech
, major_ver
, minor_ver
, pcibios_last_bus
);
383 if (status
|| signature
!= PCI_SIGNATURE
) {
384 printk (KERN_ERR
"PCI: BIOS BUG #%x[%08x] found, report to <mj@suse.cz>\n",
388 printk("PCI: PCI BIOS revision %x.%02x entry at 0x%lx, last bus=%d\n",
389 major_ver
, minor_ver
, pcibios_entry
, pcibios_last_bus
);
390 #ifdef CONFIG_PCI_DIRECT
391 if (!(hw_mech
& PCIBIOS_HW_TYPE1
))
392 pci_probe
&= ~PCI_PROBE_CONF1
;
393 if (!(hw_mech
& PCIBIOS_HW_TYPE2
))
394 pci_probe
&= ~PCI_PROBE_CONF2
;
401 static int __init
pci_bios_find_device (unsigned short vendor
, unsigned short device_id
,
402 unsigned short index
, unsigned char *bus
, unsigned char *device_fn
)
407 __asm__("lcall (%%edi); cld\n\t"
413 : "1" (PCIBIOS_FIND_PCI_DEVICE
),
417 "D" (&pci_indirect
));
418 *bus
= (bx
>> 8) & 0xff;
419 *device_fn
= bx
& 0xff;
420 return (int) (ret
& 0xff00) >> 8;
423 static int pci_bios_read_config_byte(struct pci_dev
*dev
, int where
, u8
*value
)
426 unsigned long bx
= (dev
->bus
->number
<< 8) | dev
->devfn
;
428 __asm__("lcall (%%esi); cld\n\t"
434 : "1" (PCIBIOS_READ_CONFIG_BYTE
),
437 "S" (&pci_indirect
));
438 return (int) (ret
& 0xff00) >> 8;
441 static int pci_bios_read_config_word(struct pci_dev
*dev
, int where
, u16
*value
)
444 unsigned long bx
= (dev
->bus
->number
<< 8) | dev
->devfn
;
446 __asm__("lcall (%%esi); cld\n\t"
452 : "1" (PCIBIOS_READ_CONFIG_WORD
),
455 "S" (&pci_indirect
));
456 return (int) (ret
& 0xff00) >> 8;
459 static int pci_bios_read_config_dword(struct pci_dev
*dev
, int where
, u32
*value
)
462 unsigned long bx
= (dev
->bus
->number
<< 8) | dev
->devfn
;
464 __asm__("lcall (%%esi); cld\n\t"
470 : "1" (PCIBIOS_READ_CONFIG_DWORD
),
473 "S" (&pci_indirect
));
474 return (int) (ret
& 0xff00) >> 8;
477 static int pci_bios_write_config_byte(struct pci_dev
*dev
, int where
, u8 value
)
480 unsigned long bx
= (dev
->bus
->number
<< 8) | dev
->devfn
;
482 __asm__("lcall (%%esi); cld\n\t"
487 : "0" (PCIBIOS_WRITE_CONFIG_BYTE
),
491 "S" (&pci_indirect
));
492 return (int) (ret
& 0xff00) >> 8;
495 static int pci_bios_write_config_word(struct pci_dev
*dev
, int where
, u16 value
)
498 unsigned long bx
= (dev
->bus
->number
<< 8) | dev
->devfn
;
500 __asm__("lcall (%%esi); cld\n\t"
505 : "0" (PCIBIOS_WRITE_CONFIG_WORD
),
509 "S" (&pci_indirect
));
510 return (int) (ret
& 0xff00) >> 8;
513 static int pci_bios_write_config_dword(struct pci_dev
*dev
, int where
, u32 value
)
516 unsigned long bx
= (dev
->bus
->number
<< 8) | dev
->devfn
;
518 __asm__("lcall (%%esi); cld\n\t"
523 : "0" (PCIBIOS_WRITE_CONFIG_DWORD
),
527 "S" (&pci_indirect
));
528 return (int) (ret
& 0xff00) >> 8;
532 * Function table for BIOS32 access
535 static struct pci_ops pci_bios_access
= {
536 pci_bios_read_config_byte
,
537 pci_bios_read_config_word
,
538 pci_bios_read_config_dword
,
539 pci_bios_write_config_byte
,
540 pci_bios_write_config_word
,
541 pci_bios_write_config_dword
545 * Try to find PCI BIOS.
548 static struct pci_ops
* __init
pci_find_bios(void)
555 * Follow the standard procedure for locating the BIOS32 Service
556 * directory by scanning the permissible address range from
557 * 0xe0000 through 0xfffff for a valid BIOS32 structure.
560 for (check
= (union bios32
*) __va(0xe0000);
561 check
<= (union bios32
*) __va(0xffff0);
563 if (check
->fields
.signature
!= BIOS32_SIGNATURE
)
565 length
= check
->fields
.length
* 16;
569 for (i
= 0; i
< length
; ++i
)
570 sum
+= check
->chars
[i
];
573 if (check
->fields
.revision
!= 0) {
574 printk("PCI: unsupported BIOS32 revision %d at 0x%p, report to <mj@suse.cz>\n",
575 check
->fields
.revision
, check
);
578 DBG("PCI: BIOS32 Service Directory structure at 0x%p\n", check
);
579 if (check
->fields
.entry
>= 0x100000) {
580 printk("PCI: BIOS32 entry (0x%p) in high memory, cannot use.\n", check
);
583 unsigned long bios32_entry
= check
->fields
.entry
;
584 DBG("PCI: BIOS32 Service Directory entry at 0x%lx\n", bios32_entry
);
585 bios32_indirect
.address
= bios32_entry
+ PAGE_OFFSET
;
587 return &pci_bios_access
;
589 break; /* Hopefully more than one BIOS32 cannot happen... */
596 * Sort the device list according to PCI BIOS. Nasty hack, but since some
597 * fool forgot to define the `correct' device order in the PCI BIOS specs
598 * and we want to be (possibly bug-to-bug ;-]) compatible with older kernels
599 * which used BIOS ordering, we are bound to do this...
602 static void __init
pcibios_sort(void)
604 LIST_HEAD(sorted_devices
);
605 struct list_head
*ln
;
606 struct pci_dev
*dev
, *d
;
608 unsigned char bus
, devfn
;
610 DBG("PCI: Sorting device list...\n");
611 while (!list_empty(&pci_devices
)) {
612 ln
= pci_devices
.next
;
615 while (pci_bios_find_device(dev
->vendor
, dev
->device
, idx
, &bus
, &devfn
) == PCIBIOS_SUCCESSFUL
) {
617 for (ln
=pci_devices
.next
; ln
!= &pci_devices
; ln
=ln
->next
) {
619 if (d
->bus
->number
== bus
&& d
->devfn
== devfn
) {
620 list_del(&d
->global_list
);
621 list_add_tail(&d
->global_list
, &sorted_devices
);
627 if (ln
== &pci_devices
) {
628 printk("PCI: BIOS reporting unknown device %02x:%02x\n", bus
, devfn
);
630 * We must not continue scanning as several buggy BIOSes
631 * return garbage after the last device. Grr.
637 printk("PCI: Device %02x:%02x not found by BIOS\n",
638 dev
->bus
->number
, dev
->devfn
);
639 list_del(&dev
->global_list
);
640 list_add_tail(&dev
->global_list
, &sorted_devices
);
643 list_splice(&sorted_devices
, &pci_devices
);
647 * BIOS Functions for IRQ Routing
650 struct irq_routing_options
{
652 struct irq_info
*table
;
654 } __attribute__((packed
));
656 struct irq_routing_table
* __init
pcibios_get_irq_routing_table(void)
658 struct irq_routing_options opt
;
659 struct irq_routing_table
*rt
= NULL
;
663 if (!pci_bios_present
)
665 page
= __get_free_page(GFP_KERNEL
);
668 opt
.table
= (struct irq_info
*) page
;
669 opt
.size
= PAGE_SIZE
;
670 opt
.segment
= __KERNEL_DS
;
672 DBG("PCI: Fetching IRQ routing table... ");
673 __asm__("push %%es\n\t"
676 "lcall (%%esi); cld\n\t"
683 : "0" (PCIBIOS_GET_ROUTING_OPTIONS
),
686 "S" (&pci_indirect
));
687 DBG("OK ret=%d, size=%d, map=%x\n", ret
, opt
.size
, map
);
689 printk(KERN_ERR
"PCI: Error %02x when fetching IRQ routing table.\n", (ret
>> 8) & 0xff);
691 rt
= kmalloc(sizeof(struct irq_routing_table
) + opt
.size
, GFP_KERNEL
);
693 memset(rt
, 0, sizeof(struct irq_routing_table
));
694 rt
->size
= opt
.size
+ sizeof(struct irq_routing_table
);
695 rt
->exclusive_irqs
= map
;
696 memcpy(rt
->slots
, (void *) page
, opt
.size
);
697 printk("PCI: Using BIOS Interrupt Routing Table\n");
705 int pcibios_set_irq_routing(struct pci_dev
*dev
, int pin
, int irq
)
709 __asm__("lcall (%%esi); cld\n\t"
714 : "0" (PCIBIOS_SET_PCI_HW_INT
),
715 "b" ((dev
->bus
->number
<< 8) | dev
->devfn
),
716 "c" ((irq
<< 8) | (pin
+ 10)),
717 "S" (&pci_indirect
));
718 return !(ret
& 0xff00);
724 * Several buggy motherboards address only 16 devices and mirror
725 * them to next 16 IDs. We try to detect this `feature' on all
726 * primary buses (those containing host bridges as they are
727 * expected to be unique) and remove the ghost devices.
730 static void __init
pcibios_fixup_ghosts(struct pci_bus
*b
)
732 struct list_head
*ln
, *mn
;
733 struct pci_dev
*d
, *e
;
734 int mirror
= PCI_DEVFN(16,0);
735 int seen_host_bridge
= 0;
738 DBG("PCI: Scanning for ghost devices on bus %d\n", b
->number
);
739 for (ln
=b
->devices
.next
; ln
!= &b
->devices
; ln
=ln
->next
) {
741 if ((d
->class >> 8) == PCI_CLASS_BRIDGE_HOST
)
743 for (mn
=ln
->next
; mn
!= &b
->devices
; mn
=mn
->next
) {
745 if (e
->devfn
!= d
->devfn
+ mirror
||
746 e
->vendor
!= d
->vendor
||
747 e
->device
!= d
->device
||
748 e
->class != d
->class)
750 for(i
=0; i
<PCI_NUM_RESOURCES
; i
++)
751 if (e
->resource
[i
].start
!= d
->resource
[i
].start
||
752 e
->resource
[i
].end
!= d
->resource
[i
].end
||
753 e
->resource
[i
].flags
!= d
->resource
[i
].flags
)
757 if (mn
== &b
->devices
)
760 if (!seen_host_bridge
)
762 printk("PCI: Ignoring ghost devices on bus %02x\n", b
->number
);
765 while (ln
->next
!= &b
->devices
) {
766 d
= pci_dev_b(ln
->next
);
767 if (d
->devfn
>= mirror
) {
768 list_del(&d
->global_list
);
769 list_del(&d
->bus_list
);
777 * Discover remaining PCI buses in case there are peer host bridges.
778 * We use the number of last PCI bus provided by the PCI BIOS.
780 static void __init
pcibios_fixup_peer_bridges(void)
787 if (pcibios_last_bus
<= 0 || pcibios_last_bus
>= 0xff)
789 DBG("PCI: Peer bridge fixup\n");
790 for (n
=0; n
<= pcibios_last_bus
; n
++) {
791 if (pci_bus_exists(&pci_root_buses
, n
))
794 bus
.ops
= pci_root_ops
;
796 for(dev
.devfn
=0; dev
.devfn
<256; dev
.devfn
+= 8)
797 if (!pci_read_config_word(&dev
, PCI_VENDOR_ID
, &l
) &&
798 l
!= 0x0000 && l
!= 0xffff) {
799 DBG("Found device at %02x:%02x [%04x]\n", n
, dev
.devfn
, l
);
800 printk("PCI: Discovered peer bus %02x\n", n
);
801 pci_scan_bus(n
, pci_root_ops
, NULL
);
808 * Exceptions for specific devices. Usually work-arounds for fatal design flaws.
811 static void __init
pci_fixup_i450nx(struct pci_dev
*d
)
814 * i450NX -- Find and scan all secondary buses on all PXB's.
817 u8 busno
, suba
, subb
;
818 printk("PCI: Searching for i450NX host bridges on %s\n", d
->slot_name
);
820 for(pxb
=0; pxb
<2; pxb
++) {
821 pci_read_config_byte(d
, reg
++, &busno
);
822 pci_read_config_byte(d
, reg
++, &suba
);
823 pci_read_config_byte(d
, reg
++, &subb
);
824 DBG("i450NX PXB %d: %02x/%02x/%02x\n", pxb
, busno
, suba
, subb
);
826 pci_scan_bus(busno
, pci_root_ops
, NULL
); /* Bus A */
828 pci_scan_bus(suba
+1, pci_root_ops
, NULL
); /* Bus B */
830 pcibios_last_bus
= -1;
833 static void __init
pci_fixup_i450gx(struct pci_dev
*d
)
836 * i450GX and i450KX -- Find and scan all secondary buses.
837 * (called separately for each PCI bridge found)
840 pci_read_config_byte(d
, 0x4a, &busno
);
841 printk("PCI: i440KX/GX host bridge %s: secondary bus %02x\n", d
->slot_name
, busno
);
842 pci_scan_bus(busno
, pci_root_ops
, NULL
);
843 pcibios_last_bus
= -1;
846 static void __init
pci_fixup_serverworks(struct pci_dev
*d
)
849 * ServerWorks host bridges -- Find and scan all secondary buses.
850 * Register 0x44 contains first, 0x45 last bus number routed there.
853 pci_read_config_byte(d
, 0x44, &busno
);
854 printk("PCI: ServerWorks host bridge: secondary bus %02x\n", busno
);
855 pci_scan_bus(busno
, pci_root_ops
, NULL
);
856 pcibios_last_bus
= -1;
859 static void __init
pci_fixup_compaq(struct pci_dev
*d
)
862 * Compaq host bridges -- Find and scan all secondary buses.
863 * This time registers 0xc8 and 0xc9.
866 pci_read_config_byte(d
, 0xc8, &busno
);
867 printk("PCI: Compaq host bridge: secondary bus %02x\n", busno
);
868 pci_scan_bus(busno
, pci_root_ops
, NULL
);
869 pcibios_last_bus
= -1;
872 static void __init
pci_fixup_umc_ide(struct pci_dev
*d
)
875 * UM8886BF IDE controller sets region type bits incorrectly,
876 * therefore they look like memory despite of them being I/O.
880 printk("PCI: Fixing base address flags for device %s\n", d
->slot_name
);
882 d
->resource
[i
].flags
|= PCI_BASE_ADDRESS_SPACE_IO
;
885 static void __init
pci_fixup_ide_bases(struct pci_dev
*d
)
890 * PCI IDE controllers use non-standard I/O port decoding, respect it.
892 if ((d
->class >> 8) != PCI_CLASS_STORAGE_IDE
)
894 DBG("PCI: IDE base address fixup for %s\n", d
->slot_name
);
896 struct resource
*r
= &d
->resource
[i
];
897 if ((r
->start
& ~0x80) == 0x374) {
904 static void __init
pci_fixup_ide_trash(struct pci_dev
*d
)
909 * There exist PCI IDE controllers which have utter garbage
910 * in first four base registers. Ignore that.
912 DBG("PCI: IDE base address trash cleared for %s\n", d
->slot_name
);
914 d
->resource
[i
].start
= d
->resource
[i
].end
= d
->resource
[i
].flags
= 0;
917 static void __init
pci_fixup_latency(struct pci_dev
*d
)
920 * SiS 5597 and 5598 chipsets require latency timer set to
921 * at most 32 to avoid lockups.
923 DBG("PCI: Setting max latency to 32\n");
924 pcibios_max_latency
= 32;
927 struct pci_fixup pcibios_fixups
[] = {
928 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_82451NX
, pci_fixup_i450nx
},
929 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_82454GX
, pci_fixup_i450gx
},
930 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_SERVERWORKS
, PCI_DEVICE_ID_SERVERWORKS_HE
, pci_fixup_serverworks
},
931 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_SERVERWORKS
, PCI_DEVICE_ID_SERVERWORKS_LE
, pci_fixup_serverworks
},
932 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_SERVERWORKS
, PCI_DEVICE_ID_SERVERWORKS_CMIC_HE
, pci_fixup_serverworks
},
933 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_6010
, pci_fixup_compaq
},
934 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_UMC
, PCI_DEVICE_ID_UMC_UM8886BF
, pci_fixup_umc_ide
},
935 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_SI
, PCI_DEVICE_ID_SI_5513
, pci_fixup_ide_trash
},
936 { PCI_FIXUP_HEADER
, PCI_ANY_ID
, PCI_ANY_ID
, pci_fixup_ide_bases
},
937 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_SI
, PCI_DEVICE_ID_SI_5597
, pci_fixup_latency
},
938 { PCI_FIXUP_HEADER
, PCI_VENDOR_ID_SI
, PCI_DEVICE_ID_SI_5598
, pci_fixup_latency
},
943 * Called after each bus is probed, but before its children
947 void __init
pcibios_fixup_bus(struct pci_bus
*b
)
949 pcibios_fixup_ghosts(b
);
950 pci_read_bridge_bases(b
);
954 * Initialization. Try all known PCI access methods. Note that we support
955 * using both PCI BIOS and direct access: in such cases, we use I/O ports
956 * to access config space, but we still keep BIOS order of cards to be
957 * compatible with 2.0.X. This should go away some day.
960 void __init
pcibios_init(void)
962 struct pci_ops
*bios
= NULL
;
963 struct pci_ops
*dir
= NULL
;
965 #ifdef CONFIG_PCI_BIOS
966 if ((pci_probe
& PCI_PROBE_BIOS
) && ((bios
= pci_find_bios()))) {
967 pci_probe
|= PCI_BIOS_SORT
;
968 pci_bios_present
= 1;
971 #ifdef CONFIG_PCI_DIRECT
972 if (pci_probe
& (PCI_PROBE_CONF1
| PCI_PROBE_CONF2
))
973 dir
= pci_check_direct();
980 printk("PCI: No PCI bus detected\n");
984 printk("PCI: Probing PCI hardware\n");
985 pci_root_bus
= pci_scan_bus(0, pci_root_ops
, NULL
);
988 pcibios_fixup_peer_bridges();
989 pcibios_fixup_irqs();
990 pcibios_resource_survey();
992 #ifdef CONFIG_PCI_BIOS
993 if ((pci_probe
& PCI_BIOS_SORT
) && !(pci_probe
& PCI_NO_SORT
))
998 char * __init
pcibios_setup(char *str
)
1000 if (!strcmp(str
, "off")) {
1004 #ifdef CONFIG_PCI_BIOS
1005 else if (!strcmp(str
, "bios")) {
1006 pci_probe
= PCI_PROBE_BIOS
;
1008 } else if (!strcmp(str
, "nobios")) {
1009 pci_probe
&= ~PCI_PROBE_BIOS
;
1011 } else if (!strcmp(str
, "nosort")) {
1012 pci_probe
|= PCI_NO_SORT
;
1014 } else if (!strcmp(str
, "biosirq")) {
1015 pci_probe
|= PCI_BIOS_IRQ_SCAN
;
1019 #ifdef CONFIG_PCI_DIRECT
1020 else if (!strcmp(str
, "conf1")) {
1021 pci_probe
= PCI_PROBE_CONF1
| PCI_NO_CHECKS
;
1024 else if (!strcmp(str
, "conf2")) {
1025 pci_probe
= PCI_PROBE_CONF2
| PCI_NO_CHECKS
;
1029 else if (!strcmp(str
, "rom")) {
1030 pci_probe
|= PCI_ASSIGN_ROMS
;
1032 } else if (!strncmp(str
, "irqmask=", 8)) {
1033 pcibios_irq_mask
= simple_strtol(str
+8, NULL
, 0);
1035 } else if (!strncmp(str
, "lastbus=", 8)) {
1036 pcibios_last_bus
= simple_strtol(str
+8, NULL
, 0);
1042 int pcibios_enable_device(struct pci_dev
*dev
)
1046 if ((err
= pcibios_enable_resources(dev
)) < 0)
1048 pcibios_enable_irq(dev
);