Home | History | Annotate | Line # | Download | only in include
mpacpi.h revision 1.12
      1 /*	$NetBSD: mpacpi.h,v 1.12 2025/10/06 12:27:52 riastradh 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 void mpacpi_configure_busses(void);
     13 
     14 struct mp_intr_map;
     15 int mpacpi_findintr_linkdev(struct mp_intr_map *);
     16 
     17 extern bool acpi_present;
     18 extern bool mpacpi_active;
     19 
     20 #endif /* _X86_MPACPI_H_ */
     21