e54bbbd9897575e77486acca8dd875ded8707ea8
[coreboot.git] / src / mainboard / msi / ms7260 / mptable.c
1 /*
2  * This file is part of the LinuxBIOS 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 #include <cpu/amd/amdk8_sysconf.h>
28
29 extern unsigned char bus_isa;
30 extern unsigned char bus_mcp55[8];      // 1
31 extern unsigned apicid_mcp55;
32 extern unsigned bus_type[256];
33
34 void *smp_write_config_table(void *v)
35 {
36         static const char sig[4] = "PCMP";
37         static const char oem[8] = "MSI     ";
38         static const char productid[12] = "MS-7260     ";
39         struct mp_config_table *mc;
40         unsigned int sbdn;
41         int i, j;
42
43         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
44         memset(mc, 0, sizeof(*mc));
45
46         memcpy(mc->mpc_signature, sig, sizeof(sig));
47         mc->mpc_length = sizeof(*mc);   /* Initially just the header */
48         mc->mpc_spec = 0x04;
49         mc->mpc_checksum = 0;           /* Not yet computed */
50         memcpy(mc->mpc_oem, oem, sizeof(oem));
51         memcpy(mc->mpc_productid, productid, sizeof(productid));
52         mc->mpc_oemptr = 0;
53         mc->mpc_oemsize = 0;
54         mc->mpc_entry_count = 0;        /* No entries yet... */
55         mc->mpc_lapic = LAPIC_ADDR;
56         mc->mpe_length = 0;
57         mc->mpe_checksum = 0;
58         mc->reserved = 0;
59
60         smp_write_processors(mc);
61
62         get_bus_conf();
63         sbdn = sysconf.sbdn;
64
65         /* Bus: Bus ID  Type */
66         /* Define bus and ISA numbers. */
67         for (j = 0; j < 256; j++) {
68                 if (bus_type[j])
69                         smp_write_bus(mc, j, "PCI   ");
70         }
71         smp_write_bus(mc, bus_isa, "ISA   ");
72
73         /* I/O APICs: APIC ID   Version State           Address */
74         {
75                 device_t dev;
76                 struct resource *res;
77                 uint32_t dword;
78
79                 dev = dev_find_slot(bus_mcp55[0], PCI_DEVFN(sbdn + 0x1, 0));
80                 if (dev) {
81                         res = find_resource(dev, PCI_BASE_ADDRESS_1);
82                         if (res)
83                                 smp_write_ioapic(mc, apicid_mcp55, 0x11, res->base);
84
85                         dword = 0x43c6c643;
86                         pci_write_config32(dev, 0x7c, dword);
87
88                         dword = 0x81001a00;
89                         pci_write_config32(dev, 0x80, dword);
90
91                         dword = 0xd0001202;
92                         pci_write_config32(dev, 0x84, dword);
93                 }
94         }
95
96         /* I/O Ints:         Type       Trigger                Polarity              Bus ID        IRQ                    APIC ID       PIN# */
97         smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x0,                   apicid_mcp55, 0x0);
98         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x1,                   apicid_mcp55, 0x1);
99         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x0,                   apicid_mcp55, 0x2);
100         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x3,                   apicid_mcp55, 0x3);
101         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x4,                   apicid_mcp55, 0x4);
102         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x6,                   apicid_mcp55, 0x6);
103         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x7,                   apicid_mcp55, 0x7);
104         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0x8,                   apicid_mcp55, 0x8);
105         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0xc,                   apicid_mcp55, 0xc);
106         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0xd,                   apicid_mcp55, 0xd);
107         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0xe,                   apicid_mcp55, 0xe);
108         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_EDGE  | MP_IRQ_POLARITY_HIGH, bus_isa,      0xf,                   apicid_mcp55, 0xf);
109         smp_write_intsrc(mc, mp_INT,    MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW,  bus_mcp55[0], ((sbdn + 1) << 2) | 1, apicid_mcp55, 0xa);
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         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
112         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
113         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
114         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
115         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
116         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
117
118         for (j = 7; j >= 2; j--) {
119                 if (!bus_mcp55[j])
120                         continue;
121                 for (i = 0; i < 4; i++)
122                         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);
123         }
124
125         for (j = 0; j < 2; j++) {
126                 for (i = 0; i < 4; i++)
127                         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW, bus_mcp55[1], ((0x06 + j) << 2) | i, apicid_mcp55, 0x10 + (2 + i + j) % 4);
128         }
129
130         /* Local Ints:       Type       Trigger               Polarity              Bus ID   IRQ  APIC ID      PIN# */
131         smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
132         smp_write_intsrc(mc, mp_NMI,    MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
133
134         /* There is no extension information... */
135
136         /* Compute the checksums. */
137         mc->mpe_checksum =
138             smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
139         mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
140         printk_debug("Wrote the mp table end at: %p - %p\n",
141                      mc, smp_next_mpe_entry(mc));
142         return smp_next_mpe_entry(mc);
143 }
144
145 unsigned long write_smp_table(unsigned long addr)
146 {
147         void *v;
148         v = smp_write_floating_table(addr);
149         return (unsigned long)smp_write_config_table(v);
150 }