summaryrefslogtreecommitdiffhomepage
path: root/dev/modules/ACPI/ACPI.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 03:02:43 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-24 03:02:43 +0100
commit83d870e58457a1d335a1d9b9966a6a1887cc297b (patch)
tree72888f88c7728c82f3f6df1f4f70591de15eab36 /dev/modules/ACPI/ACPI.h
parentab37adbacf0f33845804c788b39680cd754752a8 (diff)
feat! breaking changes on kernel sources.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/modules/ACPI/ACPI.h')
-rw-r--r--dev/modules/ACPI/ACPI.h83
1 files changed, 0 insertions, 83 deletions
diff --git a/dev/modules/ACPI/ACPI.h b/dev/modules/ACPI/ACPI.h
deleted file mode 100644
index b5bf3b69..00000000
--- a/dev/modules/ACPI/ACPI.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/* ========================================
-
- Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
-
-#ifndef __ACPI__
-#define __ACPI__
-
-/**
- https://uefi.org/specs/ACPI/6.5/05_ACPI_Software_Programming_Model.html
-*/
-
-#include <NeKit/Defines.h>
-
-#define SDT_OBJECT : public Kernel::SDT
-
-namespace Kernel {
-class PACKED SDT {
- public:
- Char Signature[4];
- UInt32 Length;
- UInt8 Revision;
- Char Checksum;
- Char OemId[6];
- Char OemTableId[8];
- UInt32 OemRev;
- UInt32 CreatorID;
- UInt32 CreatorRevision;
-};
-
-class PACKED RSDP : public SDT {
- public:
- UInt32 RsdtAddress;
- UIntPtr XsdtAddress;
- UInt8 ExtendedChecksum;
- UInt8 Reserved0[3];
-};
-
-class PACKED ConfigHeader {
- public:
- UInt64 BaseAddress;
- UInt16 PciSegGroup;
- UInt8 StartBus;
- UInt8 EndBus;
- UInt32 Reserved;
-};
-
-enum ACPI_ADDRESS_SPACE_KIND : UInt8 {
- eSystemMemory = 0,
- eSystemIO = 1,
- ePci = 2,
- eController = 3,
- eSmBus = 4,
- eCount = 5,
- eInvalid = 0xFF,
-};
-
-class PACKED ACPI_ADDRESS final {
- public:
- UInt8 AddressSpaceId;
- UInt8 RegisterBitWidth;
- UInt8 RegisterBitOffset;
- UInt8 Reserved;
- UIntPtr Address;
-};
-
-class PACKED RSDT final {
- public:
- Char Signature[4];
- UInt32 Length;
- UInt8 Revision;
- Char Checksum;
- Char OemId[6];
- Char OemTableId[8];
- UInt32 OemRev;
- UInt32 CreatorID;
- UInt32 CreatorRevision;
- UInt32 AddressArr[1];
-};
-} // namespace Kernel
-
-#endif // !__ACPI__