83ed984670b1399c2245432b9b79fcb64177b30c
[coreboot.git] / src / mainboard / intel / eagleheights / acpi_tables.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2008 coresystems GmbH
5  * Copyright (C) 2009 Thomas Jourdan <thomas.jourdan@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; version 2 of
10  * the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20  * MA 02110-1301 USA
21  */
22
23 #include <string.h>
24 #include <console/console.h>
25 #include <arch/acpi.h>
26 #include <device/device.h>
27 #include <device/pci.h>
28 #include <device/pci_ids.h>
29 #include "ioapic.h"
30
31 extern const unsigned char AmlCode[];
32
33 unsigned long acpi_fill_mcfg(unsigned long current)
34 {
35         device_t dev;
36         u64 mmcfg;
37
38         dev = dev_find_device(0x8086, 0x35B0, 0);       // 0:0x13.0
39         if (!dev)
40                 return current;
41
42         // MMCFG not supported or not enabled.
43         mmcfg = ((u64) pci_read_config16(dev, 0xce)) << 16;
44         if (!mmcfg)
45                 return current;
46
47         current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *) current,
48                         mmcfg, 0x0, 0x0, 0xff);
49
50         return current;
51 }
52
53 static void acpi_create_intel_hpet(acpi_hpet_t * hpet)
54 {
55 #define HPET_ADDR  0xfed00000ULL
56         acpi_header_t *header = &(hpet->header);
57         acpi_addr_t *addr = &(hpet->addr);
58
59         memset((void *) hpet, 0, sizeof(acpi_hpet_t));
60
61         /* fill out header fields */
62         memcpy(header->signature, "HPET", 4);
63         memcpy(header->oem_id, OEM_ID, 6);
64         memcpy(header->oem_table_id, "IC      ", 8);
65         memcpy(header->asl_compiler_id, ASLC, 4);
66
67         header->length = sizeof(acpi_hpet_t);
68         header->revision = 1;
69
70         /* fill out HPET address */
71         // XXX factory bios just puts an address here -- who's right?
72         addr->space_id = 0;     /* Memory */
73         addr->bit_width = 64;
74         addr->bit_offset = 0;
75         addr->addrl = HPET_ADDR & 0xffffffff;
76         addr->addrh = HPET_ADDR >> 32;
77
78         hpet->id = 0x80861234;
79         hpet->number = 0x00;
80         hpet->min_tick = 0x0090;
81
82         header->checksum = acpi_checksum((void *) hpet, sizeof(acpi_hpet_t));
83 }
84
85 #define IO_APIC0 2
86 #define IO_APIC1 3
87 #define IO_APIC0_ADDR   0xfec00000UL
88 #define IO_APIC1_ADDR   0xfec10000UL
89
90 unsigned long acpi_fill_madt(unsigned long current)
91 {
92         unsigned int irq_start = 0;
93         device_t dev = 0;
94         unsigned char bus_isa;
95
96         /* Local Apic */
97         current += acpi_create_madt_lapic((acpi_madt_lapic_t *) current, 1, 0);
98         // This one is for the second core... Will it hurt?
99         current += acpi_create_madt_lapic((acpi_madt_lapic_t *) current, 2, 1);
100
101         /* IOAPIC */
102         current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, IO_APIC0, IO_APIC0_ADDR, irq_start);
103         irq_start += INTEL_IOAPIC_NUM_INTERRUPTS;
104         current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, IO_APIC1, IO_APIC1_ADDR, irq_start);
105         irq_start += INTEL_IOAPIC_NUM_INTERRUPTS;
106
107         dev = dev_find_slot(0, PCI_DEVFN(0x1e,0));
108
109         if (dev) {
110                 bus_isa = pci_read_config8(dev, PCI_SUBORDINATE_BUS);
111                 bus_isa++;
112         } else {
113                 printk(BIOS_DEBUG, "ERROR - could not find PCI 0:1e.0, using defaults\n");
114                 bus_isa = 7;
115         }
116
117         /* Map ISA IRQ 0 to IRQ 2 */
118         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *) current, bus_isa, 0, 2, 0);
119
120         /* IRQ9 differs from ISA standard - ours is active high, level-triggered */
121         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *) current, 0, 9, 9, 0x000d);
122
123         return current;
124 }
125
126 unsigned long acpi_fill_slit(unsigned long current)
127 {
128         // Not implemented
129         return current;
130 }
131
132 unsigned long acpi_fill_srat(unsigned long current)
133 {
134         /* No NUMA, no SRAT */
135         return current;
136 }
137
138
139 #define ALIGN_CURRENT current = ((current + 0x0f) & -0x10)
140 unsigned long write_acpi_tables(unsigned long start)
141 {
142         unsigned long current;
143         acpi_rsdp_t *rsdp;
144         acpi_rsdt_t *rsdt;
145         acpi_hpet_t *hpet;
146         acpi_madt_t *madt;
147         acpi_mcfg_t *mcfg;
148         acpi_fadt_t *fadt;
149         acpi_facs_t *facs;
150         acpi_header_t *dsdt;
151
152         current = start;
153
154         /* Align ACPI tables to 16byte */
155         ALIGN_CURRENT;
156
157         printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", current);
158
159         /* We need at least an RSDP and an RSDT Table */
160         rsdp = (acpi_rsdp_t *) current;
161         current += sizeof(acpi_rsdp_t);
162         ALIGN_CURRENT;
163         rsdt = (acpi_rsdt_t *) current;
164         current += sizeof(acpi_rsdt_t);
165         ALIGN_CURRENT;
166
167         /* clear all table memory */
168         memset((void *) start, 0, current - start);
169
170         acpi_write_rsdp(rsdp, rsdt, NULL);
171         acpi_write_rsdt(rsdt);
172
173         /*
174          * We explicitly add these tables later on:
175          */
176         printk(BIOS_DEBUG, "ACPI:    * HPET\n");
177
178         hpet = (acpi_hpet_t *) current;
179         current += sizeof(acpi_hpet_t);
180         ALIGN_CURRENT;
181         acpi_create_intel_hpet(hpet);
182         acpi_add_table(rsdp, hpet);
183
184         /* If we want to use HPET Timers Linux wants an MADT */
185         printk(BIOS_DEBUG, "ACPI:    * MADT\n");
186
187         madt = (acpi_madt_t *) current;
188         acpi_create_madt(madt);
189         current += madt->header.length;
190         ALIGN_CURRENT;
191         acpi_add_table(rsdp, madt);
192
193         printk(BIOS_DEBUG, "ACPI:    * MCFG\n");
194         mcfg = (acpi_mcfg_t *) current;
195         acpi_create_mcfg(mcfg);
196         current += mcfg->header.length;
197         ALIGN_CURRENT;
198         acpi_add_table(rsdp, mcfg);
199
200         printk(BIOS_DEBUG, "ACPI:     * FACS\n");
201         facs = (acpi_facs_t *) current;
202         current += sizeof(acpi_facs_t);
203         ALIGN_CURRENT;
204         acpi_create_facs(facs);
205
206         dsdt = (acpi_header_t *) current;
207         memcpy(dsdt, &AmlCode, sizeof(acpi_header_t));
208         current += dsdt->length;
209         memcpy(dsdt, &AmlCode, dsdt->length);
210         ALIGN_CURRENT;
211
212         printk(BIOS_DEBUG, "ACPI:     * DSDT @ %p Length %x\n", dsdt,
213                      dsdt->length);
214
215         printk(BIOS_DEBUG, "ACPI:     * FADT\n");
216         fadt = (acpi_fadt_t *) current;
217         current += sizeof(acpi_fadt_t);
218         ALIGN_CURRENT;
219
220         acpi_create_fadt(fadt, facs, dsdt);
221         acpi_add_table(rsdp, fadt);
222
223         printk(BIOS_INFO, "ACPI: done.\n");
224         return current;
225 }