2004-01-28 17:56:14 +01:00
|
|
|
/*
|
2008-01-18 16:08:58 +01:00
|
|
|
* coreboot ACPI Table support
|
2004-01-28 17:56:14 +01:00
|
|
|
* written by Stefan Reinauer <stepan@openbios.org>
|
2005-01-19 15:06:41 +01:00
|
|
|
* (C) 2004 SUSE LINUX AG
|
|
|
|
* (C) 2005 Stefan Reinauer
|
|
|
|
*
|
|
|
|
* ACPI FADT, FACS, and DSDT table support added by
|
2004-10-06 19:33:54 +02:00
|
|
|
* Nick Barker <nick.barker9@btinternet.com>, and those portions
|
2005-01-19 15:06:41 +01:00
|
|
|
* (C) Copyright 2004 Nick Barker
|
2005-11-26 17:56:05 +01:00
|
|
|
*
|
|
|
|
* Copyright 2005 ADVANCED MICRO DEVICES, INC. All Rights Reserved.
|
2006-01-05 01:19:52 +01:00
|
|
|
* 2005.9 yhlu add SRAT table generation
|
2005-01-19 15:06:41 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Each system port implementing ACPI has to provide two functions:
|
|
|
|
*
|
|
|
|
* write_acpi_tables()
|
|
|
|
* acpi_dump_apics()
|
|
|
|
*
|
2005-02-08 10:11:40 +01:00
|
|
|
* See AMD Solo, Island Aruma or Via Epia-M port for more details.
|
2004-10-06 19:33:54 +02:00
|
|
|
*/
|
2004-01-28 17:56:14 +01:00
|
|
|
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <arch/acpi.h>
|
2009-02-01 19:35:15 +01:00
|
|
|
#include <arch/acpigen.h>
|
2005-01-19 15:06:41 +01:00
|
|
|
#include <device/pci.h>
|
2004-10-06 19:33:54 +02:00
|
|
|
|
|
|
|
u8 acpi_checksum(u8 *table, u32 length)
|
2004-01-28 17:56:14 +01:00
|
|
|
{
|
|
|
|
u8 ret=0;
|
|
|
|
while (length--) {
|
|
|
|
ret += *table;
|
|
|
|
table++;
|
|
|
|
}
|
2004-01-29 18:31:34 +01:00
|
|
|
return -ret;
|
2004-01-28 17:56:14 +01:00
|
|
|
}
|
|
|
|
|
2004-02-03 17:11:35 +01:00
|
|
|
/*
|
|
|
|
* add an acpi table to rsdt structure, and recalculate checksum
|
|
|
|
*/
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
void acpi_add_table(acpi_rsdt_t *rsdt, void *table)
|
2004-01-28 17:56:14 +01:00
|
|
|
{
|
|
|
|
int i;
|
2005-11-26 17:56:05 +01:00
|
|
|
|
2008-10-01 14:52:52 +02:00
|
|
|
int entries_num = ARRAY_SIZE(rsdt->entry);
|
2005-11-26 17:56:05 +01:00
|
|
|
|
|
|
|
for (i=0; i<entries_num; i++) {
|
2004-01-28 17:56:14 +01:00
|
|
|
if(rsdt->entry[i]==0) {
|
|
|
|
rsdt->entry[i]=(u32)table;
|
2004-10-06 19:33:54 +02:00
|
|
|
/* fix length to stop kernel winging about invalid entries */
|
|
|
|
rsdt->header.length = sizeof(acpi_header_t) + (sizeof(u32) * (i+1));
|
2004-01-28 17:56:14 +01:00
|
|
|
/* fix checksum */
|
|
|
|
/* hope this won't get optimized away */
|
|
|
|
rsdt->header.checksum=0;
|
|
|
|
rsdt->header.checksum=acpi_checksum((u8 *)rsdt,
|
|
|
|
rsdt->header.length);
|
|
|
|
|
2005-11-26 17:56:05 +01:00
|
|
|
printk_debug("ACPI: added table %d/%d Length now %d\n",i+1, entries_num, rsdt->header.length);
|
2004-01-28 17:56:14 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
printk_warning("ACPI: could not add ACPI table to RSDT. failed.\n");
|
2004-01-28 17:56:14 +01:00
|
|
|
}
|
|
|
|
|
2009-01-20 20:17:51 +01:00
|
|
|
int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base, u16 seg_nr, u8 start, u8 end)
|
|
|
|
{
|
2007-11-03 13:50:26 +01:00
|
|
|
mmconfig->base_address = base;
|
|
|
|
mmconfig->base_reserved = 0;
|
|
|
|
mmconfig->pci_segment_group_number = seg_nr;
|
|
|
|
mmconfig->start_bus_number = start;
|
|
|
|
mmconfig->end_bus_number = end;
|
|
|
|
return (sizeof(acpi_mcfg_mmconfig_t));
|
|
|
|
}
|
|
|
|
|
2004-02-03 17:11:35 +01:00
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
int acpi_create_madt_lapic(acpi_madt_lapic_t *lapic, u8 cpu, u8 apic)
|
2004-02-03 17:11:35 +01:00
|
|
|
{
|
|
|
|
lapic->type=0;
|
|
|
|
lapic->length=sizeof(acpi_madt_lapic_t);
|
|
|
|
lapic->flags=1;
|
|
|
|
|
|
|
|
lapic->processor_id=cpu;
|
|
|
|
lapic->apic_id=apic;
|
|
|
|
|
|
|
|
return(lapic->length);
|
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,u32 gsi_base)
|
2004-02-03 17:11:35 +01:00
|
|
|
{
|
|
|
|
ioapic->type=1;
|
|
|
|
ioapic->length=sizeof(acpi_madt_ioapic_t);
|
|
|
|
ioapic->reserved=0x00;
|
2005-01-19 15:06:41 +01:00
|
|
|
ioapic->gsi_base=gsi_base;
|
2004-02-03 17:11:35 +01:00
|
|
|
|
|
|
|
ioapic->ioapic_id=id;
|
|
|
|
ioapic->ioapic_addr=addr;
|
|
|
|
|
|
|
|
return(ioapic->length);
|
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
int acpi_create_madt_irqoverride(acpi_madt_irqoverride_t *irqoverride,
|
2004-02-03 17:11:35 +01:00
|
|
|
u8 bus, u8 source, u32 gsirq, u16 flags)
|
|
|
|
{
|
|
|
|
irqoverride->type=2;
|
|
|
|
irqoverride->length=sizeof(acpi_madt_irqoverride_t);
|
|
|
|
irqoverride->bus=bus;
|
|
|
|
irqoverride->source=source;
|
|
|
|
irqoverride->gsirq=gsirq;
|
|
|
|
irqoverride->flags=flags;
|
|
|
|
|
|
|
|
return(irqoverride->length);
|
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
|
2004-02-03 17:11:35 +01:00
|
|
|
u16 flags, u8 lint)
|
|
|
|
{
|
|
|
|
lapic_nmi->type=4;
|
|
|
|
lapic_nmi->length=sizeof(acpi_madt_lapic_nmi_t);
|
|
|
|
|
|
|
|
lapic_nmi->flags=flags;
|
|
|
|
lapic_nmi->processor_id=cpu;
|
|
|
|
lapic_nmi->lint=lint;
|
|
|
|
|
|
|
|
return(lapic_nmi->length);
|
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
void acpi_create_madt(acpi_madt_t *madt)
|
2004-02-03 17:11:35 +01:00
|
|
|
{
|
|
|
|
#define LOCAL_APIC_ADDR 0xfee00000ULL
|
2005-01-19 15:06:41 +01:00
|
|
|
|
2004-02-03 17:11:35 +01:00
|
|
|
acpi_header_t *header=&(madt->header);
|
|
|
|
unsigned long current=(unsigned long)madt+sizeof(acpi_madt_t);
|
|
|
|
|
|
|
|
memset((void *)madt, 0, sizeof(acpi_madt_t));
|
|
|
|
|
|
|
|
/* fill out header fields */
|
|
|
|
memcpy(header->signature, MADT_NAME, 4);
|
|
|
|
memcpy(header->oem_id, OEM_ID, 6);
|
|
|
|
memcpy(header->oem_table_id, MADT_TABLE, 8);
|
|
|
|
memcpy(header->asl_compiler_id, ASLC, 4);
|
|
|
|
|
|
|
|
header->length = sizeof(acpi_madt_t);
|
|
|
|
header->revision = 1;
|
|
|
|
|
|
|
|
madt->lapic_addr= LOCAL_APIC_ADDR;
|
|
|
|
madt->flags = 0x1; /* PCAT_COMPAT */
|
|
|
|
|
2005-11-26 17:56:05 +01:00
|
|
|
current = acpi_fill_madt(current);
|
2005-01-19 15:06:41 +01:00
|
|
|
|
2004-02-03 17:11:35 +01:00
|
|
|
/* recalculate length */
|
|
|
|
header->length= current - (unsigned long)madt;
|
|
|
|
|
|
|
|
header->checksum = acpi_checksum((void *)madt, header->length);
|
2005-11-26 17:56:05 +01:00
|
|
|
}
|
|
|
|
|
2007-11-03 13:50:26 +01:00
|
|
|
void acpi_create_mcfg(acpi_mcfg_t *mcfg)
|
|
|
|
{
|
|
|
|
|
|
|
|
acpi_header_t *header=&(mcfg->header);
|
|
|
|
unsigned long current=(unsigned long)mcfg+sizeof(acpi_mcfg_t);
|
|
|
|
|
|
|
|
memset((void *)mcfg, 0, sizeof(acpi_mcfg_t));
|
|
|
|
|
|
|
|
/* fill out header fields */
|
|
|
|
memcpy(header->signature, MCFG_NAME, 4);
|
|
|
|
memcpy(header->oem_id, OEM_ID, 6);
|
|
|
|
memcpy(header->oem_table_id, MCFG_TABLE, 8);
|
|
|
|
memcpy(header->asl_compiler_id, ASLC, 4);
|
|
|
|
|
|
|
|
header->length = sizeof(acpi_mcfg_t);
|
|
|
|
header->revision = 1;
|
|
|
|
|
|
|
|
current = acpi_fill_mcfg(current);
|
|
|
|
|
|
|
|
/* recalculate length */
|
|
|
|
header->length= current - (unsigned long)mcfg;
|
|
|
|
|
|
|
|
header->checksum = acpi_checksum((void *)mcfg, header->length);
|
|
|
|
}
|
|
|
|
|
2009-02-01 19:35:15 +01:00
|
|
|
/* this can be overriden by platform ACPI setup code,
|
|
|
|
if it calls acpi_create_ssdt_generator */
|
|
|
|
unsigned long __attribute__((weak)) acpi_fill_ssdt_generator(unsigned long current,
|
|
|
|
char *oem_table_id) {
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
|
|
|
void acpi_create_ssdt_generator(acpi_header_t *ssdt, char *oem_table_id)
|
|
|
|
{
|
|
|
|
unsigned long current=(unsigned long)ssdt+sizeof(acpi_header_t);
|
|
|
|
memset((void *)ssdt, 0, sizeof(acpi_header_t));
|
|
|
|
memcpy(&ssdt->signature, SSDT_NAME, 4);
|
|
|
|
ssdt->revision = 2;
|
|
|
|
memcpy(&ssdt->oem_id, OEM_ID, 6);
|
|
|
|
memcpy(&ssdt->oem_table_id, oem_table_id, 8);
|
|
|
|
ssdt->oem_revision = 42;
|
|
|
|
memcpy(&ssdt->asl_compiler_id, "GENAML", 4);
|
|
|
|
ssdt->asl_compiler_revision = 42;
|
|
|
|
ssdt->length = sizeof(acpi_header_t);
|
|
|
|
|
2009-03-06 18:24:29 +01:00
|
|
|
acpigen_set_current((char *) current);
|
2009-02-01 19:35:15 +01:00
|
|
|
current = acpi_fill_ssdt_generator(current, oem_table_id);
|
|
|
|
|
|
|
|
/* recalculate length */
|
|
|
|
ssdt->length = current - (unsigned long)ssdt;
|
|
|
|
ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
|
|
|
|
}
|
|
|
|
|
2005-11-26 17:56:05 +01:00
|
|
|
int acpi_create_srat_lapic(acpi_srat_lapic_t *lapic, u8 node, u8 apic)
|
|
|
|
{
|
2009-03-10 19:06:47 +01:00
|
|
|
memset((void *)lapic, 0, sizeof(acpi_srat_lapic_t));
|
2005-11-26 17:56:05 +01:00
|
|
|
lapic->type=0;
|
|
|
|
lapic->length=sizeof(acpi_srat_lapic_t);
|
|
|
|
lapic->flags=1;
|
|
|
|
|
|
|
|
lapic->proximity_domain_7_0 = node;
|
|
|
|
lapic->apic_id=apic;
|
|
|
|
|
|
|
|
return(lapic->length);
|
|
|
|
}
|
|
|
|
|
|
|
|
int acpi_create_srat_mem(acpi_srat_mem_t *mem, u8 node, u32 basek,u32 sizek, u32 flags)
|
|
|
|
{
|
|
|
|
mem->type=1;
|
|
|
|
mem->length=sizeof(acpi_srat_mem_t);
|
|
|
|
|
|
|
|
mem->base_address_low = (basek<<10);
|
|
|
|
mem->base_address_high = (basek>>(32-10));
|
|
|
|
|
|
|
|
mem->length_low = (sizek<<10);
|
|
|
|
mem->length_high = (sizek>>(32-10));
|
|
|
|
|
|
|
|
mem->proximity_domain = node;
|
|
|
|
|
|
|
|
mem->flags = flags;
|
|
|
|
|
|
|
|
return(mem->length);
|
|
|
|
}
|
|
|
|
|
|
|
|
void acpi_create_srat(acpi_srat_t *srat)
|
|
|
|
{
|
|
|
|
|
|
|
|
acpi_header_t *header=&(srat->header);
|
|
|
|
unsigned long current=(unsigned long)srat+sizeof(acpi_srat_t);
|
|
|
|
|
|
|
|
memset((void *)srat, 0, sizeof(acpi_srat_t));
|
|
|
|
|
|
|
|
/* fill out header fields */
|
|
|
|
memcpy(header->signature, SRAT_NAME, 4);
|
|
|
|
memcpy(header->oem_id, OEM_ID, 6);
|
|
|
|
memcpy(header->oem_table_id, SRAT_TABLE, 8);
|
|
|
|
memcpy(header->asl_compiler_id, ASLC, 4);
|
|
|
|
|
|
|
|
header->length = sizeof(acpi_srat_t);
|
|
|
|
header->revision = 1;
|
|
|
|
|
|
|
|
srat->resv = 0x1; /* BACK COMP */
|
|
|
|
|
|
|
|
current = acpi_fill_srat(current);
|
|
|
|
|
|
|
|
/* recalculate length */
|
|
|
|
header->length= current - (unsigned long)srat;
|
|
|
|
|
|
|
|
header->checksum = acpi_checksum((void *)srat, header->length);
|
2006-10-04 22:46:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void acpi_create_slit(acpi_slit_t *slit)
|
|
|
|
{
|
|
|
|
|
|
|
|
acpi_header_t *header=&(slit->header);
|
|
|
|
unsigned long current=(unsigned long)slit+sizeof(acpi_slit_t);
|
|
|
|
|
|
|
|
memset((void *)slit, 0, sizeof(acpi_slit_t));
|
|
|
|
|
|
|
|
/* fill out header fields */
|
|
|
|
memcpy(header->signature, SLIT_NAME, 4);
|
|
|
|
memcpy(header->oem_id, OEM_ID, 6);
|
|
|
|
memcpy(header->oem_table_id, SLIT_TABLE, 8);
|
|
|
|
memcpy(header->asl_compiler_id, ASLC, 4);
|
|
|
|
|
|
|
|
header->length = sizeof(acpi_slit_t);
|
|
|
|
header->revision = 1;
|
|
|
|
|
2009-03-10 19:06:47 +01:00
|
|
|
current = acpi_fill_slit(current);
|
2006-10-04 22:46:15 +02:00
|
|
|
|
|
|
|
/* recalculate length */
|
|
|
|
header->length= current - (unsigned long)slit;
|
|
|
|
|
|
|
|
header->checksum = acpi_checksum((void *)slit, header->length);
|
2004-02-03 17:11:35 +01:00
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
void acpi_create_hpet(acpi_hpet_t *hpet)
|
2004-01-28 17:56:14 +01:00
|
|
|
{
|
|
|
|
#define HPET_ADDR 0xfed00000ULL
|
|
|
|
acpi_header_t *header=&(hpet->header);
|
|
|
|
acpi_addr_t *addr=&(hpet->addr);
|
|
|
|
|
2004-01-29 18:31:34 +01:00
|
|
|
memset((void *)hpet, 0, sizeof(acpi_hpet_t));
|
|
|
|
|
2004-01-28 17:56:14 +01:00
|
|
|
/* fill out header fields */
|
|
|
|
memcpy(header->signature, HPET_NAME, 4);
|
|
|
|
memcpy(header->oem_id, OEM_ID, 6);
|
|
|
|
memcpy(header->oem_table_id, HPET_TABLE, 8);
|
|
|
|
memcpy(header->asl_compiler_id, ASLC, 4);
|
|
|
|
|
|
|
|
header->length = sizeof(acpi_hpet_t);
|
|
|
|
header->revision = 1;
|
|
|
|
|
|
|
|
/* fill out HPET address */
|
|
|
|
addr->space_id = 0; /* Memory */
|
|
|
|
addr->bit_width = 64;
|
|
|
|
addr->bit_offset = 0;
|
|
|
|
addr->addrl = HPET_ADDR & 0xffffffff;
|
|
|
|
addr->addrh = HPET_ADDR >> 32;
|
|
|
|
|
|
|
|
hpet->id = 0x102282a0; /* AMD ? */
|
|
|
|
hpet->number = 0;
|
|
|
|
hpet->min_tick = 4096;
|
|
|
|
|
2004-01-29 18:31:34 +01:00
|
|
|
header->checksum = acpi_checksum((void *)hpet, sizeof(acpi_hpet_t));
|
2004-01-28 17:56:14 +01:00
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
void acpi_create_facs(acpi_facs_t *facs)
|
2004-10-06 19:33:54 +02:00
|
|
|
{
|
|
|
|
memset( (void *)facs,0, sizeof(acpi_facs_t));
|
|
|
|
|
|
|
|
memcpy(facs->signature,"FACS",4);
|
|
|
|
facs->length = sizeof(acpi_facs_t);
|
|
|
|
facs->hardware_signature = 0;
|
|
|
|
facs->firmware_waking_vector = 0;
|
|
|
|
facs->global_lock = 0;
|
|
|
|
facs->flags = 0;
|
|
|
|
facs->x_firmware_waking_vector_l = 0;
|
|
|
|
facs->x_firmware_waking_vector_h = 0;
|
|
|
|
facs->version = 1;
|
|
|
|
}
|
2005-01-19 15:06:41 +01:00
|
|
|
|
|
|
|
void acpi_write_rsdt(acpi_rsdt_t *rsdt)
|
2004-01-28 17:56:14 +01:00
|
|
|
{
|
|
|
|
acpi_header_t *header=&(rsdt->header);
|
|
|
|
|
|
|
|
/* fill out header fields */
|
|
|
|
memcpy(header->signature, RSDT_NAME, 4);
|
|
|
|
memcpy(header->oem_id, OEM_ID, 6);
|
|
|
|
memcpy(header->oem_table_id, RSDT_TABLE, 8);
|
|
|
|
memcpy(header->asl_compiler_id, ASLC, 4);
|
|
|
|
|
|
|
|
header->length = sizeof(acpi_rsdt_t);
|
|
|
|
header->revision = 1;
|
|
|
|
|
|
|
|
/* fill out entries */
|
|
|
|
|
|
|
|
// entries are filled in later, we come with an empty set.
|
|
|
|
|
|
|
|
/* fix checksum */
|
|
|
|
|
|
|
|
header->checksum = acpi_checksum((void *)rsdt, sizeof(acpi_rsdt_t));
|
|
|
|
}
|
|
|
|
|
2005-01-19 15:06:41 +01:00
|
|
|
void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt)
|
2004-01-28 17:56:14 +01:00
|
|
|
{
|
|
|
|
memcpy(rsdp->signature, RSDP_SIG, 8);
|
|
|
|
memcpy(rsdp->oem_id, OEM_ID, 6);
|
|
|
|
|
|
|
|
rsdp->length = sizeof(acpi_rsdp_t);
|
|
|
|
rsdp->rsdt_address = (u32)rsdt;
|
2004-01-29 18:31:34 +01:00
|
|
|
rsdp->checksum = acpi_checksum((void *)rsdp, 20);
|
|
|
|
rsdp->ext_checksum = acpi_checksum((void *)rsdp, sizeof(acpi_rsdp_t));
|
2004-01-28 17:56:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|