summaryrefslogtreecommitdiff
path: root/board/gimble/keyboard.c
diff options
context:
space:
mode:
authorMark Hsieh <mark_hsieh@wistron.corp-partner.google.com>2021-06-08 09:18:19 +0800
committerCommit Bot <commit-bot@chromium.org>2021-06-18 02:46:22 +0000
commit69b9b9d7e74e6aed462a3df154c8a0e6fd0ae128 (patch)
treee15848b98da8817cd1e71f75c455a11b8e91f120 /board/gimble/keyboard.c
parent8317b1136aaf03aa6988e98300b50cebb90e8de7 (diff)
downloadchrome-ec-69b9b9d7e74e6aed462a3df154c8a0e6fd0ae128.tar.gz
gimble: Initial EC image
Create the initial EC image for the gimble variant by copying the brya reference board EC files into a new directory named for the variant. (Auto-Generated by create_initial_ec_image.sh version 1.5.0). BUG=b:190334274 BRANCH=None TEST=make BOARD=gimble Signed-off-by: Mark Hsieh <mark_hsieh@wistron.corp-partner.google.com> Change-Id: Ia740667582e0f53bfc6afb37d23edf8c2d1d543e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2944517 Reviewed-by: Scott Chao <scott_chao@wistron.corp-partner.google.com> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Tested-by: Scott Chao <scott_chao@wistron.corp-partner.google.com>
Diffstat (limited to 'board/gimble/keyboard.c')
-rw-r--r--board/gimble/keyboard.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/board/gimble/keyboard.c b/board/gimble/keyboard.c
new file mode 100644
index 0000000000..b2f1c9f10c
--- /dev/null
+++ b/board/gimble/keyboard.c
@@ -0,0 +1,25 @@
+/* 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 "keyboard_scan.h"
+#include "timer.h"
+
+/* Keyboard scan setting */
+struct keyboard_scan_config keyscan_config = {
+ /* Increase from 50 us, because KSO_02 passes through the H1. */
+ .output_settle_us = 80,
+ /* Other values should be the same as the default configuration. */
+ .debounce_down_us = 9 * MSEC,
+ .debounce_up_us = 30 * MSEC,
+ .scan_period_us = 3 * MSEC,
+ .min_post_scan_delay_us = 1000,
+ .poll_timeout_us = 100 * MSEC,
+ .actual_key_mask = {
+ 0x14, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xff,
+ 0xa4, 0xff, 0xfe, 0x55, 0xfa, 0xca /* full set */
+ },
+};