mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
35 lines
845 B
C++
35 lines
845 B
C++
/*
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Vector.h>
|
|
#include <Kernel/Arch/aarch64/IRQController.h>
|
|
#include <Kernel/Library/LockRefPtr.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class InterruptManagement {
|
|
public:
|
|
static InterruptManagement& the();
|
|
static void initialize();
|
|
static bool initialized();
|
|
|
|
static u8 acquire_mapped_interrupt_number(u8 original_irq);
|
|
|
|
Vector<NonnullLockRefPtr<IRQController>> const& controllers();
|
|
NonnullLockRefPtr<IRQController> get_responsible_irq_controller(u8 interrupt_vector);
|
|
|
|
void enumerate_interrupt_handlers(Function<void(GenericInterruptHandler&)>);
|
|
|
|
private:
|
|
InterruptManagement() = default;
|
|
void find_controllers();
|
|
|
|
Vector<NonnullLockRefPtr<IRQController>> m_interrupt_controllers;
|
|
};
|
|
|
|
}
|