remove trailing whitespace
[coreboot.git] / src / mainboard / amd / torpedo / mptable.c
1 /*
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>
27 #include <arch/cpu.h>
28 #include <cpu/x86/lapic.h>
29
30 //-#define IO_APIC_ID    CONFIG_MAX_PHYSICAL_CPUS + 1
31 #define IO_APIC_ID    CONFIG_MAX_CPUS
32 extern u8 bus_sb900[2];
33
34
35 extern u32 bus_type[256];
36 extern u32 sbdn_sb900;
37 u32 apicid_sb900;
38
39 u8 picr_data[] = {
40   0x0B,0x0B,0x0B,0x0B,0x1F,0x1F,0x1F,0x1F,0xFA,0xF1,0x00,0x00,0x1F,0x1F,0x1F,0x1F,
41   0x09,0x1F,0x1F,0x0B,0x1F,0x0B,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
42   0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
43   0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
44   0x0B,0x0B,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
45   0x0B,0x0B,0x0B,0x0B
46 };
47 u8 intr_data[] = {
48   0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x00,0x00,0x00,0x00,0x1F,0x1F,0x1F,0x1F,
49   0x09,0x1F,0x1F,0x10,0x1F,0x12,0x1F,0x10,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
50   0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
51   0x12,0x11,0x12,0x11,0x12,0x11,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
52   0x11,0x13,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
53   0x10,0x11,0x12,0x13
54 };
55
56 static void smp_add_mpc_entry(struct mp_config_table *mc, unsigned length)
57 {
58   mc->mpc_length += length;
59   mc->mpc_entry_count++;
60 }
61 static void my_smp_write_bus(struct mp_config_table *mc,
62   unsigned char id, const char *bustype)
63 {
64   struct mpc_config_bus *mpc;
65   mpc = smp_next_mpc_entry(mc);
66   memset(mpc, '\0', sizeof(*mpc));
67   mpc->mpc_type = MP_BUS;
68   mpc->mpc_busid = id;
69   memcpy(mpc->mpc_bustype, bustype, sizeof(mpc->mpc_bustype));
70   smp_add_mpc_entry(mc, sizeof(*mpc));
71 }
72 static void *smp_write_config_table(void *v)
73 {
74   struct mp_config_table *mc;
75   int bus_isa;
76   int boot_apic_id;
77   unsigned apic_version;
78   unsigned cpu_features;
79   unsigned cpu_feature_flags;
80   struct cpuid_result result;
81   unsigned long cpu_flag;
82
83   mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
84
85   mptable_init(mc, LAPIC_ADDR);
86   memcpy(mc->mpc_oem, "AMD     ", 8);
87
88   /*Inagua used dure core cpu with one die */
89   boot_apic_id = lapicid();
90   apic_version = lapic_read(LAPIC_LVR) & 0xff;
91   result = cpuid(1);
92   cpu_features = result.eax;
93   cpu_feature_flags = result.edx;
94   cpu_flag = MPC_CPU_ENABLED | MPC_CPU_BOOTPROCESSOR;
95   smp_write_processor(mc,
96       0, apic_version,
97       cpu_flag, cpu_features, cpu_feature_flags
98     );
99
100   cpu_flag = MPC_CPU_ENABLED;
101   smp_write_processor(mc,
102       1, apic_version,
103       cpu_flag, cpu_features, cpu_feature_flags
104     );
105
106   get_bus_conf();
107
108   //mptable_write_buses(mc, NULL, &bus_isa);
109   my_smp_write_bus(mc, 0, "PCI   ");
110   my_smp_write_bus(mc, 1, "PCI   ");
111   bus_isa = 0x02;
112   my_smp_write_bus(mc, bus_isa, "ISA   ");
113
114   /* I/O APICs:   APIC ID Version State   Address */
115
116   device_t dev;
117   u32 dword;
118   u8 byte;
119
120   dword = 0;
121   dword = pm_ioread(0x34) & 0xF0;
122   dword |= (pm_ioread(0x35) & 0xFF) << 8;
123   dword |= (pm_ioread(0x36) & 0xFF) << 16;
124   dword |= (pm_ioread(0x37) & 0xFF) << 24;
125   /* Set IO APIC ID onto IO_APIC_ID */
126   write32 (dword, 0x00);
127   write32 (dword + 0x10, IO_APIC_ID << 24);
128   apicid_sb900 = IO_APIC_ID;
129   smp_write_ioapic(mc, apicid_sb900, 0x21, dword);
130
131   /* PIC IRQ routine */
132   for (byte = 0x0; byte < sizeof(picr_data); byte ++) {
133     outb(byte, 0xC00);
134     outb(picr_data[byte], 0xC01);
135   }
136
137   /* APIC IRQ routine */
138   for (byte = 0x0; byte < sizeof(intr_data); byte ++) {
139     outb(byte | 0x80, 0xC00);
140     outb(intr_data[byte], 0xC01);
141   }
142
143     /* I/O Ints:    Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN# */
144 #define IO_LOCAL_INT(type, intr, apicid, pin) \
145   smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, (intr), (apicid), (pin));
146
147   //mptable_add_isa_interrupts(mc, bus_isa, apicid_sb900, 0);
148   /*I/O Ints:          Type    Trigger             Polarity               Bus ID   IRQ  APIC ID       PIN# */
149   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x0, apicid_sb900, 0x0);
150   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x1, apicid_sb900, 0x1);
151   smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x2, apicid_sb900, 0x2);
152   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x3, apicid_sb900, 0x3);
153   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x4, apicid_sb900, 0x4);
154   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,  0, 0x49, apicid_sb900, 0x11);
155   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x6, apicid_sb900, 0x6);
156   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x7, apicid_sb900, 0x7);
157   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x8, apicid_sb900, 0x8);
158   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0x9, apicid_sb900, 0x9);
159   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,  bus_isa, 0xa, apicid_sb900, 0xa);
160   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,  bus_isa, 0x1c, apicid_sb900, 0x13);
161   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xc, apicid_sb900, 0xc);
162   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xd, apicid_sb900, 0xd);
163   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xe, apicid_sb900, 0xe);
164   smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, 0xf, apicid_sb900, 0xf);
165
166   /* PCI interrupts are level triggered, and are
167    * associated with a specific bus/device/function tuple.
168    */
169 #define PCI_INT(bus, dev, int_sign, pin) \
170         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, (bus), (((dev)<<2)|(int_sign)), apicid_sb900, (pin))
171
172   /* Internal VGA */
173   PCI_INT(0x0, 0x01, 0x0, intr_data[0x02]);
174   PCI_INT(0x0, 0x01, 0x1, intr_data[0x03]);
175
176   /* SMBUS */
177   PCI_INT(0x0, 0x14, 0x0, 0x10);
178
179   /* HD Audio */
180   PCI_INT(0x0, 0x14, 0x0, intr_data[0x13]);
181
182   /* USB */
183   PCI_INT(0x0, 0x12, 0x0, intr_data[0x30]);
184   PCI_INT(0x0, 0x12, 0x1, intr_data[0x31]);
185   PCI_INT(0x0, 0x13, 0x0, intr_data[0x32]);
186   PCI_INT(0x0, 0x13, 0x1, intr_data[0x33]);
187   PCI_INT(0x0, 0x16, 0x0, intr_data[0x34]);
188   PCI_INT(0x0, 0x16, 0x1, intr_data[0x35]);
189   PCI_INT(0x0, 0x14, 0x2, intr_data[0x36]);
190
191   /* sata */
192   PCI_INT(0x0, 0x11, 0x0, intr_data[0x40]);
193   PCI_INT(0x0, 0x11, 0x0, intr_data[0x41]);
194
195
196   /* on board NIC & Slot PCIE.  */
197
198   /* PCI slots */
199   /* PCI_SLOT 0. */
200   PCI_INT(bus_sb900[1], 0x5, 0x0, 0x14);
201   PCI_INT(bus_sb900[1], 0x5, 0x1, 0x15);
202   PCI_INT(bus_sb900[1], 0x5, 0x2, 0x16);
203   PCI_INT(bus_sb900[1], 0x5, 0x3, 0x17);
204
205   /* PCI_SLOT 1. */
206   PCI_INT(bus_sb900[1], 0x6, 0x0, 0x15);
207   PCI_INT(bus_sb900[1], 0x6, 0x1, 0x16);
208   PCI_INT(bus_sb900[1], 0x6, 0x2, 0x17);
209   PCI_INT(bus_sb900[1], 0x6, 0x3, 0x14);
210
211   /* PCI_SLOT 2. */
212   PCI_INT(bus_sb900[1], 0x7, 0x0, 0x16);
213   PCI_INT(bus_sb900[1], 0x7, 0x1, 0x17);
214   PCI_INT(bus_sb900[1], 0x7, 0x2, 0x14);
215   PCI_INT(bus_sb900[1], 0x7, 0x3, 0x15);
216
217   PCI_INT(bus_sb900[2], 0x0, 0x0, 0x12);
218   PCI_INT(bus_sb900[2], 0x0, 0x1, 0x13);
219   PCI_INT(bus_sb900[2], 0x0, 0x2, 0x14);
220
221   /* PCIe Lan*/
222   PCI_INT(0x0, 0x06, 0x0, 0x13);
223
224   /* FCH PCIe PortA */
225   PCI_INT(0x0, 0x15, 0x0, 0x10);
226   /* FCH PCIe PortB */
227   PCI_INT(0x0, 0x15, 0x1, 0x11);
228   /* FCH PCIe PortC */
229   PCI_INT(0x0, 0x15, 0x2, 0x12);
230   /* FCH PCIe PortD */
231   PCI_INT(0x0, 0x15, 0x3, 0x13);
232
233   /*Local Ints:   Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN# */
234   IO_LOCAL_INT(mp_ExtINT, 0, MP_APIC_ALL, 0x0);
235   IO_LOCAL_INT(mp_NMI, 0, MP_APIC_ALL, 0x1);
236   /* There is no extension information... */
237
238   /* Compute the checksums */
239   return mptable_finalize(mc);
240 }
241
242 unsigned long write_smp_table(unsigned long addr)
243 {
244   void *v;
245   v = smp_write_floating_table(addr, 0);
246   return (unsigned long)smp_write_config_table(v);
247 }