blob: b3393480ab9d91b5dec0a953c3111e034f2f37c4 [file] [log] [blame]
Frank Vibrans69da1b62011-02-14 19:04:45 +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 Sheh01f7ab92012-01-19 13:18:36 +080027#include <cpu/amd/amdfam14.h>
Kerry Shefeed3292011-08-18 18:03:44 +080028#include <SBPLATFORM.h>
Frank Vibrans69da1b62011-02-14 19:04:45 +000029
Frank Vibrans69da1b62011-02-14 19:04:45 +000030extern u8 bus_sb800[2];
31
Kerry Sheh01f7ab92012-01-19 13:18:36 +080032extern u32 apicid_sb800;
Frank Vibrans69da1b62011-02-14 19:04:45 +000033
34extern u32 bus_type[256];
35extern u32 sbdn_sb800;
Frank Vibrans69da1b62011-02-14 19:04:45 +000036
Frank Vibrans69da1b62011-02-14 19:04:45 +000037u8 intr_data[] = {
Kerry Sheh01f7ab92012-01-19 13:18:36 +080038 [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,
41 [0x18] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
42 [0x20] = 0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,
43 [0x28] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
44 [0x30] = 0x12,0x11,0x12,0x11,0x12,0x11,0x12,0x00,
45 [0x38] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
46 [0x40] = 0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x00,
47 [0x48] = 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
48 [0x50] = 0x10,0x11,0x12,0x13
Frank Vibrans69da1b62011-02-14 19:04:45 +000049};
50
Frank Vibrans69da1b62011-02-14 19:04:45 +000051static void *smp_write_config_table(void *v)
52{
Kerry Shehf03360f2012-01-19 13:25:55 +080053 struct mp_config_table *mc;
54 int bus_isa;
Frank Vibrans69da1b62011-02-14 19:04:45 +000055
Kerry Shehf03360f2012-01-19 13:25:55 +080056 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
Frank Vibrans69da1b62011-02-14 19:04:45 +000057
Kerry Shehf03360f2012-01-19 13:25:55 +080058 mptable_init(mc, LAPIC_ADDR);
59 memcpy(mc->mpc_oem, "AMD ", 8);
Frank Vibrans69da1b62011-02-14 19:04:45 +000060
Kerry Sheh01f7ab92012-01-19 13:18:36 +080061 smp_write_processors(mc);
Frank Vibrans69da1b62011-02-14 19:04:45 +000062
Kerry Shehf03360f2012-01-19 13:25:55 +080063 get_bus_conf();
Frank Vibrans69da1b62011-02-14 19:04:45 +000064
Kerry Sheh01f7ab92012-01-19 13:18:36 +080065 mptable_write_buses(mc, NULL, &bus_isa);
Frank Vibrans69da1b62011-02-14 19:04:45 +000066
Kerry Shehf03360f2012-01-19 13:25:55 +080067 /* I/O APICs: APIC ID Version State Address */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070068
Kerry Shehf03360f2012-01-19 13:25:55 +080069 u32 dword;
70 u8 byte;
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070071
Kerry Shehf03360f2012-01-19 13:25:55 +080072 ReadPMIO(SB_PMIOA_REG34, AccWidthUint32, &dword);
73 dword &= 0xFFFFFFF0;
74 smp_write_ioapic(mc, apicid_sb800, 0x21, dword);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070075
Kerry Shehf03360f2012-01-19 13:25:55 +080076 for (byte = 0x0; byte < sizeof(intr_data); byte ++) {
77 outb(byte | 0x80, 0xC00);
78 outb(intr_data[byte], 0xC01);
79 }
Frank Vibrans69da1b62011-02-14 19:04:45 +000080
Kerry Shehf03360f2012-01-19 13:25:55 +080081 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
Frank Vibrans69da1b62011-02-14 19:04:45 +000082#define IO_LOCAL_INT(type, intr, apicid, pin) \
Kerry Shehf03360f2012-01-19 13:25:55 +080083 smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
Frank Vibrans69da1b62011-02-14 19:04:45 +000084
Kerry Sheh01f7ab92012-01-19 13:18:36 +080085 mptable_add_isa_interrupts(mc, bus_isa, apicid_sb800, 0);
Frank Vibrans69da1b62011-02-14 19:04:45 +000086
Kerry Shehf03360f2012-01-19 13:25:55 +080087 /* PCI interrupts are level triggered, and are
88 * associated with a specific bus/device/function tuple.
89 */
Kerry Sheh01f7ab92012-01-19 13:18:36 +080090#if CONFIG_GENERATE_ACPI_TABLES == 0
91#define PCI_INT(bus, dev, fn, pin) \
Kerry Shehf03360f2012-01-19 13:25:55 +080092 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb800, (pin))
Kerry Sheh01f7ab92012-01-19 13:18:36 +080093#else
94#define PCI_INT(bus, dev, fn, pin)
95#endif
Frank Vibrans69da1b62011-02-14 19:04:45 +000096
Kerry Shehf03360f2012-01-19 13:25:55 +080097 /* APU Internal Graphic Device*/
98 PCI_INT(0x0, 0x01, 0x0, intr_data[0x02]);
99 PCI_INT(0x0, 0x01, 0x1, intr_data[0x03]);
Kerry Sheh28f17102011-12-22 12:18:26 +0800100
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800101 //PCI_INT(0x0, 0x14, 0x1, 0x11); /* IDE. */
Kerry Shehf03360f2012-01-19 13:25:55 +0800102 PCI_INT(0x0, 0x14, 0x0, 0x10);
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800103 /* Southbridge HD Audio: */
104 PCI_INT(0x0, 0x14, 0x2, 0x12);
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700105
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800106 PCI_INT(0x0, 0x12, 0x0, intr_data[0x30]); /* USB */
Kerry Shehf03360f2012-01-19 13:25:55 +0800107 PCI_INT(0x0, 0x12, 0x1, intr_data[0x31]);
108 PCI_INT(0x0, 0x13, 0x0, intr_data[0x32]);
109 PCI_INT(0x0, 0x13, 0x1, intr_data[0x33]);
110 PCI_INT(0x0, 0x16, 0x0, intr_data[0x34]);
111 PCI_INT(0x0, 0x16, 0x1, intr_data[0x35]);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000112
Kerry Shehf03360f2012-01-19 13:25:55 +0800113 /* sata */
114 PCI_INT(0x0, 0x11, 0x0, intr_data[0x41]);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000115
Kerry Shehf03360f2012-01-19 13:25:55 +0800116 /* on board NIC & Slot PCIE. */
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700117
Kerry Shehf03360f2012-01-19 13:25:55 +0800118 /* PCI slots */
119 /* PCI_SLOT 0. */
120 PCI_INT(bus_sb800[1], 0x5, 0x0, 0x14);
121 PCI_INT(bus_sb800[1], 0x5, 0x1, 0x15);
122 PCI_INT(bus_sb800[1], 0x5, 0x2, 0x16);
123 PCI_INT(bus_sb800[1], 0x5, 0x3, 0x17);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000124
Kerry Shehf03360f2012-01-19 13:25:55 +0800125 /* PCI_SLOT 1. */
126 PCI_INT(bus_sb800[1], 0x6, 0x0, 0x15);
127 PCI_INT(bus_sb800[1], 0x6, 0x1, 0x16);
128 PCI_INT(bus_sb800[1], 0x6, 0x2, 0x17);
129 PCI_INT(bus_sb800[1], 0x6, 0x3, 0x14);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000130
Kerry Shehf03360f2012-01-19 13:25:55 +0800131 /* PCI_SLOT 2. */
132 PCI_INT(bus_sb800[1], 0x7, 0x0, 0x16);
133 PCI_INT(bus_sb800[1], 0x7, 0x1, 0x17);
134 PCI_INT(bus_sb800[1], 0x7, 0x2, 0x14);
135 PCI_INT(bus_sb800[1], 0x7, 0x3, 0x15);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000136
Kerry Shehf03360f2012-01-19 13:25:55 +0800137 PCI_INT(bus_sb800[2], 0x0, 0x0, 0x12);
138 PCI_INT(bus_sb800[2], 0x0, 0x1, 0x13);
139 PCI_INT(bus_sb800[2], 0x0, 0x2, 0x14);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000140
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800141 /* PCIe PortA */
Kerry Shehf03360f2012-01-19 13:25:55 +0800142 PCI_INT(0x0, 0x15, 0x0, 0x10);
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800143 /* PCIe PortB */
Kerry Shehf03360f2012-01-19 13:25:55 +0800144 PCI_INT(0x0, 0x15, 0x1, 0x11);
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800145 /* PCIe PortC */
Kerry Shehf03360f2012-01-19 13:25:55 +0800146 PCI_INT(0x0, 0x15, 0x2, 0x12);
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800147 /* PCIe PortD */
Kerry Shehf03360f2012-01-19 13:25:55 +0800148 PCI_INT(0x0, 0x15, 0x3, 0x13);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000149
Kerry Shehf03360f2012-01-19 13:25:55 +0800150 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
Kerry Sheh01f7ab92012-01-19 13:18:36 +0800151 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
152 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
Kerry Shehf03360f2012-01-19 13:25:55 +0800153 /* There is no extension information... */
Frank Vibrans69da1b62011-02-14 19:04:45 +0000154
Kerry Shehf03360f2012-01-19 13:25:55 +0800155 /* Compute the checksums */
156 return mptable_finalize(mc);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000157}
158
159unsigned long write_smp_table(unsigned long addr)
160{
Kerry Shehf03360f2012-01-19 13:25:55 +0800161 void *v;
162 v = smp_write_floating_table(addr, 0);
163 return (unsigned long)smp_write_config_table(v);
Frank Vibrans69da1b62011-02-14 19:04:45 +0000164}