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/qcom,sc7180-mss.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/qcom,sc7180-mss.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Qualcomm Modem Clock Controller Binding for SC7180
    8 
    9 maintainers:
   10   - Taniya Das <tdas@codeaurora.org>
   11 
   12 description: |
   13   Qualcomm modem clock control module which supports the clocks on SC7180.
   14 
   15   See also:
   16   - dt-bindings/clock/qcom,mss-sc7180.h
   17 
   18 properties:
   19   compatible:
   20     const: qcom,sc7180-mss
   21 
   22   clocks:
   23     items:
   24       - description: gcc_mss_mfab_axi clock from GCC
   25       - description: gcc_mss_nav_axi clock from GCC
   26       - description: gcc_mss_cfg_ahb clock from GCC
   27 
   28   clock-names:
   29     items:
   30       - const: gcc_mss_mfab_axis
   31       - const: gcc_mss_nav_axi
   32       - const: cfg_ahb
   33 
   34   '#clock-cells':
   35     const: 1
   36 
   37   reg:
   38     maxItems: 1
   39 
   40 required:
   41   - compatible
   42   - reg
   43   - clocks
   44   - '#clock-cells'
   45 
   46 additionalProperties: false
   47 
   48 examples:
   49   - |
   50     #include <dt-bindings/clock/qcom,gcc-sc7180.h>
   51     clock-controller@41a8000 {
   52       compatible = "qcom,sc7180-mss";
   53       reg = <0x041a8000 0x8000>;
   54       clocks = <&gcc GCC_MSS_MFAB_AXIS_CLK>,
   55                <&gcc GCC_MSS_NAV_AXI_CLK>,
   56                <&gcc GCC_MSS_CFG_AHB_CLK>;
   57       clock-names = "gcc_mss_mfab_axis",
   58                     "gcc_mss_nav_axi",
   59                     "cfg_ahb";
   60       #clock-cells = <1>;
   61     };
   62 ...

Cache object: 29ce2f2addb349a0a4a90409476fb740


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