summaryrefslogtreecommitdiff
path: root/include/button.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/button.h')
-rw-r--r--include/button.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/button.h b/include/button.h
new file mode 100644
index 0000000000..e8344b308f
--- /dev/null
+++ b/include/button.h
@@ -0,0 +1,24 @@
+/* Copyright (c) 2014 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.
+ */
+
+/* Button API for Chrome EC */
+
+#ifndef __CROS_EC_BUTTON_H
+#define __CROS_EC_BUTTON_H
+
+#include "common.h"
+#include "gpio.h"
+
+#define BUTTON_FLAG_ACTIVE_HIGH (1 << 0)
+
+enum keyboard_button_type {
+ KEYBOARD_BUTTON_POWER = 0,
+ KEYBOARD_BUTTON_VOLUME_DOWN,
+ KEYBOARD_BUTTON_VOLUME_UP,
+
+ KEYBOARD_BUTTON_COUNT
+};
+
+#endif /* __CROS_EC_BUTTON_H */