68ff4ed353c1f3f19c061914fce22c82bf8ad1f1
[coreboot.git] / src / mainboard / supermicro / h8dme / mptable.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 AMD
5  * Written by Yinghai Lu <yinghailu@amd.com> for AMD.
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; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #include <console/console.h>
23 #include <arch/smp/mpspec.h>
24 #include <device/pci.h>
25 #include <string.h>
26 #include <stdint.h>
27
28 #include <cpu/amd/amdk8_sysconf.h>
29 extern unsigned char bus_isa;
30 extern unsigned char bus_mcp55[8]; //1
31
32 extern unsigned apicid_mcp55;
33
34 extern unsigned char bus_pcix[3]; // under bus_mcp55_2
35
36
37
38 static void *smp_write_config_table(void *v)
39 {
40         static const char sig[4] = "PCMP";
41         static const char oem[8] = "COREBOOT";
42         static const char productid[12] = "H8DMR       ";
43         struct mp_config_table *mc;
44         unsigned sbdn;
45
46         unsigned char bus_num;
47         int i,j;
48
49         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
50         memset(mc, 0, sizeof(*mc));
51
52         memcpy(mc->mpc_signature, sig, sizeof(sig));
53         mc->mpc_length = sizeof(*mc); /* initially just the header */
54         mc->mpc_spec = 0x04;
55         mc->mpc_checksum = 0; /* not yet computed */
56         memcpy(mc->mpc_oem, oem, sizeof(oem));
57         memcpy(mc->mpc_productid, productid, sizeof(productid));
58         mc->mpc_oemptr = 0;
59         mc->mpc_oemsize = 0;
60         mc->mpc_entry_count = 0; /* No entries yet... */
61         mc->mpc_lapic = LAPIC_ADDR;
62         mc->mpe_length = 0;
63         mc->mpe_checksum = 0;
64         mc->reserved = 0;
65
66         smp_write_processors(mc);
67
68         get_bus_conf();
69         sbdn = sysconf.sbdn;
70
71 /*Bus:          Bus ID  Type*/
72        /* define bus and isa numbers */
73         for(bus_num = 0; bus_num < bus_isa; bus_num++) {
74                 smp_write_bus(mc, bus_num, "PCI   ");
75         }
76         smp_write_bus(mc, bus_isa, "ISA   ");
77
78 /*I/O APICs:    APIC ID Version State           Address*/
79         {
80                 device_t dev;
81                 struct resource *res;
82                 uint32_t dword;
83
84                 dev = dev_find_slot(bus_mcp55[0], PCI_DEVFN(sbdn+ 0x1,0));
85                 if (dev) {
86                         res = find_resource(dev, PCI_BASE_ADDRESS_1);
87                         if (res) {
88                                 smp_write_ioapic(mc, apicid_mcp55, 0x11, res->base);
89                         }
90
91                         dword = 0x43c6c643;
92                         pci_write_config32(dev, 0x7c, dword);
93
94                         dword = 0x81001a00;
95                         pci_write_config32(dev, 0x80, dword);
96
97                         dword = 0xd00012d2;
98                         pci_write_config32(dev, 0x84, dword);
99
100                 }
101
102
103
104         }
105
106         mptable_add_isa_interrupts(mc, bus_isa, apicid_mcp55, 0);
107
108         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+1)<<2)|1, apicid_mcp55, 0xa);
109
110         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+2)<<2)|0, apicid_mcp55, 0x16); // 22
111
112         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+2)<<2)|1, apicid_mcp55, 0x17); // 23
113
114         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+6)<<2)|1, apicid_mcp55, 0x17); // 23
115
116         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+5)<<2)|0, apicid_mcp55, 0x14); // 20
117         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+5)<<2)|1, apicid_mcp55, 0x17); // 23
118         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+5)<<2)|2, apicid_mcp55, 0x15); // 21
119
120         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+8)<<2)|0, apicid_mcp55, 0x16); // 22
121         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[0], ((sbdn+9)<<2)|0, apicid_mcp55, 0x15); // 21
122
123         for(j=7; j>=2; j--) {
124                 if(!bus_mcp55[j]) continue;
125                 for(i=0;i<4;i++) {
126                         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[j], (0x00<<2)|i, apicid_mcp55, 0x10 + (2+j+i+4-sbdn%4)%4);
127                 }
128         }
129
130         for(i=0;i<4;i++) {
131                 smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_mcp55[1], (0x04<<2)|i, apicid_mcp55, 0x10 + (0+i)%4);
132         }
133
134
135         if(bus_pcix[0]) {
136                 for(i=0;i<2;i++) {
137                         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_pcix[2], (4<<2)|i, apicid_mcp55, 0x10 + (0+i+4-sbdn%4)%4); //16, 17
138                 }
139
140                 for(i=0;i<4;i++) {
141                         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_pcix[1], (4<<2)|i, apicid_mcp55, 0x10 + (2+i+4-sbdn%4)%4); // 18, 19, 16, 17
142                 }
143         }
144
145 /*Local Ints:   Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN#*/
146         smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
147         smp_write_intsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
148         /* There is no extension information... */
149
150         /* Compute the checksums */
151         mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
152         mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
153         printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
154                 mc, smp_next_mpe_entry(mc));
155         return smp_next_mpe_entry(mc);
156 }
157
158 unsigned long write_smp_table(unsigned long addr)
159 {
160         void *v;
161         v = smp_write_floating_table(addr);
162         return (unsigned long)smp_write_config_table(v);
163 }