blob: bb64bc10bd13694dae8bcef0403c187ae005b5ae [file] [log] [blame]
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +00001/*
2 * This file is part of the coreboot project.
3 *
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>
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000027#include <cpu/amd/amdfam10_sysconf.h>
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000028#include "mb_sysconf.h"
29
Myles Watson08e0fb82010-03-22 16:33:25 +000030static void *smp_write_config_table(void *v)
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000031{
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000032 struct mp_config_table *mc;
33 struct mb_sysconf_t *m;
34 unsigned sbdn;
35
36 int i,j;
37
38 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000039
Uwe Hermann55dc2232010-10-25 15:32:07 +000040 mptable_init(mc, "K9ND MS-9652", LAPIC_ADDR);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000041
42 smp_write_processors(mc);
43
44 get_bus_conf();
45 sbdn = sysconf.sbdn;
46 m = sysconf.mb;
47
48/*Bus: Bus ID Type*/
49 /* define bus and isa numbers */
50 for(j= 0; j < 256 ; j++) {
51 if(m->bus_type[j])
52 smp_write_bus(mc, j, "PCI ");
53 }
54 smp_write_bus(mc, m->bus_isa, "ISA ");
55
56/*I/O APICs: APIC ID Version State Address*/
57 {
58 device_t dev;
59 struct resource *res;
60 uint32_t dword;
61
62 dev = dev_find_slot(m->bus_mcp55[0], PCI_DEVFN(sbdn+ 0x1,0));
63 if (dev) {
64 res = find_resource(dev, PCI_BASE_ADDRESS_1);
65 if (res) {
66 smp_write_ioapic(mc, m->apicid_mcp55, 0x11, res->base);
67 }
68
69 dword = 0x43c6c643;
70 pci_write_config32(dev, 0x7c, dword);
71
72 dword = 0x81001a00;
73 pci_write_config32(dev, 0x80, dword);
74
75 dword = 0xd00012d2;
76 pci_write_config32(dev, 0x84, dword);
77
78 }
79
80
81 }
82
Patrick Georgic5b87c82010-05-20 15:28:19 +000083 mptable_add_isa_interrupts(mc, m->bus_isa, m->apicid_mcp55, 0);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +000084
85 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+1)<<2)|1, m->apicid_mcp55, 0xa);
86
87 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+2)<<2)|0, m->apicid_mcp55, 0x16); // 22
88
89 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+2)<<2)|1, m->apicid_mcp55, 0x17); // 23
90
91 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+6)<<2)|1, m->apicid_mcp55, 0x17); // 23
92
93 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+5)<<2)|0, m->apicid_mcp55, 0x14); // 20
94 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+5)<<2)|1, m->apicid_mcp55, 0x17); // 23
95 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+5)<<2)|2, m->apicid_mcp55, 0x15); // 21
96
97 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+8)<<2)|0, m->apicid_mcp55, 0x16); // 22
98 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[0], ((sbdn+9)<<2)|0, m->apicid_mcp55, 0x15); // 21
99
100 for(j=7; j>=2; j--) {
101 if(!m->bus_mcp55[j]) continue;
102 for(i=0;i<4;i++) {
103 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[j], (0x00<<2)|i, m->apicid_mcp55, 0x10 + (2+j+i+4-sbdn%4)%4);
104 }
105 }
106
107 for(j=0; j<1; j++)
108 for(i=0;i<4;i++) {
109 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, m->bus_mcp55[1], ((0x04+j)<<2)|i, m->apicid_mcp55, 0x10 + (2+i+j)%4);
110 }
111
112/*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN#*/
Tobias Diedrichb907d322010-10-26 22:40:16 +0000113 smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, m->bus_isa, 0x0, MP_APIC_ALL, 0x0);
114 smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, m->bus_isa, 0x0, MP_APIC_ALL, 0x1);
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000115 /* There is no extension information... */
116
117 /* Compute the checksums */
118 mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
119 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000120 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Timothy Pearsond3b2bbe2010-03-01 10:56:51 +0000121 mc, smp_next_mpe_entry(mc));
122 return smp_next_mpe_entry(mc);
123}
124
125unsigned long write_smp_table(unsigned long addr)
126{
127 void *v;
128 v = smp_write_floating_table(addr);
129 return (unsigned long)smp_write_config_table(v);
130}