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/interconnect/qcom,osm-l3.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/interconnect/qcom,osm-l3.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Qualcomm Operating State Manager (OSM) L3 Interconnect Provider
    8 
    9 maintainers:
   10   - Sibi Sankar <quic_sibis@quicinc.com>
   11 
   12 description:
   13   L3 cache bandwidth requirements on Qualcomm SoCs is serviced by the OSM.
   14   The OSM L3 interconnect provider aggregates the L3 bandwidth requests
   15   from CPU/GPU and relays it to the OSM.
   16 
   17 properties:
   18   compatible:
   19     enum:
   20       - qcom,sc7180-osm-l3
   21       - qcom,sc7280-epss-l3
   22       - qcom,sc8180x-osm-l3
   23       - qcom,sdm845-osm-l3
   24       - qcom,sm8150-osm-l3
   25       - qcom,sm8250-epss-l3
   26 
   27   reg:
   28     maxItems: 1
   29 
   30   clocks:
   31     items:
   32       - description: xo clock
   33       - description: alternate clock
   34 
   35   clock-names:
   36     items:
   37       - const: xo
   38       - const: alternate
   39 
   40   '#interconnect-cells':
   41     const: 1
   42 
   43 required:
   44   - compatible
   45   - reg
   46   - clocks
   47   - clock-names
   48   - '#interconnect-cells'
   49 
   50 additionalProperties: false
   51 
   52 examples:
   53   - |
   54 
   55     #define GPLL0               165
   56     #define RPMH_CXO_CLK        0
   57 
   58     osm_l3: interconnect@17d41000 {
   59       compatible = "qcom,sdm845-osm-l3";
   60       reg = <0x17d41000 0x1400>;
   61 
   62       clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GPLL0>;
   63       clock-names = "xo", "alternate";
   64 
   65       #interconnect-cells = <1>;
   66     };

Cache object: da44a187ff1e6f1e1a4d896fad17753f


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