2009-03-10 21:56:54 +01:00
|
|
|
/*
|
|
|
|
* Island Aruma ACPI support
|
|
|
|
* written by Stefan Reinauer <stepan@openbios.org>
|
|
|
|
* (C) 2005 Stefan Reinauer
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright 2005 AMD
|
|
|
|
* 2005.9 yhlu modify that to more dynamic for AMD Opteron Based MB
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <arch/acpi.h>
|
|
|
|
#include <arch/smp/mpspec.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <device/pci_ids.h>
|
|
|
|
#include <cpu/x86/msr.h>
|
|
|
|
#include <cpu/amd/mtrr.h>
|
|
|
|
#include <cpu/amd/amdk8_sysconf.h>
|
2010-12-08 08:07:33 +01:00
|
|
|
#include "northbridge/amd/amdk8/acpi.h"
|
2009-03-10 21:56:54 +01:00
|
|
|
#include <cpu/amd/model_fxx_powernow.h>
|
|
|
|
|
2010-04-09 05:41:23 +02:00
|
|
|
extern const unsigned char AmlCode[];
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
unsigned long acpi_fill_mcfg(unsigned long current)
|
|
|
|
{
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* APIC */
|
|
|
|
unsigned long acpi_fill_madt(unsigned long current)
|
|
|
|
{
|
|
|
|
unsigned long apic_addr;
|
|
|
|
device_t dev;
|
|
|
|
|
|
|
|
/* create all subtables for processors */
|
|
|
|
current = acpi_create_madt_lapics(current);
|
|
|
|
|
|
|
|
/* Write NVIDIA CK804 IOAPIC. */
|
|
|
|
dev = dev_find_slot(0x0, PCI_DEVFN(0x1,0));
|
|
|
|
if (dev) {
|
|
|
|
apic_addr = pci_read_config32(dev, PCI_BASE_ADDRESS_1) & ~0xf;
|
|
|
|
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 4,
|
|
|
|
apic_addr, 0);
|
2009-10-16 16:34:50 +02:00
|
|
|
/* Initialize interrupt mapping if mptable.c didn't. */
|
|
|
|
#if (!CONFIG_GENERATE_MP_TABLE)
|
|
|
|
{
|
|
|
|
u32 dword;
|
|
|
|
dword = 0x0120d218;
|
|
|
|
pci_write_config32(dev, 0x7c, dword);
|
|
|
|
|
|
|
|
dword = 0x12008a00;
|
|
|
|
pci_write_config32(dev, 0x80, dword);
|
|
|
|
|
|
|
|
dword = 0x0000007d;
|
|
|
|
pci_write_config32(dev, 0x84, dword);
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-10 21:56:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Write AMD 8131 two IOAPICs. */
|
|
|
|
dev = dev_find_slot(0x40, PCI_DEVFN(0x0,1));
|
|
|
|
if (dev) {
|
|
|
|
apic_addr = pci_read_config32(dev, PCI_BASE_ADDRESS_0) & ~0xf;
|
|
|
|
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 5,
|
|
|
|
apic_addr, 0x18);
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = dev_find_slot(0x40, PCI_DEVFN(0x1, 1));
|
|
|
|
if (dev) {
|
|
|
|
apic_addr = pci_read_config32(dev, PCI_BASE_ADDRESS_0) & ~0xf;
|
|
|
|
current += acpi_create_madt_ioapic((acpi_madt_ioapic_t *) current, 6,
|
|
|
|
apic_addr, 0x1C);
|
|
|
|
}
|
|
|
|
|
2009-10-16 16:34:50 +02:00
|
|
|
/* IRQ9 */
|
2009-03-10 21:56:54 +01:00
|
|
|
current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)
|
2009-10-16 16:34:50 +02:00
|
|
|
current, 0, 9, 9, MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_LOW);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
/* 0: mean bus 0--->ISA */
|
|
|
|
/* 0: PIC 0 */
|
|
|
|
/* 2: APIC 2 */
|
|
|
|
/* 5 mean: 0101 --> Edge-triggered, Active high */
|
|
|
|
|
|
|
|
/* create all subtables for processors */
|
|
|
|
/* acpi_create_madt_lapic_nmis returns current, not size. */
|
|
|
|
current = acpi_create_madt_lapic_nmis(current, 5, 1);
|
|
|
|
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
2009-10-09 22:13:43 +02:00
|
|
|
unsigned long acpi_fill_ssdt_generator(unsigned long current, const char *oem_table_id) {
|
2009-03-10 21:56:54 +01:00
|
|
|
k8acpi_write_vars();
|
|
|
|
amd_model_fxx_generate_powernow(0, 0, 0);
|
|
|
|
return (unsigned long) (acpigen_get_current());
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long write_acpi_tables(unsigned long start)
|
|
|
|
{
|
|
|
|
unsigned long current;
|
|
|
|
acpi_rsdp_t *rsdp;
|
|
|
|
acpi_srat_t *srat;
|
|
|
|
acpi_rsdt_t *rsdt;
|
|
|
|
acpi_hpet_t *hpet;
|
|
|
|
acpi_madt_t *madt;
|
|
|
|
acpi_fadt_t *fadt;
|
|
|
|
acpi_facs_t *facs;
|
|
|
|
acpi_slit_t *slit;
|
|
|
|
acpi_header_t *ssdt;
|
|
|
|
acpi_header_t *dsdt;
|
|
|
|
|
|
|
|
/* Align ACPI tables to 16 byte. */
|
|
|
|
start = (start + 0x0f) & -0x10;
|
|
|
|
current = start;
|
|
|
|
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
/* We need at least an RSDP and an RSDT Table */
|
|
|
|
rsdp = (acpi_rsdp_t *) current;
|
|
|
|
current += sizeof(acpi_rsdp_t);
|
|
|
|
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
rsdt = (acpi_rsdt_t *) current;
|
|
|
|
current += sizeof(acpi_rsdt_t);
|
|
|
|
|
|
|
|
/* Clear all table memory. */
|
|
|
|
memset((void *) start, 0, current - start);
|
|
|
|
|
2009-07-21 23:38:33 +02:00
|
|
|
acpi_write_rsdp(rsdp, rsdt, NULL);
|
2009-03-10 21:56:54 +01:00
|
|
|
acpi_write_rsdt(rsdt);
|
|
|
|
|
|
|
|
current = ALIGN(current, 64);
|
|
|
|
facs = (acpi_facs_t *) current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * FACS %p\n", facs);
|
2009-03-10 21:56:54 +01:00
|
|
|
current += sizeof(acpi_facs_t);
|
|
|
|
acpi_create_facs(facs);
|
|
|
|
|
|
|
|
/* DSDT */
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
dsdt = (acpi_header_t *) current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * DSDT %p\n", dsdt);
|
2010-04-09 05:41:23 +02:00
|
|
|
memcpy(dsdt, &AmlCode, sizeof(acpi_header_t));
|
|
|
|
current += dsdt->length;
|
|
|
|
memcpy(dsdt, &AmlCode, dsdt->length);
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * DSDT @ %p Length %x\n",dsdt,dsdt->length);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
fadt = (acpi_fadt_t *) current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * FACP (FADT) @ %p\n", fadt);
|
2009-03-10 21:56:54 +01:00
|
|
|
current += sizeof(acpi_fadt_t);
|
|
|
|
|
|
|
|
/* Add FADT now that we have facs and dsdt. */
|
|
|
|
acpi_create_fadt(fadt, facs, dsdt);
|
2009-07-21 23:38:33 +02:00
|
|
|
acpi_add_table(rsdp, fadt);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
hpet = (acpi_hpet_t *) current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * HPET @ %p\n", hpet);
|
2009-03-10 21:56:54 +01:00
|
|
|
current += sizeof(acpi_hpet_t);
|
|
|
|
acpi_create_hpet(hpet);
|
2009-07-21 23:38:33 +02:00
|
|
|
acpi_add_table(rsdp, hpet);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
madt = (acpi_madt_t *) current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * APIC/MADT @ %p\n", madt);
|
2009-03-10 21:56:54 +01:00
|
|
|
acpi_create_madt(madt);
|
|
|
|
current += madt->header.length;
|
2009-07-21 23:38:33 +02:00
|
|
|
acpi_add_table(rsdp, madt);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
srat = (acpi_srat_t *) current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * SRAT @ %p\n", srat);
|
2009-03-10 21:56:54 +01:00
|
|
|
acpi_create_srat(srat);
|
|
|
|
current += srat->header.length;
|
2009-07-21 23:38:33 +02:00
|
|
|
acpi_add_table(rsdp, srat);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
/* SLIT */
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
slit = (acpi_slit_t *) current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * SLIT @ %p\n", slit);
|
2009-03-10 21:56:54 +01:00
|
|
|
acpi_create_slit(slit);
|
|
|
|
current+=slit->header.length;
|
2009-07-21 23:38:33 +02:00
|
|
|
acpi_add_table(rsdp,slit);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
|
|
|
/* SSDT */
|
|
|
|
current = ALIGN(current, 16);
|
|
|
|
ssdt = (acpi_header_t *)current;
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "ACPI: * SSDT @ %p\n", ssdt);
|
2011-10-13 01:18:29 +02:00
|
|
|
acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
|
2009-03-10 21:56:54 +01:00
|
|
|
current += ssdt->length;
|
2009-07-21 23:38:33 +02:00
|
|
|
acpi_add_table(rsdp, ssdt);
|
2009-03-10 21:56:54 +01:00
|
|
|
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_INFO, "ACPI: done %p.\n", (void *)current);
|
2009-03-10 21:56:54 +01:00
|
|
|
return current;
|
|
|
|
}
|