2020-02-22 19:36:40 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-22 19:36:40 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Function.h>
|
|
|
|
#include <AK/NonnullOwnPtr.h>
|
|
|
|
#include <AK/OwnPtr.h>
|
|
|
|
#include <AK/RefCounted.h>
|
|
|
|
#include <AK/RefPtr.h>
|
|
|
|
#include <AK/Types.h>
|
|
|
|
#include <Kernel/ACPI/Definitions.h>
|
|
|
|
#include <Kernel/Interrupts/GenericInterruptHandler.h>
|
|
|
|
#include <Kernel/Interrupts/IOAPIC.h>
|
|
|
|
#include <Kernel/Interrupts/IRQController.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2020-05-08 21:07:04 +02:00
|
|
|
class ISAInterruptOverrideMetadata {
|
|
|
|
public:
|
|
|
|
ISAInterruptOverrideMetadata(u8 bus, u8 source, u32 global_system_interrupt, u16 flags)
|
|
|
|
: m_bus(bus)
|
|
|
|
, m_source(source)
|
|
|
|
, m_global_system_interrupt(global_system_interrupt)
|
|
|
|
, m_flags(flags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 bus() const { return m_bus; }
|
|
|
|
u8 source() const { return m_source; }
|
|
|
|
u32 gsi() const { return m_global_system_interrupt; }
|
|
|
|
u16 flags() const { return m_flags; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const u8 m_bus;
|
|
|
|
const u8 m_source;
|
|
|
|
const u32 m_global_system_interrupt;
|
|
|
|
const u16 m_flags;
|
|
|
|
};
|
2020-02-28 22:33:41 +02:00
|
|
|
|
2020-02-22 19:36:40 +02:00
|
|
|
class InterruptManagement {
|
|
|
|
public:
|
|
|
|
static InterruptManagement& the();
|
|
|
|
static void initialize();
|
|
|
|
static bool initialized();
|
2020-03-08 02:34:46 +02:00
|
|
|
static u8 acquire_mapped_interrupt_number(u8 original_irq);
|
|
|
|
static u8 acquire_irq_number(u8 mapped_interrupt_vector);
|
2020-02-22 19:36:40 +02:00
|
|
|
|
|
|
|
virtual void switch_to_pic_mode();
|
|
|
|
virtual void switch_to_ioapic_mode();
|
2020-03-09 16:55:30 +02:00
|
|
|
|
|
|
|
bool smp_enabled() const { return m_smp_enabled; }
|
2020-02-28 22:33:41 +02:00
|
|
|
RefPtr<IRQController> get_responsible_irq_controller(u8 interrupt_vector);
|
2020-02-22 19:36:40 +02:00
|
|
|
|
2020-05-08 21:07:04 +02:00
|
|
|
const Vector<ISAInterruptOverrideMetadata>& isa_overrides() const { return m_isa_interrupt_overrides; }
|
2020-03-06 03:19:40 +02:00
|
|
|
|
2020-03-08 02:34:46 +02:00
|
|
|
u8 get_mapped_interrupt_vector(u8 original_irq);
|
|
|
|
u8 get_irq_vector(u8 mapped_interrupt_vector);
|
2020-03-06 03:19:40 +02:00
|
|
|
|
2020-02-22 19:36:40 +02:00
|
|
|
void enumerate_interrupt_handlers(Function<void(GenericInterruptHandler&)>);
|
|
|
|
IRQController& get_interrupt_controller(int index);
|
|
|
|
|
2021-04-15 10:43:29 -07:00
|
|
|
protected:
|
|
|
|
virtual ~InterruptManagement() = default;
|
|
|
|
|
2020-02-22 19:36:40 +02:00
|
|
|
private:
|
2020-02-28 22:33:41 +02:00
|
|
|
InterruptManagement();
|
|
|
|
PhysicalAddress search_for_madt();
|
|
|
|
void locate_apic_data();
|
2020-03-06 03:19:40 +02:00
|
|
|
bool m_smp_enabled { false };
|
2020-09-07 11:53:54 +02:00
|
|
|
Vector<RefPtr<IRQController>> m_interrupt_controllers;
|
2020-05-08 21:07:04 +02:00
|
|
|
Vector<ISAInterruptOverrideMetadata> m_isa_interrupt_overrides;
|
|
|
|
Vector<PCIInterruptOverrideMetadata> m_pci_interrupt_overrides;
|
2020-02-24 00:59:00 +02:00
|
|
|
PhysicalAddress m_madt;
|
2020-02-22 19:36:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|