xref: /freebsd/sys/contrib/device-tree/Bindings/input/regulator-haptic.yaml (revision fac71e4e09885bb2afa3d984a0c239a52e1a7418)
1354d7675SEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0
2354d7675SEmmanuel Vadot%YAML 1.2
3354d7675SEmmanuel Vadot---
4*fac71e4eSEmmanuel Vadot$id: http://devicetree.org/schemas/input/regulator-haptic.yaml#
5*fac71e4eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6354d7675SEmmanuel Vadot
77ef62cebSEmmanuel Vadottitle: Regulator Haptic
8354d7675SEmmanuel Vadot
9354d7675SEmmanuel Vadotmaintainers:
10354d7675SEmmanuel Vadot  - Jaewon Kim <jaewon02.kim@samsung.com>
11354d7675SEmmanuel Vadot
12354d7675SEmmanuel Vadotproperties:
13354d7675SEmmanuel Vadot  compatible:
14354d7675SEmmanuel Vadot    const: regulator-haptic
15354d7675SEmmanuel Vadot
16354d7675SEmmanuel Vadot  haptic-supply:
17354d7675SEmmanuel Vadot    description: >
18354d7675SEmmanuel Vadot      Power supply to the haptic motor
19354d7675SEmmanuel Vadot
20354d7675SEmmanuel Vadot  max-microvolt:
21354d7675SEmmanuel Vadot    description: >
22354d7675SEmmanuel Vadot      The maximum voltage value supplied to the haptic motor
23354d7675SEmmanuel Vadot
24354d7675SEmmanuel Vadot  min-microvolt:
25354d7675SEmmanuel Vadot    description: >
26354d7675SEmmanuel Vadot      The minimum voltage value supplied to the haptic motor
27354d7675SEmmanuel Vadot
28354d7675SEmmanuel Vadotrequired:
29354d7675SEmmanuel Vadot  - compatible
30354d7675SEmmanuel Vadot  - haptic-supply
31354d7675SEmmanuel Vadot  - max-microvolt
32354d7675SEmmanuel Vadot  - min-microvolt
33354d7675SEmmanuel Vadot
34354d7675SEmmanuel VadotadditionalProperties: false
35354d7675SEmmanuel Vadot
36354d7675SEmmanuel Vadotexamples:
37354d7675SEmmanuel Vadot  - |
38354d7675SEmmanuel Vadot    haptics {
39354d7675SEmmanuel Vadot        compatible = "regulator-haptic";
40354d7675SEmmanuel Vadot        haptic-supply = <&motor_regulator>;
41354d7675SEmmanuel Vadot        max-microvolt = <2700000>;
42354d7675SEmmanuel Vadot        min-microvolt = <1100000>;
43354d7675SEmmanuel Vadot    };
44