-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Dan Murphy
authored and
Dmitry Torokhov
committed
Sep 8, 2014
1 parent
f554f61
commit 1c24622
Showing
4 changed files
with
529 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.