~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/pwm/renesas,pwm-rcar.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/pwm/renesas,pwm-rcar.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: Renesas R-Car PWM Timer Controller
  8 
  9 maintainers:
 10   - Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
 11 
 12 properties:
 13   compatible:
 14     items:
 15       - enum:
 16           - renesas,pwm-r8a7742   # RZ/G1H
 17           - renesas,pwm-r8a7743   # RZ/G1M
 18           - renesas,pwm-r8a7744   # RZ/G1N
 19           - renesas,pwm-r8a7745   # RZ/G1E
 20           - renesas,pwm-r8a77470  # RZ/G1C
 21           - renesas,pwm-r8a774a1  # RZ/G2M
 22           - renesas,pwm-r8a774b1  # RZ/G2N
 23           - renesas,pwm-r8a774c0  # RZ/G2E
 24           - renesas,pwm-r8a774e1  # RZ/G2H
 25           - renesas,pwm-r8a7778   # R-Car M1A
 26           - renesas,pwm-r8a7779   # R-Car H1
 27           - renesas,pwm-r8a7790   # R-Car H2
 28           - renesas,pwm-r8a7791   # R-Car M2-W
 29           - renesas,pwm-r8a7794   # R-Car E2
 30           - renesas,pwm-r8a7795   # R-Car H3
 31           - renesas,pwm-r8a7796   # R-Car M3-W
 32           - renesas,pwm-r8a77961  # R-Car M3-W+
 33           - renesas,pwm-r8a77965  # R-Car M3-N
 34           - renesas,pwm-r8a77970  # R-Car V3M
 35           - renesas,pwm-r8a77980  # R-Car V3H
 36           - renesas,pwm-r8a77990  # R-Car E3
 37           - renesas,pwm-r8a77995  # R-Car D3
 38           - renesas,pwm-r8a779a0  # R-Car V3U
 39           - renesas,pwm-r8a779g0  # R-Car V4H
 40           - renesas,pwm-r8a779h0  # R-Car V4M
 41       - const: renesas,pwm-rcar
 42 
 43   reg:
 44     # base address and length of the registers block for the PWM.
 45     maxItems: 1
 46 
 47   '#pwm-cells':
 48     # should be 2. See pwm.yaml in this directory for a description of
 49     # the cells format.
 50     const: 2
 51 
 52   clocks:
 53     # clock phandle and specifier pair.
 54     maxItems: 1
 55 
 56   power-domains:
 57     maxItems: 1
 58 
 59   resets:
 60     maxItems: 1
 61 
 62 required:
 63   - compatible
 64   - reg
 65   - clocks
 66   - power-domains
 67 
 68 allOf:
 69   - $ref: pwm.yaml#
 70 
 71   - if:
 72       not:
 73         properties:
 74           compatible:
 75             contains:
 76               enum:
 77                 - renesas,pwm-r8a7778
 78                 - renesas,pwm-r8a7779
 79     then:
 80       required:
 81         - resets
 82 
 83 additionalProperties: false
 84 
 85 examples:
 86   - |
 87     #include <dt-bindings/clock/r8a7743-cpg-mssr.h>
 88     #include <dt-bindings/power/r8a7743-sysc.h>
 89 
 90     pwm0: pwm@e6e30000 {
 91         compatible = "renesas,pwm-r8a7743", "renesas,pwm-rcar";
 92         reg = <0xe6e30000 0x8>;
 93         clocks = <&cpg CPG_MOD 523>;
 94         power-domains = <&sysc R8A7743_PD_ALWAYS_ON>;
 95         resets = <&cpg 523>;
 96         #pwm-cells = <2>;
 97         pinctrl-0 = <&pwm0_pins>;
 98         pinctrl-names = "default";
 99     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php