blob: c491ad5787aa2d3e92e25eab69bbb721029cd2bb [file] [log] [blame]
Lee Leahyc4210412015-06-29 11:37:56 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2015 Google Inc.
5 * Copyright (C) 2015 Intel Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc.
19 */
20
21#include <arch/acpi.h>
22#include <console/console.h>
23#include <ec/google/chromeec/ec.h>
24#include "ec.h"
25
26void mainboard_ec_init(void)
27{
28 printk(BIOS_DEBUG, "mainboard_ec_init\n");
29 post_code(0xf0);
30
31 /* Restore SCI event mask on resume. */
32 if (acpi_slp_type == 3) {
33 google_chromeec_log_events(MAINBOARD_EC_LOG_EVENTS |
34 MAINBOARD_EC_S3_WAKE_EVENTS);
35
36 /* Disable SMI and wake events */
37 google_chromeec_set_smi_mask(0);
38
39 /* Clear pending events */
40 while (google_chromeec_get_event() != 0)
41 ;
42 /*
43 * Set SCI mask.OS may not generate SMI event to set
44 * this on S3 resume.
45 */
46 google_chromeec_set_sci_mask(MAINBOARD_EC_SCI_EVENTS);
47 } else {
48 google_chromeec_log_events(MAINBOARD_EC_LOG_EVENTS |
49 MAINBOARD_EC_S5_WAKE_EVENTS);
50 }
51
52 /* Clear wake event mask */
53 google_chromeec_set_wake_mask(0);
54 post_code(0xf1);
55}