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/socionext,uniphier-clock.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/socionext,uniphier-clock.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: UniPhier clock controller
    8 
    9 maintainers:
   10   - Masahiro Yamada <yamada.masahiro@socionext.com>
   11 
   12 properties:
   13   compatible:
   14     oneOf:
   15       - description: System clock
   16         enum:
   17           - socionext,uniphier-ld4-clock
   18           - socionext,uniphier-pro4-clock
   19           - socionext,uniphier-sld8-clock
   20           - socionext,uniphier-pro5-clock
   21           - socionext,uniphier-pxs2-clock
   22           - socionext,uniphier-ld6b-clock
   23           - socionext,uniphier-ld11-clock
   24           - socionext,uniphier-ld20-clock
   25           - socionext,uniphier-pxs3-clock
   26           - socionext,uniphier-nx1-clock
   27       - description: Media I/O (MIO) clock, SD clock
   28         enum:
   29           - socionext,uniphier-ld4-mio-clock
   30           - socionext,uniphier-pro4-mio-clock
   31           - socionext,uniphier-sld8-mio-clock
   32           - socionext,uniphier-pro5-sd-clock
   33           - socionext,uniphier-pxs2-sd-clock
   34           - socionext,uniphier-ld11-mio-clock
   35           - socionext,uniphier-ld20-sd-clock
   36           - socionext,uniphier-pxs3-sd-clock
   37           - socionext,uniphier-nx1-sd-clock
   38       - description: Peripheral clock
   39         enum:
   40           - socionext,uniphier-ld4-peri-clock
   41           - socionext,uniphier-pro4-peri-clock
   42           - socionext,uniphier-sld8-peri-clock
   43           - socionext,uniphier-pro5-peri-clock
   44           - socionext,uniphier-pxs2-peri-clock
   45           - socionext,uniphier-ld11-peri-clock
   46           - socionext,uniphier-ld20-peri-clock
   47           - socionext,uniphier-pxs3-peri-clock
   48           - socionext,uniphier-nx1-peri-clock
   49       - description: SoC-glue clock
   50         enum:
   51           - socionext,uniphier-pro4-sg-clock
   52 
   53   "#clock-cells":
   54     const: 1
   55 
   56 additionalProperties: false
   57 
   58 required:
   59   - compatible
   60   - "#clock-cells"
   61 
   62 examples:
   63   - |
   64     sysctrl@61840000 {
   65         compatible = "socionext,uniphier-sysctrl", "simple-mfd", "syscon";
   66         reg = <0x61840000 0x4000>;
   67 
   68         clock {
   69             compatible = "socionext,uniphier-ld11-clock";
   70             #clock-cells = <1>;
   71         };
   72 
   73         // other nodes ...
   74     };
   75 
   76   - |
   77     mioctrl@59810000 {
   78         compatible = "socionext,uniphier-mioctrl", "simple-mfd", "syscon";
   79         reg = <0x59810000 0x800>;
   80 
   81         clock {
   82             compatible = "socionext,uniphier-ld11-mio-clock";
   83             #clock-cells = <1>;
   84         };
   85 
   86         // other nodes ...
   87     };
   88 
   89   - |
   90     perictrl@59820000 {
   91         compatible = "socionext,uniphier-perictrl", "simple-mfd", "syscon";
   92         reg = <0x59820000 0x200>;
   93 
   94         clock {
   95             compatible = "socionext,uniphier-ld11-peri-clock";
   96             #clock-cells = <1>;
   97         };
   98 
   99         // other nodes ...
  100     };

Cache object: 88248294117c3c3f21ed2a531c647373


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