6b5bc77c9b
Stefan thinks they don't add value. Command used: sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool) The exceptions are for: - crossgcc (patch file) - gcov (imported from gcc) - elf.h (imported from GNU's libc) - nvramtool (more complicated header) The removed lines are: - fmt.Fprintln(f, "/* This file is part of the coreboot project. */") -# This file is part of a set of unofficial pre-commit hooks available -/* This file is part of coreboot */ -# This file is part of msrtool. -/* This file is part of msrtool. */ - * This file is part of ncurses, designed to be appended after curses.h.in -/* This file is part of pgtblgen. */ - * This file is part of the coreboot project. - /* This file is part of the coreboot project. */ -# This file is part of the coreboot project. -# This file is part of the coreboot project. -## This file is part of the coreboot project. --- This file is part of the coreboot project. -/* This file is part of the coreboot project */ -/* This file is part of the coreboot project. */ -;## This file is part of the coreboot project. -# This file is part of the coreboot project. It originated in the - * This file is part of the coreinfo project. -## This file is part of the coreinfo project. - * This file is part of the depthcharge project. -/* This file is part of the depthcharge project. */ -/* This file is part of the ectool project. */ - * This file is part of the GNU C Library. - * This file is part of the libpayload project. -## This file is part of the libpayload project. -/* This file is part of the Linux kernel. */ -## This file is part of the superiotool project. -/* This file is part of the superiotool project */ -/* This file is part of uio_usbdebug */ Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
136 lines
3.6 KiB
C
136 lines
3.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <device/mmio.h>
|
|
#include <arch/ioapic.h>
|
|
#include <console/console.h>
|
|
#include <cpu/x86/lapic.h>
|
|
|
|
u32 io_apic_read(void *ioapic_base, u32 reg)
|
|
{
|
|
write32(ioapic_base, reg);
|
|
return read32(ioapic_base + 0x10);
|
|
}
|
|
|
|
void io_apic_write(void *ioapic_base, u32 reg, u32 value)
|
|
{
|
|
write32(ioapic_base, reg);
|
|
write32(ioapic_base + 0x10, value);
|
|
}
|
|
|
|
static int ioapic_interrupt_count(void *ioapic_base)
|
|
{
|
|
/* Read the available number of interrupts. */
|
|
int ioapic_interrupts = (io_apic_read(ioapic_base, 0x01) >> 16) & 0xff;
|
|
if (ioapic_interrupts == 0xff)
|
|
ioapic_interrupts = 23;
|
|
ioapic_interrupts += 1; /* Bits 23-16 specify the maximum redirection
|
|
entry, which is the number of interrupts
|
|
minus 1. */
|
|
printk(BIOS_DEBUG, "IOAPIC: %d interrupts\n", ioapic_interrupts);
|
|
|
|
return ioapic_interrupts;
|
|
}
|
|
|
|
void clear_ioapic(void *ioapic_base)
|
|
{
|
|
u32 low, high;
|
|
u32 i, ioapic_interrupts;
|
|
|
|
printk(BIOS_DEBUG, "IOAPIC: Clearing IOAPIC at %p\n", ioapic_base);
|
|
|
|
ioapic_interrupts = ioapic_interrupt_count(ioapic_base);
|
|
|
|
low = INT_DISABLED;
|
|
high = NONE;
|
|
|
|
for (i = 0; i < ioapic_interrupts; i++) {
|
|
io_apic_write(ioapic_base, i * 2 + 0x10, low);
|
|
io_apic_write(ioapic_base, i * 2 + 0x11, high);
|
|
|
|
printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
|
|
i, high, low);
|
|
}
|
|
|
|
if (io_apic_read(ioapic_base, 0x10) == 0xffffffff) {
|
|
printk(BIOS_WARNING, "IOAPIC not responding.\n");
|
|
return;
|
|
}
|
|
}
|
|
|
|
void set_ioapic_id(void *ioapic_base, u8 ioapic_id)
|
|
{
|
|
u32 bsp_lapicid = lapicid();
|
|
int i;
|
|
|
|
printk(BIOS_DEBUG, "IOAPIC: Initializing IOAPIC at %p\n",
|
|
ioapic_base);
|
|
printk(BIOS_DEBUG, "IOAPIC: Bootstrap Processor Local APIC = 0x%02x\n",
|
|
bsp_lapicid);
|
|
|
|
if (ioapic_id) {
|
|
printk(BIOS_DEBUG, "IOAPIC: ID = 0x%02x\n", ioapic_id);
|
|
/* Set IOAPIC ID if it has been specified. */
|
|
io_apic_write(ioapic_base, 0x00,
|
|
(io_apic_read(ioapic_base, 0x00) & 0xf0ffffff) |
|
|
(ioapic_id << 24));
|
|
}
|
|
|
|
printk(BIOS_SPEW, "IOAPIC: Dumping registers\n");
|
|
for (i = 0; i < 3; i++)
|
|
printk(BIOS_SPEW, " reg 0x%04x: 0x%08x\n", i,
|
|
io_apic_read(ioapic_base, i));
|
|
|
|
}
|
|
|
|
static void load_vectors(void *ioapic_base)
|
|
{
|
|
u32 bsp_lapicid = lapicid();
|
|
u32 low, high;
|
|
u32 i, ioapic_interrupts;
|
|
|
|
ioapic_interrupts = ioapic_interrupt_count(ioapic_base);
|
|
|
|
if (CONFIG(IOAPIC_INTERRUPTS_ON_FSB)) {
|
|
/*
|
|
* For the Pentium 4 and above APICs deliver their interrupts
|
|
* on the front side bus, enable that.
|
|
*/
|
|
printk(BIOS_DEBUG, "IOAPIC: Enabling interrupts on FSB\n");
|
|
io_apic_write(ioapic_base, 0x03,
|
|
io_apic_read(ioapic_base, 0x03) | (1 << 0));
|
|
} else if (CONFIG(IOAPIC_INTERRUPTS_ON_APIC_SERIAL_BUS)) {
|
|
printk(BIOS_DEBUG,
|
|
"IOAPIC: Enabling interrupts on APIC serial bus\n");
|
|
io_apic_write(ioapic_base, 0x03, 0);
|
|
}
|
|
|
|
/* Enable Virtual Wire Mode. */
|
|
low = INT_ENABLED | TRIGGER_EDGE | POLARITY_HIGH | PHYSICAL_DEST | ExtINT;
|
|
high = bsp_lapicid << (56 - 32);
|
|
|
|
io_apic_write(ioapic_base, 0x10, low);
|
|
io_apic_write(ioapic_base, 0x11, high);
|
|
|
|
if (io_apic_read(ioapic_base, 0x10) == 0xffffffff) {
|
|
printk(BIOS_WARNING, "IOAPIC not responding.\n");
|
|
return;
|
|
}
|
|
|
|
printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
|
|
0, high, low);
|
|
low = INT_DISABLED;
|
|
high = NONE;
|
|
for (i = 1; i < ioapic_interrupts; i++) {
|
|
io_apic_write(ioapic_base, i * 2 + 0x10, low);
|
|
io_apic_write(ioapic_base, i * 2 + 0x11, high);
|
|
|
|
printk(BIOS_SPEW, "IOAPIC: reg 0x%08x value 0x%08x 0x%08x\n",
|
|
i, high, low);
|
|
}
|
|
}
|
|
|
|
void setup_ioapic(void *ioapic_base, u8 ioapic_id)
|
|
{
|
|
set_ioapic_id(ioapic_base, ioapic_id);
|
|
load_vectors(ioapic_base);
|
|
}
|