2020-04-09 13:39:10 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-04-09 18:17:27 +02:00
|
|
|
#include <Kernel/ACPI/DynamicParser.h>
|
2020-04-09 13:39:10 +02:00
|
|
|
#include <Kernel/CommandLine.h>
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
namespace ACPI {
|
|
|
|
|
|
2021-02-19 21:29:46 +01:00
|
|
|
UNMAP_AFTER_INIT void initialize()
|
2020-04-09 13:39:10 +02:00
|
|
|
{
|
2021-03-03 00:51:55 -08:00
|
|
|
auto feature_level = kernel_command_line().acpi_feature_level();
|
|
|
|
|
if (feature_level == AcpiFeatureLevel::Disabled)
|
2020-04-09 14:31:47 +02:00
|
|
|
return;
|
|
|
|
|
|
2020-04-09 17:12:58 +02:00
|
|
|
auto rsdp = StaticParsing::find_rsdp();
|
2020-05-22 13:34:53 +02:00
|
|
|
if (!rsdp.has_value())
|
2020-04-09 14:31:47 +02:00
|
|
|
return;
|
|
|
|
|
|
2021-03-03 00:51:55 -08:00
|
|
|
if (feature_level == AcpiFeatureLevel::Enabled)
|
2020-05-22 13:34:53 +02:00
|
|
|
Parser::initialize<DynamicParser>(rsdp.value());
|
2020-04-09 14:31:47 +02:00
|
|
|
else
|
2020-05-22 13:34:53 +02:00
|
|
|
Parser::initialize<Parser>(rsdp.value());
|
2020-04-09 14:31:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool is_enabled()
|
|
|
|
|
{
|
|
|
|
|
return Parser::the();
|
2020-04-09 13:39:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|