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,r9a06g032-sysctrl.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,r9a06g032-sysctrl.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Renesas RZ/N1D (R9A06G032) System Controller
    8 
    9 maintainers:
   10   - Gareth Williams <gareth.williams.jx@renesas.com>
   11   - Geert Uytterhoeven <geert+renesas@glider.be>
   12 
   13 properties:
   14   compatible:
   15     const: renesas,r9a06g032-sysctrl
   16 
   17   reg:
   18     maxItems: 1
   19 
   20   clocks:
   21     minItems: 1
   22     items:
   23       - description: External 40 MHz crystal
   24       - description: Optional external 32.768 kHz crystal
   25       - description: Optional external JTAG input
   26       - description: Optional external RGMII_REFCLK
   27 
   28   clock-names:
   29     minItems: 1
   30     items:
   31       - const: mclk
   32       - const: rtc
   33       - const: jtag
   34       - const: rgmii_ref_ext
   35 
   36   '#clock-cells':
   37     const: 1
   38 
   39   '#power-domain-cells':
   40     const: 0
   41 
   42   '#address-cells':
   43     const: 1
   44 
   45   '#size-cells':
   46     const: 1
   47 
   48 patternProperties:
   49   "^dma-router@[a-f0-9]+$":
   50     type: object
   51     $ref: "../dma/renesas,rzn1-dmamux.yaml#"
   52 
   53 required:
   54   - compatible
   55   - reg
   56   - clocks
   57   - clock-names
   58   - '#clock-cells'
   59   - '#power-domain-cells'
   60 
   61 additionalProperties: false
   62 
   63 examples:
   64   - |
   65     sysctrl: system-controller@4000c000 {
   66             compatible = "renesas,r9a06g032-sysctrl";
   67             reg = <0x4000c000 0x1000>;
   68             clocks = <&ext_mclk>, <&ext_rtc_clk>, <&ext_jtag_clk>,
   69                      <&ext_rgmii_ref>;
   70             clock-names = "mclk", "rtc", "jtag", "rgmii_ref_ext";
   71             #clock-cells = <1>;
   72             #power-domain-cells = <0>;
   73     };

Cache object: 2a3ac5751ea5da76af7fdd472d2097e8


[ 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.