2021-02-23 21:08:15 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
#include <amdblocks/gpio_banks.h>
|
|
|
|
#include <amdblocks/smi.h>
|
|
|
|
#include <ec/google/chromeec/ec.h>
|
2021-03-03 22:44:19 +01:00
|
|
|
#include <soc/smi.h>
|
2021-02-23 21:08:15 +01:00
|
|
|
#include <variant/ec.h>
|
|
|
|
|
2021-03-03 22:44:19 +01:00
|
|
|
static const struct sci_source espi_sci_sources[] = {
|
|
|
|
{
|
2021-04-26 17:43:36 +02:00
|
|
|
.scimap = SMITYPE_ESPI_SCI_B,
|
2021-04-14 02:17:32 +02:00
|
|
|
.gpe = EC_SCI_GPI,
|
2021-04-26 17:43:36 +02:00
|
|
|
.direction = SMI_SCI_LVL_HIGH, /* enum smi_sci_lvl */
|
|
|
|
.level = SMI_SCI_EDG, /* enum smi_sci_dir */
|
2021-03-03 22:44:19 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-02-23 21:08:15 +01:00
|
|
|
void mainboard_ec_init(void)
|
|
|
|
{
|
|
|
|
const struct google_chromeec_event_info info = {
|
|
|
|
.log_events = MAINBOARD_EC_LOG_EVENTS,
|
|
|
|
.sci_events = MAINBOARD_EC_SCI_EVENTS,
|
|
|
|
.s3_wake_events = MAINBOARD_EC_S3_WAKE_EVENTS,
|
|
|
|
.s5_wake_events = MAINBOARD_EC_S5_WAKE_EVENTS,
|
|
|
|
.s0ix_wake_events = MAINBOARD_EC_S0IX_WAKE_EVENTS,
|
|
|
|
};
|
|
|
|
|
|
|
|
google_chromeec_events_init(&info, acpi_is_wakeup_s3());
|
2021-03-03 22:44:19 +01:00
|
|
|
|
|
|
|
/* Configure eSPI VW SCI events */
|
|
|
|
gpe_configure_sci(espi_sci_sources, ARRAY_SIZE(espi_sci_sources));
|
2021-02-23 21:08:15 +01:00
|
|
|
}
|