WIP FPC-III support
[linux/fpc-iii.git] / Documentation / devicetree / bindings / interconnect / qcom,osm-l3.yaml
blobd6a95c3cb26f208587c130e956292d3c226dfeba
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#
7 title: Qualcomm Operating State Manager (OSM) L3 Interconnect Provider
9 maintainers:
10   - Sibi Sankar <sibis@codeaurora.org>
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.
17 properties:
18   compatible:
19     enum:
20       - qcom,sc7180-osm-l3
21       - qcom,sdm845-osm-l3
22       - qcom,sm8150-osm-l3
23       - qcom,sm8250-epss-l3
25   reg:
26     maxItems: 1
28   clocks:
29     items:
30       - description: xo clock
31       - description: alternate clock
33   clock-names:
34     items:
35       - const: xo
36       - const: alternate
38   '#interconnect-cells':
39     const: 1
41 required:
42   - compatible
43   - reg
44   - clocks
45   - clock-names
46   - '#interconnect-cells'
48 additionalProperties: false
50 examples:
51   - |
53     #define GPLL0               165
54     #define RPMH_CXO_CLK        0
56     osm_l3: interconnect@17d41000 {
57       compatible = "qcom,sdm845-osm-l3";
58       reg = <0x17d41000 0x1400>;
60       clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GPLL0>;
61       clock-names = "xo", "alternate";
63       #interconnect-cells = <1>;
64     };