printk_foo -> printk(BIOS_FOO, ...)
[coreboot.git] / src / mainboard / gigabyte / ga_2761gxdk / 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 Silicon Integrated Systems Corp. (SiS)
7  * Written by Morgan Tsai <my_tsai@sis.com> for SiS.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22  */
23
24 #include <console/console.h>
25 #include <arch/smp/mpspec.h>
26 #include <device/pci.h>
27 #include <string.h>
28 #include <stdint.h>
29
30 #include <cpu/amd/amdk8_sysconf.h>
31 extern unsigned char bus_isa;
32 extern unsigned char bus_sis966[8]; //1
33
34 extern unsigned apicid_sis966;
35
36 extern unsigned bus_type[256];
37
38 void *smp_write_config_table(void *v)
39 {
40         static const char sig[4] = "PCMP";
41         static const char oem[8] = "GIGABYTE";
42         static const char productid[12] = "GA-2761GXDK ";
43         struct mp_config_table *mc;
44         unsigned sbdn;
45
46         int i,j;
47
48         mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
49         memset(mc, 0, sizeof(*mc));
50
51         memcpy(mc->mpc_signature, sig, sizeof(sig));
52         mc->mpc_length = sizeof(*mc); /* initially just the header */
53         mc->mpc_spec = 0x04;
54         mc->mpc_checksum = 0; /* not yet computed */
55         memcpy(mc->mpc_oem, oem, sizeof(oem));
56         memcpy(mc->mpc_productid, productid, sizeof(productid));
57         mc->mpc_oemptr = 0;
58         mc->mpc_oemsize = 0;
59         mc->mpc_entry_count = 0; /* No entries yet... */
60         mc->mpc_lapic = LAPIC_ADDR;
61         mc->mpe_length = 0;
62         mc->mpe_checksum = 0;
63         mc->reserved = 0;
64
65         smp_write_processors(mc);
66
67         get_bus_conf();
68         sbdn = sysconf.sbdn;
69
70 /*Bus:          Bus ID  Type*/
71        /* define bus and isa numbers */
72         for(j= 0; j < 256 ; j++) {
73                 if(bus_type[j])
74                          smp_write_bus(mc, j, "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_sis966[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_sis966, 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 = 0xd0001202;
98                         pci_write_config32(dev, 0x84, dword);
99
100                 }
101         }
102
103         /* I/O Ints:    Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN# */
104         smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, apicid_sis966, 0x0);
105
106 /* ISA ints are edge-triggered, and usually originate from the ISA bus,
107  * or its remainings.
108  */
109 #define ISA_INT(intr, pin)\
110         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH,  bus_isa, (intr), apicid_sis966,(pin))
111
112         ISA_INT(0x1, 0x1);
113         ISA_INT(0x0, 0x2);
114         ISA_INT(0x3, 0x3);
115         ISA_INT(0x4, 0x4);
116         ISA_INT(0x6, 0x6);
117         ISA_INT(0x7, 0x7);
118         ISA_INT(0x8, 0x8);
119         ISA_INT(0xc, 0xc);
120         ISA_INT(0xd, 0xd);
121         ISA_INT(0xe, 0xe);
122         ISA_INT(0xf, 0xf);
123
124 /* PCI interrupts are level triggered, and are
125  * associated with a specific bus/device/function tuple.
126  */
127 #define PCI_INT(bus, dev, fn, pin)                                      \
128         smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, bus_sis966[bus], (((dev)<<2)|(fn)), apicid_sis966, (pin))
129
130         PCI_INT(0, sbdn+1, 1, 0xa);
131         PCI_INT(0, sbdn+2, 0, 0x16); // 22
132         PCI_INT(0, sbdn+2, 1, 0x17); // 23
133         PCI_INT(0, sbdn+6, 1, 0x17); // 23
134         PCI_INT(0, sbdn+5, 0, 0x14); // 20
135         PCI_INT(0, sbdn+5, 1, 0x17); // 23
136         PCI_INT(0, sbdn+5, 2, 0x15); // 21
137         PCI_INT(0, sbdn+8, 0, 0x16); // 22
138
139         for(j=7; j>=2; j--) {
140                 if(!bus_sis966[j]) continue;
141                 for(i=0;i<4;i++) {
142                         PCI_INT(j, 0x00, i, 0x10 + (2+j+i+4-sbdn%4)%4);
143                 }
144         }
145
146         for(j=0; j<2; j++)
147                 for(i=0;i<4;i++) {
148                         PCI_INT(1, 0x06+j, i, 0x10 + (2+i+j)%4);
149                 }
150
151 /*Local Ints:   Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN#*/
152         smp_write_intsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
153         smp_write_intsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
154         /* There is no extension information... */
155
156         /* Compute the checksums */
157         mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
158         mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
159         printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
160                 mc, smp_next_mpe_entry(mc));
161         return smp_next_mpe_entry(mc);
162 }
163
164 unsigned long write_smp_table(unsigned long addr)
165 {
166         void *v;
167         v = smp_write_floating_table(addr);
168         return (unsigned long)smp_write_config_table(v);
169 }