blob: 155287771e2fc4e2ddc709e16d27fe0a23151e8f [file] [log] [blame]
Scott Duplichana649a962011-02-24 05:00:33 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 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
Scott Duplichana649a962011-02-24 05:00:33 +000018 */
19
20
21#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>
Paul Menzelcd966dd2013-03-29 20:20:56 +010027#include <cpu/amd/amdfam14.h>
Kerry Shefeed3292011-08-18 18:03:44 +080028#include <SBPLATFORM.h>
Scott Duplichana649a962011-02-24 05:00:33 +000029
30extern u8 bus_sb800[2];
31
32extern u32 apicid_sb800;
33
34extern u32 bus_type[256];
35extern u32 sbdn_sb800;
36
37u8 intr_data[] = {
38 [0x00] = 0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17, /* INTA# - INTH# */
39 [0x08] = 0x00,0x00,0x00,0x00,0x1F,0x1F,0x1F,0x1F, /* Misc-nil,0,1,2, INT from Serial irq */
40 [0x10] = 0x09,0x1F,0x1F,0x10,0x1F,0x12,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
41 0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
42 0x12,0x11,0x12,0x11,0x12,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
43 0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
44 0x10,0x11,0x12,0x13
45};
46
47static void *smp_write_config_table(void *v)
48{
49 struct mp_config_table *mc;
50 int bus_isa;
51
52 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
53
Patrick Georgic8feedd2012-02-16 18:43:25 +010054 mptable_init(mc, LOCAL_APIC_ADDR);
Scott Duplichan63896e72011-02-26 17:49:49 +000055 memcpy(mc->mpc_oem, "ASROCK ", 8);
Scott Duplichana649a962011-02-24 05:00:33 +000056
57 smp_write_processors(mc);
58
59 get_bus_conf();
60
61 mptable_write_buses(mc, NULL, &bus_isa);
62
63 /* I/O APICs: APIC ID Version State Address */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070064
Scott Duplichana649a962011-02-24 05:00:33 +000065 device_t dev;
66 u32 dword;
67 u8 byte;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070068
Kerry Shefeed3292011-08-18 18:03:44 +080069 ReadPMIO(SB_PMIOA_REG34, AccWidthUint32, &dword);
70 dword &= 0xFFFFFFF0;
Marshall Buschman6d5ee2d2011-06-04 15:43:15 +000071 smp_write_ioapic(mc, apicid_sb800, 0x21, dword);
Scott Duplichana649a962011-02-24 05:00:33 +000072
73 for (byte = 0x0; byte < sizeof(intr_data); byte ++) {
74 outb(byte | 0x80, 0xC00);
75 outb(intr_data[byte], 0xC01);
76 }
77
78 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
79#define IO_LOCAL_INT(type, intr, apicid, pin) \
80 smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
81
82 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb800, 0);
83
84 /* PCI interrupts are level triggered, and are
85 * associated with a specific bus/device/function tuple.
86 */
Patrick Georgie1667822012-05-05 15:29:32 +020087#if !CONFIG_GENERATE_ACPI_TABLES
Scott Duplichana649a962011-02-24 05:00:33 +000088#define PCI_INT(bus, dev, fn, pin) \
89 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb800, (pin))
90#else
91#define PCI_INT(bus, dev, fn, pin)
92#endif
93
Kerry Sheh28f17102011-12-22 12:18:26 +080094 /* APU Internal Graphic Device*/
95 PCI_INT(0x0, 0x01, 0x0, intr_data[0x02]);
96 PCI_INT(0x0, 0x01, 0x1, intr_data[0x03]);
97
Scott Duplichana649a962011-02-24 05:00:33 +000098 //PCI_INT(0x0, 0x14, 0x1, 0x11); /* IDE. */
99 PCI_INT(0x0, 0x14, 0x0, 0x10);
Kerry Sheh28f17102011-12-22 12:18:26 +0800100 /* Southbridge HD Audio: */
Scott Duplichana649a962011-02-24 05:00:33 +0000101 PCI_INT(0x0, 0x14, 0x2, 0x12);
102
103 PCI_INT(0x0, 0x12, 0x0, intr_data[0x30]); /* USB */
104 PCI_INT(0x0, 0x12, 0x1, intr_data[0x31]);
105 PCI_INT(0x0, 0x13, 0x0, intr_data[0x32]);
106 PCI_INT(0x0, 0x13, 0x1, intr_data[0x33]);
107 PCI_INT(0x0, 0x16, 0x0, intr_data[0x34]);
108 PCI_INT(0x0, 0x16, 0x1, intr_data[0x35]);
109
110 /* sata */
111 PCI_INT(0x0, 0x11, 0x0, intr_data[0x41]);
112
Scott Duplichana649a962011-02-24 05:00:33 +0000113 /* on board NIC & Slot PCIE. */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700114
Scott Duplichana649a962011-02-24 05:00:33 +0000115 /* PCI slots */
116 /* PCI_SLOT 0. */
117 PCI_INT(bus_sb800[1], 0x5, 0x0, 0x14);
118 PCI_INT(bus_sb800[1], 0x5, 0x1, 0x15);
119 PCI_INT(bus_sb800[1], 0x5, 0x2, 0x16);
120 PCI_INT(bus_sb800[1], 0x5, 0x3, 0x17);
121
122 /* PCI_SLOT 1. */
123 PCI_INT(bus_sb800[1], 0x6, 0x0, 0x15);
124 PCI_INT(bus_sb800[1], 0x6, 0x1, 0x16);
125 PCI_INT(bus_sb800[1], 0x6, 0x2, 0x17);
126 PCI_INT(bus_sb800[1], 0x6, 0x3, 0x14);
127
128 /* PCI_SLOT 2. */
129 PCI_INT(bus_sb800[1], 0x7, 0x0, 0x16);
130 PCI_INT(bus_sb800[1], 0x7, 0x1, 0x17);
131 PCI_INT(bus_sb800[1], 0x7, 0x2, 0x14);
132 PCI_INT(bus_sb800[1], 0x7, 0x3, 0x15);
133
134 PCI_INT(bus_sb800[2], 0x0, 0x0, 0x12);
135 PCI_INT(bus_sb800[2], 0x0, 0x1, 0x13);
136 PCI_INT(bus_sb800[2], 0x0, 0x2, 0x14);
137
138 /* PCIe PortA */
139 PCI_INT(0x0, 0x15, 0x0, 0x10);
140 /* PCIe PortB */
141 PCI_INT(0x0, 0x15, 0x1, 0x11);
142 /* PCIe PortC */
143 PCI_INT(0x0, 0x15, 0x2, 0x12);
144 /* PCIe PortD */
145 PCI_INT(0x0, 0x15, 0x3, 0x13);
146
147 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
148 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
149 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
150 /* There is no extension information... */
151
152 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +0200153 return mptable_finalize(mc);
Scott Duplichana649a962011-02-24 05:00:33 +0000154}
155
156unsigned long write_smp_table(unsigned long addr)
157{
158 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +0200159 v = smp_write_floating_table(addr, 0);
Scott Duplichana649a962011-02-24 05:00:33 +0000160 return (unsigned long)smp_write_config_table(v);
161}