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,sc7280-lpasscc.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,sc7280-lpasscc.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Qualcomm LPASS Core Clock Controller Binding for SC7280
    8 
    9 maintainers:
   10   - Taniya Das <tdas@codeaurora.org>
   11 
   12 description: |
   13   Qualcomm LPASS core clock control module which supports the clocks and
   14   power domains on SC7280.
   15 
   16   See also:
   17   - dt-bindings/clock/qcom,lpass-sc7280.h
   18 
   19 properties:
   20   compatible:
   21     enum:
   22       - qcom,sc7280-lpasscc
   23 
   24   clocks:
   25     items:
   26       - description: gcc_cfg_noc_lpass_clk from GCC
   27 
   28   clock-names:
   29     items:
   30       - const: iface
   31 
   32   '#clock-cells':
   33     const: 1
   34 
   35   reg:
   36     items:
   37       - description: LPASS qdsp6ss register
   38       - description: LPASS top-cc register
   39       - description: LPASS cc register
   40 
   41   reg-names:
   42     items:
   43       - const: qdsp6ss
   44       - const: top_cc
   45       - const: cc
   46 
   47 required:
   48   - compatible
   49   - reg
   50   - clocks
   51   - clock-names
   52   - '#clock-cells'
   53 
   54 additionalProperties: false
   55 
   56 examples:
   57   - |
   58     #include <dt-bindings/clock/qcom,gcc-sc7280.h>
   59     #include <dt-bindings/clock/qcom,lpass-sc7280.h>
   60     clock-controller@3000000 {
   61       compatible = "qcom,sc7280-lpasscc";
   62       reg = <0x03000000 0x40>, <0x03c04000 0x4>, <0x03389000 0x24>;
   63       reg-names = "qdsp6ss", "top_cc", "cc";
   64       clocks = <&gcc GCC_CFG_NOC_LPASS_CLK>;
   65       clock-names = "iface";
   66       #clock-cells = <1>;
   67     };
   68 ...

Cache object: 6ce0320822234202ad501fbde5fd5f78


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