blob: 45b652bd61ff4499e06e60d341ec0bfc53b53e93 [file] [log] [blame]
Vladimir Serbinenko33b535f2014-10-19 10:13:14 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <types.h>
21#include <string.h>
22#include <cbmem.h>
23#include <console/console.h>
24#include <arch/acpi.h>
25#include <arch/ioapic.h>
26#include <arch/acpigen.h>
27#include <arch/smp/mpspec.h>
28
29unsigned long acpi_fill_madt(unsigned long current)
30{
31 /* Local APICs */
32 current = acpi_create_madt_lapics(current);
33
34 /* IOAPIC */
35 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
36 2, IO_APIC_ADDR, 0);
37
38 /* INT_SRC_OVR */
39 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
40 current, 0, 0, 2, 0);
41 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
42 current, 0, 9, 9, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH);
43
44 return current;
45}