blob: 960c2c86f1892bfc298d913645cf4c2d7d0eb339 [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
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
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>
Kerry Shefeed3292011-08-18 18:03:44 +080027#include <SBPLATFORM.h>
Scott Duplichana649a962011-02-24 05:00:33 +000028
29extern u8 bus_sb800[2];
30
31extern u32 apicid_sb800;
32
33extern u32 bus_type[256];
34extern u32 sbdn_sb800;
35
36u8 intr_data[] = {
37 [0x00] = 0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17, /* INTA# - INTH# */
38 [0x08] = 0x00,0x00,0x00,0x00,0x1F,0x1F,0x1F,0x1F, /* Misc-nil,0,1,2, INT from Serial irq */
39 [0x10] = 0x09,0x1F,0x1F,0x10,0x1F,0x12,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
40 0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
41 0x12,0x11,0x12,0x11,0x12,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
42 0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
43 0x10,0x11,0x12,0x13
44};
45
46static void *smp_write_config_table(void *v)
47{
48 struct mp_config_table *mc;
49 int bus_isa;
50
51 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
52
53 mptable_init(mc, LAPIC_ADDR);
Scott Duplichan63896e72011-02-26 17:49:49 +000054 memcpy(mc->mpc_oem, "ASROCK ", 8);
Scott Duplichana649a962011-02-24 05:00:33 +000055
56 smp_write_processors(mc);
57
58 get_bus_conf();
59
60 mptable_write_buses(mc, NULL, &bus_isa);
61
62 /* I/O APICs: APIC ID Version State Address */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070063
Scott Duplichana649a962011-02-24 05:00:33 +000064 device_t dev;
65 u32 dword;
66 u8 byte;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070067
Kerry Shefeed3292011-08-18 18:03:44 +080068 ReadPMIO(SB_PMIOA_REG34, AccWidthUint32, &dword);
69 dword &= 0xFFFFFFF0;
Marshall Buschman6d5ee2d2011-06-04 15:43:15 +000070 smp_write_ioapic(mc, apicid_sb800, 0x21, dword);
Scott Duplichana649a962011-02-24 05:00:33 +000071
72 for (byte = 0x0; byte < sizeof(intr_data); byte ++) {
73 outb(byte | 0x80, 0xC00);
74 outb(intr_data[byte], 0xC01);
75 }
76
77 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
78#define IO_LOCAL_INT(type, intr, apicid, pin) \
79 smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
80
81 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb800, 0);
82
83 /* PCI interrupts are level triggered, and are
84 * associated with a specific bus/device/function tuple.
85 */
86#if CONFIG_GENERATE_ACPI_TABLES == 0
87#define PCI_INT(bus, dev, fn, pin) \
88 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb800, (pin))
89#else
90#define PCI_INT(bus, dev, fn, pin)
91#endif
92
93 //PCI_INT(0x0, 0x14, 0x1, 0x11); /* IDE. */
94 PCI_INT(0x0, 0x14, 0x0, 0x10);
95 /* HD Audio: */
96 PCI_INT(0x0, 0x14, 0x2, 0x12);
97
98 PCI_INT(0x0, 0x12, 0x0, intr_data[0x30]); /* USB */
99 PCI_INT(0x0, 0x12, 0x1, intr_data[0x31]);
100 PCI_INT(0x0, 0x13, 0x0, intr_data[0x32]);
101 PCI_INT(0x0, 0x13, 0x1, intr_data[0x33]);
102 PCI_INT(0x0, 0x16, 0x0, intr_data[0x34]);
103 PCI_INT(0x0, 0x16, 0x1, intr_data[0x35]);
104
105 /* sata */
106 PCI_INT(0x0, 0x11, 0x0, intr_data[0x41]);
107
108 /* PCI_INT(0x0, 0x14, 0x2, 0x12); */
109
110 /* on board NIC & Slot PCIE. */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700111
Scott Duplichana649a962011-02-24 05:00:33 +0000112 /* PCI slots */
113 /* PCI_SLOT 0. */
114 PCI_INT(bus_sb800[1], 0x5, 0x0, 0x14);
115 PCI_INT(bus_sb800[1], 0x5, 0x1, 0x15);
116 PCI_INT(bus_sb800[1], 0x5, 0x2, 0x16);
117 PCI_INT(bus_sb800[1], 0x5, 0x3, 0x17);
118
119 /* PCI_SLOT 1. */
120 PCI_INT(bus_sb800[1], 0x6, 0x0, 0x15);
121 PCI_INT(bus_sb800[1], 0x6, 0x1, 0x16);
122 PCI_INT(bus_sb800[1], 0x6, 0x2, 0x17);
123 PCI_INT(bus_sb800[1], 0x6, 0x3, 0x14);
124
125 /* PCI_SLOT 2. */
126 PCI_INT(bus_sb800[1], 0x7, 0x0, 0x16);
127 PCI_INT(bus_sb800[1], 0x7, 0x1, 0x17);
128 PCI_INT(bus_sb800[1], 0x7, 0x2, 0x14);
129 PCI_INT(bus_sb800[1], 0x7, 0x3, 0x15);
130
131 PCI_INT(bus_sb800[2], 0x0, 0x0, 0x12);
132 PCI_INT(bus_sb800[2], 0x0, 0x1, 0x13);
133 PCI_INT(bus_sb800[2], 0x0, 0x2, 0x14);
134
135 /* PCIe PortA */
136 PCI_INT(0x0, 0x15, 0x0, 0x10);
137 /* PCIe PortB */
138 PCI_INT(0x0, 0x15, 0x1, 0x11);
139 /* PCIe PortC */
140 PCI_INT(0x0, 0x15, 0x2, 0x12);
141 /* PCIe PortD */
142 PCI_INT(0x0, 0x15, 0x3, 0x13);
143
144 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
145 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
146 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
147 /* There is no extension information... */
148
149 /* Compute the checksums */
Patrick Georgib0a9c5c2011-10-07 23:01:55 +0200150 return mptable_finalize(mc);
Scott Duplichana649a962011-02-24 05:00:33 +0000151}
152
153unsigned long write_smp_table(unsigned long addr)
154{
155 void *v;
Patrick Georgic75c79b2011-10-07 22:41:07 +0200156 v = smp_write_floating_table(addr, 0);
Scott Duplichana649a962011-02-24 05:00:33 +0000157 return (unsigned long)smp_write_config_table(v);
158}