summaryrefslogtreecommitdiff
path: root/board/dojo
diff options
context:
space:
mode:
authorTommy Chung <tommy.chung@quanta.corp-partner.google.com>2022-02-07 10:12:47 +0800
committerCommit Bot <commit-bot@chromium.org>2022-02-08 09:30:59 +0000
commitc2359b2b4b9c197d20461b7c7032a7714be88afb (patch)
tree906046387eb9eb99ce9673338adc3e8c0a3b33da /board/dojo
parente2114edebd01827a1cdcd4f5da0ebaed34436f31 (diff)
downloadchrome-ec-c2359b2b4b9c197d20461b7c7032a7714be88afb.tar.gz
dojo: Update keyboard scan config
Update keyboard scan config to meet dojo's KB Mapping. BUG=b:217975844, b:214738575 BRANCH=cherry TEST=make sure that keyboard scan works correctly by console command "ksstate on". Signed-off-by: Tommy Chung <tommy.chung@quanta.corp-partner.google.com> Change-Id: Ia8da863a1907bb289d759203bdcbe0111aa43f58 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3442902 Reviewed-by: Devin Lu <Devin.Lu@quantatw.com> Reviewed-by: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'board/dojo')
-rw-r--r--board/dojo/board.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/board/dojo/board.c b/board/dojo/board.c
index 4de9b9d89a..8cb18ee242 100644
--- a/board/dojo/board.c
+++ b/board/dojo/board.c
@@ -13,6 +13,7 @@
#include "driver/accelgyro_icm_common.h"
#include "gpio.h"
#include "hooks.h"
+#include "keyboard_scan.h"
#include "motion_sense.h"
#include "pwm.h"
#include "pwm_chip.h"
@@ -21,6 +22,21 @@
#define CPRINTS(format, args...) cprints(CC_USBCHARGE, format, ## args)
#define CPRINTF(format, args...) cprintf(CC_USBCHARGE, format, ## args)
+/* Keyboard scan setting */
+__override struct keyboard_scan_config keyscan_config = {
+ /* Increase from 50 us, because KSO_02 passes through the H1. */
+ .output_settle_us = 80,
+ .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 = {
+ 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xa4, 0xff, 0xfe, 0x55, 0xfa, 0xca /* full set */
+ },
+};
+
/* Sensor */
static struct mutex g_base_mutex;
static struct mutex g_lid_mutex;