Files
system76-coreboot/src/mainboard/google/sarien/smihandler.c
Angel Pons d9d1d20c97 mb/google/sarien: Use SPDX for GPL-2.0-only files
Done with sed and God Lines. Only done for C-like code for now.

Change-Id: Ia64c49aed694eac1f98d176c646a60597c8ae66a
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40193
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2020-04-06 13:54:54 +00:00

24 lines
423 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <cpu/x86/smm.h>
#include <ec/google/wilco/smm.h>
#include <intelblocks/smihandler.h>
#include <variant/ec.h>
void mainboard_smi_espi_handler(void)
{
wilco_ec_smi_espi();
}
void mainboard_smi_sleep(u8 slp_typ)
{
wilco_ec_smi_sleep(slp_typ);
}
int mainboard_smi_apmc(u8 apmc)
{
wilco_ec_smi_apmc(apmc);
return 0;
}