summaryrefslogtreecommitdiff
path: root/board/nyan/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/nyan/board.c')
-rw-r--r--board/nyan/board.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/board/nyan/board.c b/board/nyan/board.c
index 0daa122fe9..7813af3a2b 100644
--- a/board/nyan/board.c
+++ b/board/nyan/board.c
@@ -13,6 +13,7 @@
#include "keyboard_raw.h"
#include "lid_switch.h"
#include "pmu_tpschrome.h"
+#include "power.h"
#include "power_button.h"
#include "power.h"
#include "pwm.h"
@@ -100,6 +101,13 @@ const struct gpio_alt_func gpio_alt_funcs[] = {
};
const int gpio_alt_funcs_count = ARRAY_SIZE(gpio_alt_funcs);
+/* power signal list. Must match order of enum power_signal. */
+const struct power_signal_info power_signal_list[] = {
+ {GPIO_SOC1V8_XPSHOLD, 1, "XPSHOLD"},
+ {GPIO_SUSPEND_L, 0, "SUSPEND#_ASSERTED"},
+};
+BUILD_ASSERT(ARRAY_SIZE(power_signal_list) == POWER_SIGNAL_COUNT);
+
/* I2C ports */
const struct i2c_port_t i2c_ports[] = {
{"master", I2C_PORT_MASTER, 100},