blob: d84f31f0c0b772f04f1cc5d6e463346d040ffa1d [file] [log] [blame]
Stefan Reinauerc270e892009-10-13 16:47:57 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Advanced Micro Devices, 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 as published by
8 * the Free Software Foundation; version 2 of the License.
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
18 */
19
20#include <console/console.h>
21#include <arch/smp/mpspec.h>
22#include <device/pci.h>
23#include <arch/io.h>
24#include <string.h>
25#include <stdint.h>
26
27#include <cpu/amd/amdk8_sysconf.h>
28
29extern u8 bus_isa;
30extern u8 bus_rs690[8];
31extern u8 bus_sb600[2];
32
33extern u32 apicid_sb600;
34
35extern u32 bus_type[256];
36extern u32 sbdn_rs690;
37extern u32 sbdn_sb600;
38
39extern void get_bus_conf(void);
40
Myles Watson08e0fb82010-03-22 16:33:25 +000041static void *smp_write_config_table(void *v)
Stefan Reinauerc270e892009-10-13 16:47:57 +000042{
43 static const char sig[4] = "PCMP";
44 static const char oem[8] = "KONTRON ";
45 static const char productid[12] = "KT690 ";
46 struct mp_config_table *mc;
47 int j;
48
49 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
50 memset(mc, 0, sizeof(*mc));
51
52 memcpy(mc->mpc_signature, sig, sizeof(sig));
53 mc->mpc_length = sizeof(*mc); /* initially just the header */
54 mc->mpc_spec = 0x04;
55 mc->mpc_checksum = 0; /* not yet computed */
56 memcpy(mc->mpc_oem, oem, sizeof(oem));
57 memcpy(mc->mpc_productid, productid, sizeof(productid));
58 mc->mpc_oemptr = 0;
59 mc->mpc_oemsize = 0;
60 mc->mpc_entry_count = 0; /* No entries yet... */
61 mc->mpc_lapic = LAPIC_ADDR;
62 mc->mpe_length = 0;
63 mc->mpe_checksum = 0;
64 mc->reserved = 0;
65
66 smp_write_processors(mc);
67
68 get_bus_conf();
69
70 /* Bus: Bus ID Type */
71 /* define bus and isa numbers */
72 for (j = 0; j < bus_isa; j++) {
73 smp_write_bus(mc, j, (char *)"PCI ");
74 }
75 smp_write_bus(mc, bus_isa, (char *)"ISA ");
76
77 /* I/O APICs: APIC ID Version State Address */
78 {
79 device_t dev;
80 u32 dword;
81 u8 byte;
82
83 dev =
84 dev_find_slot(bus_sb600[0],
85 PCI_DEVFN(sbdn_sb600 + 0x14, 0));
86 if (dev) {
87 dword = pci_read_config32(dev, 0x74) & 0xfffffff0;
88 smp_write_ioapic(mc, apicid_sb600, 0x11, dword);
89
90 /* Initialize interrupt mapping */
91 /* aza */
92 byte = pci_read_config8(dev, 0x63);
93 byte &= 0xf8;
94 byte |= 0; /* 0: INTA, ...., 7: INTH */
95 pci_write_config8(dev, 0x63, byte);
96
97 /* SATA */
98 dword = pci_read_config32(dev, 0xac);
99 dword &= ~(7 << 26);
100 dword |= 6 << 26; /* 0: INTA, ...., 7: INTH */
101 /* dword |= 1<<22; PIC and APIC co exists */
102 pci_write_config32(dev, 0xac, dword);
103
104 /*
105 * 00:12.0: PROG SATA : INT F
106 * 00:13.0: INTA USB_0
107 * 00:13.1: INTB USB_1
108 * 00:13.2: INTC USB_2
109 * 00:13.3: INTD USB_3
110 * 00:13.4: INTC USB_4
111 * 00:13.5: INTD USB2
112 * 00:14.1: INTA IDE
113 * 00:14.2: Prog HDA : INT E
114 * 00:14.5: INTB ACI
115 * 00:14.6: INTB MCI
116 */
117 }
118 }
119
120 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
121#define IO_LOCAL_INT(type, intr, apicid, pin) \
122 smp_write_intsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
123
124 IO_LOCAL_INT(mp_ExtINT, 0x0, apicid_sb600, 0x0);
125
126 /* ISA ints are edge-triggered, and usually originate from the ISA bus,
127 * or its remainings.
128 */
129#define ISA_INT(intr, pin) \
130 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, (intr), apicid_sb600, (pin))
131
132 ISA_INT(0x1, 0x1);
133 ISA_INT(0x0, 0x2);
134 ISA_INT(0x3, 0x3);
135 ISA_INT(0x4, 0x4);
136 ISA_INT(0x6, 0x6);
137 ISA_INT(0x7, 0x7);
138 ISA_INT(0xc, 0xc);
139 ISA_INT(0xd, 0xd);
140 ISA_INT(0xe, 0xe);
141
142 /* PCI interrupts are level triggered, and are
143 * associated with a specific bus/device/function tuple.
144 */
Myles Watsonb8e20272009-10-15 13:35:47 +0000145#if CONFIG_GENERATE_ACPI_TABLES == 0
Stefan Reinauerc270e892009-10-13 16:47:57 +0000146#define PCI_INT(bus, dev, fn, pin) \
147 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb600, (pin))
148#else
149#define PCI_INT(bus, dev, fn, pin)
150#endif
151
152 /* usb */
153 PCI_INT(0x0, 0x13, 0x0, 0x10);
154 PCI_INT(0x0, 0x13, 0x1, 0x11);
155 PCI_INT(0x0, 0x13, 0x2, 0x12);
156 PCI_INT(0x0, 0x13, 0x3, 0x13);
157
158 /* sata */
159 PCI_INT(0x0, 0x12, 0x0, 0x16);
160
161 /* HD Audio: b0:d20:f1:reg63 should be 0. */
162 PCI_INT(0x0, 0x14, 0x0, 0x10);
163
164 /* on board NIC & Slot PCIE. */
165 PCI_INT(bus_rs690[1], 0x5, 0x0, 0x12);
166 PCI_INT(bus_rs690[1], 0x5, 0x1, 0x13);
167 PCI_INT(bus_rs690[2], 0x0, 0x0, 0x12);
168 PCI_INT(bus_rs690[3], 0x0, 0x0, 0x13);
169 PCI_INT(bus_rs690[4], 0x0, 0x0, 0x10);
170 PCI_INT(bus_rs690[5], 0x0, 0x0, 0x11);
171 PCI_INT(bus_rs690[6], 0x0, 0x0, 0x12);
172 PCI_INT(bus_rs690[7], 0x0, 0x0, 0x13);
173
174 /* PCI slots */
175 /* PCI_SLOT 0. */
176 PCI_INT(bus_sb600[1], 0x5, 0x0, 0x14);
177 PCI_INT(bus_sb600[1], 0x5, 0x1, 0x15);
178 PCI_INT(bus_sb600[1], 0x5, 0x2, 0x16);
179 PCI_INT(bus_sb600[1], 0x5, 0x3, 0x17);
180
181 /* PCI_SLOT 1. */
182 PCI_INT(bus_sb600[1], 0x6, 0x0, 0x15);
183 PCI_INT(bus_sb600[1], 0x6, 0x1, 0x16);
184 PCI_INT(bus_sb600[1], 0x6, 0x2, 0x17);
185 PCI_INT(bus_sb600[1], 0x6, 0x3, 0x14);
186
187 /* PCI_SLOT 2. */
188 PCI_INT(bus_sb600[1], 0x7, 0x0, 0x16);
189 PCI_INT(bus_sb600[1], 0x7, 0x1, 0x17);
190 PCI_INT(bus_sb600[1], 0x7, 0x2, 0x14);
191 PCI_INT(bus_sb600[1], 0x7, 0x3, 0x15);
192
193 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
194 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
195 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
196 /* There is no extension information... */
197
198 /* Compute the checksums */
199 mc->mpe_checksum =
200 smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
201 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000202 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Stefan Reinauerc270e892009-10-13 16:47:57 +0000203 mc, smp_next_mpe_entry(mc));
204 return smp_next_mpe_entry(mc);
205}
206
207unsigned long write_smp_table(unsigned long addr)
208{
209 void *v;
210 v = smp_write_floating_table(addr);
211 return (unsigned long)smp_write_config_table(v);
212}