blob: 2b05888eb70ee54f545f03f9b0ea14b1cd1e00f3 [file] [log] [blame]
Rudolf Marek133647a2010-04-05 19:47:34 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Rudolf Marek133647a2010-04-05 19:47:34 +000018 */
19
20#include <console/console.h>
21#include <string.h>
22#include <arch/acpi.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000023#include <arch/ioapic.h>
Rudolf Marek133647a2010-04-05 19:47:34 +000024#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <cpu/x86/msr.h>
27#include <cpu/amd/mtrr.h>
28#include <cpu/amd/amdk8_sysconf.h>
stepan8301d832010-12-08 07:07:33 +000029#include "northbridge/amd/amdk8/acpi.h"
Rudolf Marek133647a2010-04-05 19:47:34 +000030#include <arch/cpu.h>
31#include <cpu/amd/model_fxx_powernow.h>
Rudolf Marek33109342010-12-11 22:26:10 +000032#include <southbridge/amd/sb700/sb700.h>
Rudolf Marek133647a2010-04-05 19:47:34 +000033
Rudolf Marek133647a2010-04-05 19:47:34 +000034unsigned long acpi_fill_madt(unsigned long current)
35{
Vladimir Serbinenko6985d4e2014-09-21 14:31:19 +020036 get_bus_conf();
37
Rudolf Marek133647a2010-04-05 19:47:34 +000038 /* create all subtables for processors */
39 current = acpi_create_madt_lapics(current);
40
41 /* Write SB700 IOAPIC, only one */
42 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 2,
43 IO_APIC_ADDR, 0);
44
45 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
46 current, 0, 0, 2, 0);
47 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
48 current, 0, 9, 9, 0xF);
49 /* 0: mean bus 0--->ISA */
50 /* 0: PIC 0 */
51 /* 2: APIC 2 */
Kyösti Mälkkid8747572014-06-26 05:30:54 +030052 /* 5 mean: 0101 --> Edge-triggered, Active high */
Rudolf Marek133647a2010-04-05 19:47:34 +000053
54 /* create all subtables for processors */
55 /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
56 /* 1: LINT1 connect to NMI */
57
58 return current;
59}