2020-04-05 13:22:01 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2013-02-22 00:48:37 +01:00
|
|
|
|
2020-05-02 19:24:23 +02:00
|
|
|
#include <acpi/acpi.h>
|
2013-02-22 00:48:37 +01:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <ec/google/chromeec/ec.h>
|
|
|
|
#include "ec.h"
|
|
|
|
|
|
|
|
void link_ec_init(void)
|
|
|
|
{
|
2017-10-04 23:01:41 +02:00
|
|
|
const struct google_chromeec_event_info info = {
|
|
|
|
.log_events = LINK_EC_LOG_EVENTS,
|
|
|
|
.sci_events = LINK_EC_SCI_EVENTS,
|
|
|
|
.s3_wake_events = LINK_EC_S3_WAKE_EVENTS,
|
|
|
|
.s5_wake_events = LINK_EC_S5_WAKE_EVENTS,
|
|
|
|
};
|
|
|
|
|
2013-02-22 00:48:37 +01:00
|
|
|
printk(BIOS_DEBUG, "link_ec_init\n");
|
|
|
|
post_code(0xf0);
|
|
|
|
|
2017-10-04 23:01:41 +02:00
|
|
|
google_chromeec_events_init(&info, acpi_is_wakeup_s3());
|
2013-02-22 00:48:37 +01:00
|
|
|
|
|
|
|
post_code(0xf1);
|
|
|
|
}
|