mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Stops Linux from complaining: [0.097286] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0 [0.100005] ..MP-BIOS bug: 8254 timer not connected to IO-APIC [0.100005] ...trying to set up timer (IRQ0) through the 8259A ... [0.100005] ..... (found apic 0 pin 0) ... [0.143507] ....... works. Change-Id: Ic09a6940f80e3da2c1f3c0ef04fb50a4096b7943 Signed-off-by: Jonathan A. Kollasch <jakllsch@kollasch.net> Reviewed-on: http://review.coreboot.org/10642 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
/*
|
|
* ACPI support
|
|
* written by Stefan Reinauer <stepan@openbios.org>
|
|
* (C) 2005 Stefan Reinauer
|
|
*
|
|
*
|
|
* Copyright 2005 AMD
|
|
* 2005.9 yhlu modify that to more dynamic for AMD Opteron Based MB
|
|
*/
|
|
|
|
#include <arch/acpi.h>
|
|
#include <arch/smp/mpspec.h>
|
|
#include <device/pci.h>
|
|
#include <assert.h>
|
|
|
|
/* APIC */
|
|
unsigned long acpi_fill_madt(unsigned long current)
|
|
{
|
|
device_t dev;
|
|
struct resource *res;
|
|
|
|
/* create all subtables for processors */
|
|
current = acpi_create_madt_lapics(current);
|
|
|
|
/* Write NVIDIA CK804 IOAPIC. */
|
|
dev = dev_find_slot(0x0, PCI_DEVFN(0x1,0));
|
|
ASSERT(dev != NULL);
|
|
|
|
res = find_resource(dev, PCI_BASE_ADDRESS_1);
|
|
ASSERT(res != NULL);
|
|
|
|
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *)current,
|
|
CONFIG_MAX_CPUS * CONFIG_MAX_PHYSICAL_CPUS, res->base, 0);
|
|
|
|
/* Initialize interrupt mapping if mptable.c didn't. */
|
|
#if (!CONFIG_GENERATE_MP_TABLE)
|
|
#error untested config
|
|
pci_write_config32(dev, 0x7c, 0x0120d218);
|
|
pci_write_config32(dev, 0x80, 0x12008a00);
|
|
pci_write_config32(dev, 0x84, 0x0000007d);
|
|
#endif
|
|
|
|
/* IRQ9 */
|
|
current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
|
|
current, 0, 9, 9, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW);
|
|
|
|
/* create all subtables for processors */
|
|
/* acpi_create_madt_lapic_nmis returns current, not size. */
|
|
current = acpi_create_madt_lapic_nmis(current,
|
|
MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, 1);
|
|
|
|
return current;
|
|
}
|