agesa and binaryPI mainboards: Fix devicetree hudson comments
[coreboot.git] / src / mainboard / amd / parmer / acpi_tables.c
bloba902badda3ea607e5ddb95d7ce304fddc05f3871
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2012 Advanced Micro Devices, Inc.
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.
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.
16 #include <northbridge/amd/agesa/agesawrapper.h>
18 #include <console/console.h>
19 #include <string.h>
20 #include <arch/acpi.h>
21 #include <arch/acpigen.h>
22 #include <arch/ioapic.h>
23 #include <device/pci.h>
24 #include <device/pci_ids.h>
25 #include <cpu/amd/amdfam15.h>
27 unsigned long acpi_fill_madt(unsigned long current)
29 /* create all subtables for processors */
30 current = acpi_create_madt_lapics(current);
32 /* Write Hudson IOAPIC, only one */
33 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, CONFIG_MAX_CPUS,
34 IO_APIC_ADDR, 0);
36 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
37 current, 0, 0, 2, 0);
38 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
39 current, 0, 9, 9, 0xF);
40 /* 0: mean bus 0--->ISA */
41 /* 0: PIC 0 */
42 /* 2: APIC 2 */
43 /* 5 mean: 0101 --> Edge-triggered, Active high */
45 /* create all subtables for processors */
46 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current, 0xff, 5, 1);
47 /* 1: LINT1 connect to NMI */
49 return current;