summaryrefslogtreecommitdiff
path: root/chip/ish/gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/ish/gpio.c')
-rw-r--r--chip/ish/gpio.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/chip/ish/gpio.c b/chip/ish/gpio.c
new file mode 100644
index 0000000000..92304fc9b7
--- /dev/null
+++ b/chip/ish/gpio.c
@@ -0,0 +1,34 @@
+/* Copyright (c) 2016 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.
+ */
+
+/* GPIO module for ISH */
+
+#include "common.h"
+#include "gpio.h"
+#include "hooks.h"
+#include "registers.h"
+#include "system.h"
+#include "task.h"
+#include "timer.h"
+#include "util.h"
+
+test_mockable int gpio_get_level(enum gpio_signal signal)
+{
+ return 0;
+}
+
+void gpio_set_level(enum gpio_signal signal, int value)
+{
+}
+
+void gpio_pre_init(void)
+{
+}
+
+static void gpio_init(void)
+{
+ /* TBD */
+}
+DECLARE_HOOK(HOOK_INIT, gpio_init, HOOK_PRIO_DEFAULT);