Remove code to turn on backlight during ACPI mode because backlight has been properly enabled in ACPI. BUG=b:158087989 BRANCH=Zork TEST=tested backlight during reboot and suspend Signed-off-by: Josie Nordrum <JosieNordrum@google.com> Change-Id: I3bf06042aa19e4559127d611d401f0ba0516b3a6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/46823 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Furquan Shaikh <furquan@google.com>
39 lines
868 B
C
39 lines
868 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <acpi/acpi.h>
|
|
#include <baseboard/variants.h>
|
|
#include <cpu/x86/smm.h>
|
|
#include <ec/google/chromeec/smm.h>
|
|
#include <gpio.h>
|
|
#include <soc/smi.h>
|
|
#include <variant/ec.h>
|
|
#include <variant/gpio.h>
|
|
#include <console/console.h>
|
|
|
|
void mainboard_smi_gpi(u32 gpi_sts)
|
|
{
|
|
if (CONFIG(EC_GOOGLE_CHROMEEC))
|
|
chromeec_smi_process_events();
|
|
}
|
|
void mainboard_smi_sleep(u8 slp_typ)
|
|
{
|
|
size_t num_gpios;
|
|
const struct soc_amd_gpio *gpios;
|
|
|
|
if (CONFIG(EC_GOOGLE_CHROMEEC))
|
|
chromeec_smi_sleep(slp_typ, MAINBOARD_EC_S3_WAKE_EVENTS,
|
|
MAINBOARD_EC_S5_WAKE_EVENTS);
|
|
|
|
gpios = variant_sleep_gpio_table(&num_gpios, slp_typ);
|
|
program_gpios(gpios, num_gpios);
|
|
}
|
|
|
|
int mainboard_smi_apmc(u8 apmc)
|
|
{
|
|
if (CONFIG(EC_GOOGLE_CHROMEEC))
|
|
chromeec_smi_apmc(apmc, MAINBOARD_EC_SCI_EVENTS,
|
|
MAINBOARD_EC_SMI_EVENTS);
|
|
|
|
return 0;
|
|
}
|