blob: fc6a56a26091252340eb50a97be793bd4e8f7272 [file] [log] [blame]
Stefan Reinaueraeba92a2009-04-17 08:37:18 +00001/*
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
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000015 */
16
17#include <device/device.h>
18#include <device/pci.h>
19#include <arch/smp/mpspec.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000020#include <arch/ioapic.h>
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000021#include <cpu/x86/lapic.h>
22#include <console/console.h>
23#include <string.h>
24#include <stdint.h>
25
Myles Watson08e0fb82010-03-22 16:33:25 +000026static void *smp_write_config_table(void *v)
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000027{
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000028 struct mp_config_table *mc;
Patrick Georgi20979582010-09-24 18:42:56 +000029 int isa_bus;
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000030
31 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000032
Patrick Georgic8feedd2012-02-16 18:43:25 +010033 mptable_init(mc, LOCAL_APIC_ADDR);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000034
35 smp_write_processors(mc);
Patrick Georgi20979582010-09-24 18:42:56 +000036 mptable_write_buses(mc, NULL, &isa_bus);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000037
38 /* I/O APICs: APIC ID Version State Address */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080039 smp_write_ioapic(mc, 2, 17, VIO_APIC_VADDR);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000040
Patrick Georgi20979582010-09-24 18:42:56 +000041 mptable_add_isa_interrupts(mc, isa_bus, 0x2, 0);
Patrick Georgic5b87c82010-05-20 15:28:19 +000042
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000043 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
44 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, 0x0, 0x40, 0x2, 0x14);
45 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, 0x0, 0x41, 0x2, 0x16);
46 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, 0x0, 0x42, 0x2, 0x15);
47 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, 0x0, 0x43, 0x2, 0x17);
48 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, 0x80, 0x4, 0x2, 0x11);
49 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, 0x1, 0x0, 0x2, 0x11);
50 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, 0x2, 0x10, 0x2, 0x11);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000051
52 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
Patrick Georgi6eb7a532011-10-07 21:42:52 +020053 mptable_lintsrc(mc, 0x0);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000054
55 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +020056 return mptable_finalize(mc);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000057}
58
59unsigned long write_smp_table(unsigned long addr)
60{
61 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +020062 v = smp_write_floating_table(addr, 0);
Stefan Reinaueraeba92a2009-04-17 08:37:18 +000063 return (unsigned long)smp_write_config_table(v);
64}