blob: 678610393ceef5f55bf829bd0c63c9eb66a653ac [file] [log] [blame]
Juhana Helovuod09d1f72010-09-13 14:51:26 +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
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Juhana Helovuod09d1f72010-09-13 14:51:26 +000018 */
19
Juhana Helovuod09d1f72010-09-13 14:51:26 +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>
Juhana Helovuod09d1f72010-09-13 14:51:26 +000026#include <cpu/amd/amdfam10_sysconf.h>
27
Juhana Helovuod09d1f72010-09-13 14:51:26 +000028extern u8 bus_rs780[11];
29extern u8 bus_sb700[2];
30
31extern u32 apicid_sb700;
32
Juhana Helovuod09d1f72010-09-13 14:51:26 +000033extern u32 sbdn_rs780;
34extern u32 sbdn_sb700;
35
Juhana Helovuod09d1f72010-09-13 14:51:26 +000036static void *smp_write_config_table(void *v)
37{
Juhana Helovuod09d1f72010-09-13 14:51:26 +000038 struct mp_config_table *mc;
Patrick Georgi8cda9692010-11-21 14:40:09 +000039 int bus_isa;
Juhana Helovuod09d1f72010-09-13 14:51:26 +000040
41 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Juhana Helovuod09d1f72010-09-13 14:51:26 +000042
Patrick Georgic8feedd2012-02-16 18:43:25 +010043 mptable_init(mc, LOCAL_APIC_ADDR);
Juhana Helovuod09d1f72010-09-13 14:51:26 +000044
45 smp_write_processors(mc);
46
47 get_bus_conf();
48
Patrick Georgi8cda9692010-11-21 14:40:09 +000049 mptable_write_buses(mc, NULL, &bus_isa);
Juhana Helovuod09d1f72010-09-13 14:51:26 +000050
51 /* I/O APICs: APIC ID Version State Address */
52 {
53 device_t dev;
54 u32 dword;
55 u8 byte;
56
57 dev =
58 dev_find_slot(bus_sb700[0],
59 PCI_DEVFN(sbdn_sb700 + 0x14, 0));
60 if (dev) {
61 dword = pci_read_config32(dev, 0x74) & 0xfffffff0;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080062 smp_write_ioapic(mc, apicid_sb700,
63 0x11,(void *) dword);
Juhana Helovuod09d1f72010-09-13 14:51:26 +000064
65 /* Initialize interrupt mapping */
66 /* aza */
67 byte = pci_read_config8(dev, 0x63);
68 byte &= 0xf8;
69 byte |= 0; /* 0: INTA, ...., 7: INTH */
70 pci_write_config8(dev, 0x63, byte);
71
72 /* SATA */
73 dword = pci_read_config32(dev, 0xac);
74 dword &= ~(7 << 26);
75 dword |= 6 << 26; /* 0: INTA, ...., 7: INTH */
76 /* dword |= 1<<22; PIC and APIC co exists */
77 pci_write_config32(dev, 0xac, dword);
78
79 /*
80 * 00:12.0: PROG SATA : INT F
81 * 00:13.0: INTA USB_0
82 * 00:13.1: INTB USB_1
83 * 00:13.2: INTC USB_2
84 * 00:13.3: INTD USB_3
85 * 00:13.4: INTC USB_4
86 * 00:13.5: INTD USB2
87 * 00:14.1: INTA IDE
88 * 00:14.2: Prog HDA : INT E
89 * 00:14.5: INTB ACI
90 * 00:14.6: INTB MCI
91 */
92 }
93 }
94
95 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
96#define IO_LOCAL_INT(type, intr, apicid, pin) \
Tobias Diedrichb907d322010-10-26 22:40:16 +000097 smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
Juhana Helovuod09d1f72010-09-13 14:51:26 +000098
99 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb700, 0);
100
Juhana Helovuod09d1f72010-09-13 14:51:26 +0000101 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
102 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
103 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
104 /* There is no extension information... */
105
106 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +0200107 return mptable_finalize(mc);
Juhana Helovuod09d1f72010-09-13 14:51:26 +0000108}
109
110unsigned long write_smp_table(unsigned long addr)
111{
112 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +0200113 v = smp_write_floating_table(addr, 0);
Juhana Helovuod09d1f72010-09-13 14:51:26 +0000114 return (unsigned long)smp_write_config_table(v);
115}