summaryrefslogtreecommitdiff
path: root/kernel/arch/aarch64/Processor.cpp
blob: 725fa381bf4384b1ec0e57b3ffc383839881cb8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ============================================================================
// arch/aarch64/Processor.cpp - AArch64 per-CPU state implementation
// ============================================================================

#include "Processor.h"
#include <boot/boot_info.h>

static Processor g_processor;

Processor& processor() {
    return g_processor;
}

void Processor::InitEarly(const BootInfo& boot_info) {
    // Phase 2: VBAR_EL1, GIC base, etc.
    (void)boot_info;
}