/* * hal_lapic.c - Local APIC * * Copyright (c) 2017 Maxime Villard * * This file is part of ALMOS-MKH. * * ALMOS-MKH is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2.0 of the License. * * ALMOS-MKH is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ALMOS-MKH.; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #include #include #include #include #include #include #include #include #include paddr_t lapic_pa __in_kdata = 0; vaddr_t lapic_va __in_kdata = 0; void hal_lapic_write(uint32_t reg, uint32_t val) { *((volatile uint32_t *)(lapic_va + reg)) = val; } uint32_t hal_lapic_read(uint32_t reg) { return *((volatile uint32_t *)(lapic_va + reg)); } uint32_t hal_lapic_gid() { return hal_lapic_read(LAPIC_ID) >> LAPIC_ID_SHIFT; } void hal_lapic_init() { lapic_va = hal_gpt_bootstrap_valloc(1); // XXX: should be shared hal_gpt_enter(lapic_va, lapic_pa); hal_lapic_write(LAPIC_TPR, 0); hal_lapic_write(LAPIC_SVR, LAPIC_SVR_ENABLE|LAPIC_SPURIOUS_VECTOR); }