• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <acpi/acpi.h>
4 #include <console/console.h>
5 #include <ec/ec.h>
6 #include <ec/google/chromeec/ec.h>
7 #include "ec.h"
8 
mainboard_ec_init(void)9 void mainboard_ec_init(void)
10 {
11 	const struct google_chromeec_event_info info = {
12 		.log_events = MAINBOARD_EC_LOG_EVENTS,
13 		.sci_events = MAINBOARD_EC_SCI_EVENTS,
14 		.s3_wake_events = MAINBOARD_EC_S3_WAKE_EVENTS,
15 		.s5_wake_events = MAINBOARD_EC_S5_WAKE_EVENTS,
16 	};
17 
18 	printk(BIOS_DEBUG, "%s\n", __func__);
19 	post_code(0xf0);
20 
21 	google_chromeec_events_init(&info, acpi_is_wakeup_s3());
22 
23 	post_code(0xf1);
24 }
25