We define IO_APIC_ADDR in <arch/ioapic.h>, let's use it.
[coreboot.git] / src / mainboard / gigabyte / ma78gm / acpi_tables.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <console/console.h>
21 #include <string.h>
22 #include <arch/acpi.h>
23 #include <arch/ioapic.h>
24 #include <device/pci.h>
25 #include <device/pci_ids.h>
26 #include <cpu/x86/msr.h>
27 #include <cpu/amd/mtrr.h>
28 #include <cpu/amd/amdfam10_sysconf.h>
29
30 #define DUMP_ACPI_TABLES 0
31
32 #if DUMP_ACPI_TABLES == 1
33 static void dump_mem(u32 start, u32 end)
34 {
35
36         u32 i;
37         print_debug("dump_mem:");
38         for (i = start; i < end; i++) {
39                 if ((i & 0xf) == 0) {
40                         printk(BIOS_DEBUG, "\n%08x:", i);
41                 }
42                 printk(BIOS_DEBUG, " %02x", (u8)*((u8 *)i));
43         }
44         print_debug("\n");
45 }
46 #endif
47
48 extern const unsigned char AmlCode[];
49 extern const unsigned char AmlCode_ssdt[];
50
51 #if CONFIG_ACPI_SSDTX_NUM >= 1
52 extern const unsigned char AmlCode_ssdt2[];
53 extern const unsigned char AmlCode_ssdt3[];
54 extern const unsigned char AmlCode_ssdt4[];
55 extern const unsigned char AmlCode_ssdt5[];
56 #endif
57
58 unsigned long acpi_fill_mcfg(unsigned long current)
59 {
60         /* Just a dummy */
61         return current;
62 }
63
64 unsigned long acpi_fill_madt(unsigned long current)
65 {
66         /* create all subtables for processors */
67         current = acpi_create_madt_lapics(current);
68
69         /* Write SB700 IOAPIC, only one */
70         current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 2,
71                                            IO_APIC_ADDR, 0);
72
73         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
74                                                 current, 0, 0, 2, 0);
75         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
76                                                 current, 0, 9, 9, 0xF);
77         /* 0: mean bus 0--->ISA */
78         /* 0: PIC 0 */
79         /* 2: APIC 2 */
80         /* 5 mean: 0101 --> Edige-triggered, Active high */
81
82         /* create all subtables for processors */
83         /* current = acpi_create_madt_lapic_nmis(current, 5, 1); */
84         /* 1: LINT1 connect to NMI */
85
86         return current;
87 }
88
89 unsigned long write_acpi_tables(unsigned long start)
90 {
91         unsigned long current;
92         acpi_rsdp_t *rsdp;
93         acpi_rsdt_t *rsdt;
94         acpi_hpet_t *hpet;
95         acpi_madt_t *madt;
96         acpi_srat_t *srat;
97         acpi_slit_t *slit;
98         acpi_fadt_t *fadt;
99         acpi_facs_t *facs;
100         acpi_header_t *dsdt;
101         acpi_header_t *ssdt;
102 #if CONFIG_ACPI_SSDTX_NUM >= 1
103         acpi_header_t *ssdtx;
104         void *p;
105         int i;
106 #endif
107
108         get_bus_conf(); /* it will get sblk, pci1234, hcdn, and sbdn */
109
110         /* Align ACPI tables to 16 bytes */
111         start = (start + 0x0f) & -0x10;
112         current = start;
113
114         printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx...\n", start);
115
116         /* We need at least an RSDP and an RSDT Table */
117         rsdp = (acpi_rsdp_t *) current;
118         current += sizeof(acpi_rsdp_t);
119         rsdt = (acpi_rsdt_t *) current;
120         current += sizeof(acpi_rsdt_t);
121
122         /* clear all table memory */
123         memset((void *)start, 0, current - start);
124
125         acpi_write_rsdp(rsdp, rsdt, NULL);
126         acpi_write_rsdt(rsdt);
127
128         /*
129          * We explicitly add these tables later on:
130          */
131         current   = ( current + 0x07) & -0x08;
132         printk(BIOS_DEBUG, "ACPI:    * HPET at %lx\n", current);
133         hpet = (acpi_hpet_t *) current;
134         current += sizeof(acpi_hpet_t);
135         acpi_create_hpet(hpet);
136         acpi_add_table(rsdp, hpet);
137
138         /* If we want to use HPET Timers Linux wants an MADT */
139         current   = ( current + 0x07) & -0x08;
140         printk(BIOS_DEBUG, "ACPI:    * MADT at %lx\n",current);
141         madt = (acpi_madt_t *) current;
142         acpi_create_madt(madt);
143         current += madt->header.length;
144         acpi_add_table(rsdp, madt);
145
146         /* SRAT */
147         current   = ( current + 0x07) & -0x08;
148         printk(BIOS_DEBUG, "ACPI:    * SRAT at %lx\n", current);
149         srat = (acpi_srat_t *) current;
150         acpi_create_srat(srat);
151         current += srat->header.length;
152         acpi_add_table(rsdp, srat);
153
154         /* SLIT */
155         current   = ( current + 0x07) & -0x08;
156         printk(BIOS_DEBUG, "ACPI:   * SLIT at %lx\n", current);
157         slit = (acpi_slit_t *) current;
158         acpi_create_slit(slit);
159         current += slit->header.length;
160         acpi_add_table(rsdp, slit);
161
162         /* SSDT */
163         current   = ( current + 0x0f) & -0x10;
164         printk(BIOS_DEBUG, "ACPI:    * SSDT at %lx\n", current);
165         ssdt = (acpi_header_t *)current;
166         memcpy(ssdt, &AmlCode_ssdt, sizeof(acpi_header_t));
167         current += ssdt->length;
168         memcpy(ssdt, &AmlCode_ssdt, ssdt->length);
169         //Here you need to set value in pci1234, sblk and sbdn in get_bus_conf.c
170         update_ssdt((void*)ssdt);
171         /* recalculate checksum */
172         ssdt->checksum = 0;
173         ssdt->checksum = acpi_checksum((unsigned char *)ssdt,ssdt->length);
174         acpi_add_table(rsdp,ssdt);
175
176         printk(BIOS_DEBUG, "ACPI:    * SSDT for PState at %lx\n", current);
177         current = acpi_add_ssdt_pstates(rsdp, current);
178
179 #if CONFIG_ACPI_SSDTX_NUM >= 1
180
181         /* same htio, but different position? We may have to copy,
182         change HCIN, and recalculate the checknum and add_table */
183
184         for(i=1;i<sysconf.hc_possible_num;i++) {  // 0: is hc sblink
185                 if((sysconf.pci1234[i] & 1) != 1 ) continue;
186                 u8 c;
187                 if (i < 7) {
188                         c = (u8) ('4' + i - 1);
189                 } else {
190                         c = (u8) ('A' + i - 1 - 6);
191                 }
192                 current   = ( current + 0x07) & -0x08;
193                 printk(BIOS_DEBUG, "ACPI:    * SSDT for PCI%c at %lx\n", c, current); //pci0 and pci1 are in dsdt
194                 ssdtx = (acpi_header_t *)current;
195                 switch (sysconf.hcid[i]) {
196                 case 1:
197                         p = &AmlCode_ssdt2;
198                         break;
199                 case 2:
200                         p = &AmlCode_ssdt3;
201                         break;
202                 case 3: /* 8131 */
203                         p = &AmlCode_ssdt4;
204                         break;
205                 default:
206                         /* HTX no io apic */
207                         p = &AmlCode_ssdt5;
208                         break;
209                 }
210                 memcpy(ssdtx, p, sizeof(acpi_header_t));
211                 current += ssdtx->length;
212                 memcpy(ssdtx, p, ssdtx->length);
213                 update_ssdtx((void *)ssdtx, i);
214                 ssdtx->checksum = 0;
215                 ssdtx->checksum = acpi_checksum((u8 *)ssdtx, ssdtx->length);
216                 acpi_add_table(rsdp, ssdtx);
217         }
218 #endif
219
220         /* DSDT */
221         current   = ( current + 0x07) & -0x08;
222         printk(BIOS_DEBUG, "ACPI:    * DSDT at %lx\n", current);
223         dsdt = (acpi_header_t *)current; // it will used by fadt
224         memcpy(dsdt, &AmlCode, sizeof(acpi_header_t));
225         current += dsdt->length;
226         memcpy(dsdt, &AmlCode, dsdt->length);
227         printk(BIOS_DEBUG, "ACPI:    * DSDT @ %p Length %x\n",dsdt,dsdt->length);
228
229         /* FACS */ // it needs 64 bit alignment
230         current   = ( current + 0x07) & -0x08;
231         printk(BIOS_DEBUG, "ACPI:       * FACS at %lx\n", current);
232         facs = (acpi_facs_t *) current; // it will be used by fadt
233         current += sizeof(acpi_facs_t);
234         acpi_create_facs(facs);
235
236         /* FDAT */
237         current   = ( current + 0x07) & -0x08;
238         printk(BIOS_DEBUG, "ACPI:    * FADT at %lx\n", current);
239         fadt = (acpi_fadt_t *) current;
240         current += sizeof(acpi_fadt_t);
241
242         acpi_create_fadt(fadt, facs, dsdt);
243         acpi_add_table(rsdp, fadt);
244
245 #if DUMP_ACPI_TABLES == 1
246         printk(BIOS_DEBUG, "rsdp\n");
247         dump_mem(rsdp, ((void *)rsdp) + sizeof(acpi_rsdp_t));
248
249         printk(BIOS_DEBUG, "rsdt\n");
250         dump_mem(rsdt, ((void *)rsdt) + sizeof(acpi_rsdt_t));
251
252         printk(BIOS_DEBUG, "madt\n");
253         dump_mem(madt, ((void *)madt) + madt->header.length);
254
255         printk(BIOS_DEBUG, "srat\n");
256         dump_mem(srat, ((void *)srat) + srat->header.length);
257
258         printk(BIOS_DEBUG, "slit\n");
259         dump_mem(slit, ((void *)slit) + slit->header.length);
260
261         printk(BIOS_DEBUG, "ssdt\n");
262         dump_mem(ssdt, ((void *)ssdt) + ssdt->length);
263
264         printk(BIOS_DEBUG, "fadt\n");
265         dump_mem(fadt, ((void *)fadt) + fadt->header.length);
266 #endif
267
268         printk(BIOS_INFO, "ACPI: done.\n");
269         return current;
270 }