blob: 9b92c053368982268bb937c8c85de257048278ba [file] [log] [blame]
Frank Vibrans69da1b62011-02-14 19:04:45 +00001/*
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
Marc Jones522ba282012-01-03 16:02:07 -070012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Frank Vibrans69da1b62011-02-14 19:04:45 +000013 * GNU General Public License for more details.
Frank Vibrans69da1b62011-02-14 19:04:45 +000014 */
15
16#include <console/console.h>
17#include <string.h>
18#include <arch/acpi.h>
Marc Jones7bfd22e2011-12-12 22:04:25 -070019#include <arch/acpigen.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000020#include <arch/ioapic.h>
21#include <device/pci.h>
22#include <device/pci_ids.h>
23#include <cpu/x86/msr.h>
Kyösti Mälkkif21c2ac2014-10-19 09:35:18 +030024#include <northbridge/amd/agesa/agesawrapper.h>
efdesign98d7a696d2011-09-15 15:24:26 -060025#include <cpu/amd/mtrr.h>
26#include <cpu/amd/amdfam14.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000027
Frank Vibrans69da1b62011-02-14 19:04:45 +000028
Frank Vibrans69da1b62011-02-14 19:04:45 +000029unsigned long acpi_fill_madt(unsigned long current)
30{
Marc Jones36abff12011-11-07 23:26:14 -070031 /* create all subtables for processors */
32 current = acpi_create_madt_lapics(current);
Frank Vibrans69da1b62011-02-14 19:04:45 +000033
Marc Jones36abff12011-11-07 23:26:14 -070034 /* Write SB800 IOAPIC, only one */
35 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
Paul Menzel2872f4e2013-02-21 13:10:24 +010036 CONFIG_MAX_CPUS, IO_APIC_ADDR, 0);
Frank Vibrans69da1b62011-02-14 19:04:45 +000037
Marc Jones36abff12011-11-07 23:26:14 -070038 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
39 current, 0, 0, 2, 0);
40 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
41 current, 0, 9, 9, 0xF);
Frank Vibrans69da1b62011-02-14 19:04:45 +000042
Marc Jones36abff12011-11-07 23:26:14 -070043 /* 0: mean bus 0--->ISA */
44 /* 0: PIC 0 */
45 /* 2: APIC 2 */
Kyösti Mälkkid8747572014-06-26 05:30:54 +030046 /* 5 mean: 0101 --> Edge-triggered, Active high */
Frank Vibrans69da1b62011-02-14 19:04:45 +000047
Marc Jones36abff12011-11-07 23:26:14 -070048 /* create all subtables for processors */
49 /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
50 /* 1: LINT1 connect to NMI */
51
52 return current;
Frank Vibrans69da1b62011-02-14 19:04:45 +000053}