Add automatic SMBIOS table generation
[coreboot.git] / src / mainboard / kontron / 986lcd-m / acpi_tables.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
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 <types.h>
21 #include <string.h>
22 #include <console/console.h>
23 #include <arch/acpi.h>
24 #include <arch/ioapic.h>
25 #include <arch/acpigen.h>
26 #include <arch/smp/mpspec.h>
27 #include <device/device.h>
28 #include <device/pci.h>
29 #include <device/pci_ids.h>
30 #include <cpu/x86/msr.h>
31
32 extern const unsigned char AmlCode[];
33 #if CONFIG_HAVE_ACPI_SLIC
34 unsigned long acpi_create_slic(unsigned long current);
35 #endif
36
37 #include "southbridge/intel/i82801gx/nvs.h"
38 static void acpi_create_gnvs(global_nvs_t *gnvs)
39 {
40         memset((void *)gnvs, 0, sizeof(*gnvs));
41         gnvs->apic = 1;
42         gnvs->mpen = 1; /* Enable Multi Processing */
43
44         /* Enable both COM ports */
45         gnvs->cmap = 0x01;
46         gnvs->cmbp = 0x01;
47
48         /* IGD Displays */
49         gnvs->ndid = 3;
50         gnvs->did[0] = 0x80000100;
51         gnvs->did[1] = 0x80000240;
52         gnvs->did[2] = 0x80000410;
53         gnvs->did[3] = 0x80000410;
54         gnvs->did[4] = 0x00000005;
55 }
56
57 static void acpi_create_intel_hpet(acpi_hpet_t * hpet)
58 {
59 #define HPET_ADDR  0xfed00000ULL
60         acpi_header_t *header = &(hpet->header);
61         acpi_addr_t *addr = &(hpet->addr);
62
63         memset((void *) hpet, 0, sizeof(acpi_hpet_t));
64
65         /* fill out header fields */
66         memcpy(header->signature, "HPET", 4);
67         memcpy(header->oem_id, OEM_ID, 6);
68         memcpy(header->oem_table_id, "COREBOOT", 8);
69         memcpy(header->asl_compiler_id, ASLC, 4);
70
71         header->length = sizeof(acpi_hpet_t);
72         header->revision = 1;
73
74         /* fill out HPET address */
75         addr->space_id = 0;     /* Memory */
76         addr->bit_width = 64;
77         addr->bit_offset = 0;
78         addr->addrl = HPET_ADDR & 0xffffffff;
79         addr->addrh = HPET_ADDR >> 32;
80
81         hpet->id = 0x8086a201;  /* Intel */
82         hpet->number = 0x00;
83         hpet->min_tick = 0x0080;
84
85         header->checksum =
86             acpi_checksum((void *) hpet, sizeof(acpi_hpet_t));
87 }
88
89 unsigned long acpi_fill_madt(unsigned long current)
90 {
91         /* Local APICs */
92         current = acpi_create_madt_lapics(current);
93
94         /* IOAPIC */
95         current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
96                                 2, IO_APIC_ADDR, 0);
97
98         /* INT_SRC_OVR */
99         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
100                  current, 0, 0, 2, 0);
101         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
102                  current, 0, 9, 9, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH);
103
104         return current;
105 }
106
107 unsigned long acpi_fill_ssdt_generator(unsigned long current, const char *oem_table_id)
108 {
109         generate_cpu_entries();
110         return (unsigned long) (acpigen_get_current());
111 }
112
113 unsigned long acpi_fill_slit(unsigned long current)
114 {
115         // Not implemented
116         return current;
117 }
118
119 unsigned long acpi_fill_srat(unsigned long current)
120 {
121         /* No NUMA, no SRAT */
122         return current;
123 }
124
125 void smm_setup_structures(void *gnvs, void *tcg, void *smi1);
126
127 #define ALIGN_CURRENT current = ((current + 0x0f) & -0x10)
128 unsigned long write_acpi_tables(unsigned long start)
129 {
130         unsigned long current;
131         int i;
132         acpi_rsdp_t *rsdp;
133         acpi_rsdt_t *rsdt;
134         acpi_xsdt_t *xsdt;
135         acpi_hpet_t *hpet;
136         acpi_madt_t *madt;
137         acpi_mcfg_t *mcfg;
138         acpi_fadt_t *fadt;
139         acpi_facs_t *facs;
140 #if CONFIG_HAVE_ACPI_SLIC
141         acpi_header_t *slic;
142 #endif
143         acpi_header_t *ssdt;
144         acpi_header_t *dsdt;
145
146         current = start;
147
148         /* Align ACPI tables to 16byte */
149         ALIGN_CURRENT;
150
151         printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
152
153         /* We need at least an RSDP and an RSDT Table */
154         rsdp = (acpi_rsdp_t *) current;
155         current += sizeof(acpi_rsdp_t);
156         ALIGN_CURRENT;
157         rsdt = (acpi_rsdt_t *) current;
158         current += sizeof(acpi_rsdt_t);
159         ALIGN_CURRENT;
160         xsdt = (acpi_xsdt_t *) current;
161         current += sizeof(acpi_xsdt_t);
162         ALIGN_CURRENT;
163
164         /* clear all table memory */
165         memset((void *) start, 0, current - start);
166
167         acpi_write_rsdp(rsdp, rsdt, xsdt);
168         acpi_write_rsdt(rsdt);
169         acpi_write_xsdt(xsdt);
170
171         /*
172          * We explicitly add these tables later on:
173          */
174         printk(BIOS_DEBUG, "ACPI:    * HPET\n");
175
176         hpet = (acpi_hpet_t *) current;
177         current += sizeof(acpi_hpet_t);
178         ALIGN_CURRENT;
179         acpi_create_intel_hpet(hpet);
180         acpi_add_table(rsdp, hpet);
181
182         /* If we want to use HPET Timers Linux wants an MADT */
183         printk(BIOS_DEBUG, "ACPI:    * MADT\n");
184
185         madt = (acpi_madt_t *) current;
186         acpi_create_madt(madt);
187         current += madt->header.length;
188         ALIGN_CURRENT;
189         acpi_add_table(rsdp, madt);
190
191         printk(BIOS_DEBUG, "ACPI:    * MCFG\n");
192         mcfg = (acpi_mcfg_t *) current;
193         acpi_create_mcfg(mcfg);
194         current += mcfg->header.length;
195         ALIGN_CURRENT;
196         acpi_add_table(rsdp, mcfg);
197
198         printk(BIOS_DEBUG, "ACPI:     * FACS\n");
199         facs = (acpi_facs_t *) current;
200         current += sizeof(acpi_facs_t);
201         ALIGN_CURRENT;
202         acpi_create_facs(facs);
203
204         dsdt = (acpi_header_t *) current;
205         memcpy(dsdt, &AmlCode, sizeof(acpi_header_t));
206         current += dsdt->length;
207         memcpy(dsdt, &AmlCode, dsdt->length);
208
209         ALIGN_CURRENT;
210
211         /* Pack GNVS into the ACPI table area */
212         for (i=0; i < dsdt->length; i++) {
213                 if (*(u32*)(((u32)dsdt) + i) == 0xC0DEBABE) {
214                         printk(BIOS_DEBUG, "ACPI: Patching up global NVS in DSDT at offset 0x%04x -> 0x%08lx\n", i, current);
215                         *(u32*)(((u32)dsdt) + i) = current; // 0x92 bytes
216                         break;
217                 }
218         }
219
220         /* And fill it */
221         acpi_create_gnvs((global_nvs_t *)current);
222
223         current += 0x100;
224         ALIGN_CURRENT;
225
226         /* And tell SMI about it */
227         smm_setup_structures((void *)current, NULL, NULL);
228
229         /* We patched up the DSDT, so we need to recalculate the checksum */
230         dsdt->checksum = 0;
231         dsdt->checksum = acpi_checksum((void *)dsdt, dsdt->length);
232
233         printk(BIOS_DEBUG, "ACPI:     * DSDT @ %p Length %x\n", dsdt,
234                      dsdt->length);
235
236 #if CONFIG_HAVE_ACPI_SLIC
237         printk(BIOS_DEBUG, "ACPI:     * SLIC\n");
238         slic = (acpi_header_t *)current;
239         current += acpi_create_slic(current);
240         ALIGN_CURRENT;
241         acpi_add_table(rsdp, slic);
242 #endif
243
244         printk(BIOS_DEBUG, "ACPI:     * FADT\n");
245         fadt = (acpi_fadt_t *) current;
246         current += sizeof(acpi_fadt_t);
247         ALIGN_CURRENT;
248
249         acpi_create_fadt(fadt, facs, dsdt);
250         acpi_add_table(rsdp, fadt);
251
252         printk(BIOS_DEBUG, "ACPI:     * SSDT\n");
253         ssdt = (acpi_header_t *)current;
254         acpi_create_ssdt_generator(ssdt, "COREBOOT");
255         current += ssdt->length;
256         acpi_add_table(rsdp, ssdt);
257         ALIGN_CURRENT;
258
259         printk(BIOS_DEBUG, "current = %lx\n", current);
260         printk(BIOS_INFO, "ACPI: done.\n");
261         return current;
262 }