blob: 597ce5f634a261af360a28d0366186168d4f0d0a [file] [log] [blame]
Zheng Bao584ab842010-03-16 01:53:10 +00001/*
2 * This file is part of the coreboot project.
3 *
Marc Jones94fa3db2012-01-13 14:39:48 -07004 * Copyright (C) 2010-2011 Advanced Micro Devices, Inc.
Zheng Bao584ab842010-03-16 01:53:10 +00005 *
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.
Zheng Bao584ab842010-03-16 01:53:10 +000014 */
15
16#include <console/console.h>
17#include <string.h>
18#include <arch/acpi.h>
Marc Jones94fa3db2012-01-13 14:39:48 -070019#include <arch/acpigen.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000020#include <arch/ioapic.h>
Zheng Bao584ab842010-03-16 01:53:10 +000021#include <device/pci.h>
22#include <device/pci_ids.h>
23#include <cpu/x86/msr.h>
24#include <cpu/amd/mtrr.h>
25#include <cpu/amd/amdfam10_sysconf.h>
Zheng Bao584ab842010-03-16 01:53:10 +000026#include "mb_sysconf.h"
27
Zheng Bao584ab842010-03-16 01:53:10 +000028unsigned long acpi_fill_madt(unsigned long current)
29{
30 /* create all subtables for processors */
31 current = acpi_create_madt_lapics(current);
32
33 /* Write SB700 IOAPIC, only one */
Marc Jones94fa3db2012-01-13 14:39:48 -070034 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
35 CONFIG_MAX_CPUS, IO_APIC_ADDR, 0);
Zheng Bao584ab842010-03-16 01:53:10 +000036
37 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
38 current, 0, 0, 2, 0);
39 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
40 current, 0, 9, 9, 0xF);
41 /* 0: mean bus 0--->ISA */
42 /* 0: PIC 0 */
43 /* 2: APIC 2 */
Kyösti Mälkkid8747572014-06-26 05:30:54 +030044 /* 5 mean: 0101 --> Edge-triggered, Active high */
Zheng Bao584ab842010-03-16 01:53:10 +000045
46 /* create all subtables for processors */
47 /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
48 /* 1: LINT1 connect to NMI */
49
50 return current;
51}