summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/anahera/board.h6
-rw-r--r--board/anahera/keyboard.c18
2 files changed, 24 insertions, 0 deletions
diff --git a/board/anahera/board.h b/board/anahera/board.h
index e9764d0ef0..52666ff8e2 100644
--- a/board/anahera/board.h
+++ b/board/anahera/board.h
@@ -142,6 +142,7 @@
#define CONFIG_CHARGER_SENSE_RESISTOR_AC 10
/* Keyboard features */
+#define CONFIG_KEYBOARD_FACTORY_TEST
#define CONFIG_KEYBOARD_VIVALDI
#define CONFIG_KEYBOARD_REFRESH_ROW3
@@ -195,6 +196,11 @@ enum mft_channel {
MFT_CH_COUNT
};
+#ifdef CONFIG_KEYBOARD_FACTORY_TEST
+extern const int keyboard_factory_scan_pins[][2];
+extern const int keyboard_factory_scan_pins_used;
+#endif
+
#endif /* !__ASSEMBLER__ */
#endif /* __CROS_EC_BOARD_H */
diff --git a/board/anahera/keyboard.c b/board/anahera/keyboard.c
index 6d65e7b78d..f4c03d06bf 100644
--- a/board/anahera/keyboard.c
+++ b/board/anahera/keyboard.c
@@ -120,3 +120,21 @@ board_vivaldi_keybd_config(void)
return &keybd_wo_privacy_wo_kblight;
}
}
+
+#ifdef CONFIG_KEYBOARD_FACTORY_TEST
+/*
+ * Map keyboard connector pins to EC GPIO pins for factory test.
+ * Pins mapped to {-1, -1} are skipped.
+ * The connector has 24 pins total, and there is no pin 0.
+ */
+const int keyboard_factory_scan_pins[][2] = {
+ {-1, -1}, {0, 5}, {1, 1}, {1, 0}, {0, 6},
+ {0, 7}, {1, 4}, {1, 3}, {1, 6}, {1, 7},
+ {3, 1}, {2, 0}, {1, 5}, {2, 6}, {2, 7},
+ {2, 1}, {2, 4}, {2, 5}, {1, 2}, {2, 3},
+ {2, 2}, {3, 0}, {-1, -1}, {-1, -1}, {-1, -1},
+};
+
+const int keyboard_factory_scan_pins_used =
+ ARRAY_SIZE(keyboard_factory_scan_pins);
+#endif