Newer
Older
minerva / Kernel / Arch / x86_64 / Firmware / ACPI.h
@minerva minerva on 13 Jul 352 bytes Initial commit
/*
 * Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Error.h>
#include <AK/Optional.h>
#include <AK/Types.h>
#include <Kernel/Memory/PhysicalAddress.h>

namespace Kernel::ACPI::StaticParsing {

Optional<PhysicalAddress> find_rsdp_in_ia_pc_specific_memory_locations();

}