ApertureOS
acpi_tables.h
Go to the documentation of this file.
1 #ifndef _ACPI_TABLES_DRIVER_H_
2 #define _ACPI_TABLES_DRIVER_H_
3 
4 #include "types.h"
5 
11 #define MADT_SIG "APIC"
12 #define FADT_SIG "FACP"
13 #define HPET_SIG "HPET"
14 #define MCFG_SIG "MCFG"
15 
16 
19 uint8_t
21 
23 
27 void*
28 ACPITables_FindTable(const char *table_name,
29  int index);
30 
33 #endif /* end of include guard: _ACPI_TABLES_DRIVER_H_ */
void * ACPITables_FindTable(const char *table_name, int index)
Search for an ACPI table with the given name.
Definition: acpi_tables.c:50
uint8_t ACPITables_Initialize(void)
Initialize the ACPITables driver.
Definition: acpi_tables.c:7