summaryrefslogtreecommitdiff
path: root/src/mainboard/google/trogdor/board.h
diff options
context:
space:
mode:
authorT Michael Turney <mturney@codeaurora.org>2019-10-15 07:40:30 -0700
committerJulius Werner <jwerner@chromium.org>2019-11-01 01:16:35 +0000
commit626a53776b2915d7f27a8a97f9d84200b20f3079 (patch)
treec8e9cc83dd52210ae4e6d53d0bc47e6ef86645d0 /src/mainboard/google/trogdor/board.h
parent09c3bfe826cf8ff30bab9ee073474674f1c9d565 (diff)
downloadcoreboot-626a53776b2915d7f27a8a97f9d84200b20f3079.tar.xz
trogdor: Add mainboard gpio support
Change-Id: I06cdb8eaaf7f74b47e1d1283dcaa765674ceaa45 Signed-off-by: T Michael Turney <mturney@codeaurora.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36070 Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/trogdor/board.h')
-rw-r--r--src/mainboard/google/trogdor/board.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/mainboard/google/trogdor/board.h b/src/mainboard/google/trogdor/board.h
new file mode 100644
index 0000000000..f024e13646
--- /dev/null
+++ b/src/mainboard/google/trogdor/board.h
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2018, The Linux Foundation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 and
+ * only version 2 as published by the Free Software Foundation.
+ *
+ * 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 _COREBOOT_SRC_MAINBOARD_GOOGLE_TROGDOR_BOARD_H_
+#define _COREBOOT_SRC_MAINBOARD_GOOGLE_TROGDOR_BOARD_H_
+
+#include <gpio.h>
+#include <soc/gpio.h>
+
+#define GPIO_EC_IN_RW GPIO(118)
+#define GPIO_AP_EC_INT GPIO(94)
+#define GPIO_AP_SUSPEND GPIO(20)
+#define GPIO_WP_STATE GPIO(42)
+#define GPIO_H1_AP_INT GPIO(21)
+
+void setup_chromeos_gpios(void);
+
+#endif /* _COREBOOT_SRC_MAINBOARD_GOOGLE_TROGDOR_BOARD_H_ */