summaryrefslogtreecommitdiff
path: root/zephyr/dts/bindings/adc/named-adc.yaml
diff options
context:
space:
mode:
authorDawid Niedzwiecki <dn@semihalf.com>2021-03-19 09:50:36 +0100
committerCommit Bot <commit-bot@chromium.org>2021-03-22 19:15:00 +0000
commit57cf15057679a010b3af76e90f6f6159c3a429e6 (patch)
treefcf503876d155cf12c4178bb9aeb8c92ea592bec /zephyr/dts/bindings/adc/named-adc.yaml
parent8f6efc52ecc3b9089b714231f12316a49be002b8 (diff)
downloadchrome-ec-57cf15057679a010b3af76e90f6f6159c3a429e6.tar.gz
zephyr: Add ADC mul and div factors support
Some boards need to adjust ADC measurements with multiplication and division factors so add support for these also in Zephyr. BUG=b:175881324 BRANCH=none TEST=Add mul and div factors in the dts file and verify measurements with the "adc" console command Signed-off-by: Dawid Niedzwiecki <dn@semihalf.com> Change-Id: I6b716e20af18623249a4a972b6f3db8eec09a376 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2775487 Reviewed-by: Wai-Hong Tam <waihong@google.com> Commit-Queue: Wai-Hong Tam <waihong@google.com>
Diffstat (limited to 'zephyr/dts/bindings/adc/named-adc.yaml')
-rw-r--r--zephyr/dts/bindings/adc/named-adc.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/zephyr/dts/bindings/adc/named-adc.yaml b/zephyr/dts/bindings/adc/named-adc.yaml
index 8773e34dde..91c247a20e 100644
--- a/zephyr/dts/bindings/adc/named-adc.yaml
+++ b/zephyr/dts/bindings/adc/named-adc.yaml
@@ -19,3 +19,13 @@ child-binding:
required: true
type: int
description: ADC channel used
+ mul:
+ required: false
+ type: int
+ default: 1
+ description: Multiplication factor of ADC measurement
+ div:
+ required: false
+ type: int
+ default: 1
+ description: Division factor of ADC measurement