forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'icc-6.14-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/k…
…ernel/git/djakov/icc into char-misc-next Pull interconnect changes from Georgi: interconnect changes for 6.14 This pull request contains the interconnect changes for the 6.14-rc1 merge window. It contains one new driver and DT documentation updates for L3 and bandwidth monitors. Driver changes: - New driver for the SM8750 platform - Add DT compatibles for QCS615 BWMON and SM8650 OSM Signed-off-by: Georgi Djakov <[email protected]> * tag 'icc-6.14-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/djakov/icc: dt-bindings: interconnect: qcom,msm8998-bwmon: Add SM8750 CPU BWMONs dt-bindings: interconnect: OSM L3: Document sm8650 OSM L3 compatible dt-bindings: interconnect: qcom-bwmon: Document QCS615 bwmon compatibles interconnect: sm8750: Add missing const to static qcom_icc_desc interconnect: qcom: Add interconnect provider driver for SM8750 dt-bindings: interconnect: add interconnect bindings for SM8750
- Loading branch information
Showing
7 changed files
with
1,999 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
136 changes: 136 additions & 0 deletions
136
Documentation/devicetree/bindings/interconnect/qcom,sm8750-rpmh.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/interconnect/qcom,sm8750-rpmh.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Qualcomm RPMh Network-On-Chip Interconnect on SM8750 | ||
|
||
maintainers: | ||
- Abel Vesa <[email protected]> | ||
- Neil Armstrong <[email protected]> | ||
|
||
description: | | ||
RPMh interconnect providers support system bandwidth requirements through | ||
RPMh hardware accelerators known as Bus Clock Manager (BCM). The provider is | ||
able to communicate with the BCM through the Resource State Coordinator (RSC) | ||
associated with each execution environment. Provider nodes must point to at | ||
least one RPMh device child node pertaining to their RSC and each provider | ||
can map to multiple RPMh resources. | ||
See also:: include/dt-bindings/interconnect/qcom,sm8750-rpmh.h | ||
properties: | ||
compatible: | ||
enum: | ||
- qcom,sm8750-aggre1-noc | ||
- qcom,sm8750-aggre2-noc | ||
- qcom,sm8750-clk-virt | ||
- qcom,sm8750-cnoc-main | ||
- qcom,sm8750-config-noc | ||
- qcom,sm8750-gem-noc | ||
- qcom,sm8750-lpass-ag-noc | ||
- qcom,sm8750-lpass-lpiaon-noc | ||
- qcom,sm8750-lpass-lpicx-noc | ||
- qcom,sm8750-mc-virt | ||
- qcom,sm8750-mmss-noc | ||
- qcom,sm8750-nsp-noc | ||
- qcom,sm8750-pcie-anoc | ||
- qcom,sm8750-system-noc | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
minItems: 1 | ||
maxItems: 2 | ||
|
||
required: | ||
- compatible | ||
|
||
allOf: | ||
- $ref: qcom,rpmh-common.yaml# | ||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- qcom,sm8750-clk-virt | ||
- qcom,sm8750-mc-virt | ||
then: | ||
properties: | ||
reg: false | ||
else: | ||
required: | ||
- reg | ||
|
||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- qcom,sm8750-pcie-anoc | ||
then: | ||
properties: | ||
clocks: | ||
items: | ||
- description: aggre-NOC PCIe AXI clock | ||
- description: cfg-NOC PCIe a-NOC AHB clock | ||
|
||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- qcom,sm8750-aggre1-noc | ||
then: | ||
properties: | ||
clocks: | ||
items: | ||
- description: aggre UFS PHY AXI clock | ||
- description: aggre USB3 PRIM AXI clock | ||
|
||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- qcom,sm8750-aggre2-noc | ||
then: | ||
properties: | ||
clocks: | ||
items: | ||
- description: RPMH CC IPA clock | ||
|
||
- if: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- qcom,sm8750-aggre1-noc | ||
- qcom,sm8750-aggre2-noc | ||
- qcom,sm8750-pcie-anoc | ||
then: | ||
required: | ||
- clocks | ||
else: | ||
properties: | ||
clocks: false | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
clk_virt: interconnect-0 { | ||
compatible = "qcom,sm8750-clk-virt"; | ||
#interconnect-cells = <2>; | ||
qcom,bcm-voters = <&apps_bcm_voter>; | ||
}; | ||
aggre1_noc: interconnect@16e0000 { | ||
compatible = "qcom,sm8750-aggre1-noc"; | ||
reg = <0x016e0000 0x16400>; | ||
#interconnect-cells = <2>; | ||
clocks = <&gcc_phy_axi_clk>, <&gcc_prim_axi_clk>; | ||
qcom,bcm-voters = <&apps_bcm_voter>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.