Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / pwm / intel,lgm-pwm.yaml
blob59d7c4d864c1ec6c9dd6f180e58ce41229d693a4
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/pwm/intel,lgm-pwm.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: LGM SoC PWM fan controller
9 maintainers:
10   - Rahul Tanwar <rtanwar@maxlinear.com>
12 allOf:
13   - $ref: pwm.yaml#
15 properties:
16   compatible:
17     const: intel,lgm-pwm
19   reg:
20     maxItems: 1
22   "#pwm-cells":
23     const: 2
25   clocks:
26     maxItems: 1
28   resets:
29     maxItems: 1
31 required:
32   - compatible
33   - reg
34   - clocks
35   - resets
37 additionalProperties: false
39 examples:
40   - |
41     pwm: pwm@e0d00000 {
42         compatible = "intel,lgm-pwm";
43         reg = <0xe0d00000 0x30>;
44         #pwm-cells = <2>;
45         clocks = <&cgu0 126>;
46         resets = <&rcu0 0x30 21>;
47     };