blob: fc0a2eb508f8b72f34230bced479d8a1bc45f386 [file] [log] [blame]
Maggie Li19ead962008-12-09 21:52:42 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 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.
Maggie Li19ead962008-12-09 21:52:42 +000014 */
15
16#include <console/console.h>
17#include <string.h>
18#include <arch/acpi.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000019#include <arch/ioapic.h>
Maggie Li19ead962008-12-09 21:52:42 +000020#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>
stepan8301d832010-12-08 07:07:33 +000025#include "northbridge/amd/amdk8/acpi.h"
Maggie Li19ead962008-12-09 21:52:42 +000026#include <arch/cpu.h>
Vladimir Serbinenko47432542014-10-05 14:54:26 +020027#include <cpu/amd/powernow.h>
Rudolf Marekfe849b2f2009-02-19 08:39:16 +000028
Maggie Li19ead962008-12-09 21:52:42 +000029unsigned long acpi_fill_madt(unsigned long current)
30{
Vladimir Serbinenko6985d4e2014-09-21 14:31:19 +020031 get_bus_conf();
32
Maggie Li19ead962008-12-09 21:52:42 +000033 /* create all subtables for processors */
34 current = acpi_create_madt_lapics(current);
35
36 /* Write SB600 IOAPIC, only one */
37 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 2,
38 IO_APIC_ADDR, 0);
39
40 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
41 current, 0, 0, 2, 0);
42 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
43 current, 0, 9, 9, 0xF);
44 /* 0: mean bus 0--->ISA */
45 /* 0: PIC 0 */
46 /* 2: APIC 2 */
Kyösti Mälkkid8747572014-06-26 05:30:54 +030047 /* 5 mean: 0101 --> Edge-triggered, Active high */
Maggie Li19ead962008-12-09 21:52:42 +000048
49 /* create all subtables for processors */
50 /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
51 /* 1: LINT1 connect to NMI */
52
53 return current;
54}