diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-04-23 11:04:44 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-05-08 12:05:56 +0100 |
commit | 93fb61e2c3defc6fe89cdf041f7f6a659b64ec56 (patch) | |
tree | 3acd864f06932254268b1aeb2e5f7229f0cf9940 /Documentation/devicetree/bindings/input | |
parent | 5a032b0697c79d7499ba955b40fa9a7756f08dad (diff) | |
download | linux-93fb61e2c3defc6fe89cdf041f7f6a659b64ec56.tar.gz linux-93fb61e2c3defc6fe89cdf041f7f6a659b64ec56.tar.bz2 linux-93fb61e2c3defc6fe89cdf041f7f6a659b64ec56.zip |
dt-bindings: input: Add DT bindings for max77650
Add the DT binding document for the onkey module of max77650.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'Documentation/devicetree/bindings/input')
-rw-r--r-- | Documentation/devicetree/bindings/input/max77650-onkey.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/max77650-onkey.txt b/Documentation/devicetree/bindings/input/max77650-onkey.txt new file mode 100644 index 000000000000..477dc74f452a --- /dev/null +++ b/Documentation/devicetree/bindings/input/max77650-onkey.txt @@ -0,0 +1,26 @@ +Onkey driver for MAX77650 PMIC from Maxim Integrated. + +This module is part of the MAX77650 MFD device. For more details +see Documentation/devicetree/bindings/mfd/max77650.txt. + +The onkey controller is represented as a sub-node of the PMIC node on +the device tree. + +Required properties: +-------------------- +- compatible: Must be "maxim,max77650-onkey". + +Optional properties: +- linux,code: The key-code to be reported when the key is pressed. + Defaults to KEY_POWER. +- maxim,onkey-slide: The system's button is a slide switch, not the default + push button. + +Example: +-------- + + onkey { + compatible = "maxim,max77650-onkey"; + linux,code = <KEY_END>; + maxim,onkey-slide; + }; |