Merge tag 'timers-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / pwm / intel,lgm-pwm.yaml
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#
6
7 title: LGM SoC PWM fan controller
8
9 maintainers:
10   - Rahul Tanwar <rtanwar@maxlinear.com>
11
12 properties:
13   compatible:
14     const: intel,lgm-pwm
15
16   reg:
17     maxItems: 1
18
19   "#pwm-cells":
20     const: 2
21
22   clocks:
23     maxItems: 1
24
25   resets:
26     maxItems: 1
27
28 required:
29   - compatible
30   - reg
31   - clocks
32   - resets
33
34 additionalProperties: false
35
36 examples:
37   - |
38     pwm: pwm@e0d00000 {
39         compatible = "intel,lgm-pwm";
40         reg = <0xe0d00000 0x30>;
41         #pwm-cells = <2>;
42         clocks = <&cgu0 126>;
43         resets = <&rcu0 0x30 21>;
44     };