summaryrefslogtreecommitdiff
path: root/baseboard/brask/baseboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'baseboard/brask/baseboard.c')
-rw-r--r--baseboard/brask/baseboard.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/baseboard/brask/baseboard.c b/baseboard/brask/baseboard.c
new file mode 100644
index 0000000000..976831812f
--- /dev/null
+++ b/baseboard/brask/baseboard.c
@@ -0,0 +1,17 @@
+/* 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 "common.h"
+#include "compile_time_macros.h"
+
+#include "gpio_signal.h"
+
+/* Wake up pins */
+const enum gpio_signal hibernate_wake_pins[] = {
+ GPIO_ACOK_OD,
+ GPIO_GSC_EC_PWR_BTN_ODL,
+ GPIO_LID_OPEN,
+};
+const int hibernate_wake_pins_used = ARRAY_SIZE(hibernate_wake_pins);