summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhuohao Lee <zhuohao@chromium.org>2021-10-31 14:19:11 +0800
committerCommit Bot <commit-bot@chromium.org>2021-11-02 18:44:48 +0000
commitafcaaa14b7fd3b5aa94483cf7d8b55e33aeb2f8d (patch)
tree1cbfa25de15028d9d01d14332068c5e4b75a6294
parent6101d302b19506bece6c6bead44c3aa6910b6fa4 (diff)
downloadchrome-ec-afcaaa14b7fd3b5aa94483cf7d8b55e33aeb2f8d.tar.gz
flash_fp_mcu: Add a config for the Brask fingerprint MCU
To enable the fingerprint MCU firmware update, we add the config for the Brask. BUG=b:204679292 BRANCH=None TEST=use 'flash_fp_mcu ${BINARY_PATH}', the firmware is programmed correctly. Change-Id: Iac96d296838bf8aa75d641312a114756c9dc15f0 Signed-off-by: Zhuohao Lee <zhuohao@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3251218 Reviewed-by: YH Lin <yueherngl@chromium.org> Commit-Queue: YH Lin <yueherngl@chromium.org>
-rw-r--r--util/flash_fp_mcu5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/flash_fp_mcu b/util/flash_fp_mcu
index 679478f1e2..57b2525141 100644
--- a/util/flash_fp_mcu
+++ b/util/flash_fp_mcu
@@ -599,6 +599,11 @@ config_brya() {
readonly GPIO_PWREN=314
}
+config_brask() {
+ # Let's call the config_brya since brask follows the brya HW design
+ config_brya
+}
+
config_zork() {
readonly TRANSPORT="UART"
readonly DEVICE="/dev/ttyS1"