diff options
author | Dan Murphy <dmurphy@ti.com> | 2014-09-08 16:10:49 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2014-09-08 16:16:23 -0700 |
commit | 1c24622572d6ab2ec8e731588d1c131563a64b53 (patch) | |
tree | 66e3e90e9a65cf96ad9148598b5200a64b05993c /Documentation/devicetree/bindings/input/ti,drv2667.txt | |
parent | f554f619b7041e388d46395b1e30b151925a7797 (diff) | |
download | blackbird-op-linux-1c24622572d6ab2ec8e731588d1c131563a64b53.tar.gz blackbird-op-linux-1c24622572d6ab2ec8e731588d1c131563a64b53.zip |
Input: add support for the DRV2667 haptic driver
Adding support for the DRV2667 haptic driver. This device has the ability
to store vibration patterns in RAM and execute them once the GO bit is set.
The initial driver sets a basic waveform in the first waveform sequence and
will play the waveform when the GO bit is set and will continously play the
waveform until the GO bit is unset.
Data sheet is here: http://www.ti.com/product/drv2667
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'Documentation/devicetree/bindings/input/ti,drv2667.txt')
-rw-r--r-- | Documentation/devicetree/bindings/input/ti,drv2667.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/input/ti,drv2667.txt b/Documentation/devicetree/bindings/input/ti,drv2667.txt new file mode 100644 index 000000000000..996382cf994a --- /dev/null +++ b/Documentation/devicetree/bindings/input/ti,drv2667.txt @@ -0,0 +1,17 @@ +* Texas Instruments - drv2667 Haptics driver + +Required properties: + - compatible - "ti,drv2667" - DRV2667 + - reg - I2C slave address + - vbat-supply - Required supply regulator + +Example: + +haptics: haptics@59 { + compatible = "ti,drv2667"; + reg = <0x59>; + vbat-supply = <&vbat>; +}; + +For more product information please see the link below: +http://www.ti.com/product/drv2667 |