blob: 6fff9c4275372b356479dd6411cbfc40136f81bb [file] [log] [blame]
Ed Swierkb8e53eb2008-10-13 23:18:56 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Arastra, 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 version 2 as
8 * published by the Free Software Foundation.
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
Ed Swierkb8e53eb2008-10-13 23:18:56 +000018 */
19
20#include <console/console.h>
21#include <arch/smp/mpspec.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000022#include <arch/ioapic.h>
Ed Swierkb8e53eb2008-10-13 23:18:56 +000023#include <device/pci.h>
24#include <string.h>
25#include <stdint.h>
26
Myles Watson08e0fb82010-03-22 16:33:25 +000027static void *smp_write_config_table(void *v)
Ed Swierkb8e53eb2008-10-13 23:18:56 +000028{
Ed Swierkb8e53eb2008-10-13 23:18:56 +000029 struct mp_config_table *mc;
Patrick Georgi7411eab2010-11-22 14:14:56 +000030 int bus_isa;
Ed Swierkb8e53eb2008-10-13 23:18:56 +000031 u8 bus_pea0 = 0;
32 u8 bus_pea1 = 0;
33 u8 bus_aioc;
34 device_t dev;
35
36 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Ed Swierkb8e53eb2008-10-13 23:18:56 +000037
Uwe Hermann55dc2232010-10-25 15:32:07 +000038 mptable_init(mc, "Truxton ", LAPIC_ADDR);
Ed Swierkb8e53eb2008-10-13 23:18:56 +000039
40 smp_write_processors(mc);
41
Ed Swierkb8e53eb2008-10-13 23:18:56 +000042 /* AIOC bridge */
43 dev = dev_find_slot(0, PCI_DEVFN(0x04,0));
44 if (dev) {
45 bus_aioc = pci_read_config8(dev, PCI_SECONDARY_BUS);
Ed Swierkb8e53eb2008-10-13 23:18:56 +000046 }
47 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000048 printk(BIOS_DEBUG, "ERROR - could not find PCI 0:04.0\n");
Ed Swierkb8e53eb2008-10-13 23:18:56 +000049 bus_aioc = 0;
Ed Swierkb8e53eb2008-10-13 23:18:56 +000050 }
51 /* PCIe A0 */
52 dev = dev_find_slot(0, PCI_DEVFN(0x02,0));
53 if (dev) {
54 bus_pea0 = pci_read_config8(dev, PCI_SECONDARY_BUS);
55 }
56 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000057 printk(BIOS_DEBUG, "ERROR - could not find PCI 0:02.0\n");
Ed Swierkb8e53eb2008-10-13 23:18:56 +000058 bus_pea0 = 0;
59 }
60 /* PCIe A1 */
61 dev = dev_find_slot(0, PCI_DEVFN(0x03,0));
62 if (dev) {
63 bus_pea1 = pci_read_config8(dev, PCI_SECONDARY_BUS);
64 }
65 else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000066 printk(BIOS_DEBUG, "ERROR - could not find PCI 0:03.0\n");
Ed Swierkb8e53eb2008-10-13 23:18:56 +000067 bus_pea1 = 0;
68 }
69
Patrick Georgi7411eab2010-11-22 14:14:56 +000070 mptable_write_buses(mc, NULL, &bus_isa);
Ed Swierkb8e53eb2008-10-13 23:18:56 +000071
72 /* IOAPIC handling */
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000073 smp_write_ioapic(mc, 0x8, 0x20, IO_APIC_ADDR);
Ed Swierkb8e53eb2008-10-13 23:18:56 +000074
Patrick Georgic5b87c82010-05-20 15:28:19 +000075 mptable_add_isa_interrupts(mc, bus_isa, 0x8, 0);
Ed Swierkb8e53eb2008-10-13 23:18:56 +000076
77 /* Standard local interrupt assignments */
78 smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
79 bus_isa, 0x00, MP_APIC_ALL, 0x00);
80 smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
81 bus_isa, 0x00, MP_APIC_ALL, 0x01);
82
83 /* IMCH/IICH PCI devices */
84 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
85 0, (0x01<<2)|0, 0x8, 0x10); /* DMA controller */
86 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
87 0, (0x02<<2)|0, 0x8, 0x10); /* PCIe port A bridge */
88 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
89 0, (0x03<<2)|0, 0x8, 0x10); /* PCIe port A1 bridge */
90 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
91 0, (0x04<<2)|0, 0x8, 0x10); /* AIOC PCI bridge */
92 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
93 0, (0x1d<<2)|0, 0x8, 0x10); /* UHCI/EHCI */
94 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,
95 0, (0x1f<<2)|1, 0x8, 0x11); /* SATA/SMBus */
96
97 if (bus_pea0) {
98 /* PCIe slot 0 */
99 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
100 bus_pea0, (0<<2)|0, 0x8, 0x10);
101 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
102 bus_pea0, (0<<2)|1, 0x8, 0x11);
103 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
104 bus_pea0, (0<<2)|2, 0x8, 0x12);
105 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
106 bus_pea0, (0<<2)|3, 0x8, 0x13);
107 }
108
109 if (bus_pea1) {
110 /* PCIe slots 1-4 */
111 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
112 bus_pea1, (0<<2)|0, 0x8, 0x10);
113 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
114 bus_pea1, (0<<2)|1, 0x8, 0x11);
115 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
116 bus_pea1, (0<<2)|2, 0x8, 0x12);
117 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
118 bus_pea1, (0<<2)|3, 0x8, 0x13);
119 }
120
121 if (bus_aioc) {
122 /* AIOC PCI devices */
123 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
124 bus_aioc, (0<<2)|0, 0x8, 0x10); /* GbE0 */
125 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
126 bus_aioc, (1<<2)|0, 0x8, 0x11); /* GbE1 */
127 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT,
128 bus_aioc, (2<<2)|0, 0x8, 0x12); /* GbE2 */
129 }
130
131 /* There is no extension information... */
132
133 /* Compute the checksums */
134 mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
135
136 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000137 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Ed Swierkb8e53eb2008-10-13 23:18:56 +0000138 mc, smp_next_mpe_entry(mc));
139 return smp_next_mpe_entry(mc);
140}
141
142unsigned long write_smp_table(unsigned long addr)
143{
144 void *v;
145 v = smp_write_floating_table(addr);
146 return (unsigned long)smp_write_config_table(v);
147}
148