3223c042a1d7749356396af4838984426aaa2f27
[coreboot.git] / src / mainboard / gigabyte / m57sli / 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  * Copyright (C) 2009 Harald Gutmann <harald.gutmann@gmx.net>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21  */
22
23 #include <console/console.h>
24 #include <arch/smp/mpspec.h>
25 #include <device/pci.h>
26 #include <string.h>
27 #include <stdint.h>
28
29 #include <cpu/amd/amdk8_sysconf.h>
30 extern unsigned char bus_isa;
31 extern unsigned char bus_mcp55[8]; //1
32
33 extern unsigned apicid_mcp55;
34
35 extern unsigned bus_type[256];
36
37
38
39 static void *smp_write_config_table(void *v)
40 {
41         static const char sig[4] = "PCMP";
42         static const char oem[8] = "COREBOOT";
43         static const char productid[12] = "M57SLI      ";
44         struct mp_config_table *mc;
45         unsigned sbdn;
46
47         int i,j,k;
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(j= 0; j < 256 ; j++) {
74                 if(bus_type[j])
75                          smp_write_bus(mc, j, "PCI   ");
76         }
77         smp_write_bus(mc, bus_isa, "ISA   ");
78
79 /*I/O APICs:    APIC ID Version State           Address*/
80         {
81                 device_t dev;
82                 struct resource *res;
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                         /* set up the interrupt registers of mcp55 */
91                         pci_write_config32(dev, 0x7c, 0xc643c643);
92                         pci_write_config32(dev, 0x80, 0x8da01009);
93                         pci_write_config32(dev, 0x84, 0x200018d2);
94                 }
95         }
96
97         mptable_add_isa_interrupts(mc, bus_isa, apicid_mcp55, 0);
98
99 /* PCI interrupts are level triggered, and are
100  * associated with a specific bus/device/function tuple.
101  */
102 #define PCI_INT(bus, dev, fn, pin)                                      \
103         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW,\
104                          bus_mcp55[bus], (((dev)<<2)|(fn)), apicid_mcp55, (pin))
105
106         PCI_INT(0,sbdn+1,1, 10); /* SMBus */
107         PCI_INT(0,sbdn+2,0, 22); /* USB */
108         PCI_INT(0,sbdn+2,1, 23); /* USB */
109         PCI_INT(0,sbdn+4,0, 21); /* IDE */
110         PCI_INT(0,sbdn+5,0, 20); /* SATA */
111         PCI_INT(0,sbdn+5,1, 21); /* SATA */
112         PCI_INT(0,sbdn+5,2, 22); /* SATA */
113         PCI_INT(0,sbdn+6,1, 23); /* HD Audio */
114         PCI_INT(0,sbdn+8,0, 20); /* GBit Ethernet */
115
116         /* The PCIe slots, each on its own bus */
117         k = 1;
118         for(i=0; i<4; i++){
119                 for(j=7; j>1; j--){
120                         if(k>3) k=0;
121                         PCI_INT(j,0,i, 16+k);
122                         k++;
123                 }
124                 k--;
125         }
126
127         /* On bus 1: the PCI bus slots...
128            pyhsical PCI slots are j = 7,8
129            FireWire is j = 10
130         */
131         k=2;
132         for(i=0; i<4; i++){
133                 for(j=6; j<11; j++){
134                         if(k>3) k=0;
135                         PCI_INT(1,j,i, 16+k);
136                         k++;
137                 }
138         }
139
140 /*Local Ints:   Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN#*/
141         smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
142         smp_write_intsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
143         /* There is no extension information... */
144
145         /* Compute the checksums */
146         mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
147         mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
148         printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
149                 mc, smp_next_mpe_entry(mc));
150         return smp_next_mpe_entry(mc);
151 }
152
153 unsigned long write_smp_table(unsigned long addr)
154 {
155         void *v;
156         v = smp_write_floating_table(addr);
157         return (unsigned long)smp_write_config_table(v);
158 }