blob: 988c7f496a4328b54c4d31b7721c624afc2219c3 [file] [log] [blame]
Yinghai Luf55b58d2007-02-17 14:28:11 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Yinghai Luf55b58d2007-02-17 14:28:11 +00003 *
4 * Copyright (C) 2007 AMD
5 * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <console/console.h>
23#include <arch/smp/mpspec.h>
24#include <device/pci.h>
25#include <string.h>
26#include <stdint.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000027#include <cpu/amd/amdk8_sysconf.h>
Yinghai Luf55b58d2007-02-17 14:28:11 +000028#include "mb_sysconf.h"
29
Myles Watson08e0fb82010-03-22 16:33:25 +000030static void *smp_write_config_table(void *v)
Yinghai Luf55b58d2007-02-17 14:28:11 +000031{
Myles Watsona643ea32008-10-06 21:00:46 +000032 struct mp_config_table *mc;
Yinghai Luf55b58d2007-02-17 14:28:11 +000033 struct mb_sysconf_t *m;
34 unsigned sbdn;
Yinghai Luf55b58d2007-02-17 14:28:11 +000035 int i,j;
Yinghai Luf327d9f2008-02-20 17:41:38 +000036 unsigned char apicpin[4];
Yinghai Luf55b58d2007-02-17 14:28:11 +000037
Myles Watsona643ea32008-10-06 21:00:46 +000038 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Yinghai Luf55b58d2007-02-17 14:28:11 +000039
Uwe Hermann55dc2232010-10-25 15:32:07 +000040 mptable_init(mc, "L1_2PVV ", LAPIC_ADDR);
Yinghai Luf55b58d2007-02-17 14:28:11 +000041
Myles Watsona643ea32008-10-06 21:00:46 +000042 smp_write_processors(mc);
Yinghai Luf55b58d2007-02-17 14:28:11 +000043
44 get_bus_conf();
45 sbdn = sysconf.sbdn;
46 m = sysconf.mb;
47
48/*Bus: Bus ID Type*/
49 /* define bus and isa numbers */
Myles Watsona643ea32008-10-06 21:00:46 +000050 for (j = 0; j < 256 ; j++) {
Yinghai Luf327d9f2008-02-20 17:41:38 +000051 if (m->bus_type[j])
Yinghai Luf55b58d2007-02-17 14:28:11 +000052 smp_write_bus(mc, j, "PCI ");
Myles Watsona643ea32008-10-06 21:00:46 +000053 }
54 smp_write_bus(mc, m->bus_isa, "ISA ");
Yinghai Luf55b58d2007-02-17 14:28:11 +000055
56/*I/O APICs: APIC ID Version State Address*/
Myles Watsona643ea32008-10-06 21:00:46 +000057 {
58 device_t dev;
Yinghai Luf55b58d2007-02-17 14:28:11 +000059 struct resource *res;
60 uint32_t dword;
61
Myles Watsona643ea32008-10-06 21:00:46 +000062 dev = dev_find_slot(m->bus_mcp55, PCI_DEVFN(sbdn+ 0x1,0));
63 if (dev) {
Yinghai Luf55b58d2007-02-17 14:28:11 +000064 res = find_resource(dev, PCI_BASE_ADDRESS_1);
Yinghai Luf327d9f2008-02-20 17:41:38 +000065 if (res)
Yinghai Luf55b58d2007-02-17 14:28:11 +000066 smp_write_ioapic(mc, m->apicid_mcp55, 0x11, res->base);
Yinghai Luf327d9f2008-02-20 17:41:38 +000067
68 /* Initialize interrupt mapping*/
69 dword = pci_read_config32(dev, 0x74);
70 dword &= ~(1<<15);
71 dword |= 1<<2;
72 pci_write_config32(dev, 0x74, dword);
Yinghai Luf55b58d2007-02-17 14:28:11 +000073
74 dword = 0x43c6c643;
Yinghai Luf327d9f2008-02-20 17:41:38 +000075 pci_write_config32(dev, 0x7c, dword);
Yinghai Luf55b58d2007-02-17 14:28:11 +000076
Myles Watsona643ea32008-10-06 21:00:46 +000077 dword = 0x81001a00;
78 pci_write_config32(dev, 0x80, dword);
Yinghai Luf55b58d2007-02-17 14:28:11 +000079
Yinghai Luf327d9f2008-02-20 17:41:38 +000080 dword = 0xd00012d2;
Myles Watsona643ea32008-10-06 21:00:46 +000081 pci_write_config32(dev, 0x84, dword);
Yinghai Luf55b58d2007-02-17 14:28:11 +000082
Myles Watsona643ea32008-10-06 21:00:46 +000083 }
Yinghai Luf55b58d2007-02-17 14:28:11 +000084
Yinghai Luf327d9f2008-02-20 17:41:38 +000085 if (m->bus_mcp55b) {
Myles Watsona643ea32008-10-06 21:00:46 +000086 dev = dev_find_slot(m->bus_mcp55b, PCI_DEVFN(m->sbdnb + 0x1,0));
87 if (dev) {
Yinghai Luf55b58d2007-02-17 14:28:11 +000088 res = find_resource(dev, PCI_BASE_ADDRESS_1);
Yinghai Luf327d9f2008-02-20 17:41:38 +000089 if (res)
Yinghai Luf55b58d2007-02-17 14:28:11 +000090 smp_write_ioapic(mc, m->apicid_mcp55b, 0x11, res->base);
Yinghai Luf327d9f2008-02-20 17:41:38 +000091
Yinghai Luf55b58d2007-02-17 14:28:11 +000092 dword = 0x43c60000;
Yinghai Luf327d9f2008-02-20 17:41:38 +000093 pci_write_config32(dev, 0x7c, dword);
Yinghai Luf55b58d2007-02-17 14:28:11 +000094
Myles Watsona643ea32008-10-06 21:00:46 +000095 dword = 0x81000000;
96 pci_write_config32(dev, 0x80, dword);
Yinghai Luf55b58d2007-02-17 14:28:11 +000097
Yinghai Luf327d9f2008-02-20 17:41:38 +000098 dword = 0xd00002d0;
Myles Watsona643ea32008-10-06 21:00:46 +000099 pci_write_config32(dev, 0x84, dword);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000100
Myles Watsona643ea32008-10-06 21:00:46 +0000101 }
Yinghai Luf55b58d2007-02-17 14:28:11 +0000102
103 }
104
105 }
Yinghai Luf327d9f2008-02-20 17:41:38 +0000106
Patrick Georgic5b87c82010-05-20 15:28:19 +0000107 mptable_add_isa_interrupts(mc, m->bus_isa, m->apicid_mcp55, 0);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000108
Myles Watsona643ea32008-10-06 21:00:46 +0000109 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+1)<<2)|1, m->apicid_mcp55, 0xa); // 10
Yinghai Luf55b58d2007-02-17 14:28:11 +0000110
Myles Watsona643ea32008-10-06 21:00:46 +0000111 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+2)<<2)|0, m->apicid_mcp55, 0x16); // 22
Yinghai Luf55b58d2007-02-17 14:28:11 +0000112
Myles Watsona643ea32008-10-06 21:00:46 +0000113 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+2)<<2)|1, m->apicid_mcp55, 0x17); // 23
Yinghai Luf55b58d2007-02-17 14:28:11 +0000114
Myles Watsona643ea32008-10-06 21:00:46 +0000115 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+6)<<2)|1, m->apicid_mcp55, 0x17); // 23
Yinghai Luf55b58d2007-02-17 14:28:11 +0000116
Myles Watsona643ea32008-10-06 21:00:46 +0000117 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+5)<<2)|0, m->apicid_mcp55, 0x14); // 20
118 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+5)<<2)|1, m->apicid_mcp55, 0x17); // 23
119 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+5)<<2)|2, m->apicid_mcp55, 0x15); // 21
Yinghai Luf55b58d2007-02-17 14:28:11 +0000120
Myles Watsona643ea32008-10-06 21:00:46 +0000121 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+8)<<2)|0, m->apicid_mcp55, 0x16); // 22
122 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55, ((sbdn+9)<<2)|0, m->apicid_mcp55, 0x15); // 21
Yinghai Luf55b58d2007-02-17 14:28:11 +0000123
Yinghai Luf327d9f2008-02-20 17:41:38 +0000124//Slot PCIE
125 for (j = 2; j < 8; j++) {
Myles Watsona643ea32008-10-06 21:00:46 +0000126 device_t dev;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000127 dev = dev_find_slot(m->bus_mcp55, PCI_DEVFN(sbdn + 0x0a + j - 2 , 0));
128 if (!dev || !dev->enabled)
129 continue;
Myles Watsona643ea32008-10-06 21:00:46 +0000130 for (i = 0; i < 4; i++)
131 apicpin[i] = 0x10 + (2+j+i+4-sbdn%4)%4;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000132 smp_write_intsrc_pci_bridge(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, dev, m->apicid_mcp55, apicpin);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000133 }
134
Yinghai Luf327d9f2008-02-20 17:41:38 +0000135//Slot PCI 32
136 {
Myles Watsona643ea32008-10-06 21:00:46 +0000137 device_t dev;
Yinghai Luf327d9f2008-02-20 17:41:38 +0000138 dev = dev_find_slot(m->bus_mcp55, PCI_DEVFN(sbdn + 6 , 0));
139 if (dev && dev->enabled) {
140 for (i = 0; i < 4; i++)
141 apicpin[i] = 0x10 + (2+i)%4;
142 smp_write_intsrc_pci_bridge(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, dev, m->apicid_mcp55, apicpin);
143 }
144 }
Yinghai Luf55b58d2007-02-17 14:28:11 +0000145
Yinghai Luf327d9f2008-02-20 17:41:38 +0000146 if (m->bus_mcp55b) {
147 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55b, ((m->sbdnb+5)<<2)|0, m->apicid_mcp55b, 0x14); // 20
148 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55b, ((m->sbdnb+5)<<2)|1, m->apicid_mcp55b, 0x17); // 23
149 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55b, ((m->sbdnb+5)<<2)|2, m->apicid_mcp55b, 0x15); // 21
Yinghai Luf55b58d2007-02-17 14:28:11 +0000150
Yinghai Luf327d9f2008-02-20 17:41:38 +0000151 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55b, ((m->sbdnb+8)<<2)|0, m->apicid_mcp55b, 0x16); // 22
152 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55b, ((m->sbdnb+9)<<2)|0, m->apicid_mcp55b, 0x15); // 21
Yinghai Luf55b58d2007-02-17 14:28:11 +0000153
154
Yinghai Luf327d9f2008-02-20 17:41:38 +0000155 //Slot PCIE
156 for (j = 2; j < 8; j++) {
157 device_t dev;
158 dev = dev_find_slot(m->bus_mcp55b, PCI_DEVFN(m->sbdnb + 0x0a + j - 2 , 0));
159 if (!dev || !dev->enabled)
160 continue;
161 for (i = 0; i < 4; i++) {
162 apicpin[i] = 0x10 + (2+j+i+4-m->sbdnb%4)%4;
Yinghai Luf55b58d2007-02-17 14:28:11 +0000163 }
Yinghai Luf327d9f2008-02-20 17:41:38 +0000164 smp_write_intsrc_pci_bridge(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, dev, m->apicid_mcp55b, apicpin);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000165 }
Yinghai Luf327d9f2008-02-20 17:41:38 +0000166
Yinghai Luf55b58d2007-02-17 14:28:11 +0000167 }
Yinghai Luf55b58d2007-02-17 14:28:11 +0000168
169/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/
Tobias Diedrichb907d322010-10-26 22:40:16 +0000170 smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, m->bus_isa, 0x0, MP_APIC_ALL, 0x0);
171 smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, m->bus_isa, 0x0, MP_APIC_ALL, 0x1);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000172 /* There is no extension information... */
173
174 /* Compute the checksums */
175 mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
176 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000177 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Yinghai Luf55b58d2007-02-17 14:28:11 +0000178 mc, smp_next_mpe_entry(mc));
179 return smp_next_mpe_entry(mc);
180}
181
182unsigned long write_smp_table(unsigned long addr)
183{
184 void *v;
185 v = smp_write_floating_table(addr);
186 return (unsigned long)smp_write_config_table(v);
187}