blob: a9026531fd00e5bdcdd9f8fce5879cb1cf6a22f4 [file] [log] [blame]
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 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.
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +020014 */
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>
Kyösti Mälkkif09e6d42015-01-10 12:13:23 +020023#include <cpu/amd/amdfam14.h>
24
25
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,
33 CONFIG_MAX_CPUS, IO_APIC_ADDR, 0);
34
35 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
36 current, 0, 0, 2, 0);
37 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
38 current, 0, 9, 9, 0xF);
39
40 /* 0: mean bus 0--->ISA */
41 /* 0: PIC 0 */
42 /* 2: APIC 2 */
43 /* 5 mean: 0101 --> Edge-triggered, Active high */
44
45 /* create all subtables for processors */
46 /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
47 /* 1: LINT1 connect to NMI */
48
49 return current;
50}