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