ladybird/Kernel/ACPI
Liav A 1e1a6a57ed Kernel: Introduce the ACPI subsystem
ACPI subsystem includes 3 types of parsers that are created during
runtime, each one capable of parsing ACPI tables at different level.

ACPIParser is the most basic parser which is essentialy a parser that
can't parse anything useful, due to a user request to disable ACPI
support in a kernel boot parameter.

ACPIStaticParser is a derived class from ACPIParser, which is able to
parse only static data (e.g. FADT, HPET, MCFG and other tables), thus
making it not able to parse AML (ACPI Machine Language) nor to support
handling of hardware events and power management. This type of parser
can be created with a kernel boot parameter.

ACPIDynamicParser is a derived class from ACPIStaticParser, which
includes all the capabilities of the latter, but *should* implement an
AML interpretation, (by building the ACPI AML namespace) and handling
power & hardware events. Currently the methods to support AML
interpretation are not implemented.
This type of parser is created automatically during runtime if the user
didn't specify a boot parameter related to ACPI initialization.

Also, adding strncmp function definition in StdLib.h, to be able to use
it in ACPIStaticParser class.
2020-01-02 00:50:09 +01:00
..
ACPIDynamicParser.cpp Kernel: Introduce the ACPI subsystem 2020-01-02 00:50:09 +01:00
ACPIDynamicParser.h Kernel: Introduce the ACPI subsystem 2020-01-02 00:50:09 +01:00
ACPIParser.cpp Kernel: Introduce the ACPI subsystem 2020-01-02 00:50:09 +01:00
ACPIParser.h Kernel: Introduce the ACPI subsystem 2020-01-02 00:50:09 +01:00
ACPIStaticParser.cpp Kernel: Introduce the ACPI subsystem 2020-01-02 00:50:09 +01:00
ACPIStaticParser.h Kernel: Introduce the ACPI subsystem 2020-01-02 00:50:09 +01:00
Definitions.h Kernel: Introduce the ACPI subsystem 2020-01-02 00:50:09 +01:00