a2fe7789e9
They're listed in AUTHORS and often incorrect anyway, for example: - What's a "Copyright $year-present"? - Which incarnation of Google (Inc, LLC, ...) is the current copyright holder? - People sometimes have their editor auto-add themselves to files even though they only deleted stuff - Or they let the editor automatically update the copyright year, because why not? - Who is the copyright holder "The coreboot project Authors"? - Or "Generated Code"? Sidestep all these issues by simply not putting these notices in individual files, let's list all copyright holders in AUTHORS instead and use the git history to deal with the rest. Change-Id: I09cc279b1f75952bb397de2c3f2b299255163685 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39607 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: David Hendricks <david.hendricks@gmail.com>
58 lines
2.1 KiB
C
58 lines
2.1 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef MAINBOARD_EC_H
|
|
#define MAINBOARD_EC_H
|
|
|
|
#include <ec/ec.h>
|
|
#include <ec/google/chromeec/ec_commands.h>
|
|
|
|
/* GPIO_S0_000 is EC_SCI#, but it is bit 24 in GPE_STS */
|
|
#define EC_SCI_GPI 24
|
|
/* GPIO_S5_07 is EC_SMI#, but it is bit 23 in GPE_STS and ALT_GPIO_SMI. */
|
|
#define EC_SMI_GPI 23
|
|
|
|
#define MAINBOARD_EC_SCI_EVENTS \
|
|
(EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_OPEN) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_AC_CONNECTED) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_AC_DISCONNECTED) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_BATTERY_LOW) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_BATTERY_CRITICAL) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_BATTERY) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_THERMAL_THRESHOLD) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_THROTTLE_START) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_THROTTLE_STOP) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_USB_CHARGER) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_MKBP))
|
|
|
|
#define MAINBOARD_EC_SMI_EVENTS \
|
|
(EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_CLOSED))
|
|
|
|
/* EC can wake from S5 with lid or power button */
|
|
#define MAINBOARD_EC_S5_WAKE_EVENTS \
|
|
(EC_HOST_EVENT_MASK(EC_HOST_EVENT_LID_OPEN) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_POWER_BUTTON))
|
|
|
|
/* EC can wake from S3 with lid or power button or key press */
|
|
#define MAINBOARD_EC_S3_WAKE_EVENTS \
|
|
(MAINBOARD_EC_S5_WAKE_EVENTS |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_KEY_PRESSED))
|
|
|
|
/* Log EC wake events plus EC shutdown events */
|
|
#define MAINBOARD_EC_LOG_EVENTS \
|
|
(EC_HOST_EVENT_MASK(EC_HOST_EVENT_THERMAL_SHUTDOWN) |\
|
|
EC_HOST_EVENT_MASK(EC_HOST_EVENT_BATTERY_SHUTDOWN))
|
|
|
|
#endif
|