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