NetBSD/sys/arch/x86/include/mpacpi.h
fvdl afff857edc Add the options MPBIOS_SCANPCI and MPACPI_SCANPCI to configure PCI roots
with the MPBIOS/ACPI bus information, by walking through the buses, and
descending down every bus that hasn't been marked configured yet.
2003-05-29 20:22:28 +00:00

15 lines
417 B
C

/* $NetBSD: mpacpi.h,v 1.2 2003/05/29 20:22:32 fvdl Exp $ */
#ifndef _I386_MPACPI_H
#define _I386_MPACPI_H
struct pcibus_attach_args;
int mpacpi_scan_apics(struct device *);
int mpacpi_find_interrupts(void *);
int mpacpi_pci_attach_hook(struct device *, struct device *,
struct pcibus_attach_args *);
int mpacpi_scan_pci(struct device *, struct pcibus_attach_args *, cfprint_t);
#endif /* _I386_MPACPI_H */