2e1b0b43466232a0b956d196be7eb50789214687
[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-2008 coresystems GmbH
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #include <string.h>
23 #include <console/console.h>
24 #include <arch/acpi.h>
25 #include <device/device.h>
26 #include <device/pci.h>
27 #include <device/pci_ids.h>
28 #include "dmi.h"
29
30 extern unsigned char AmlCode[];
31
32 typedef struct acpi_oemb {
33         acpi_header_t header;
34         u8  ss;
35         u16 iost;
36         u32 topm;
37         u32 roms;
38         u32 mg1b;
39         u32 mg1l;
40         u32 mg2b;
41         u32 mg2l;
42         u8  rsvd;
43         u8  dmax;
44         u32 hpta;
45         u32 cpb0;
46         u32 cpb1;
47         u32 cpb2;
48         u32 cpb3;
49         u8  assb;
50         u8  aotb;
51         u32 aaxb;
52         u8  smif;
53         u8  dtse;
54         u8  dts1;
55         u8  dts2;
56         u8  mpen;
57 } __attribute__((packed)) acpi_oemb_t;
58
59 void acpi_create_oemb(acpi_oemb_t *oemb)
60 {
61         acpi_header_t *header = &(oemb->header);
62         unsigned long tolud;
63
64         memset (oemb, 0, sizeof(oemb));
65
66         /* fill out header fields */
67         memcpy(header->signature, "OEMB", 4);
68         memcpy(header->oem_id, OEM_ID, 6);
69         memcpy(header->oem_table_id, "COREBOOT", 8);
70         memcpy(header->asl_compiler_id, ASLC, 4);
71
72         header->length = sizeof(acpi_oemb_t);
73         header->revision = 1;
74
75         oemb->ss   =   0x09; // ss1 + ss 4
76         oemb->iost = 0x0403; // ??
77
78         tolud = pci_read_config32(dev_find_slot(0, PCI_DEVFN(2, 0)), 0x5c);
79         oemb->topm = tolud;
80
81         oemb->roms = 0xfff00000; // 1M hardcoded
82
83         oemb->mg1b = 0x000d0000;
84         oemb->mg1l = 0x00010000;
85
86         oemb->mg2b = tolud;
87         oemb->mg2l = 0-tolud;
88
89         oemb->dmax = 0x87;
90         oemb->hpta = 0x000e36c0;
91
92         header->checksum =
93             acpi_checksum((void *) oemb, sizeof(acpi_oemb_t));
94
95 };
96
97 unsigned long acpi_fill_mcfg(unsigned long current)
98 {
99 #if 0
100         device_t dev;
101         u64 mmcfg;
102
103         dev = dev_find_device(0x1106, 0x324b, 0);       // 0:0x13.0
104         if (!dev)
105                 return current;
106
107         // MMCFG not supported or not enabled.
108         if ((pci_read_config8(dev, 0x40) & 0xC0) != 0xC0)
109                 return current;
110
111         mmcfg = ((u64) pci_read_config8(dev, 0x41)) << 28;
112         if (!mmcfg)
113                 return current;
114
115         current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *) current, mmcfg, 0x0, 0x0, 0xff);
116 #endif
117         return current;
118 }
119
120 void acpi_create_intel_hpet(acpi_hpet_t * hpet)
121 {
122 #define HPET_ADDR  0xfe800000ULL
123         acpi_header_t *header = &(hpet->header);
124         acpi_addr_t *addr = &(hpet->addr);
125
126         memset((void *) hpet, 0, sizeof(acpi_hpet_t));
127
128         /* fill out header fields */
129         memcpy(header->signature, HPET_NAME, 4);
130         memcpy(header->oem_id, OEM_ID, 6);
131         memcpy(header->oem_table_id, "COREBOOT", 8);
132         memcpy(header->asl_compiler_id, ASLC, 4);
133
134         header->length = sizeof(acpi_hpet_t);
135         header->revision = 1;
136
137         /* fill out HPET address */
138         // XXX factory bios just puts an address here -- who's right?
139         addr->space_id = 0;     /* Memory */
140         addr->bit_width = 64;
141         addr->bit_offset = 0;
142         addr->addrl = HPET_ADDR & 0xffffffff;
143         addr->addrh = HPET_ADDR >> 32;
144
145         hpet->id = 0x80861234;  /* VIA */
146         hpet->number = 0x00;
147         hpet->min_tick = 0x0090;
148
149         header->checksum =
150             acpi_checksum((void *) hpet, sizeof(acpi_hpet_t));
151 }
152
153
154
155 #define IO_APIC_ADDR    0xfec00000UL
156
157 unsigned long acpi_fill_madt(unsigned long current)
158 {
159         /* Local Apic */
160         current += acpi_create_madt_lapic((acpi_madt_lapic_t *) current, 1, 0);
161         // This one is for the second core... Will it hurt?
162         current += acpi_create_madt_lapic((acpi_madt_lapic_t *) current, 2, 1);
163
164         /* IOAPIC */
165         current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 2, IO_APIC_ADDR, 0);
166
167         /* INT_SRC_OVR */
168         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *) current, 0, 0, 2, 0);
169         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *) current, 0, 9, 9, 0x000d);  // high/level
170
171         return current;
172 }
173
174 unsigned long acpi_fill_srat(unsigned long current)
175 {
176         /* No NUMA, no SRAT */
177         return current;
178 }
179
180
181 #define ALIGN_CURRENT current = ((current + 0x0f) & -0x10)
182 unsigned long write_acpi_tables(unsigned long start)
183 {
184         unsigned long current;
185         int i;
186         acpi_rsdp_t *rsdp;
187         acpi_rsdt_t *rsdt;
188         acpi_hpet_t *hpet;
189         acpi_madt_t *madt;
190         acpi_mcfg_t *mcfg;
191         acpi_fadt_t *fadt;
192         acpi_facs_t *facs;
193         acpi_oemb_t *oemb;
194         acpi_header_t *dsdt;
195
196         /* Align ACPI tables to 16byte */
197         start = (start + 0x0f) & -0x10;
198         current = start;
199
200         printk_info("ACPI: Writing ACPI tables at %lx.\n", start);
201
202         /* We need at least an RSDP and an RSDT Table */
203         rsdp = (acpi_rsdp_t *) current;
204         current += sizeof(acpi_rsdp_t);
205         ALIGN_CURRENT;
206         rsdt = (acpi_rsdt_t *) current;
207         current += sizeof(acpi_rsdt_t);
208         ALIGN_CURRENT;
209
210         /* clear all table memory */
211         memset((void *) start, 0, current - start);
212
213         acpi_write_rsdp(rsdp, rsdt);
214         acpi_write_rsdt(rsdt);
215
216         /*
217          * We explicitly add these tables later on:
218          */
219 #if 0
220         printk_debug("ACPI:    * HPET\n");
221
222         hpet = (acpi_hpet_t *) current;
223         current += sizeof(acpi_hpet_t);
224         ALIGN_CURRENT;
225         acpi_create_intel_hpet(hpet);
226         acpi_add_table(rsdt, hpet);
227 #endif
228         /* If we want to use HPET Timers Linux wants an MADT */
229         printk_debug("ACPI:    * MADT\n");
230
231         madt = (acpi_madt_t *) current;
232         acpi_create_madt(madt);
233         current += madt->header.length;
234         ALIGN_CURRENT;
235         acpi_add_table(rsdt, madt);
236 #if 0
237         printk_debug("ACPI:    * MCFG\n");
238         mcfg = (acpi_mcfg_t *) current;
239         acpi_create_mcfg(mcfg);
240         current += mcfg->header.length;
241         ALIGN_CURRENT;
242         acpi_add_table(rsdt, mcfg);
243 #endif
244
245         printk_debug("ACPI:    * OEMB\n");
246         oemb=(acpi_oemb_t *)current;
247         current += sizeof(acpi_oemb_t);
248         ALIGN_CURRENT;
249         acpi_create_oemb(oemb);
250         acpi_add_table(rsdt, oemb);
251
252         printk_debug("ACPI:     * FACS\n");
253         facs = (acpi_facs_t *) current;
254         current += sizeof(acpi_facs_t);
255         ALIGN_CURRENT;
256         acpi_create_facs(facs);
257
258         dsdt = (acpi_header_t *) current;
259         current += ((acpi_header_t *) AmlCode)->length;
260         ALIGN_CURRENT;
261         memcpy((void *) dsdt, (void *) AmlCode,
262                ((acpi_header_t *) AmlCode)->length);
263
264 #if 1
265         for (i=0; i < dsdt->length; i++) {
266                 if (*(u32*)(((u32)dsdt) + i) == 0xC0DEBABE) {
267                         printk_debug("ACPI: Patching up DSDT at offset 0x%04x -> 0x%08x\n", i, 0x24 + (u32)oemb);
268                         *(u32*)(((u32)dsdt) + i) = 0x24 + (u32)oemb;
269                         break;
270                 }
271         }
272
273         /* We patched up the DSDT, so we need to recalculate the checksum */
274         dsdt->checksum = 0;
275         dsdt->checksum = acpi_checksum(dsdt, dsdt->length);
276 #endif
277
278         printk_debug("ACPI:     * DSDT @ %08x Length %x\n", dsdt,
279                      dsdt->length);
280
281         printk_debug("ACPI:     * FADT\n");
282         fadt = (acpi_fadt_t *) current;
283         current += sizeof(acpi_fadt_t);
284         ALIGN_CURRENT;
285
286         acpi_create_fadt(fadt, facs, dsdt);
287         acpi_add_table(rsdt, fadt);
288         printk_debug("current = %x\n", current);
289
290         printk_debug("ACPI:     * DMI (Linux workaround)\n");
291         memcpy((void *)0xfff80, dmi_table, DMI_TABLE_SIZE);
292
293         printk_info("ACPI: done.\n");
294         return current;
295 }