blob: 9ebcb8762ae6bb0d7c89f32ed8f0c9e513978cc4 [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
Paul Menzela46a7122013-02-23 18:37:27 +010019 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Yinghai Luf55b58d2007-02-17 14:28:11 +000020 */
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>
Uwe Hermann55dc2232010-10-25 15:32:07 +000028
Yinghai Luf55b58d2007-02-17 14:28:11 +000029extern unsigned char bus_mcp55[8]; //1
30
31extern unsigned apicid_mcp55;
32
33extern unsigned char bus_pcix[3]; // under bus_mcp55_2
34
Myles Watson08e0fb82010-03-22 16:33:25 +000035static void *smp_write_config_table(void *v)
Yinghai Luf55b58d2007-02-17 14:28:11 +000036{
Yinghai Luf55b58d2007-02-17 14:28:11 +000037 struct mp_config_table *mc;
38 unsigned sbdn;
Patrick Georgi7411eab2010-11-22 14:14:56 +000039 int i, j, bus_isa;
Yinghai Luf55b58d2007-02-17 14:28:11 +000040
41 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Yinghai Luf55b58d2007-02-17 14:28:11 +000042
Patrick Georgic8feedd2012-02-16 18:43:25 +010043 mptable_init(mc, LOCAL_APIC_ADDR);
Yinghai Luf55b58d2007-02-17 14:28:11 +000044
45 smp_write_processors(mc);
46
47 get_bus_conf();
48 sbdn = sysconf.sbdn;
49
Patrick Georgi7411eab2010-11-22 14:14:56 +000050 mptable_write_buses(mc, NULL, &bus_isa);
Yinghai Luf55b58d2007-02-17 14:28:11 +000051
52/*I/O APICs: APIC ID Version State Address*/
53 {
54 device_t dev;
55 struct resource *res;
56 uint32_t dword;
57
58 dev = dev_find_slot(bus_mcp55[0], PCI_DEVFN(sbdn+ 0x1,0));
59 if (dev) {
60 res = find_resource(dev, PCI_BASE_ADDRESS_1);
61 if (res) {
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080062 smp_write_ioapic(mc, apicid_mcp55, 0x11,
63 res2mmio(res, 0, 0));
Yinghai Luf55b58d2007-02-17 14:28:11 +000064 }
65
66 dword = 0x43c6c643;
67 pci_write_config32(dev, 0x7c, dword);
68
69 dword = 0x81001a00;
70 pci_write_config32(dev, 0x80, dword);
71
72 dword = 0xd00012d2;
73 pci_write_config32(dev, 0x84, dword);
74
75 }
76
77
78
79 }
Stefan Reinauer14e22772010-04-27 06:56:47 +000080
Patrick Georgic5b87c82010-05-20 15:28:19 +000081 mptable_add_isa_interrupts(mc, bus_isa, apicid_mcp55, 0);
Yinghai Luf55b58d2007-02-17 14:28:11 +000082
Patrick Georgic5b87c82010-05-20 15:28:19 +000083 /*I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
Yinghai Luf55b58d2007-02-17 14:28:11 +000084 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+1)<<2)|1, apicid_mcp55, 0xa);
85
86 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+2)<<2)|0, apicid_mcp55, 0x16); // 22
87
88 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+2)<<2)|1, apicid_mcp55, 0x17); // 23
89
90 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+6)<<2)|1, apicid_mcp55, 0x17); // 23
91
92 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+5)<<2)|0, apicid_mcp55, 0x14); // 20
93 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+5)<<2)|1, apicid_mcp55, 0x17); // 23
94 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+5)<<2)|2, apicid_mcp55, 0x15); // 21
95
96 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+8)<<2)|0, apicid_mcp55, 0x16); // 22
97 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+9)<<2)|0, apicid_mcp55, 0x15); // 21
98
99 for(j=7; j>=2; j--) {
100 if(!bus_mcp55[j]) continue;
101 for(i=0;i<4;i++) {
102 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[j], (0x00<<2)|i, apicid_mcp55, 0x10 + (2+j+i+4-sbdn%4)%4);
103 }
104 }
105
106 for(i=0;i<4;i++) {
107 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[1], (0x04<<2)|i, apicid_mcp55, 0x10 + (0+i)%4);
108 }
109
110
Stefan Reinauer14e22772010-04-27 06:56:47 +0000111 if(bus_pcix[0]) {
Yinghai Luf55b58d2007-02-17 14:28:11 +0000112 for(i=0;i<2;i++) {
Stefan Reinauer14e22772010-04-27 06:56:47 +0000113 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_pcix[2], (4<<2)|i, apicid_mcp55, 0x10 + (0+i+4-sbdn%4)%4); //16, 17
Yinghai Luf55b58d2007-02-17 14:28:11 +0000114 }
115
116 for(i=0;i<4;i++) {
117 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_pcix[1], (4<<2)|i, apicid_mcp55, 0x10 + (2+i+4-sbdn%4)%4); // 18, 19, 16, 17
118 }
119 }
120
121/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/
Patrick Georgi6eb7a532011-10-07 21:42:52 +0200122 mptable_lintsrc(mc, bus_isa);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000123 /* There is no extension information... */
124
125 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +0200126 return mptable_finalize(mc);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000127}
128
129unsigned long write_smp_table(unsigned long addr)
130{
131 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +0200132 v = smp_write_floating_table(addr, 0);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000133 return (unsigned long)smp_write_config_table(v);
134}