2 * BIOS32 and PCI BIOS handling.
6 #include <linux/init.h>
7 #include <linux/slab.h>
8 #include <linux/module.h>
9 #include <linux/uaccess.h>
10 #include <asm/pci_x86.h>
11 #include <asm/pci-functions.h>
12 #include <asm/cacheflush.h>
14 /* BIOS32 signature: "_32_" */
15 #define BIOS32_SIGNATURE (('_' << 0) + ('3' << 8) + ('2' << 16) + ('_' << 24))
17 /* PCI signature: "PCI " */
18 #define PCI_SIGNATURE (('P' << 0) + ('C' << 8) + ('I' << 16) + (' ' << 24))
20 /* PCI service signature: "$PCI" */
21 #define PCI_SERVICE (('$' << 0) + ('P' << 8) + ('C' << 16) + ('I' << 24))
23 /* PCI BIOS hardware mechanism flags */
24 #define PCIBIOS_HW_TYPE1 0x01
25 #define PCIBIOS_HW_TYPE2 0x02
26 #define PCIBIOS_HW_TYPE1_SPEC 0x10
27 #define PCIBIOS_HW_TYPE2_SPEC 0x20
31 /* According to the BIOS specification at:
32 * http://members.datafast.net.au/dft0802/specs/bios21.pdf, we could
33 * restrict the x zone to some pages and make it ro. But this may be
34 * broken on some bios, complex to handle with static_protections.
35 * We could make the 0xe0000-0x100000 range rox, but this can break
38 * So we let's an rw and x hole when pcibios is used. This shouldn't
39 * happen for modern system with mmconfig, and if you don't want it
40 * you could disable pcibios...
42 static inline void set_bios_x(void)
45 set_memory_x(PAGE_OFFSET
+ BIOS_BEGIN
, (BIOS_END
- BIOS_BEGIN
) >> PAGE_SHIFT
);
46 if (__supported_pte_mask
& _PAGE_NX
)
47 printk(KERN_INFO
"PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.\n");
51 * This is the standard structure used to identify the entry point
52 * to the BIOS32 Service Directory, as documented in
53 * Standard BIOS 32-bit Service Directory Proposal
54 * Revision 0.4 May 24, 1993
55 * Phoenix Technologies Ltd.
57 * and the PCI BIOS specification.
62 unsigned long signature
; /* _32_ */
63 unsigned long entry
; /* 32 bit physical address */
64 unsigned char revision
; /* Revision level, 0 */
65 unsigned char length
; /* Length in paragraphs should be 01 */
66 unsigned char checksum
; /* All bytes must add up to zero */
67 unsigned char reserved
[5]; /* Must be zero */
73 * Physical address of the service directory. I don't know if we're
74 * allowed to have more than one of these or not, so just in case
75 * we'll make pcibios_present() take a memory start parameter and store
80 unsigned long address
;
81 unsigned short segment
;
82 } bios32_indirect
= { 0, __KERNEL_CS
};
85 * Returns the entry point for the given service, NULL on error
88 static unsigned long bios32_service(unsigned long service
)
90 unsigned char return_code
; /* %al */
91 unsigned long address
; /* %ebx */
92 unsigned long length
; /* %ecx */
93 unsigned long entry
; /* %edx */
96 local_irq_save(flags
);
97 __asm__("lcall *(%%edi); cld"
104 "D" (&bios32_indirect
));
105 local_irq_restore(flags
);
107 switch (return_code
) {
109 return address
+ entry
;
110 case 0x80: /* Not present */
111 printk(KERN_WARNING
"bios32_service(0x%lx): not present\n", service
);
113 default: /* Shouldn't happen */
114 printk(KERN_WARNING
"bios32_service(0x%lx): returned 0x%x -- BIOS bug!\n",
115 service
, return_code
);
121 unsigned long address
;
122 unsigned short segment
;
123 } pci_indirect
= { 0, __KERNEL_CS
};
125 static int pci_bios_present
;
127 static int check_pcibios(void)
129 u32 signature
, eax
, ebx
, ecx
;
130 u8 status
, major_ver
, minor_ver
, hw_mech
;
131 unsigned long flags
, pcibios_entry
;
133 if ((pcibios_entry
= bios32_service(PCI_SERVICE
))) {
134 pci_indirect
.address
= pcibios_entry
+ PAGE_OFFSET
;
136 local_irq_save(flags
);
138 "lcall *(%%edi); cld\n\t"
146 : "1" (PCIBIOS_PCI_BIOS_PRESENT
),
149 local_irq_restore(flags
);
151 status
= (eax
>> 8) & 0xff;
152 hw_mech
= eax
& 0xff;
153 major_ver
= (ebx
>> 8) & 0xff;
154 minor_ver
= ebx
& 0xff;
155 if (pcibios_last_bus
< 0)
156 pcibios_last_bus
= ecx
& 0xff;
157 DBG("PCI: BIOS probe returned s=%02x hw=%02x ver=%02x.%02x l=%02x\n",
158 status
, hw_mech
, major_ver
, minor_ver
, pcibios_last_bus
);
159 if (status
|| signature
!= PCI_SIGNATURE
) {
160 printk (KERN_ERR
"PCI: BIOS BUG #%x[%08x] found\n",
164 printk(KERN_INFO
"PCI: PCI BIOS revision %x.%02x entry at 0x%lx, last bus=%d\n",
165 major_ver
, minor_ver
, pcibios_entry
, pcibios_last_bus
);
166 #ifdef CONFIG_PCI_DIRECT
167 if (!(hw_mech
& PCIBIOS_HW_TYPE1
))
168 pci_probe
&= ~PCI_PROBE_CONF1
;
169 if (!(hw_mech
& PCIBIOS_HW_TYPE2
))
170 pci_probe
&= ~PCI_PROBE_CONF2
;
177 static int pci_bios_read(unsigned int seg
, unsigned int bus
,
178 unsigned int devfn
, int reg
, int len
, u32
*value
)
180 unsigned long result
= 0;
182 unsigned long bx
= (bus
<< 8) | devfn
;
185 if (!value
|| (bus
> 255) || (devfn
> 255) || (reg
> 255))
188 raw_spin_lock_irqsave(&pci_config_lock
, flags
);
192 __asm__("lcall *(%%esi); cld\n\t"
198 : "1" (PCIBIOS_READ_CONFIG_BYTE
),
201 "S" (&pci_indirect
));
203 * Zero-extend the result beyond 8 bits, do not trust the
204 * BIOS having done it:
209 __asm__("lcall *(%%esi); cld\n\t"
215 : "1" (PCIBIOS_READ_CONFIG_WORD
),
218 "S" (&pci_indirect
));
220 * Zero-extend the result beyond 16 bits, do not trust the
221 * BIOS having done it:
226 __asm__("lcall *(%%esi); cld\n\t"
232 : "1" (PCIBIOS_READ_CONFIG_DWORD
),
235 "S" (&pci_indirect
));
239 raw_spin_unlock_irqrestore(&pci_config_lock
, flags
);
241 return (int)((result
& 0xff00) >> 8);
244 static int pci_bios_write(unsigned int seg
, unsigned int bus
,
245 unsigned int devfn
, int reg
, int len
, u32 value
)
247 unsigned long result
= 0;
249 unsigned long bx
= (bus
<< 8) | devfn
;
252 if ((bus
> 255) || (devfn
> 255) || (reg
> 255))
255 raw_spin_lock_irqsave(&pci_config_lock
, flags
);
259 __asm__("lcall *(%%esi); cld\n\t"
264 : "0" (PCIBIOS_WRITE_CONFIG_BYTE
),
268 "S" (&pci_indirect
));
271 __asm__("lcall *(%%esi); cld\n\t"
276 : "0" (PCIBIOS_WRITE_CONFIG_WORD
),
280 "S" (&pci_indirect
));
283 __asm__("lcall *(%%esi); cld\n\t"
288 : "0" (PCIBIOS_WRITE_CONFIG_DWORD
),
292 "S" (&pci_indirect
));
296 raw_spin_unlock_irqrestore(&pci_config_lock
, flags
);
298 return (int)((result
& 0xff00) >> 8);
303 * Function table for BIOS32 access
306 static const struct pci_raw_ops pci_bios_access
= {
307 .read
= pci_bios_read
,
308 .write
= pci_bios_write
312 * Try to find PCI BIOS.
315 static const struct pci_raw_ops
*pci_find_bios(void)
322 * Follow the standard procedure for locating the BIOS32 Service
323 * directory by scanning the permissible address range from
324 * 0xe0000 through 0xfffff for a valid BIOS32 structure.
327 for (check
= (union bios32
*) __va(0xe0000);
328 check
<= (union bios32
*) __va(0xffff0);
331 if (probe_kernel_address(&check
->fields
.signature
, sig
))
334 if (check
->fields
.signature
!= BIOS32_SIGNATURE
)
336 length
= check
->fields
.length
* 16;
340 for (i
= 0; i
< length
; ++i
)
341 sum
+= check
->chars
[i
];
344 if (check
->fields
.revision
!= 0) {
345 printk("PCI: unsupported BIOS32 revision %d at 0x%p\n",
346 check
->fields
.revision
, check
);
349 DBG("PCI: BIOS32 Service Directory structure at 0x%p\n", check
);
350 if (check
->fields
.entry
>= 0x100000) {
351 printk("PCI: BIOS32 entry (0x%p) in high memory, "
352 "cannot use.\n", check
);
355 unsigned long bios32_entry
= check
->fields
.entry
;
356 DBG("PCI: BIOS32 Service Directory entry at 0x%lx\n",
358 bios32_indirect
.address
= bios32_entry
+ PAGE_OFFSET
;
361 return &pci_bios_access
;
363 break; /* Hopefully more than one BIOS32 cannot happen... */
370 * BIOS Functions for IRQ Routing
373 struct irq_routing_options
{
375 struct irq_info
*table
;
377 } __attribute__((packed
));
379 struct irq_routing_table
* pcibios_get_irq_routing_table(void)
381 struct irq_routing_options opt
;
382 struct irq_routing_table
*rt
= NULL
;
386 if (!pci_bios_present
)
388 page
= __get_free_page(GFP_KERNEL
);
391 opt
.table
= (struct irq_info
*) page
;
392 opt
.size
= PAGE_SIZE
;
393 opt
.segment
= __KERNEL_DS
;
395 DBG("PCI: Fetching IRQ routing table... ");
396 __asm__("push %%es\n\t"
399 "lcall *(%%esi); cld\n\t"
407 : "0" (PCIBIOS_GET_ROUTING_OPTIONS
),
413 DBG("OK ret=%d, size=%d, map=%x\n", ret
, opt
.size
, map
);
415 printk(KERN_ERR
"PCI: Error %02x when fetching IRQ routing table.\n", (ret
>> 8) & 0xff);
417 rt
= kmalloc(sizeof(struct irq_routing_table
) + opt
.size
, GFP_KERNEL
);
419 memset(rt
, 0, sizeof(struct irq_routing_table
));
420 rt
->size
= opt
.size
+ sizeof(struct irq_routing_table
);
421 rt
->exclusive_irqs
= map
;
422 memcpy(rt
->slots
, (void *) page
, opt
.size
);
423 printk(KERN_INFO
"PCI: Using BIOS Interrupt Routing Table\n");
429 EXPORT_SYMBOL(pcibios_get_irq_routing_table
);
431 int pcibios_set_irq_routing(struct pci_dev
*dev
, int pin
, int irq
)
435 __asm__("lcall *(%%esi); cld\n\t"
440 : "0" (PCIBIOS_SET_PCI_HW_INT
),
441 "b" ((dev
->bus
->number
<< 8) | dev
->devfn
),
442 "c" ((irq
<< 8) | (pin
+ 10)),
443 "S" (&pci_indirect
));
444 return !(ret
& 0xff00);
446 EXPORT_SYMBOL(pcibios_set_irq_routing
);
448 void __init
pci_pcbios_init(void)
450 if ((pci_probe
& PCI_PROBE_BIOS
)
451 && ((raw_pci_ops
= pci_find_bios()))) {
452 pci_bios_present
= 1;