stos: acpi: Add ACPI impl groundwork

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-23 23:50:58 +00:00
parent cb12de88a2
commit 95f4c3abee
3 changed files with 144 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: ACPI driver
* Author: Chloe M.
*/
#ifndef _ACPI_ACPI_H_
#define _ACPI_ACPI_H_ 1
#include <stdef.h>
/*
* Initialize ACPI
*/
VOID AcpiInit(VOID);
/*
* Query an ACPI structure
*
* @Signature: Signature to query for
*
* Returns the virtual structure base on success, otherwise
* NULL on failure.
*/
VOID *AcpiQuery(const CHAR *Signature);
#endif /* !_ACPI_ACPI_H_ */