summaryrefslogtreecommitdiff
path: root/util/flash_ec
diff options
context:
space:
mode:
authorMulin Chao <mlchao@nuvoton.com>2017-05-15 19:36:15 +0800
committerchrome-bot <chrome-bot@chromium.org>2017-05-18 06:03:51 -0700
commit6959f42da69f0a7e1c496e14cca48893c3d2fd89 (patch)
tree394dc9e8e1b3b7f41a773cc011bf10ebc19818d0 /util/flash_ec
parent726a7c83542be2632b8f138e0a9a79f093248837 (diff)
downloadchrome-ec-6959f42da69f0a7e1c496e14cca48893c3d2fd89.tar.gz
npcx7_evb: Add initial board driver of npcx7 ec evb.
Add the evaluation board driver of npcx7 series ec for testing. If you received the evb which ec is 128-pins package, please notice it has the following limitations. a. No GPIOD7/E0 pins. b. No I2C4_0, I2C4_1, I2C5_1 and I2C6_1 ports. c. No ADC7, ADC8 and ADC9 channels. d. No JTAG port 1. e. Do not enable CONFIG_HIBERNATE_PSL since no PSL circuit on evb. This CL also includes: 1. Modified reset config from srst to sysresetreq in openocd/npcx.cfg. Make sure openocd driver can reset ec by using NVIC_SYSRESETREQ. 2. Add flash utilities for npcx7 ec in openocd/npcx_cmds.tcl. 3. Add npcx7_evb support in flash_ec. BRANCH=none BUG=none TEST=Passed all npcx7 drivers verification on the evb no matter which ec's package is 128 or 144 pins package. Change-Id: I8224d97cd66ce483d70816f47b2e124308f1b69c Signed-off-by: Mulin Chao <mlchao@nuvoton.com> Reviewed-on: https://chromium-review.googlesource.com/505832 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'util/flash_ec')
-rwxr-xr-xutil/flash_ec10
1 files changed, 10 insertions, 0 deletions
diff --git a/util/flash_ec b/util/flash_ec
index b8b3470e19..4a75ba0db6 100755
--- a/util/flash_ec
+++ b/util/flash_ec
@@ -104,6 +104,10 @@ BOARDS_NPCX_5M5G_JTAG=(
BOARDS_NPCX_5M6G_JTAG=(
)
+BOARDS_NPCX_7M6X_JTAG=(
+ npcx7_evb
+)
+
BOARDS_NPCX_SPI=(
coral
eve
@@ -204,6 +208,8 @@ elif $(in_array "${BOARDS_NPCX_5M5G_JTAG[@]}" "${BOARD}"); then
CHIP="npcx_5m5g_jtag"
elif $(in_array "${BOARDS_NPCX_5M6G_JTAG[@]}" "${BOARD}"); then
CHIP="npcx_5m6g_jtag"
+elif $(in_array "${BOARDS_NPCX_7M6X_JTAG[@]}" "${BOARD}"); then
+ CHIP="npcx_7m6x_jtag"
elif $(in_array "${BOARDS_NPCX_SPI[@]}" "${BOARD}"); then
CHIP="npcx_spi"
elif $(in_array "${BOARDS_NRF51[@]}" "${BOARD}"); then
@@ -671,6 +677,10 @@ function flash_npcx_5m6g_jtag() {
flash_npcx_jtag
}
+function flash_npcx_7m6x_jtag() {
+ flash_npcx_jtag
+}
+
function flash_npcx_spi() {
flash_flashrom
}