mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 09:26:58 +07:00
d64cb71bed
This change adds support for haptic driver controlled by voltage of a regulator. Userspace can control the device via Force Feedback interface from input framework. Signed-off-by: Jaewon Kim <jaewon02.kim@samsung.com> Signed-off-by: Hyunhee Kim <hyunhee.kim@samsung.com> Acked-by: Kyungmin Park <kyungmin.park@samsung.com> Tested-by: Chanwoo Choi <cw00.choi@samsung.com> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com> Reviewed-by: Pankaj Dubey <pankaj.dubey@samsung.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
22 lines
616 B
Plaintext
22 lines
616 B
Plaintext
* Regulator Haptic Device Tree Bindings
|
|
|
|
Required Properties:
|
|
- compatible : Should be "regulator-haptic"
|
|
- haptic-supply : Power supply to the haptic motor.
|
|
[*] refer Documentation/devicetree/bindings/regulator/regulator.txt
|
|
|
|
- max-microvolt : The maximum voltage value supplied to the haptic motor.
|
|
[The unit of the voltage is a micro]
|
|
|
|
- min-microvolt : The minimum voltage value supplied to the haptic motor.
|
|
[The unit of the voltage is a micro]
|
|
|
|
Example:
|
|
|
|
haptics {
|
|
compatible = "regulator-haptic";
|
|
haptic-supply = <&motor_regulator>;
|
|
max-microvolt = <2700000>;
|
|
min-microvolt = <1100000>;
|
|
};
|