blob: b59d0a74c55b85b7517b6580fc2a8911a2635d29 [file] [log] [blame]
Wang Qing Pei931d6f32010-08-17 11:22:40 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 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
Wang Qing Pei931d6f32010-08-17 11:22:40 +000020#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>
Wang Qing Pei931d6f32010-08-17 11:22:40 +000026#include <cpu/amd/amdfam10_sysconf.h>
27
28extern u8 bus_isa;
29extern u8 bus_rs780[11];
30extern u8 bus_sb700[2];
31
32extern u32 apicid_sb700;
33
34extern u32 bus_type[256];
35extern u32 sbdn_rs780;
36extern u32 sbdn_sb700;
37
Wang Qing Pei931d6f32010-08-17 11:22:40 +000038static void *smp_write_config_table(void *v)
39{
Wang Qing Pei931d6f32010-08-17 11:22:40 +000040 struct mp_config_table *mc;
41 int j;
42
43 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Wang Qing Pei931d6f32010-08-17 11:22:40 +000044
Uwe Hermann55dc2232010-10-25 15:32:07 +000045 mptable_init(mc, "MA78GM-US2H ", LAPIC_ADDR);
Wang Qing Pei931d6f32010-08-17 11:22:40 +000046
47 smp_write_processors(mc);
48
49 get_bus_conf();
50
51 /* Bus: Bus ID Type */
52 /* define bus and isa numbers */
53 for (j = 0; j < bus_isa; j++) {
54 smp_write_bus(mc, j, (char *)"PCI ");
55 }
56 smp_write_bus(mc, bus_isa, (char *)"ISA ");
57
58 /* I/O APICs: APIC ID Version State Address */
59 {
60 device_t dev;
61 u32 dword;
62 u8 byte;
63
64 dev =
65 dev_find_slot(bus_sb700[0],
66 PCI_DEVFN(sbdn_sb700 + 0x14, 0));
67 if (dev) {
68 dword = pci_read_config32(dev, 0x74) & 0xfffffff0;
69 smp_write_ioapic(mc, apicid_sb700, 0x11, dword);
70
71 /* Initialize interrupt mapping */
72 /* aza */
73 byte = pci_read_config8(dev, 0x63);
74 byte &= 0xf8;
75 byte |= 0; /* 0: INTA, ...., 7: INTH */
76 pci_write_config8(dev, 0x63, byte);
77
78 /* SATA */
79 dword = pci_read_config32(dev, 0xac);
80 dword &= ~(7 << 26);
81 dword |= 6 << 26; /* 0: INTA, ...., 7: INTH */
82 /* dword |= 1<<22; PIC and APIC co exists */
83 pci_write_config32(dev, 0xac, dword);
84
85 /*
86 * 00:12.0: PROG SATA : INT F
87 * 00:13.0: INTA USB_0
88 * 00:13.1: INTB USB_1
89 * 00:13.2: INTC USB_2
90 * 00:13.3: INTD USB_3
91 * 00:13.4: INTC USB_4
92 * 00:13.5: INTD USB2
93 * 00:14.1: INTA IDE
94 * 00:14.2: Prog HDA : INT E
95 * 00:14.5: INTB ACI
96 * 00:14.6: INTB MCI
97 */
98 }
99 }
100
101 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
102#define IO_LOCAL_INT(type, intr, apicid, pin) \
Tobias Diedrichb907d322010-10-26 22:40:16 +0000103 smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
Wang Qing Pei931d6f32010-08-17 11:22:40 +0000104
105 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb700, 0);
106
107 /* PCI interrupts are level triggered, and are
108 * associated with a specific bus/device/function tuple.
109 */
110#if CONFIG_GENERATE_ACPI_TABLES == 0
111#define PCI_INT(bus, dev, fn, pin) \
112 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb700, (pin))
113#else
114#define PCI_INT(bus, dev, fn, pin)
115#endif
116
117 /* usb */
118 PCI_INT(0x0, 0x12, 0x0, 0x10); /* USB */
119 PCI_INT(0x0, 0x12, 0x1, 0x11);
120 PCI_INT(0x0, 0x13, 0x0, 0x12);
121 PCI_INT(0x0, 0x13, 0x1, 0x13);
122 PCI_INT(0x0, 0x14, 0x0, 0x10);
123
124 /* sata */
125 PCI_INT(0x0, 0x11, 0x0, 0x16);
126
127 /* HD Audio: b0:d20:f1:reg63 should be 0. */
128 /* PCI_INT(0x0, 0x14, 0x2, 0x12); */
129
130 /* on board NIC & Slot PCIE. */
131 /* PCI_INT(bus_rs780[0x1], 0x5, 0x0, 0x12); */
132/* PCI_INT(bus_rs780[0x1], 0x5, 0x1, 0x13); */
133 PCI_INT(bus_rs780[0x2], 0x0, 0x0, 0x12); /* Dev 2, external GFX */
134 /* PCI_INT(bus_rs780[0x3], 0x0, 0x0, 0x13); */
135 PCI_INT(bus_rs780[0x4], 0x0, 0x0, 0x10);
136 /* configuration B doesnt need dev 5,6,7 */
137 /*
138 * PCI_INT(bus_rs780[0x5], 0x0, 0x0, 0x11);
139 * PCI_INT(bus_rs780[0x6], 0x0, 0x0, 0x12);
140 * PCI_INT(bus_rs780[0x7], 0x0, 0x0, 0x13);
141 */
142 PCI_INT(bus_rs780[0x9], 0x0, 0x0, 0x11);
143 PCI_INT(bus_rs780[0xA], 0x0, 0x0, 0x12); /* NIC */
144
145 /* PCI slots */
146 /* PCI_SLOT 0. */
147 PCI_INT(bus_sb700[1], 0x5, 0x0, 0x14);
148 PCI_INT(bus_sb700[1], 0x5, 0x1, 0x15);
149 PCI_INT(bus_sb700[1], 0x5, 0x2, 0x16);
150 PCI_INT(bus_sb700[1], 0x5, 0x3, 0x17);
151
152 /* PCI_SLOT 1. */
153 PCI_INT(bus_sb700[1], 0x6, 0x0, 0x15);
154 PCI_INT(bus_sb700[1], 0x6, 0x1, 0x16);
155 PCI_INT(bus_sb700[1], 0x6, 0x2, 0x17);
156 PCI_INT(bus_sb700[1], 0x6, 0x3, 0x14);
157
158 /* PCI_SLOT 2. */
159 PCI_INT(bus_sb700[1], 0x7, 0x0, 0x16);
160 PCI_INT(bus_sb700[1], 0x7, 0x1, 0x17);
161 PCI_INT(bus_sb700[1], 0x7, 0x2, 0x14);
162 PCI_INT(bus_sb700[1], 0x7, 0x3, 0x15);
163
164 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
165 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
166 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
167 /* There is no extension information... */
168
169 /* Compute the checksums */
170 mc->mpe_checksum =
171 smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
172 mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
173 printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
174 mc, smp_next_mpe_entry(mc));
175 return smp_next_mpe_entry(mc);
176}
177
178unsigned long write_smp_table(unsigned long addr)
179{
180 void *v;
181 v = smp_write_floating_table(addr);
182 return (unsigned long)smp_write_config_table(v);
183}