summaryrefslogtreecommitdiff
path: root/power/it8xxx2.c
diff options
context:
space:
mode:
Diffstat (limited to 'power/it8xxx2.c')
-rw-r--r--power/it8xxx2.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/power/it8xxx2.c b/power/it8xxx2.c
new file mode 100644
index 0000000000..7d758b29bd
--- /dev/null
+++ b/power/it8xxx2.c
@@ -0,0 +1,14 @@
+/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#include "gpio.h"
+#include "power.h"
+
+/* power signal list. Must match order of enum power_signal. */
+const struct power_signal_info power_signal_list[] = {
+ {GPIO_PMIC_EC_PWRGD, POWER_SIGNAL_ACTIVE_HIGH, "PMIC_PWR_GOOD"},
+ {GPIO_AP_IN_SLEEP_L, POWER_SIGNAL_ACTIVE_LOW, "AP_IN_S3_L"},
+ {GPIO_AP_EC_WATCHDOG_L, POWER_SIGNAL_ACTIVE_LOW, "AP_WDT_ASSERTED"},
+};
+BUILD_ASSERT(ARRAY_SIZE(power_signal_list) == POWER_SIGNAL_COUNT);