blob: e28d05711a44251bfad0a3380f64738aabf61279 [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
Paul Menzela46a7122013-02-23 18:37:27 +010018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000019 */
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
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000029extern u8 bus_rs780[11];
30extern u8 bus_sb700[2];
31
32extern u32 apicid_sb700;
33
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000034extern u32 sbdn_rs780;
35extern u32 sbdn_sb700;
36
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000037static void *smp_write_config_table(void *v)
38{
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000039 struct mp_config_table *mc;
Patrick Georgi8cda9692010-11-21 14:40:09 +000040 int bus_isa;
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000041
42 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000043
Patrick Georgic8feedd2012-02-16 18:43:25 +010044 mptable_init(mc, LOCAL_APIC_ADDR);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000045
46 smp_write_processors(mc);
47
48 get_bus_conf();
49
Patrick Georgi8cda9692010-11-21 14:40:09 +000050 mptable_write_buses(mc, NULL, &bus_isa);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000051
52 /* I/O APICs: APIC ID Version State Address */
53 {
54 device_t dev;
55 u32 dword;
56 u8 byte;
57
58 dev =
59 dev_find_slot(bus_sb700[0],
60 PCI_DEVFN(sbdn_sb700 + 0x14, 0));
61 if (dev) {
62 dword = pci_read_config32(dev, 0x74) & 0xfffffff0;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080063 smp_write_ioapic(mc, apicid_sb700,
64 0x11,(void *) dword);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000065
66 /* Initialize interrupt mapping */
67 /* aza */
68 byte = pci_read_config8(dev, 0x63);
69 byte &= 0xf8;
70 byte |= 0; /* 0: INTA, ...., 7: INTH */
71 pci_write_config8(dev, 0x63, byte);
72
73 /* SATA */
74 dword = pci_read_config32(dev, 0xac);
75 dword &= ~(7 << 26);
76 dword |= 6 << 26; /* 0: INTA, ...., 7: INTH */
77 /* dword |= 1<<22; PIC and APIC co exists */
78 pci_write_config32(dev, 0xac, dword);
79
80 /*
81 * 00:12.0: PROG SATA : INT F
82 * 00:13.0: INTA USB_0
83 * 00:13.1: INTB USB_1
84 * 00:13.2: INTC USB_2
85 * 00:13.3: INTD USB_3
86 * 00:13.4: INTC USB_4
87 * 00:13.5: INTD USB2
88 * 00:14.1: INTA IDE
89 * 00:14.2: Prog HDA : INT E
90 * 00:14.5: INTB ACI
91 * 00:14.6: INTB MCI
92 */
93 }
94 }
95
96 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
97#define IO_LOCAL_INT(type, intr, apicid, pin) \
Tobias Diedrichb907d322010-10-26 22:40:16 +000098 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 +000099
100 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb700, 0);
101
Wang Qing Pei0ede4c02010-08-17 15:19:32 +0000102 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
103 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
104 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
105 /* There is no extension information... */
106
107 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +0200108 return mptable_finalize(mc);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +0000109}
110
111unsigned long write_smp_table(unsigned long addr)
112{
113 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +0200114 v = smp_write_floating_table(addr, 0);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +0000115 return (unsigned long)smp_write_config_table(v);
116}