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/sifive/fu740-prci.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 # Copyright (C) 2020 SiFive, Inc.
    3 %YAML 1.2
    4 ---
    5 $id: http://devicetree.org/schemas/clock/sifive/fu740-prci.yaml#
    6 $schema: http://devicetree.org/meta-schemas/core.yaml#
    7 
    8 title: SiFive FU740 Power Reset Clock Interrupt Controller (PRCI)
    9 
   10 maintainers:
   11   - Zong Li <zong.li@sifive.com>
   12   - Paul Walmsley  <paul.walmsley@sifive.com>
   13 
   14 description:
   15   On the FU740 family of SoCs, most system-wide clock and reset integration
   16   is via the PRCI IP block.
   17   The clock consumer should specify the desired clock via the clock ID
   18   macros defined in include/dt-bindings/clock/sifive-fu740-prci.h.
   19   These macros begin with PRCI_CLK_.
   20 
   21   The hfclk and rtcclk nodes are required, and represent physical
   22   crystals or resonators located on the PCB.  These nodes should be present
   23   underneath /, rather than /soc.
   24 
   25 properties:
   26   compatible:
   27     const: sifive,fu740-c000-prci
   28 
   29   reg:
   30     maxItems: 1
   31 
   32   clocks:
   33     items:
   34       - description: high frequency clock.
   35       - description: RTL clock.
   36 
   37   clock-names:
   38     items:
   39       - const: hfclk
   40       - const: rtcclk
   41 
   42   "#clock-cells":
   43     const: 1
   44 
   45   "#reset-cells":
   46     const: 1
   47 
   48 required:
   49   - compatible
   50   - reg
   51   - clocks
   52   - "#clock-cells"
   53 
   54 additionalProperties: false
   55 
   56 examples:
   57   - |
   58     prci: clock-controller@10000000 {
   59       compatible = "sifive,fu740-c000-prci";
   60       reg = <0x10000000 0x1000>;
   61       clocks = <&hfclk>, <&rtcclk>;
   62       #clock-cells = <1>;
   63       #reset-cells = <1>;
   64     };

Cache object: 70b9ee153f734d573ab6b3ae87e9d107


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