blob: 59e7e9f4e519a2d0d9edaf9f4cd59950abec742c [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.
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000015 */
16
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000017#include <console/console.h>
18#include <arch/smp/mpspec.h>
19#include <device/pci.h>
20#include <arch/io.h>
21#include <string.h>
22#include <stdint.h>
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000023#include <cpu/amd/amdfam10_sysconf.h>
24
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000025extern u8 bus_rs780[11];
26extern u8 bus_sb700[2];
27
28extern u32 apicid_sb700;
29
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000030extern u32 sbdn_rs780;
31extern u32 sbdn_sb700;
32
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000033static void *smp_write_config_table(void *v)
34{
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000035 struct mp_config_table *mc;
Patrick Georgi8cda9692010-11-21 14:40:09 +000036 int bus_isa;
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000037
38 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000039
Patrick Georgic8feedd2012-02-16 18:43:25 +010040 mptable_init(mc, LOCAL_APIC_ADDR);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000041
42 smp_write_processors(mc);
43
44 get_bus_conf();
45
Patrick Georgi8cda9692010-11-21 14:40:09 +000046 mptable_write_buses(mc, NULL, &bus_isa);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000047
48 /* I/O APICs: APIC ID Version State Address */
49 {
50 device_t dev;
51 u32 dword;
52 u8 byte;
53
54 dev =
55 dev_find_slot(bus_sb700[0],
56 PCI_DEVFN(sbdn_sb700 + 0x14, 0));
57 if (dev) {
58 dword = pci_read_config32(dev, 0x74) & 0xfffffff0;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080059 smp_write_ioapic(mc, apicid_sb700,
60 0x11,(void *) dword);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000061
62 /* Initialize interrupt mapping */
63 /* aza */
64 byte = pci_read_config8(dev, 0x63);
65 byte &= 0xf8;
66 byte |= 0; /* 0: INTA, ...., 7: INTH */
67 pci_write_config8(dev, 0x63, byte);
68
69 /* SATA */
70 dword = pci_read_config32(dev, 0xac);
71 dword &= ~(7 << 26);
72 dword |= 6 << 26; /* 0: INTA, ...., 7: INTH */
Elyes HAOUAS531b87a2016-09-19 09:46:33 -060073 /* dword |= 1 << 22; PIC and APIC co exists */
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000074 pci_write_config32(dev, 0xac, dword);
75
76 /*
77 * 00:12.0: PROG SATA : INT F
78 * 00:13.0: INTA USB_0
79 * 00:13.1: INTB USB_1
80 * 00:13.2: INTC USB_2
81 * 00:13.3: INTD USB_3
82 * 00:13.4: INTC USB_4
83 * 00:13.5: INTD USB2
84 * 00:14.1: INTA IDE
85 * 00:14.2: Prog HDA : INT E
86 * 00:14.5: INTB ACI
87 * 00:14.6: INTB MCI
88 */
89 }
90 }
91
92 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
93#define IO_LOCAL_INT(type, intr, apicid, pin) \
Tobias Diedrichb907d322010-10-26 22:40:16 +000094 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 +000095
96 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb700, 0);
97
Wang Qing Pei0ede4c02010-08-17 15:19:32 +000098 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
99 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
100 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
101 /* There is no extension information... */
102
103 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +0200104 return mptable_finalize(mc);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +0000105}
106
107unsigned long write_smp_table(unsigned long addr)
108{
109 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +0200110 v = smp_write_floating_table(addr, 0);
Wang Qing Pei0ede4c02010-08-17 15:19:32 +0000111 return (unsigned long)smp_write_config_table(v);
112}