1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:37:45 +00:00

Kernel: Move IRQController and InterruptManagement to Arch directory

These 2 classes currently contain much code that is x86(_64) specific.
Move them to the architecture specific directory. This also allows for a
simpler implementation for aarch64.
This commit is contained in:
Timon Kruiper 2022-05-30 09:04:37 +02:00 committed by Linus Groh
parent 63ee2781fb
commit f085903f62
22 changed files with 106 additions and 19 deletions

View file

@ -0,0 +1,22 @@
/*
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <Kernel/Arch/aarch64/IRQController.h>
namespace Kernel {
class InterruptManagement {
public:
static InterruptManagement& the();
static u8 acquire_mapped_interrupt_number(u8 original_irq);
RefPtr<IRQController> get_responsible_irq_controller(u8 interrupt_vector);
};
}