blob: bf86c5f8d65b50e1581e800837e0e875255d6bb0 [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>
Uwe Hermann55dc2232010-10-25 15:32:07 +000028
Yinghai Luf55b58d2007-02-17 14:28:11 +000029extern unsigned char bus_isa;
30extern unsigned char bus_mcp55[8]; //1
31
32extern unsigned apicid_mcp55;
33
34extern unsigned char bus_pcix[3]; // under bus_mcp55_2
35
Myles Watson08e0fb82010-03-22 16:33:25 +000036static void *smp_write_config_table(void *v)
Yinghai Luf55b58d2007-02-17 14:28:11 +000037{
Yinghai Luf55b58d2007-02-17 14:28:11 +000038 struct mp_config_table *mc;
39 unsigned sbdn;
Yinghai Luf55b58d2007-02-17 14:28:11 +000040 unsigned char bus_num;
41 int i,j;
42
43 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Yinghai Luf55b58d2007-02-17 14:28:11 +000044
Uwe Hermann55dc2232010-10-25 15:32:07 +000045 mptable_init(mc, "H8DMR ", LAPIC_ADDR);
Yinghai Luf55b58d2007-02-17 14:28:11 +000046
47 smp_write_processors(mc);
48
49 get_bus_conf();
50 sbdn = sysconf.sbdn;
51
52/*Bus: Bus ID Type*/
53 /* define bus and isa numbers */
54 for(bus_num = 0; bus_num < bus_isa; bus_num++) {
55 smp_write_bus(mc, bus_num, "PCI ");
56 }
57 smp_write_bus(mc, bus_isa, "ISA ");
58
59/*I/O APICs: APIC ID Version State Address*/
60 {
61 device_t dev;
62 struct resource *res;
63 uint32_t dword;
64
65 dev = dev_find_slot(bus_mcp55[0], PCI_DEVFN(sbdn+ 0x1,0));
66 if (dev) {
67 res = find_resource(dev, PCI_BASE_ADDRESS_1);
68 if (res) {
69 smp_write_ioapic(mc, apicid_mcp55, 0x11, res->base);
70 }
71
72 dword = 0x43c6c643;
73 pci_write_config32(dev, 0x7c, dword);
74
75 dword = 0x81001a00;
76 pci_write_config32(dev, 0x80, dword);
77
78 dword = 0xd00012d2;
79 pci_write_config32(dev, 0x84, dword);
80
81 }
82
83
84
85 }
Stefan Reinauer14e22772010-04-27 06:56:47 +000086
Patrick Georgic5b87c82010-05-20 15:28:19 +000087 mptable_add_isa_interrupts(mc, bus_isa, apicid_mcp55, 0);
Yinghai Luf55b58d2007-02-17 14:28:11 +000088
Patrick Georgic5b87c82010-05-20 15:28:19 +000089 /*I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
Yinghai Luf55b58d2007-02-17 14:28:11 +000090 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+1)<<2)|1, apicid_mcp55, 0xa);
91
92 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
93
94 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
95
96 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
97
98 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
99 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
100 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
101
102 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
103 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
104
105 for(j=7; j>=2; j--) {
106 if(!bus_mcp55[j]) continue;
107 for(i=0;i<4;i++) {
108 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);
109 }
110 }
111
112 for(i=0;i<4;i++) {
113 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);
114 }
115
116
Stefan Reinauer14e22772010-04-27 06:56:47 +0000117 if(bus_pcix[0]) {
Yinghai Luf55b58d2007-02-17 14:28:11 +0000118 for(i=0;i<2;i++) {
Stefan Reinauer14e22772010-04-27 06:56:47 +0000119 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 +0000120 }
121
122 for(i=0;i<4;i++) {
123 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
124 }
125 }
126
127/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/
Tobias Diedrichb907d322010-10-26 22:40:16 +0000128 smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
129 smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
Yinghai Luf55b58d2007-02-17 14:28:11 +0000130 /* There is no extension information... */
131
132 /* Compute the checksums */
133 mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
134 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000135 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Yinghai Luf55b58d2007-02-17 14:28:11 +0000136 mc, smp_next_mpe_entry(mc));
137 return smp_next_mpe_entry(mc);
138}
139
140unsigned long write_smp_table(unsigned long addr)
141{
142 void *v;
143 v = smp_write_floating_table(addr);
144 return (unsigned long)smp_write_config_table(v);
145}