brintos

brintos / linux-shallow public Read only

0
0
Text · 758 B · 59d7c4d Raw
48 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/pwm/intel,lgm-pwm.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: LGM SoC PWM fan controller8 9maintainers:10  - Rahul Tanwar <rtanwar@maxlinear.com>11 12allOf:13  - $ref: pwm.yaml#14 15properties:16  compatible:17    const: intel,lgm-pwm18 19  reg:20    maxItems: 121 22  "#pwm-cells":23    const: 224 25  clocks:26    maxItems: 127 28  resets:29    maxItems: 130 31required:32  - compatible33  - reg34  - clocks35  - resets36 37additionalProperties: false38 39examples: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    };48