Use C code to generate MS0X entry and provide variant hook. BUG=b:207144468 TEST=check SSDT table has the same entry. Scope (\_SB) { Method (MS0X, 1, Serialized) { If ((Arg0 == One)) { \_SB.PCI0.CTXS (0x148) } Else { \_SB.PCI0.STXS (0x148) } } } Signed-off-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Change-Id: Ic36543e5cbaf8aaa7d933dcf54badc5f40e8ef02 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62779 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kangheui Won <khwon@chromium.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
181 lines
4.5 KiB
C
181 lines
4.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <acpi/acpigen.h>
|
|
#include <baseboard/gpio.h>
|
|
#include <baseboard/variants.h>
|
|
#include <device/device.h>
|
|
#include <drivers/tpm/cr50.h>
|
|
#include <drivers/wwan/fm/chip.h>
|
|
#include <ec/ec.h>
|
|
#include <soc/ramstage.h>
|
|
#include <fw_config.h>
|
|
#include <security/tpm/tss.h>
|
|
#include <soc/gpio.h>
|
|
#include <soc/ramstage.h>
|
|
|
|
WEAK_DEV_PTR(rp6_wwan);
|
|
|
|
static void add_fw_config_oem_string(const struct fw_config *config, void *arg)
|
|
{
|
|
struct smbios_type11 *t;
|
|
char buffer[64];
|
|
|
|
t = (struct smbios_type11 *)arg;
|
|
|
|
snprintf(buffer, sizeof(buffer), "%s-%s", config->field_name, config->option_name);
|
|
t->count = smbios_add_string(t->eos, buffer);
|
|
}
|
|
|
|
static void mainboard_smbios_strings(struct device *dev, struct smbios_type11 *t)
|
|
{
|
|
fw_config_for_each_found(add_fw_config_oem_string, t);
|
|
}
|
|
|
|
void mainboard_update_soc_chip_config(struct soc_intel_alderlake_config *config)
|
|
{
|
|
int ret;
|
|
|
|
ret = tlcl_lib_init();
|
|
if (ret != VB2_SUCCESS) {
|
|
printk(BIOS_ERR, "tlcl_lib_init() failed: 0x%x\n", ret);
|
|
return;
|
|
}
|
|
|
|
if (cr50_is_long_interrupt_pulse_enabled()) {
|
|
printk(BIOS_INFO, "Enabling GPIO PM b/c CR50 has long IRQ pulse support\n");
|
|
config->gpio_override_pm = 0;
|
|
} else {
|
|
printk(BIOS_INFO, "Disabling GPIO PM b/c CR50 does not have long IRQ pulse "
|
|
"support\n");
|
|
config->gpio_override_pm = 1;
|
|
config->gpio_pm[COMM_0] = 0;
|
|
config->gpio_pm[COMM_1] = 0;
|
|
config->gpio_pm[COMM_2] = 0;
|
|
config->gpio_pm[COMM_3] = 0;
|
|
config->gpio_pm[COMM_4] = 0;
|
|
config->gpio_pm[COMM_5] = 0;
|
|
}
|
|
|
|
variant_update_soc_chip_config(config);
|
|
}
|
|
|
|
__weak void variant_update_soc_chip_config(struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* default implementation does nothing */
|
|
}
|
|
|
|
static void mainboard_init(void *chip_info)
|
|
{
|
|
const struct pad_config *base_pads;
|
|
const struct pad_config *override_pads;
|
|
size_t base_num, override_num;
|
|
|
|
base_pads = variant_gpio_table(&base_num);
|
|
override_pads = variant_gpio_override_table(&override_num);
|
|
gpio_configure_pads_with_override(base_pads, base_num, override_pads, override_num);
|
|
|
|
variant_devtree_update();
|
|
}
|
|
|
|
void __weak variant_devtree_update(void)
|
|
{
|
|
/* Override dev tree settings per board */
|
|
}
|
|
|
|
static void mainboard_dev_init(struct device *dev)
|
|
{
|
|
mainboard_ec_init();
|
|
}
|
|
|
|
static void mainboard_generate_shutdown(const struct device *dev)
|
|
{
|
|
const struct drivers_wwan_fm_config *config = config_of(dev);
|
|
const struct device *parent = dev->bus->dev;
|
|
|
|
if (!config)
|
|
return;
|
|
if (config->rtd3dev) {
|
|
acpigen_write_store();
|
|
acpigen_emit_namestring(acpi_device_path_join(parent, "RTD3._STA"));
|
|
acpigen_emit_byte(LOCAL0_OP);
|
|
acpigen_write_if_lequal_op_int(LOCAL0_OP, ONE_OP);
|
|
{
|
|
acpigen_emit_namestring(acpi_device_path_join(dev, "DPTS"));
|
|
acpigen_emit_byte(ARG0_OP);
|
|
}
|
|
acpigen_write_if_end();
|
|
} else {
|
|
acpigen_emit_namestring(acpi_device_path_join(dev, "DPTS"));
|
|
acpigen_emit_byte(ARG0_OP);
|
|
}
|
|
}
|
|
|
|
static void mainboard_generate_s0ix_hook(void)
|
|
{
|
|
acpigen_write_if_lequal_op_int(ARG0_OP, 1);
|
|
{
|
|
if (CONFIG(HAVE_SLP_S0_GATE))
|
|
acpigen_soc_clear_tx_gpio(GPIO_SLP_S0_GATE);
|
|
variant_generate_s0ix_hook(S0IX_ENTRY);
|
|
}
|
|
acpigen_write_else();
|
|
{
|
|
if (CONFIG(HAVE_SLP_S0_GATE))
|
|
acpigen_soc_set_tx_gpio(GPIO_SLP_S0_GATE);
|
|
variant_generate_s0ix_hook(S0IX_EXIT);
|
|
}
|
|
acpigen_write_if_end();
|
|
}
|
|
|
|
static void mainboard_fill_ssdt(const struct device *dev)
|
|
{
|
|
const struct device *wwan = DEV_PTR(rp6_wwan);
|
|
|
|
if (wwan) {
|
|
acpigen_write_scope("\\_SB");
|
|
acpigen_write_method_serialized("MPTS", 1);
|
|
mainboard_generate_shutdown(wwan);
|
|
acpigen_write_method_end(); /* Method */
|
|
acpigen_write_scope_end(); /* Scope */
|
|
}
|
|
/* for variant to fill additional SSDT */
|
|
variant_fill_ssdt(dev);
|
|
|
|
acpigen_write_scope("\\_SB");
|
|
acpigen_write_method_serialized("MS0X", 1);
|
|
mainboard_generate_s0ix_hook();
|
|
acpigen_write_method_end(); /* Method */
|
|
acpigen_write_scope_end(); /* Scope */
|
|
|
|
}
|
|
|
|
void __weak variant_fill_ssdt(const struct device *dev)
|
|
{
|
|
/* Add board-specific SSDT entries */
|
|
}
|
|
|
|
void __weak variant_generate_s0ix_hook(enum s0ix_entry)
|
|
{
|
|
/* Add board-specific MS0X entries */
|
|
/*
|
|
if (s0ix_entry == S0IX_ENTRY) {
|
|
implement variant operations here
|
|
}
|
|
if (s0ix_entry == S0IX_EXIT) {
|
|
implement variant operations here
|
|
}
|
|
*/
|
|
}
|
|
|
|
static void mainboard_enable(struct device *dev)
|
|
{
|
|
dev->ops->init = mainboard_dev_init;
|
|
dev->ops->get_smbios_strings = mainboard_smbios_strings;
|
|
dev->ops->acpi_fill_ssdt = mainboard_fill_ssdt;
|
|
}
|
|
|
|
struct chip_operations mainboard_ops = {
|
|
.init = mainboard_init,
|
|
.enable_dev = mainboard_enable,
|
|
};
|