blob: a4a1ccadaa62eb7ea95f11d898dba72e81eb26bc [file] [log] [blame]
Patrick Georgi406313d2015-07-20 22:01:32 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2015 Google Inc.
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.
Patrick Georgi406313d2015-07-20 22:01:32 +020015 */
16
Aaron Durbin30b0c7a2016-07-13 13:01:13 -050017#include <arch/acpi.h>
Matt DeVillier0b9cfe62018-06-26 13:07:32 -050018#include <baseboard/variant.h>
Patrick Georgi406313d2015-07-20 22:01:32 +020019#include <console/console.h>
20#include <cpu/x86/smm.h>
21#include <elog.h>
Aaron Durbin3969df82016-07-14 01:09:34 -050022#include <ec/google/chromeec/smm.h>
Aaron Durbince6c3562015-11-11 16:46:27 -060023#include <gpio.h>
Patrick Georgi406313d2015-07-20 22:01:32 +020024#include <soc/iomap.h>
25#include <soc/nvs.h>
26#include <soc/pm.h>
27#include <soc/smm.h>
28#include "ec.h"
Matt DeVillier0b9cfe62018-06-26 13:07:32 -050029#include <variant/gpio.h>
Patrick Georgi406313d2015-07-20 22:01:32 +020030
31int mainboard_io_trap_handler(int smif)
32{
33 switch (smif) {
34 case 0x99:
35 printk(BIOS_DEBUG, "Sample\n");
36 smm_get_gnvs()->smif = 0;
37 break;
38 default:
39 return 0;
40 }
41
42 /* On success, the IO Trap Handler returns 0
43 * On failure, the IO Trap Handler returns a value != 0
44 *
45 * For now, we force the return value to 0 and log all traps to
46 * see what's going on.
47 */
48 return 1;
49}
50
Aaron Durbin50ed38f2015-08-08 01:25:21 -050051void mainboard_smi_gpi_handler(const struct gpi_status *sts)
Patrick Georgi406313d2015-07-20 22:01:32 +020052{
Aaron Durbin3969df82016-07-14 01:09:34 -050053 if (gpi_status_get(sts, EC_SMI_GPI))
54 chromeec_smi_process_events();
Aaron Durbince6c3562015-11-11 16:46:27 -060055}
56
Matt DeVillier0b9cfe62018-06-26 13:07:32 -050057__weak void mainboard_gpio_smi_sleep(void)
Aaron Durbince6c3562015-11-11 16:46:27 -060058{
Aaron Durbince6c3562015-11-11 16:46:27 -060059}
60
61void mainboard_smi_sleep(u8 slp_typ)
62{
Julius Wernercd49cce2019-03-05 16:53:33 -080063 if (CONFIG(EC_GOOGLE_CHROMEEC))
Aaron Durbin3969df82016-07-14 01:09:34 -050064 chromeec_smi_sleep(slp_typ, MAINBOARD_EC_S3_WAKE_EVENTS,
65 MAINBOARD_EC_S5_WAKE_EVENTS);
Aaron Durbince6c3562015-11-11 16:46:27 -060066
Matt DeVillier0b9cfe62018-06-26 13:07:32 -050067 mainboard_gpio_smi_sleep();
Patrick Georgi406313d2015-07-20 22:01:32 +020068}
69
70int mainboard_smi_apmc(u8 apmc)
71{
Julius Wernercd49cce2019-03-05 16:53:33 -080072 if (CONFIG(EC_GOOGLE_CHROMEEC))
Aaron Durbin3969df82016-07-14 01:09:34 -050073 chromeec_smi_apmc(apmc, MAINBOARD_EC_SCI_EVENTS,
74 MAINBOARD_EC_SMI_EVENTS);
Patrick Georgi406313d2015-07-20 22:01:32 +020075 return 0;
76}