blob: 943a461e624163bf85157eb3feff5a820c5fcdae [file] [log] [blame]
Dave Frodinc43bce52014-12-03 08:22:46 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Dave Frodinc43bce52014-12-03 08:22:46 -070014 */
15
16#include <console/console.h>
17#include <string.h>
18#include <arch/acpi.h>
19#include <arch/acpigen.h>
20#include <arch/ioapic.h>
21#include <device/pci.h>
22#include <device/pci_ids.h>
Dave Frodinc43bce52014-12-03 08:22:46 -070023#include <cpu/amd/amdfam16.h>
24
Dave Frodinc43bce52014-12-03 08:22:46 -070025
26unsigned long acpi_fill_madt(unsigned long current)
27{
28 /* create all subtables for processors */
29 current = acpi_create_madt_lapics(current);
30
31 /* Write SB800 IOAPIC, only one */
32 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, CONFIG_MAX_CPUS,
33 IO_APIC_ADDR, 0);
34
35 /* TODO: Remove the hardcode */
36 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, CONFIG_MAX_CPUS+1,
37 0xFEC20000, 24);
38
39 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
40 current, 0, 0, 2, 0);
41 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
42 current, 0, 9, 9, 0xF);
43 /* 0: mean bus 0--->ISA */
44 /* 0: PIC 0 */
45 /* 2: APIC 2 */
46 /* 5 mean: 0101 --> Edge-triggered, Active high */
47
48 /* create all subtables for processors */
49 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current, 0xff, 5, 1);
50 /* 1: LINT1 connect to NMI */
51
52 return current;
53}