tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / mainboard / asrock / 939a785gmh / acpi_tables.c
blobb47c4790f350f7a7c61729576509a4b08d32d052
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2010 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 <console/console.h>
17 #include <string.h>
18 #include <arch/acpi.h>
19 #include <arch/ioapic.h>
20 #include <device/pci.h>
21 #include <device/pci_ids.h>
22 #include <cpu/x86/msr.h>
23 #include <cpu/amd/mtrr.h>
24 #include <cpu/amd/amdk8_sysconf.h>
25 #include "northbridge/amd/amdk8/acpi.h"
26 #include <arch/cpu.h>
27 #include <cpu/amd/powernow.h>
28 #include <southbridge/amd/sb700/sb700.h>
30 unsigned long acpi_fill_madt(unsigned long current)
32 get_bus_conf();
34 /* create all subtables for processors */
35 current = acpi_create_madt_lapics(current);
37 /* Write SB700 IOAPIC, only one */
38 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 2,
39 IO_APIC_ADDR, 0);
41 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
42 current, 0, 0, 2, 0);
43 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
44 current, 0, 9, 9, 0xF);
45 /* 0: mean bus 0--->ISA */
46 /* 0: PIC 0 */
47 /* 2: APIC 2 */
48 /* 5 mean: 0101 --> Edge-triggered, Active high */
50 /* create all subtables for processors */
51 /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
52 /* 1: LINT1 connect to NMI */
54 return current;