blob: 497f9556a0efc8236de70b7a0524d43cd05a56bd [file] [log] [blame]
Dave Frodin892d1292013-12-11 12:38:40 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
5 * Copyright (C) 2013 Sage Electronic Engineering, LLC
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.
Dave Frodin892d1292013-12-11 12:38:40 -070015 */
16
17
18#include <console/console.h>
19#include <arch/smp/mpspec.h>
20#include <device/pci.h>
21#include <arch/io.h>
Kyösti Mälkkib4261072014-07-22 10:24:20 +030022#include <arch/ioapic.h>
Dave Frodin892d1292013-12-11 12:38:40 -070023#include <string.h>
24#include <stdint.h>
25#include <cpu/amd/amdfam14.h>
26#include <SBPLATFORM.h>
27
Dave Frodin892d1292013-12-11 12:38:40 -070028
Dave Frodin892d1292013-12-11 12:38:40 -070029u8 intr_data[] = {
30 [0x00] = 0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17, /* INTA# - INTH# */
31 [0x08] = 0x00,0x00,0x00,0x00,0x1F,0x1F,0x1F,0x1F, /* Misc-nil,0,1,2, INT from Serial irq */
32 [0x10] = 0x09,0x1F,0x1F,0x10,0x1F,0x12,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
33 0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
34 0x12,0x11,0x12,0x11,0x12,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
35 0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
36 0x10,0x11,0x12,0x13
37};
38
39static void *smp_write_config_table(void *v)
40{
41 struct mp_config_table *mc;
42 int bus_isa;
43
Kyösti Mälkkib4261072014-07-22 10:24:20 +030044 /*
45 * By the time this function gets called, the IOAPIC registers
46 * have been written so they can be read to get the correct
47 * APIC ID and Version
48 */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080049 u8 ioapic_id = (io_apic_read(VIO_APIC_VADDR, 0x00) >> 24);
50 u8 ioapic_ver = (io_apic_read(VIO_APIC_VADDR, 0x01) & 0xFF);
Kyösti Mälkkib4261072014-07-22 10:24:20 +030051
Dave Frodin892d1292013-12-11 12:38:40 -070052 mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
53
54 mptable_init(mc, LOCAL_APIC_ADDR);
Patrick Georgif0bd8712014-09-29 20:23:29 +020055 memcpy(mc->mpc_oem, "AMD ", 8);
Dave Frodin892d1292013-12-11 12:38:40 -070056
57 smp_write_processors(mc);
58
Dave Frodin892d1292013-12-11 12:38:40 -070059 mptable_write_buses(mc, NULL, &bus_isa);
60
61 /* I/O APICs: APIC ID Version State Address */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080062 smp_write_ioapic(mc, ioapic_id, ioapic_ver, VIO_APIC_VADDR);
Dave Frodin892d1292013-12-11 12:38:40 -070063
Dave Frodin892d1292013-12-11 12:38:40 -070064 u8 byte;
65
Dave Frodin892d1292013-12-11 12:38:40 -070066 for (byte = 0x0; byte < sizeof(intr_data); byte ++) {
67 outb(byte | 0x80, 0xC00);
68 outb(intr_data[byte], 0xC01);
69 }
70
71 /* I/O Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
72#define IO_LOCAL_INT(type, intr, apicid, pin) \
73 smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
74
Kyösti Mälkkib4261072014-07-22 10:24:20 +030075 mptable_add_isa_interrupts(mc, bus_isa, ioapic_id, 0);
Dave Frodin892d1292013-12-11 12:38:40 -070076
77 /* PCI interrupts are level triggered, and are
78 * associated with a specific bus/device/function tuple.
79 */
Dave Frodin892d1292013-12-11 12:38:40 -070080#define PCI_INT(bus, dev, fn, pin) \
Kyösti Mälkkib4261072014-07-22 10:24:20 +030081 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), ioapic_id, (pin))
Dave Frodin892d1292013-12-11 12:38:40 -070082
83 /* APU Internal Graphic Device*/
84 PCI_INT(0x0, 0x01, 0x0, intr_data[0x02]);
85 PCI_INT(0x0, 0x01, 0x1, intr_data[0x03]);
86
87 //PCI_INT(0x0, 0x14, 0x1, 0x11); /* IDE. */
88 PCI_INT(0x0, 0x14, 0x0, 0x10);
89 /* Southbridge HD Audio: */
90 PCI_INT(0x0, 0x14, 0x2, 0x12);
91
92 PCI_INT(0x0, 0x12, 0x0, intr_data[0x30]); /* USB */
93 PCI_INT(0x0, 0x12, 0x1, intr_data[0x31]);
94 PCI_INT(0x0, 0x13, 0x0, intr_data[0x32]);
95 PCI_INT(0x0, 0x13, 0x1, intr_data[0x33]);
96 PCI_INT(0x0, 0x16, 0x0, intr_data[0x34]);
97 PCI_INT(0x0, 0x16, 0x1, intr_data[0x35]);
98
99 /* sata */
100 PCI_INT(0x0, 0x11, 0x0, intr_data[0x41]);
101
102 /* on board NIC & Slot PCIE. */
103
104 /* PCI slots */
Kyösti Mälkkicdfb4622014-07-22 15:24:15 +0300105 device_t dev = dev_find_slot(0, PCI_DEVFN(0x14, 4));
106 if (dev && dev->enabled) {
107 u8 bus_pci = dev->link_list->secondary;
108 /* PCI_SLOT 0. */
109 PCI_INT(bus_pci, 0x5, 0x0, 0x14);
110 PCI_INT(bus_pci, 0x5, 0x1, 0x15);
111 PCI_INT(bus_pci, 0x5, 0x2, 0x16);
112 PCI_INT(bus_pci, 0x5, 0x3, 0x17);
Dave Frodin892d1292013-12-11 12:38:40 -0700113
Kyösti Mälkkicdfb4622014-07-22 15:24:15 +0300114 /* PCI_SLOT 1. */
115 PCI_INT(bus_pci, 0x6, 0x0, 0x15);
116 PCI_INT(bus_pci, 0x6, 0x1, 0x16);
117 PCI_INT(bus_pci, 0x6, 0x2, 0x17);
118 PCI_INT(bus_pci, 0x6, 0x3, 0x14);
Dave Frodin892d1292013-12-11 12:38:40 -0700119
Kyösti Mälkkicdfb4622014-07-22 15:24:15 +0300120 /* PCI_SLOT 2. */
121 PCI_INT(bus_pci, 0x7, 0x0, 0x16);
122 PCI_INT(bus_pci, 0x7, 0x1, 0x17);
123 PCI_INT(bus_pci, 0x7, 0x2, 0x14);
124 PCI_INT(bus_pci, 0x7, 0x3, 0x15);
125 }
Dave Frodin892d1292013-12-11 12:38:40 -0700126
127 /* PCIe PortA */
128 PCI_INT(0x0, 0x15, 0x0, 0x10);
129 /* PCIe PortB */
130 PCI_INT(0x0, 0x15, 0x1, 0x11);
131 /* PCIe PortC */
132 PCI_INT(0x0, 0x15, 0x2, 0x12);
133 /* PCIe PortD */
134 PCI_INT(0x0, 0x15, 0x3, 0x13);
135
136 /*Local Ints: Type Polarity Trigger Bus ID IRQ APIC ID PIN# */
137 IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
138 IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
139 /* There is no extension information... */
140
141 /* Compute the checksums */
142 return mptable_finalize(mc);
143}
144
145unsigned long write_smp_table(unsigned long addr)
146{
147 void *v;
148 v = smp_write_floating_table(addr, 0);
149 return (unsigned long)smp_write_config_table(v);
150}