We define IO_APIC_ADDR in <arch/ioapic.h>, let's use it.
[coreboot.git] / src / mainboard / asus / m2v-mx_se / acpi_tables.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Written by Stefan Reinauer <stepan@openbios.org>.
5  * ACPI FADT, FACS, and DSDT table support added by
6  *
7  * Copyright (C) 2004 Stefan Reinauer <stepan@openbios.org>
8  * Copyright (C) 2005 Nick Barker <nick.barker9@btinternet.com>
9  * Copyright (C) 2007, 2008 Rudolf Marek <r.marek@assembler.cz>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; version 2 of the License.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
23  */
24
25 #include <console/console.h>
26 #include <string.h>
27 #include <arch/acpi.h>
28 #include <arch/smp/mpspec.h>
29 #include <arch/ioapic.h>
30 #include <device/device.h>
31 #include <device/pci_ids.h>
32 #include "southbridge/via/vt8237r/vt8237r.h"
33 #include "southbridge/via/k8t890/k8t890.h"
34 #include "northbridge/amd/amdk8/amdk8_acpi.h"
35 #include <cpu/amd/model_fxx_powernow.h>
36
37 extern const unsigned char AmlCode[];
38
39 unsigned long acpi_fill_mcfg(unsigned long current)
40 {
41         device_t dev;
42         struct resource *res;
43
44         dev = dev_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_K8M890CE_5, 0);
45         if (!dev)
46                 return current;
47
48         res = find_resource(dev, K8T890_MMCONFIG_MBAR);
49         if (res) {
50                 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)
51                                 current, res->base, 0x0, 0x0, 0xff);
52         }
53         return current;
54 }
55
56 unsigned long acpi_fill_madt(unsigned long current)
57 {
58         unsigned int gsi_base = 0x18;
59
60         /* Create all subtables for processors. */
61         current = acpi_create_madt_lapics(current);
62
63         /* Write SB IOAPIC. */
64         current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
65                                 VT8237R_APIC_ID, IO_APIC_ADDR, 0);
66
67         /* Write NB IOAPIC. */
68         current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
69                                 K8T890_APIC_ID, K8T890_APIC_BASE, gsi_base);
70
71         /* IRQ9 ACPI active low. */
72         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
73                 current, 0, 9, 9, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW);
74
75         /* IRQ0 -> APIC IRQ2. */
76         current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
77                                                 current, 0, 0, 2, 0x0);
78
79         /* Create all subtables for processors. */
80         current = acpi_create_madt_lapic_nmis(current,
81                         MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, 1);
82
83         return current;
84 }
85
86 unsigned long acpi_fill_ssdt_generator(unsigned long current, const char *oem_table_id)
87 {
88         k8acpi_write_vars();
89         amd_model_fxx_generate_powernow(0, 0, 0);
90         return (unsigned long) (acpigen_get_current());
91 }
92
93 unsigned long write_acpi_tables(unsigned long start)
94 {
95         unsigned long current;
96         acpi_rsdp_t *rsdp;
97         acpi_srat_t *srat;
98         acpi_rsdt_t *rsdt;
99         acpi_mcfg_t *mcfg;
100         acpi_hpet_t *hpet;
101         acpi_madt_t *madt;
102         acpi_fadt_t *fadt;
103         acpi_facs_t *facs;
104         acpi_slit_t *slit;
105         acpi_header_t *ssdt;
106         acpi_header_t *dsdt;
107
108         /* Align ACPI tables to 16 byte. */
109         start = (start + 0x0f) & -0x10;
110         current = start;
111
112         printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx...\n", start);
113
114         /* We need at least an RSDP and an RSDT table. */
115         rsdp = (acpi_rsdp_t *) current;
116         current += sizeof(acpi_rsdp_t);
117         rsdt = (acpi_rsdt_t *) current;
118         current += sizeof(acpi_rsdt_t);
119
120         /* Clear all table memory. */
121         memset((void *) start, 0, current - start);
122
123         acpi_write_rsdp(rsdp, rsdt, NULL);
124         acpi_write_rsdt(rsdt);
125
126         /* We explicitly add these tables later on: */
127         printk(BIOS_DEBUG, "ACPI:     * FACS\n");
128
129         /* we should align FACS to 64B as per ACPI specs */
130
131         current = ALIGN(current, 64);
132         facs = (acpi_facs_t *) current;
133         current += sizeof(acpi_facs_t);
134         acpi_create_facs(facs);
135
136         dsdt = (acpi_header_t *) current;
137         memcpy(dsdt, &AmlCode, sizeof(acpi_header_t));
138         current += dsdt->length;
139         memcpy(dsdt, &AmlCode, dsdt->length);
140         dsdt->checksum = 0;     /* Don't trust iasl to get this right. */
141         dsdt->checksum = acpi_checksum((u8*)dsdt, dsdt->length);
142         printk(BIOS_DEBUG, "ACPI:     * DSDT @ %p Length %x\n", dsdt,
143                      dsdt->length);
144         printk(BIOS_DEBUG, "ACPI:     * FADT\n");
145
146         fadt = (acpi_fadt_t *) current;
147         current += sizeof(acpi_fadt_t);
148
149         acpi_create_fadt(fadt, facs, dsdt);
150         acpi_add_table(rsdp, fadt);
151
152         printk(BIOS_DEBUG, "ACPI:    * HPET\n");
153         hpet = (acpi_hpet_t *) current;
154         current += sizeof(acpi_hpet_t);
155         acpi_create_hpet(hpet);
156         acpi_add_table(rsdp, hpet);
157
158         /* If we want to use HPET timers Linux wants an MADT. */
159         printk(BIOS_DEBUG, "ACPI:    * MADT\n");
160         madt = (acpi_madt_t *) current;
161         acpi_create_madt(madt);
162         current += madt->header.length;
163         acpi_add_table(rsdp, madt);
164
165         printk(BIOS_DEBUG, "ACPI:    * MCFG\n");
166         mcfg = (acpi_mcfg_t *) current;
167         acpi_create_mcfg(mcfg);
168         current += mcfg->header.length;
169         acpi_add_table(rsdp, mcfg);
170
171         printk(BIOS_DEBUG, "ACPI:    * SRAT\n");
172         srat = (acpi_srat_t *) current;
173         acpi_create_srat(srat);
174         current += srat->header.length;
175         acpi_add_table(rsdp, srat);
176
177         /* SLIT */
178         printk(BIOS_DEBUG, "ACPI:    * SLIT\n");
179         slit = (acpi_slit_t *) current;
180         acpi_create_slit(slit);
181         current+=slit->header.length;
182         acpi_add_table(rsdp,slit);
183
184         /* SSDT */
185         printk(BIOS_DEBUG, "ACPI:    * SSDT\n");
186         ssdt = (acpi_header_t *)current;
187
188         acpi_create_ssdt_generator(ssdt, "DYNADATA");
189         current += ssdt->length;
190         acpi_add_table(rsdp, ssdt);
191
192         printk(BIOS_INFO, "ACPI: done.\n");
193         return current;
194 }