rulimine/stage2/lib/smp.c

137 lines
3.8 KiB
C
Raw Normal View History

2020-09-18 15:39:29 +03:00
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#include <lib/acpi.h>
#include <lib/cio.h>
#include <lib/blib.h>
2020-09-18 20:02:47 +03:00
#include <lib/print.h>
2020-09-18 15:39:29 +03:00
#include <lib/smp.h>
#include <drivers/lapic.h>
#include <mm/vmm64.h>
struct madt {
struct sdt;
uint32_t local_controller_addr;
uint32_t flags;
char madt_entries_begin[];
} __attribute__((packed));
struct madt_header {
uint8_t type;
uint8_t length;
} __attribute__((packed));
struct madt_lapic {
struct madt_header;
uint8_t acpi_processor_uid;
2020-09-18 15:39:29 +03:00
uint8_t lapic_id;
uint32_t flags;
} __attribute__((packed));
struct gdtr {
uint16_t limit;
uint32_t ptr;
} __attribute__((packed));
2020-09-18 20:02:47 +03:00
static void delay(uint32_t cycles) {
for (uint32_t i = 0; i < cycles; i++)
port_in_b(0x80);
}
2020-09-18 15:39:29 +03:00
void smp_trampoline(void);
extern struct gdtr smp_tpl_gdt;
struct smp_information *smp_tpl_info_struct;
uint8_t smp_tpl_booted_flag;
uint32_t smp_tpl_pagemap;
uint8_t smp_tpl_target_mode;
static bool smp_start_ap(uint8_t lapic_id, struct gdtr *gdtr,
struct smp_information *info_struct,
uint8_t target_mode, uint32_t pagemap) {
// Prepare the trampoline
smp_tpl_info_struct = info_struct;
smp_tpl_booted_flag = 0;
smp_tpl_pagemap = pagemap;
smp_tpl_target_mode = target_mode;
smp_tpl_gdt = *gdtr;
// Send the INIT IPI
lapic_write(LAPIC_REG_ICR1, lapic_id << 24);
lapic_write(LAPIC_REG_ICR0, 0x500);
2020-09-18 20:02:47 +03:00
delay(5000);
2020-09-18 15:39:29 +03:00
// Send the Startup IPI
lapic_write(LAPIC_REG_ICR1, lapic_id << 24);
lapic_write(LAPIC_REG_ICR0, ((size_t)smp_trampoline / 4096) | 0x600);
2020-09-18 20:02:47 +03:00
for (int i = 0; i < 100; i++) {
2020-09-18 15:39:29 +03:00
if (locked_read(&smp_tpl_booted_flag) == 1) {
return true;
}
2020-09-18 20:02:47 +03:00
delay(10000);
2020-09-18 15:39:29 +03:00
}
return false;
}
struct smp_information *init_smp(size_t *cpu_count,
bool longmode,
pagemap_t pagemap,
bool x2apic) {
// Search for MADT table
struct madt *madt = acpi_get_table("APIC", 0);
if (madt == NULL)
return NULL;
struct gdtr gdtr;
asm volatile ("sgdt %0" :: "m"(gdtr));
struct smp_information *ret = balloc(0);
*cpu_count = 1;
// Parse the MADT entries
for (uint8_t *madt_ptr = (uint8_t *)madt->madt_entries_begin;
(uintptr_t)madt_ptr < (uintptr_t)madt + madt->length;
madt_ptr += *(madt_ptr + 1)) {
switch (*madt_ptr) {
case 0: {
// Processor local xAPIC
if (x2apic)
continue;
struct madt_lapic *lapic = (void *)madt_ptr;
// Do not try to restart the BSP
if (lapic->lapic_id == 0)
continue;
// Check if we can actually try to start the AP
if (!((lapic->flags & 1) ^ ((lapic->flags >> 1) & 1)))
continue;
print("smp: Found candidate AP for bring-up. LAPIC ID: %u\n", lapic->lapic_id);
struct smp_information *info_struct =
balloc_aligned(sizeof(struct smp_information), 1);
info_struct->acpi_processor_uid = lapic->acpi_processor_uid;
info_struct->lapic_id = lapic->lapic_id;
2020-09-18 15:39:29 +03:00
// Try to start the AP
if (!smp_start_ap(lapic->lapic_id, &gdtr, info_struct,
longmode ? 1 : 0, (uint32_t)pagemap.top_level)) {
print("smp: FAILED to bring-up AP\n");
brewind(sizeof(struct smp_information));
continue;
}
(*cpu_count)++;
break;
}
}
}
return ret;
}