Add support for the AMD Bimini eval mainboard.
[coreboot.git] / src / mainboard / amd / bimini_fam10 / mptable.c
1 /*
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
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>
27 #include "pmio.h"
28
29 #include <cpu/amd/amdfam10_sysconf.h>
30
31 extern int bus_isa;
32 extern u8 bus_rs780[11];
33 extern u8 bus_sb800[2];
34
35 extern u32 apicid_sb800;
36
37 extern u32 bus_type[256];
38 extern u32 sbdn_rs780;
39 extern u32 sbdn_sb800;
40
41 u8 intr_data[] = {
42         [0x00] = 0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17, /* INTA# - INTH# */
43         [0x08] = 0x00,0x00,0x00,0x00,0x1F,0x1F,0x1F,0x1F, /* Misc-nil,0,1,2, INT from Serial irq */
44         [0x10] = 0x1F,0x1F,0x1F,0x10,0x1F,0x12,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
45         0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
46         0x12,0x11,0x12,0x11,0x12,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
47         0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
48         0x10,0x11,0x12,0x13
49 };
50
51 static void *smp_write_config_table(void *v)
52 {
53         static const char sig[4] = "PCMP";
54         static const char oem[8] = "COREBOOT";
55         static const char productid[12] = "BIMINI      ";
56         struct mp_config_table *mc;
57         u32 dword;
58         u8 byte;
59
60         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
61         memset(mc, 0, sizeof(*mc));
62
63         memcpy(mc->mpc_signature, sig, sizeof(sig));
64         mc->mpc_length = sizeof(*mc);   /* initially just the header */
65         mc->mpc_spec = 0x04;
66         mc->mpc_checksum = 0;   /* not yet computed */
67         memcpy(mc->mpc_oem, oem, sizeof(oem));
68         memcpy(mc->mpc_productid, productid, sizeof(productid));
69         mc->mpc_oemptr = 0;
70         mc->mpc_oemsize = 0;
71         mc->mpc_entry_count = 0;        /* No entries yet... */
72         mc->mpc_lapic = LAPIC_ADDR;
73         mc->mpe_length = 0;
74         mc->mpe_checksum = 0;
75         mc->reserved = 0;
76
77         smp_write_processors(mc);
78
79         get_bus_conf();
80
81         mptable_write_buses(mc, NULL, &bus_isa);
82
83         /* I/O APICs:   APIC ID Version State   Address */
84
85         dword = 0;
86         dword = pm_ioread(0x34) & 0xF0;
87         dword |= (pm_ioread(0x35) & 0xFF) << 8;
88         dword |= (pm_ioread(0x36) & 0xFF) << 16;
89         dword |= (pm_ioread(0x37) & 0xFF) << 24;
90         smp_write_ioapic(mc, apicid_sb800, 0x11, dword);
91
92         for (byte = 0x0; byte < sizeof(intr_data); byte ++) {
93                 outb(byte | 0x80, 0xC00);
94                 outb(intr_data[byte], 0xC01);
95         }
96
97         /* I/O Ints:    Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN# */
98 #define IO_LOCAL_INT(type, intr, apicid, pin) \
99         smp_write_intsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
100
101         mptable_add_isa_interrupts(mc, bus_isa, apicid_sb800, 0);
102
103         /* PCI interrupts are level triggered, and are
104          * associated with a specific bus/device/function tuple.
105          */
106 #if CONFIG_GENERATE_ACPI_TABLES == 0
107 #define PCI_INT(bus, dev, fn, pin) \
108         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(fn)), apicid_sb800, (pin))
109 #else
110 #define PCI_INT(bus, dev, fn, pin)
111 #endif
112
113         PCI_INT(0x0, 0x14, 0x0, 0x10);
114         /* HD Audio: */
115         PCI_INT(0x0, 0x14, 0x2, 0x12);
116
117         PCI_INT(0x0, 0x12, 0x0, intr_data[0x30]); /* USB */
118         PCI_INT(0x0, 0x12, 0x1, intr_data[0x31]);
119         PCI_INT(0x0, 0x13, 0x0, intr_data[0x32]);
120         PCI_INT(0x0, 0x13, 0x1, intr_data[0x33]);
121         PCI_INT(0x0, 0x16, 0x0, intr_data[0x34]);
122         PCI_INT(0x0, 0x16, 0x1, intr_data[0x35]);
123
124         /* sata */
125         PCI_INT(0x0, 0x11, 0x0, intr_data[0x41]);
126
127         /* on board NIC & Slot PCIE.  */
128         /* PCI_INT(bus_rs780[0x1], 0x5, 0x0, 0x12); */
129 /*      PCI_INT(bus_rs780[0x1], 0x5, 0x1, 0x13); */
130         PCI_INT(bus_rs780[0x2], 0x0, 0x0, 0x12); /* Dev 2, external GFX */
131         /* PCI_INT(bus_rs780[0x3], 0x0, 0x0, 0x13); */
132         PCI_INT(bus_rs780[0x4], 0x0, 0x0, 0x10);
133         /* configuration B doesnt need dev 5,6,7 */
134         /*
135          * PCI_INT(bus_rs780[0x5], 0x0, 0x0, 0x11);
136          * PCI_INT(bus_rs780[0x6], 0x0, 0x0, 0x12);
137          * PCI_INT(bus_rs780[0x7], 0x0, 0x0, 0x13);
138          */
139         PCI_INT(bus_rs780[0x9], 0x0, 0x0, 0x11);
140         PCI_INT(bus_rs780[0xA], 0x0, 0x0, 0x12); /* NIC */
141
142         /* PCI slots */
143         /* PCI_SLOT 0. */
144         PCI_INT(bus_sb800[1], 0x5, 0x0, 0x14);
145         PCI_INT(bus_sb800[1], 0x5, 0x1, 0x15);
146         PCI_INT(bus_sb800[1], 0x5, 0x2, 0x16);
147         PCI_INT(bus_sb800[1], 0x5, 0x3, 0x17);
148
149         /* PCI_SLOT 1. */
150         PCI_INT(bus_sb800[1], 0x6, 0x0, 0x15);
151         PCI_INT(bus_sb800[1], 0x6, 0x1, 0x16);
152         PCI_INT(bus_sb800[1], 0x6, 0x2, 0x17);
153         PCI_INT(bus_sb800[1], 0x6, 0x3, 0x14);
154
155         /* PCI_SLOT 2. */
156         PCI_INT(bus_sb800[1], 0x7, 0x0, 0x16);
157         PCI_INT(bus_sb800[1], 0x7, 0x1, 0x17);
158         PCI_INT(bus_sb800[1], 0x7, 0x2, 0x14);
159         PCI_INT(bus_sb800[1], 0x7, 0x3, 0x15);
160
161         /*Local Ints:   Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN# */
162         IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
163         IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
164         /* There is no extension information... */
165
166         /* Compute the checksums */
167         mc->mpe_checksum =
168             smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
169         mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
170         printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
171                      mc, smp_next_mpe_entry(mc));
172         return smp_next_mpe_entry(mc);
173 }
174
175 unsigned long write_smp_table(unsigned long addr)
176 {
177         void *v;
178         v = smp_write_floating_table(addr);
179         return (unsigned long)smp_write_config_table(v);
180 }