Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/clock/renesas,rzg2l-cpg.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Renesas RZ/{G2L,V2L,V2M} Clock Pulse Generator / Module Standby Mode maintainers: - Geert Uytterhoeven <geert+renesas@glider.be> description: | On Renesas RZ/{G2L,V2L}-alike SoC's, the CPG (Clock Pulse Generator) and Module Standby Mode share the same register block. On RZ/V2M, the functionality is similar, but does not have Clock Monitor Registers. They provide the following functionalities: - The CPG block generates various core clocks, - The Module Standby Mode block provides two functions: 1. Module Standby, providing a Clock Domain to control the clock supply to individual SoC devices, 2. Reset Control, to perform a software reset of individual SoC devices. properties: compatible: enum: - renesas,r9a07g043-cpg # RZ/G2UL{Type-1,Type-2} and RZ/Five - renesas,r9a07g044-cpg # RZ/G2{L,LC} - renesas,r9a07g054-cpg # RZ/V2L - renesas,r9a08g045-cpg # RZ/G3S - renesas,r9a09g011-cpg # RZ/V2M reg: maxItems: 1 clocks: maxItems: 1 clock-names: description: Clock source to CPG can be either from external clock input (EXCLK) or crystal oscillator (XIN/XOUT). const: extal '#clock-cells': description: | - For CPG core clocks, the two clock specifier cells must be "CPG_CORE" and a core clock reference, as defined in <dt-bindings/clock/r9a0*-cpg.h>, - For module clocks, the two clock specifier cells must be "CPG_MOD" and a module number, as defined in <dt-bindings/clock/r9a0*-cpg.h>. const: 2 '#power-domain-cells': description: SoC devices that are part of the CPG/Module Standby Mode Clock Domain and can be power-managed through Module Standby should refer to the CPG device node in their "power-domains" property, as documented by the generic PM Domain bindings in Documentation/devicetree/bindings/power/power-domain.yaml. The power domain specifiers defined in <dt-bindings/clock/r9a0*-cpg.h> could be used to reference individual CPG power domains. '#reset-cells': description: The single reset specifier cell must be the reset number, as defined in <dt-bindings/clock/r9a0*-cpg.h>. const: 1 required: - compatible - reg - clocks - clock-names - '#clock-cells' - '#power-domain-cells' - '#reset-cells' additionalProperties: false allOf: - if: properties: compatible: contains: const: renesas,r9a08g045-cpg then: properties: '#power-domain-cells': const: 1 else: properties: '#power-domain-cells': const: 0 examples: - | cpg: clock-controller@11010000 { compatible = "renesas,r9a07g044-cpg"; reg = <0x11010000 0x10000>; clocks = <&extal_clk>; clock-names = "extal"; #clock-cells = <2>; #power-domain-cells = <0>; #reset-cells = <1>; }; |