forked from Minki/linux
1c24622572
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>
18 lines
371 B
Plaintext
18 lines
371 B
Plaintext
* 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
|