Unify Local APIC address definitions
[coreboot.git] / src / mainboard / kontron / 986lcd-m / mptable.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2008 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 <device/device.h>
21 #include <device/pci.h>
22 #include <console/console.h>
23 #include <arch/smp/mpspec.h>
24 #include <arch/ioapic.h>
25 #include <string.h>
26 #include <stdint.h>
27
28 static void *smp_write_config_table(void *v)
29 {
30         struct mp_config_table *mc;
31         struct device *riser = NULL, *firewire = NULL;
32         int firewire_bus = 0, riser_bus = 0, isa_bus;
33         int ioapic_id;
34
35         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
36
37         mptable_init(mc, LOCAL_APIC_ADDR);
38
39         smp_write_processors(mc);
40
41         firewire = dev_find_device(0x104c, 0x8023, 0);
42         if (firewire) {
43                 firewire_bus = firewire->bus->secondary;
44         }
45
46         // If a riser card is used, this riser is detected on bus 4, so its secondary bus is the
47         // highest bus number on the pci bus.
48         riser = dev_find_device(0x3388, 0x0021, 0);
49         if (!riser)
50                 riser = dev_find_device(0x3388, 0x0022, 0);
51         if (riser) {
52                 riser_bus = riser->link_list->secondary;
53         }
54
55         mptable_write_buses(mc, NULL, &isa_bus);
56
57         /* I/O APICs:   APIC ID Version State           Address */
58         ioapic_id = 2;
59         smp_write_ioapic(mc, ioapic_id, 0x20, IO_APIC_ADDR);
60
61         /* Legacy Interrupts */
62         mptable_add_isa_interrupts(mc, isa_bus, ioapic_id, 0);
63
64         /* Builtin devices on Bus 0 */
65         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x4, ioapic_id, 0x10);
66         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x8, ioapic_id, 0x10);
67         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x7d, ioapic_id, 0x13);
68         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x74, ioapic_id, 0x17);
69         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x75, ioapic_id, 0x13);
70         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x76, ioapic_id, 0x12);
71         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x77, ioapic_id, 0x10);
72         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x6c, ioapic_id, 0x10);
73         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x70, ioapic_id, 0x10);
74         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x0, 0x71, ioapic_id, 0x11);
75
76         /* Internal PCI bus (Firewire, PCI slot) */
77         if (firewire) {
78                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, firewire_bus, 0x0, ioapic_id, 0x10);
79                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, firewire_bus, 0x4, ioapic_id, 0x14);
80         }
81
82         if (riser) {
83                 /* Old riser card */
84                 // riser slot top 5:8.0
85                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, riser_bus, 0x20, ioapic_id, 0x14);
86                 // riser slot middle 5:9.0
87                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, riser_bus, 0x24, ioapic_id, 0x15);
88                 // riser slot bottom 5:a.0
89                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, riser_bus, 0x28, ioapic_id, 0x16);
90
91                 /* New Riser Card */
92                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, riser_bus, 0x30, ioapic_id, 0x14);
93                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, riser_bus, 0x34, ioapic_id, 0x15);
94                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, riser_bus, 0x38, ioapic_id, 0x16);
95         }
96
97         /* PCIe slot */
98         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x1, 0x0, ioapic_id, 0x10);
99         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x1, 0x1, ioapic_id, 0x11);
100
101         /* Onboard Ethernet */
102         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, 0x2, 0x0, ioapic_id, 0x10);
103
104         /* Local Ints:  Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN# */
105         mptable_lintsrc(mc, isa_bus);
106
107         /* Compute the checksums */
108         return mptable_finalize(mc);
109 }
110
111 unsigned long write_smp_table(unsigned long addr)
112 {
113         void *v;
114         v = smp_write_floating_table(addr, 1);
115         return (unsigned long)smp_write_config_table(v);
116 }