Instead of using the PSTATE SSDT generated by binaryPI, use the common AMD code by selecting SOC_AMD_COMMON_BLOCK_ACPI_CPU_POWER_STATE. To match the SSDT from binaryPI, set ACPI_SSDT_PSD_INDEPENDENT to n. There are two differences to the binaryPI SSDT: Now coreboot includes the C1 state in the _CST package instead of just having the kernel add this due to the ACPI_FADT_C1_SUPPORTED bit being set and the address of the PS_STS_REG P state status MSR is written to the corresponding field of the _PCT package instead of being 0. TEST=On Careena the new P and C state ACPI packages are nearly identical to the ones from the SSDT from binaryPI with the two functional differences mentioned above. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Icdf6bc8f0e0363f185a294ab84edcb51322e7eb7 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74023 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
114 lines
3.1 KiB
C
114 lines
3.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/*
|
|
* ACPI - create the Fixed ACPI Description Tables (FADT)
|
|
*/
|
|
|
|
#include <console/console.h>
|
|
#include <acpi/acpi.h>
|
|
#include <acpi/acpigen.h>
|
|
#include <device/pci_ops.h>
|
|
#include <arch/ioapic.h>
|
|
#include <arch/smp/mpspec.h>
|
|
#include <cpu/x86/smm.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <gpio.h>
|
|
#include <amdblocks/acpimmio.h>
|
|
#include <amdblocks/acpi.h>
|
|
#include <amdblocks/cpu.h>
|
|
#include <amdblocks/ioapic.h>
|
|
#include <soc/acpi.h>
|
|
#include <soc/pci_devs.h>
|
|
#include <soc/southbridge.h>
|
|
#include <soc/northbridge.h>
|
|
#include <version.h>
|
|
|
|
unsigned long acpi_fill_madt(unsigned long current)
|
|
{
|
|
/* create all subtables for processors */
|
|
current = acpi_create_madt_lapics_with_nmis(current);
|
|
|
|
/* Write Kern IOAPIC, only one */
|
|
current += acpi_create_madt_ioapic_from_hw((acpi_madt_ioapic_t *)current, IO_APIC_ADDR);
|
|
|
|
current += acpi_create_madt_ioapic_from_hw((acpi_madt_ioapic_t *)current, IO_APIC2_ADDR);
|
|
|
|
/* PIT is connected to legacy IRQ 0, but IOAPIC GSI 2 */
|
|
current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)current,
|
|
MP_BUS_ISA, 0, 2,
|
|
MP_IRQ_TRIGGER_DEFAULT | MP_IRQ_POLARITY_DEFAULT);
|
|
/* SCI IRQ type override */
|
|
current += acpi_create_madt_irqoverride((acpi_madt_irqoverride_t *)current,
|
|
MP_BUS_ISA, ACPI_SCI_IRQ, ACPI_SCI_IRQ,
|
|
MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW);
|
|
|
|
return current;
|
|
}
|
|
|
|
/*
|
|
* Reference section 5.2.9 Fixed ACPI Description Table (FADT)
|
|
* in the ACPI 3.0b specification.
|
|
*/
|
|
void acpi_fill_fadt(acpi_fadt_t *fadt)
|
|
{
|
|
printk(BIOS_DEBUG, "pm_base: 0x%04x\n", ACPI_IO_BASE);
|
|
|
|
fadt->sci_int = ACPI_SCI_IRQ;
|
|
|
|
if (permanent_smi_handler()) {
|
|
fadt->smi_cmd = APM_CNT;
|
|
fadt->acpi_enable = APM_CNT_ACPI_ENABLE;
|
|
fadt->acpi_disable = APM_CNT_ACPI_DISABLE;
|
|
}
|
|
|
|
fadt->pm1a_evt_blk = ACPI_PM_EVT_BLK;
|
|
fadt->pm1a_cnt_blk = ACPI_PM1_CNT_BLK;
|
|
fadt->pm_tmr_blk = ACPI_PM_TMR_BLK;
|
|
fadt->gpe0_blk = ACPI_GPE0_BLK;
|
|
|
|
fadt->pm1_evt_len = 4; /* 32 bits */
|
|
fadt->pm1_cnt_len = 2; /* 16 bits */
|
|
fadt->pm_tmr_len = 4; /* 32 bits */
|
|
fadt->gpe0_blk_len = 8; /* 64 bits */
|
|
|
|
fill_fadt_extended_pm_regs(fadt);
|
|
|
|
/* p_lvl2_lat and p_lvl3_lat match what the AGESA code does, but those values are
|
|
overridden by the _CST packages in the PSTATE SSDT. */
|
|
fadt->p_lvl2_lat = ACPI_FADT_C2_NOT_SUPPORTED;
|
|
fadt->p_lvl3_lat = ACPI_FADT_C3_NOT_SUPPORTED;
|
|
fadt->duty_offset = 1; /* CLK_VAL bits 3:1 */
|
|
fadt->duty_width = 3; /* CLK_VAL bits 3:1 */
|
|
fadt->day_alrm = RTC_DATE_ALARM;
|
|
fadt->iapc_boot_arch = FADT_BOOT_ARCH; /* See table 5-10 */
|
|
fadt->flags |= ACPI_FADT_WBINVD | /* See table 5-10 ACPI 3.0a spec */
|
|
ACPI_FADT_C1_SUPPORTED |
|
|
ACPI_FADT_SLEEP_BUTTON |
|
|
ACPI_FADT_S4_RTC_WAKE |
|
|
ACPI_FADT_32BIT_TIMER |
|
|
ACPI_FADT_PCI_EXPRESS_WAKE |
|
|
ACPI_FADT_PLATFORM_CLOCK |
|
|
ACPI_FADT_S4_RTC_VALID |
|
|
ACPI_FADT_REMOTE_POWER_ON;
|
|
}
|
|
|
|
const acpi_cstate_t cstate_cfg_table[] = {
|
|
[0] = {
|
|
.ctype = 1,
|
|
.latency = 1,
|
|
.power = 0,
|
|
},
|
|
[1] = {
|
|
.ctype = 2,
|
|
.latency = 400,
|
|
.power = 0,
|
|
},
|
|
};
|
|
|
|
const acpi_cstate_t *get_cstate_config_data(size_t *size)
|
|
{
|
|
*size = ARRAY_SIZE(cstate_cfg_table);
|
|
return cstate_cfg_table;
|
|
}
|