blob: 83daa6eb38b71acc5b6ec89ea5fed2d5959d6f8d [file] [log] [blame]
Scott Duplichana649a962011-02-24 05:00:33 +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
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Scott Duplichana649a962011-02-24 05:00:33 +000014 */
15
Edward O'Callaghanb53b50b2014-04-29 20:26:02 +100016
Scott Duplichana649a962011-02-24 05:00:33 +000017#include <arch/acpi.h>
zbao585a4002012-04-12 11:27:26 +080018#include <arch/acpigen.h>
Scott Duplichana649a962011-02-24 05:00:33 +000019#include <arch/ioapic.h>
Edward O'Callaghanb53b50b2014-04-29 20:26:02 +100020#include <console/console.h>
21#include <cpu/amd/amdfam14.h>
Scott Duplichana649a962011-02-24 05:00:33 +000022#include <device/pci.h>
23#include <device/pci_ids.h>
Edward O'Callaghanb53b50b2014-04-29 20:26:02 +100024#include <string.h>
Scott Duplichana649a962011-02-24 05:00:33 +000025
Scott Duplichana649a962011-02-24 05:00:33 +000026unsigned long acpi_fill_madt(unsigned long current)
27{
Marc Jones522ba282012-01-03 16:02:07 -070028 /* create all subtables for processors */
29 current = acpi_create_madt_lapics(current);
Scott Duplichana649a962011-02-24 05:00:33 +000030
Marc Jones522ba282012-01-03 16:02:07 -070031 /* Write SB800 IOAPIC, only one */
32 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
Paul Menzel2872f4e2013-02-21 13:10:24 +010033 CONFIG_MAX_CPUS, IO_APIC_ADDR, 0);
Scott Duplichana649a962011-02-24 05:00:33 +000034
Marc Jones522ba282012-01-03 16:02:07 -070035 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
36 current, 0, 0, 2, 0);
37 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
38 current, 0, 9, 9, 0xF);
Scott Duplichana649a962011-02-24 05:00:33 +000039
Marc Jones522ba282012-01-03 16:02:07 -070040 /* 0: mean bus 0--->ISA */
41 /* 0: PIC 0 */
42 /* 2: APIC 2 */
Kyösti Mälkkid8747572014-06-26 05:30:54 +030043 /* 5 mean: 0101 --> Edge-triggered, Active high */
Scott Duplichana649a962011-02-24 05:00:33 +000044
Marc Jones522ba282012-01-03 16:02:07 -070045 /* create all subtables for processors */
46 /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
47 /* 1: LINT1 connect to NMI */
48
49 return current;
Scott Duplichana649a962011-02-24 05:00:33 +000050}