The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/clock/renesas,rzg2l-cpg.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: d82f10debc095bc07d50a288858e0350


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.