blob: f127567a26e9cb7afcd2df0a049f3c5fa2268cf0 [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
Stefan Reinauere9de1e22010-04-07 15:30:11 +000039
Stefan Reinauerc270e892009-10-13 16:47:57 +000040
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";
Stefan Reinauerd6532112010-04-16 00:31:44 +000044 static const char oem[8] = "COREBOOT";
Stefan Reinauerc270e892009-10-13 16:47:57 +000045 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
Stefan Reinauerc270e892009-10-13 16:47:57 +0000120#define IO_LOCAL_INT(type, intr, apicid, pin) \
121 smp_write_intsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
122
Patrick Georgic5b87c82010-05-20 15:28:19 +0000123 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb600, 0);
Stefan Reinauerc270e892009-10-13 16:47:57 +0000124
125 /* PCI interrupts are level triggered, and are
126 * associated with a specific bus/device/function tuple.
127 */
Myles Watsonb8e20272009-10-15 13:35:47 +0000128#if CONFIG_GENERATE_ACPI_TABLES == 0
Stefan Reinauerc270e892009-10-13 16:47:57 +0000129#define PCI_INT(bus, dev, fn, pin) \
130 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb600, (pin))
131#else
132#define PCI_INT(bus, dev, fn, pin)
133#endif
134
135 /* usb */
136 PCI_INT(0x0, 0x13, 0x0, 0x10);
137 PCI_INT(0x0, 0x13, 0x1, 0x11);
138 PCI_INT(0x0, 0x13, 0x2, 0x12);
139 PCI_INT(0x0, 0x13, 0x3, 0x13);
140
141 /* sata */
142 PCI_INT(0x0, 0x12, 0x0, 0x16);
143
144 /* HD Audio: b0:d20:f1:reg63 should be 0. */
145 PCI_INT(0x0, 0x14, 0x0, 0x10);
146
147 /* on board NIC & Slot PCIE. */
148 PCI_INT(bus_rs690[1], 0x5, 0x0, 0x12);
149 PCI_INT(bus_rs690[1], 0x5, 0x1, 0x13);
150 PCI_INT(bus_rs690[2], 0x0, 0x0, 0x12);
151 PCI_INT(bus_rs690[3], 0x0, 0x0, 0x13);
152 PCI_INT(bus_rs690[4], 0x0, 0x0, 0x10);
153 PCI_INT(bus_rs690[5], 0x0, 0x0, 0x11);
154 PCI_INT(bus_rs690[6], 0x0, 0x0, 0x12);
155 PCI_INT(bus_rs690[7], 0x0, 0x0, 0x13);
156
157 /* PCI slots */
158 /* PCI_SLOT 0. */
159 PCI_INT(bus_sb600[1], 0x5, 0x0, 0x14);
160 PCI_INT(bus_sb600[1], 0x5, 0x1, 0x15);
161 PCI_INT(bus_sb600[1], 0x5, 0x2, 0x16);
162 PCI_INT(bus_sb600[1], 0x5, 0x3, 0x17);
163
164 /* PCI_SLOT 1. */
165 PCI_INT(bus_sb600[1], 0x6, 0x0, 0x15);
166 PCI_INT(bus_sb600[1], 0x6, 0x1, 0x16);
167 PCI_INT(bus_sb600[1], 0x6, 0x2, 0x17);
168 PCI_INT(bus_sb600[1], 0x6, 0x3, 0x14);
169
170 /* PCI_SLOT 2. */
171 PCI_INT(bus_sb600[1], 0x7, 0x0, 0x16);
172 PCI_INT(bus_sb600[1], 0x7, 0x1, 0x17);
173 PCI_INT(bus_sb600[1], 0x7, 0x2, 0x14);
174 PCI_INT(bus_sb600[1], 0x7, 0x3, 0x15);
175
176 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
177 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
178 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
179 /* There is no extension information... */
180
181 /* Compute the checksums */
182 mc->mpe_checksum =
183 smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
184 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000185 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
Stefan Reinauerc270e892009-10-13 16:47:57 +0000186 mc, smp_next_mpe_entry(mc));
187 return smp_next_mpe_entry(mc);
188}
189
190unsigned long write_smp_table(unsigned long addr)
191{
192 void *v;
193 v = smp_write_floating_table(addr);
194 return (unsigned long)smp_write_config_table(v);
195}