-
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.
- Loading branch information
Peter Ujfalusi
authored and
Dmitry Torokhov
committed
May 11, 2012
1 parent
a2650c5
commit 8550a81
Showing
3 changed files
with
73 additions
and
12 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 2872a9b521ac936c7a8525a8c2bdfb9b4ccf5cfc | ||
refs/heads/master: 9ac7b1a36c729ce88eee7370da3c9992d7b40590 |
37 changes: 37 additions & 0 deletions
37
trunk/Documentation/devicetree/bindings/input/twl6040-vibra.txt
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,37 @@ | ||
Vibra driver for the twl6040 family | ||
|
||
The vibra driver is a child of the twl6040 MFD dirver. | ||
Documentation/devicetree/bindings/mfd/twl6040.txt | ||
|
||
Required properties: | ||
- compatible : Must be "ti,twl6040-vibra"; | ||
- interrupts: 4, Vibra overcurrent interrupt | ||
- vddvibl-supply: Regulator supplying the left vibra motor | ||
- vddvibr-supply: Regulator supplying the right vibra motor | ||
- vibldrv_res: Board specific left driver resistance | ||
- vibrdrv_res: Board specific right driver resistance | ||
- viblmotor_res: Board specific left motor resistance | ||
- vibrmotor_res: Board specific right motor resistance | ||
|
||
Optional properties: | ||
- vddvibl_uV: If the vddvibl default voltage need to be changed | ||
- vddvibr_uV: If the vddvibr default voltage need to be changed | ||
|
||
Example: | ||
/* | ||
* 8-channel high quality low-power audio codec | ||
* http://www.ti.com/lit/ds/symlink/twl6040.pdf | ||
*/ | ||
twl6040: twl6040@4b { | ||
... | ||
twl6040_vibra: twl6040@1 { | ||
compatible = "ti,twl6040-vibra"; | ||
interrupts = <4>; | ||
vddvibl-supply = <&vbat>; | ||
vddvibr-supply = <&vbat>; | ||
vibldrv_res = <8>; | ||
vibrdrv_res = <3>; | ||
viblmotor_res = <10>; | ||
vibrmotor_res = <10>; | ||
}; | ||
}; |
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