summaryrefslogtreecommitdiff
path: root/chip
diff options
context:
space:
mode:
authorMulin Chao <mlchao@nuvoton.com>2017-05-02 15:47:55 +0800
committerchrome-bot <chrome-bot@chromium.org>2017-05-06 14:20:14 -0700
commit1bbcaa8df44c761b50a8f1649d2ab778b3ebaee7 (patch)
tree2336eb87446067af1e9df54ed40a513d2b0a5642 /chip
parentf9e04b0dfb5079d9f90e6adbcbbcb5f728307ef1 (diff)
downloadchrome-ec-1bbcaa8df44c761b50a8f1649d2ab778b3ebaee7.tar.gz
npcx: adc: Add support for npcx7 series ec
This CL added the support for additional 5 adc channels on npcx7 series ec. The pin-mux functionality of adc channels was already introduced in CL 481561. BRANCH=none BUG=none TEST=No build errors for all boards using npcx5 series. Build poppy board and upload FW to platform. No issues found. All 10 adc channels passed the test on npcx796f evb. Change-Id: I2c7458958ff659fce78f265eefa160050dee7daf Signed-off-by: Mulin Chao <mlchao@nuvoton.com> Reviewed-on: https://chromium-review.googlesource.com/497526 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'chip')
-rw-r--r--chip/npcx/adc_chip.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/chip/npcx/adc_chip.h b/chip/npcx/adc_chip.h
index ab2caa9e6a..dcb63d4198 100644
--- a/chip/npcx/adc_chip.h
+++ b/chip/npcx/adc_chip.h
@@ -20,6 +20,13 @@ enum npcx_adc_input_channel {
NPCX_ADC_CH2,
NPCX_ADC_CH3,
NPCX_ADC_CH4,
+#if defined(CHIP_FAMILY_NPCX7)
+ NPCX_ADC_CH5,
+ NPCX_ADC_CH6,
+ NPCX_ADC_CH7,
+ NPCX_ADC_CH8,
+ NPCX_ADC_CH9,
+#endif
NPCX_ADC_CH_COUNT
};