blob: 73e37680b1829ea7424ea72dfe6d98ff50d10e68 [file] [log] [blame]
Rudolf Marek05839972008-09-23 20:36:03 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Written by Stefan Reinauer <stepan@openbios.org>.
Stefan Reinauer14e22772010-04-27 06:56:47 +00005 * ACPI FADT, FACS, and DSDT table support added by
Rudolf Marek05839972008-09-23 20:36:03 +00006 *
7 * Copyright (C) 2004 Stefan Reinauer <stepan@openbios.org>
8 * Copyright (C) 2005 Nick Barker <nick.barker9@btinternet.com>
Rudolf Marek79e53252008-12-23 17:34:15 +00009 * Copyright (C) 2007, 2008 Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek05839972008-09-23 20:36:03 +000010 *
11 * This program is free software; you can redistribute it and/or modify
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000012 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2 of the License.
Rudolf Marek05839972008-09-23 20:36:03 +000014 *
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>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000028#include <arch/acpigen.h>
Rudolf Marek05839972008-09-23 20:36:03 +000029#include <arch/smp/mpspec.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000030#include <arch/ioapic.h>
Rudolf Marek05839972008-09-23 20:36:03 +000031#include <device/device.h>
32#include <device/pci_ids.h>
Uwe Hermann5df41682010-09-25 16:17:20 +000033#include "southbridge/via/vt8237r/vt8237r.h"
34#include "southbridge/via/k8t890/k8t890.h"
stepan8301d832010-12-08 07:07:33 +000035#include "northbridge/amd/amdk8/acpi.h"
Rudolf Marekf997b552009-02-14 15:40:23 +000036#include <cpu/amd/model_fxx_powernow.h>
Rudolf Marek05839972008-09-23 20:36:03 +000037
Myles Watsonae608552010-04-09 03:41:23 +000038extern const unsigned char AmlCode[];
Rudolf Marek05839972008-09-23 20:36:03 +000039
40unsigned long acpi_fill_mcfg(unsigned long current)
41{
42 device_t dev;
43 struct resource *res;
44
Rudolf Marekb2bd9962009-07-23 08:10:51 +000045 dev = dev_find_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_K8M890CE_5, 0);
Rudolf Marek05839972008-09-23 20:36:03 +000046 if (!dev)
47 return current;
48
49 res = find_resource(dev, K8T890_MMCONFIG_MBAR);
50 if (res) {
51 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)
52 current, res->base, 0x0, 0x0, 0xff);
53 }
54 return current;
55}
56
57unsigned long acpi_fill_madt(unsigned long current)
58{
59 unsigned int gsi_base = 0x18;
60
61 /* Create all subtables for processors. */
62 current = acpi_create_madt_lapics(current);
63
64 /* Write SB IOAPIC. */
65 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000066 VT8237R_APIC_ID, IO_APIC_ADDR, 0);
Rudolf Marek05839972008-09-23 20:36:03 +000067
68 /* Write NB IOAPIC. */
69 current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current,
70 K8T890_APIC_ID, K8T890_APIC_BASE, gsi_base);
71
72 /* IRQ9 ACPI active low. */
73 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
74 current, 0, 9, 9, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW);
75
76 /* IRQ0 -> APIC IRQ2. */
77 current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
Stefan Reinauer14e22772010-04-27 06:56:47 +000078 current, 0, 0, 2, 0x0);
Rudolf Marek05839972008-09-23 20:36:03 +000079
80 /* Create all subtables for processors. */
81 current = acpi_create_madt_lapic_nmis(current,
82 MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, 1);
83
84 return current;
85}
86
Myles Watson3fe6b702009-10-09 20:13:43 +000087unsigned long acpi_fill_ssdt_generator(unsigned long current, const char *oem_table_id)
Stefan Reinauerdecdb3c2009-03-31 14:10:42 +000088{
Rudolf Marek293b5f52009-02-01 18:35:15 +000089 k8acpi_write_vars();
Rudolf Marekf997b552009-02-14 15:40:23 +000090 amd_model_fxx_generate_powernow(0, 0, 0);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000091 acpigen_write_mainboard_resources("\\_SB.PCI0.MBRS", "_CRS");
Rudolf Marek293b5f52009-02-01 18:35:15 +000092 return (unsigned long) (acpigen_get_current());
93}
94
Rudolf Marek05839972008-09-23 20:36:03 +000095unsigned long write_acpi_tables(unsigned long start)
96{
97 unsigned long current;
98 acpi_rsdp_t *rsdp;
99 acpi_srat_t *srat;
100 acpi_rsdt_t *rsdt;
101 acpi_mcfg_t *mcfg;
102 acpi_hpet_t *hpet;
103 acpi_madt_t *madt;
104 acpi_fadt_t *fadt;
105 acpi_facs_t *facs;
Rudolf Marek79e53252008-12-23 17:34:15 +0000106 acpi_slit_t *slit;
107 acpi_header_t *ssdt;
Rudolf Marek05839972008-09-23 20:36:03 +0000108 acpi_header_t *dsdt;
109
110 /* Align ACPI tables to 16 byte. */
111 start = (start + 0x0f) & -0x10;
112 current = start;
113
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000114 printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx...\n", start);
Rudolf Marek05839972008-09-23 20:36:03 +0000115
116 /* We need at least an RSDP and an RSDT table. */
117 rsdp = (acpi_rsdp_t *) current;
118 current += sizeof(acpi_rsdp_t);
119 rsdt = (acpi_rsdt_t *) current;
120 current += sizeof(acpi_rsdt_t);
121
122 /* Clear all table memory. */
123 memset((void *) start, 0, current - start);
124
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000125 acpi_write_rsdp(rsdp, rsdt, NULL);
Rudolf Marek05839972008-09-23 20:36:03 +0000126 acpi_write_rsdt(rsdt);
127
128 /* We explicitly add these tables later on: */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000129 printk(BIOS_DEBUG, "ACPI: * FACS\n");
Rudolf Marek79e53252008-12-23 17:34:15 +0000130
131 /* we should align FACS to 64B as per ACPI specs */
132
133 current = ALIGN(current, 64);
Rudolf Marek05839972008-09-23 20:36:03 +0000134 facs = (acpi_facs_t *) current;
135 current += sizeof(acpi_facs_t);
136 acpi_create_facs(facs);
137
138 dsdt = (acpi_header_t *) current;
Myles Watsonae608552010-04-09 03:41:23 +0000139 memcpy(dsdt, &AmlCode, sizeof(acpi_header_t));
140 current += dsdt->length;
141 memcpy(dsdt, &AmlCode, dsdt->length);
Rudolf Marek05839972008-09-23 20:36:03 +0000142 dsdt->checksum = 0; /* Don't trust iasl to get this right. */
Myles Watsonae608552010-04-09 03:41:23 +0000143 dsdt->checksum = acpi_checksum((u8*)dsdt, dsdt->length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000144 printk(BIOS_DEBUG, "ACPI: * DSDT @ %p Length %x\n", dsdt,
Rudolf Marek05839972008-09-23 20:36:03 +0000145 dsdt->length);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000146 printk(BIOS_DEBUG, "ACPI: * FADT\n");
Rudolf Marek05839972008-09-23 20:36:03 +0000147
148 fadt = (acpi_fadt_t *) current;
149 current += sizeof(acpi_fadt_t);
150
151 acpi_create_fadt(fadt, facs, dsdt);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000152 acpi_add_table(rsdp, fadt);
Rudolf Marek05839972008-09-23 20:36:03 +0000153
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000154 printk(BIOS_DEBUG, "ACPI: * HPET\n");
Rudolf Marek05839972008-09-23 20:36:03 +0000155 hpet = (acpi_hpet_t *) current;
156 current += sizeof(acpi_hpet_t);
157 acpi_create_hpet(hpet);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000158 acpi_add_table(rsdp, hpet);
Rudolf Marek05839972008-09-23 20:36:03 +0000159
160 /* If we want to use HPET timers Linux wants an MADT. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000161 printk(BIOS_DEBUG, "ACPI: * MADT\n");
Rudolf Marek05839972008-09-23 20:36:03 +0000162 madt = (acpi_madt_t *) current;
163 acpi_create_madt(madt);
164 current += madt->header.length;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000165 acpi_add_table(rsdp, madt);
Rudolf Marek05839972008-09-23 20:36:03 +0000166
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000167 printk(BIOS_DEBUG, "ACPI: * MCFG\n");
Rudolf Marek05839972008-09-23 20:36:03 +0000168 mcfg = (acpi_mcfg_t *) current;
169 acpi_create_mcfg(mcfg);
170 current += mcfg->header.length;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000171 acpi_add_table(rsdp, mcfg);
Rudolf Marek05839972008-09-23 20:36:03 +0000172
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000173 printk(BIOS_DEBUG, "ACPI: * SRAT\n");
Rudolf Marek05839972008-09-23 20:36:03 +0000174 srat = (acpi_srat_t *) current;
175 acpi_create_srat(srat);
176 current += srat->header.length;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000177 acpi_add_table(rsdp, srat);
Rudolf Marek05839972008-09-23 20:36:03 +0000178
Rudolf Marek79e53252008-12-23 17:34:15 +0000179 /* SLIT */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000180 printk(BIOS_DEBUG, "ACPI: * SLIT\n");
Rudolf Marek79e53252008-12-23 17:34:15 +0000181 slit = (acpi_slit_t *) current;
182 acpi_create_slit(slit);
183 current+=slit->header.length;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000184 acpi_add_table(rsdp,slit);
Rudolf Marek79e53252008-12-23 17:34:15 +0000185
186 /* SSDT */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000187 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
Rudolf Marek79e53252008-12-23 17:34:15 +0000188 ssdt = (acpi_header_t *)current;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000189
190 acpi_create_ssdt_generator(ssdt, "DYNADATA");
191 current += ssdt->length;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000192 acpi_add_table(rsdp, ssdt);
Rudolf Marek79e53252008-12-23 17:34:15 +0000193
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000194 printk(BIOS_INFO, "ACPI: done.\n");
Rudolf Marek05839972008-09-23 20:36:03 +0000195 return current;
196}