blob: 6cb76ac3088e0bfaa3c12f3be3f7a3fc542e4b36 [file] [log] [blame]
Angel Pons89ab2502020-04-03 01:22:28 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Sven Schnelled8129f92011-04-20 09:12:17 +00003
4#include <device/device.h>
Sven Schnelled8129f92011-04-20 09:12:17 +00005#include <arch/smp/mpspec.h>
6#include <arch/ioapic.h>
Sven Schnelled8129f92011-04-20 09:12:17 +00007#include <stdint.h>
8
9static void *smp_write_config_table(void *v)
10{
Elyes HAOUAS8da96e52016-09-22 21:20:54 +020011 struct mp_config_table *mc;
Sven Schnelled8129f92011-04-20 09:12:17 +000012 int isa_bus;
13
Elyes HAOUAS8da96e52016-09-22 21:20:54 +020014 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Sven Schnelled8129f92011-04-20 09:12:17 +000015
Patrick Georgic8feedd2012-02-16 18:43:25 +010016 mptable_init(mc, LOCAL_APIC_ADDR);
Sven Schnelled8129f92011-04-20 09:12:17 +000017
Elyes HAOUAS8da96e52016-09-22 21:20:54 +020018 smp_write_processors(mc);
Sven Schnelled8129f92011-04-20 09:12:17 +000019
20 mptable_write_buses(mc, NULL, &isa_bus);
21
22 /* I/O APICs: APIC ID Version State Address */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080023 smp_write_ioapic(mc, 2, 0x20, VIO_APIC_VADDR);
Sven Schnelled8129f92011-04-20 09:12:17 +000024
25 /* Legacy Interrupts */
26 mptable_add_isa_interrupts(mc, isa_bus, 0x2, 0);
27
28 smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, isa_bus, 0x00, MP_APIC_ALL, 0x00);
29 smp_write_intsrc(mc, mp_NMI, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT, isa_bus, 0x00, MP_APIC_ALL, 0x01);
Kyösti Mälkkic32a92e2019-01-04 06:02:22 +020030 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x01, 0x00, 0x02, 0x10); /* PCIe root 0.01.0 */
31 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x02, 0x00, 0x02, 0x10); /* VGA 0.02.0 */
32 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1b, 0x00, 0x02, 0x11); /* HD Audio 0:1b.0 */
33 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1c, 0x00, 0x02, 0x14); /* PCIe 0:1c.0 */
34 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1c, 0x01, 0x02, 0x15); /* PCIe 0:1c.1 */
35 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1c, 0x02, 0x02, 0x16); /* PCIe 0:1c.2 */
36 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1c, 0x03, 0x02, 0x17); /* PCIe 0:1c.3 */
37 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1d, 0x00, 0x02, 0x10); /* USB 0:1d.0 */
38 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1d, 0x01, 0x02, 0x11); /* USB 0:1d.1 */
39 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1d, 0x02, 0x02, 0x12); /* USB 0:1d.2 */
40 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1d, 0x03, 0x02, 0x13); /* USB 0:1d.3 */
41 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1f, 0x00, 0x02, 0x17); /* LPC 0:1f.0 */
42 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1f, 0x01, 0x02, 0x10); /* IDE 0:1f.1 */
43 smp_write_pci_intsrc(mc, mp_INT, 0x00, 0x1f, 0x02, 0x02, 0x10); /* SATA 0:1f.2 */
44 smp_write_pci_intsrc(mc, mp_INT, 0x06, 0x00, 0x00, 0x02, 0x10); /* Cardbus 6:00.0 */
Sven Schnelled8129f92011-04-20 09:12:17 +000045
Sven Schnellef03dff72012-06-24 10:02:22 +020046 mptable_lintsrc(mc, isa_bus);
Patrick Georgib0a9c5c2011-10-07 23:01:55 +020047 return mptable_finalize(mc);
Sven Schnelled8129f92011-04-20 09:12:17 +000048}
49
50unsigned long write_smp_table(unsigned long addr)
51{
52 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +020053 v = smp_write_floating_table(addr, 0);
Sven Schnelled8129f92011-04-20 09:12:17 +000054 return (unsigned long)smp_write_config_table(v);
55}