zero warnings days: unify mp tables. fix warnings.
[coreboot.git] / src / mainboard / via / pc2500e / 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) 2007 Philipp Degler <pdegler@rumms.uni-mannheim.de>
7  * (Thanks to LSRA University of Mannheim for their support)
8  * Copyright (C) 2008 Jonathan A. Kollasch <jakllsch@kollasch.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
23  */
24
25 #include <console/console.h>
26 #include <arch/smp/mpspec.h>
27 #include <device/pci.h>
28 #include <string.h>
29 #include <stdint.h>
30 #include <../../../southbridge/via/vt8237r/vt8237r.h>
31
32
33 #define bus_isa 2
34
35 static void *smp_write_config_table(void *v)
36 {
37         static const char sig[4] = "PCMP";
38         static const char oem[8] = "COREBOOT";
39         static const char productid[12] = "PC2500      ";
40         struct mp_config_table *mc;
41
42         int bus_num;
43
44         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
45         memset(mc, 0, sizeof(*mc));
46
47         memcpy(mc->mpc_signature, sig, sizeof(sig));
48         mc->mpc_length = sizeof(*mc);   /* initially just the header */
49         mc->mpc_spec = 0x04;
50         mc->mpc_checksum = 0;   /* not yet computed */
51         memcpy(mc->mpc_oem, oem, sizeof(oem));
52         memcpy(mc->mpc_productid, productid, sizeof(productid));
53         mc->mpc_oemptr = 0;
54         mc->mpc_oemsize = 0;
55         mc->mpc_entry_count = 0;        /* No entries yet... */
56         mc->mpc_lapic = LAPIC_ADDR;
57         mc->mpe_length = 0;
58         mc->mpe_checksum = 0;
59         mc->reserved = 0;
60
61         smp_write_processors(mc);
62
63
64 /* Bus:         Bus ID  Type*/
65         /* define numbers for pci and isa bus */
66         for (bus_num = 0; bus_num < bus_isa; bus_num++) {
67                 smp_write_bus(mc, bus_num, "PCI   ");
68         }
69         smp_write_bus(mc, bus_isa, "ISA   ");
70
71
72 /* I/O APICs:   APIC ID Version State           Address*/
73         smp_write_ioapic(mc, VT8237R_APIC_ID, 0x20, VT8237R_APIC_BASE);
74
75         /* Now, assemble the table. */
76
77         smp_write_intsrc(mc, mp_ExtINT,
78                          MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH,
79                          bus_isa, 0x0, VT8237R_APIC_ID, 0x0);
80
81 #define ISA_INT(intr, pin) \
82         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, \
83                 bus_isa, (intr), VT8237R_APIC_ID, (pin))
84
85         ISA_INT(1, 1);
86         ISA_INT(0, 2);
87         ISA_INT(3, 3);
88         ISA_INT(4, 4);
89
90         ISA_INT(6, 6);
91         ISA_INT(7, 7);
92         ISA_INT(8, 8);
93         ISA_INT(9, 9);
94
95         ISA_INT(0xc, 0xc);
96         ISA_INT(0xd, 0xd);
97         ISA_INT(0xe, 0xe);
98         ISA_INT(0xf, 0xf);
99
100 #define PCI_INT(bus, dev, fn, pin) \
101         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, \
102                 bus, (((dev)<<2)|(fn)), VT8237R_APIC_ID, (pin))
103
104         // PCI slot 1
105         PCI_INT(0, 8, 0, 16);
106         PCI_INT(0, 8, 1, 17);
107         PCI_INT(0, 8, 2, 18);
108         PCI_INT(0, 8, 3, 19);
109
110         // PCI slot 2
111         PCI_INT(0, 9, 0, 17);
112         PCI_INT(0, 9, 1, 18);
113         PCI_INT(0, 9, 2, 19);
114         PCI_INT(0, 9, 3, 16);
115
116         // SATA
117         PCI_INT(0, 15, 1, 20);
118
119         // USB
120         PCI_INT(0, 16, 0, 21);
121         PCI_INT(0, 16, 1, 21);
122         PCI_INT(0, 16, 2, 21);
123         PCI_INT(0, 16, 3, 21);
124
125         // Audio
126         PCI_INT(0, 17, 2, 22);
127
128         // Ethernet
129         PCI_INT(0, 18, 0, 23);
130
131         /* Onboard VGA */
132         PCI_INT(1, 0, 0, 16);
133
134 /*Local Ints:   Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN#*/
135         smp_write_lintsrc(mc, mp_ExtINT,
136                          MP_IRQ_TRIGGER_DEFAULT | MP_IRQ_POLARITY_DEFAULT,
137                          0, 0x0, MP_APIC_ALL, 0x0);
138         smp_write_lintsrc(mc, mp_NMI,
139                          MP_IRQ_TRIGGER_DEFAULT | MP_IRQ_POLARITY_DEFAULT,
140                          0, 0x0, MP_APIC_ALL, 0x1);
141
142         /* There is no extension information... */
143
144         /* Compute the checksums */
145         mc->mpe_checksum =
146             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 }