blob: f01de735833cf65c7a66663d462f79c0a6a4c940 [file] [log] [blame]
zbao323a9232012-07-19 16:39:01 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 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.
zbao323a9232012-07-19 16:39:01 +080014 */
15
Kyösti Mälkkif21c2ac2014-10-19 09:35:18 +030016#include <northbridge/amd/agesa/agesawrapper.h>
Kyösti Mälkki526c2fb2014-07-10 22:16:58 +030017
zbao323a9232012-07-19 16:39:01 +080018#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/x86/msr.h>
zbao323a9232012-07-19 16:39:01 +080026#include <cpu/amd/mtrr.h>
27#include <cpu/amd/amdfam15.h>
28
zbao323a9232012-07-19 16:39:01 +080029unsigned long acpi_fill_madt(unsigned long current)
30{
31 /* create all subtables for processors */
32 current = acpi_create_madt_lapics(current);
33
Martin Rothf5726ea2013-01-18 12:55:40 -070034 /* Write Hudson IOAPIC, only one */
zbao323a9232012-07-19 16:39:01 +080035 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, CONFIG_MAX_CPUS,
36 IO_APIC_ADDR, 0);
37
38 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);
42 /* 0: mean bus 0--->ISA */
43 /* 0: PIC 0 */
44 /* 2: APIC 2 */
Kyösti Mälkkid8747572014-06-26 05:30:54 +030045 /* 5 mean: 0101 --> Edge-triggered, Active high */
zbao323a9232012-07-19 16:39:01 +080046
47 /* create all subtables for processors */
zbao15945442012-08-03 11:47:53 +080048 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current, 0xff, 5, 1);
zbao323a9232012-07-19 16:39:01 +080049 /* 1: LINT1 connect to NMI */
50
51 return current;
52}