2020-02-22 20:28:40 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-22 20:28:40 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
2020-10-25 09:13:47 -06:00
|
|
|
#include <Kernel/Time/HardwareTimer.h>
|
2020-06-04 09:10:16 -06:00
|
|
|
#include <Kernel/VM/MemoryManager.h>
|
2020-02-22 20:28:40 +02:00
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2020-10-25 09:13:47 -06:00
|
|
|
class APICTimer;
|
|
|
|
|
|
2020-07-06 07:27:22 -06:00
|
|
|
struct LocalAPIC {
|
|
|
|
|
u32 apic_id;
|
|
|
|
|
};
|
|
|
|
|
|
2020-06-04 09:10:16 -06:00
|
|
|
class APIC {
|
|
|
|
|
public:
|
|
|
|
|
static APIC& the();
|
|
|
|
|
static void initialize();
|
|
|
|
|
static bool initialized();
|
2020-02-22 20:28:40 +02:00
|
|
|
|
2020-06-04 09:10:16 -06:00
|
|
|
bool init_bsp();
|
|
|
|
|
void eoi();
|
2020-07-06 07:27:22 -06:00
|
|
|
void boot_aps();
|
2020-06-04 09:10:16 -06:00
|
|
|
void enable(u32 cpu);
|
2020-07-06 07:27:22 -06:00
|
|
|
void init_finished(u32 cpu);
|
|
|
|
|
void broadcast_ipi();
|
|
|
|
|
void send_ipi(u32 cpu);
|
2020-06-04 09:10:16 -06:00
|
|
|
static u8 spurious_interrupt_vector();
|
2020-07-06 07:27:22 -06:00
|
|
|
Thread* get_idle_thread(u32 cpu) const;
|
|
|
|
|
u32 enabled_processor_count() const { return m_processor_enabled_cnt; }
|
2020-06-04 09:10:16 -06:00
|
|
|
|
2020-10-25 09:13:47 -06:00
|
|
|
APICTimer* initialize_timers(HardwareTimerBase&);
|
|
|
|
|
APICTimer* get_timer() const { return m_apic_timer; }
|
|
|
|
|
enum class TimerMode {
|
|
|
|
|
OneShot,
|
|
|
|
|
Periodic,
|
|
|
|
|
TSCDeadline
|
|
|
|
|
};
|
|
|
|
|
void setup_local_timer(u32, TimerMode, bool);
|
|
|
|
|
u32 get_timer_current_count();
|
|
|
|
|
u32 get_timer_divisor();
|
|
|
|
|
|
2020-06-04 09:10:16 -06:00
|
|
|
private:
|
|
|
|
|
class ICRReg {
|
2020-07-06 07:27:22 -06:00
|
|
|
u32 m_low { 0 };
|
|
|
|
|
u32 m_high { 0 };
|
2020-09-18 09:49:51 +02:00
|
|
|
|
2020-06-04 09:10:16 -06:00
|
|
|
public:
|
|
|
|
|
enum DeliveryMode {
|
|
|
|
|
Fixed = 0x0,
|
|
|
|
|
LowPriority = 0x1,
|
|
|
|
|
SMI = 0x2,
|
|
|
|
|
NMI = 0x4,
|
|
|
|
|
INIT = 0x5,
|
|
|
|
|
StartUp = 0x6,
|
|
|
|
|
};
|
|
|
|
|
enum DestinationMode {
|
|
|
|
|
Physical = 0x0,
|
|
|
|
|
Logical = 0x1,
|
|
|
|
|
};
|
|
|
|
|
enum Level {
|
|
|
|
|
DeAssert = 0x0,
|
|
|
|
|
Assert = 0x1
|
|
|
|
|
};
|
|
|
|
|
enum class TriggerMode {
|
|
|
|
|
Edge = 0x0,
|
|
|
|
|
Level = 0x1,
|
|
|
|
|
};
|
|
|
|
|
enum DestinationShorthand {
|
|
|
|
|
NoShorthand = 0x0,
|
|
|
|
|
Self = 0x1,
|
|
|
|
|
AllIncludingSelf = 0x2,
|
|
|
|
|
AllExcludingSelf = 0x3,
|
|
|
|
|
};
|
2020-09-18 09:49:51 +02:00
|
|
|
|
2020-07-06 07:27:22 -06:00
|
|
|
ICRReg(u8 vector, DeliveryMode delivery_mode, DestinationMode destination_mode, Level level, TriggerMode trigger_mode, DestinationShorthand destinationShort, u8 destination = 0)
|
2020-09-18 09:49:51 +02:00
|
|
|
: m_low(vector | (delivery_mode << 8) | (destination_mode << 11) | (level << 14) | (static_cast<u32>(trigger_mode) << 15) | (destinationShort << 18))
|
|
|
|
|
, m_high((u32)destination << 24)
|
2020-06-04 09:10:16 -06:00
|
|
|
{
|
|
|
|
|
}
|
2020-09-18 09:49:51 +02:00
|
|
|
|
2020-07-06 07:27:22 -06:00
|
|
|
u32 low() const { return m_low; }
|
|
|
|
|
u32 high() const { return m_high; }
|
2020-06-04 09:10:16 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
OwnPtr<Region> m_apic_base;
|
2020-07-06 07:27:22 -06:00
|
|
|
Vector<OwnPtr<Processor>> m_ap_processor_info;
|
|
|
|
|
Vector<Thread*> m_ap_idle_threads;
|
2021-02-25 21:10:47 +01:00
|
|
|
Atomic<u8> m_apic_ap_count { 0 };
|
|
|
|
|
Atomic<u8> m_apic_ap_continue { 0 };
|
2020-09-18 09:49:51 +02:00
|
|
|
u32 m_processor_cnt { 0 };
|
|
|
|
|
u32 m_processor_enabled_cnt { 0 };
|
2020-10-25 09:13:47 -06:00
|
|
|
APICTimer* m_apic_timer { nullptr };
|
2020-09-18 09:49:51 +02:00
|
|
|
|
2020-06-04 09:10:16 -06:00
|
|
|
static PhysicalAddress get_base();
|
|
|
|
|
static void set_base(const PhysicalAddress& base);
|
|
|
|
|
void write_register(u32 offset, u32 value);
|
|
|
|
|
u32 read_register(u32 offset);
|
2020-07-06 07:27:22 -06:00
|
|
|
void set_lvt(u32 offset, u8 interrupt);
|
|
|
|
|
void set_siv(u32 offset, u8 interrupt);
|
|
|
|
|
void wait_for_pending_icr();
|
2020-06-04 09:10:16 -06:00
|
|
|
void write_icr(const ICRReg& icr);
|
2020-07-06 07:27:22 -06:00
|
|
|
void do_boot_aps();
|
2020-06-04 09:10:16 -06:00
|
|
|
};
|
2020-02-22 20:28:40 +02:00
|
|
|
|
|
|
|
|
}
|