xref: /netbsd-src/sys/arch/x86/include/mpacpi.h (revision 5c120a76bd99c94b567ed5327ceff130bcfa52f2)
1 /*	$NetBSD: mpacpi.h,v 1.11 2017/05/23 08:54:39 nonaka Exp $	*/
2 
3 #ifndef _X86_MPACPI_H_
4 #define _X86_MPACPI_H_
5 
6 struct pcibus_attach_args;
7 
8 int mpacpi_scan_apics(device_t, int *);
9 int mpacpi_find_interrupts(void *);
10 int mpacpi_pci_attach_hook(device_t, device_t,
11 			   struct pcibus_attach_args *);
12 
13 struct mp_intr_map;
14 int mpacpi_findintr_linkdev(struct mp_intr_map *);
15 
16 extern bool acpi_present;
17 extern bool mpacpi_active;
18 
19 #endif /* _X86_MPACPI_H_ */
20