mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 16:23:59 -04:00
Add Epoch Subsystem (EPSS) L3 interconnect provider binding on SA8775P SoCs. The L3 instance on the SA8775P SoC is similar to those on SoCs like SM8250 and SC7280. These SoCs use the PERF register instead of L3_REG for programming the performance level, which is managed in the data associated with the target-specific compatibles. Since the hardware remains the same across all EPSS-supporting SoCs, the generic compatible is retained for all SoCs. Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Raviteja Laggyshetty <quic_rlaggysh@quicinc.com> Link: https://lore.kernel.org/r/20250415095343.32125-2-quic_rlaggysh@quicinc.com Signed-off-by: Georgi Djakov <djakov@kernel.org>
80 lines
1.8 KiB
YAML
80 lines
1.8 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/interconnect/qcom,osm-l3.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm Operating State Manager (OSM) L3 Interconnect Provider
|
|
|
|
maintainers:
|
|
- Sibi Sankar <quic_sibis@quicinc.com>
|
|
|
|
description:
|
|
L3 cache bandwidth requirements on Qualcomm SoCs is serviced by the OSM.
|
|
The OSM L3 interconnect provider aggregates the L3 bandwidth requests
|
|
from CPU/GPU and relays it to the OSM.
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- items:
|
|
- enum:
|
|
- qcom,sc7180-osm-l3
|
|
- qcom,sc8180x-osm-l3
|
|
- qcom,sdm670-osm-l3
|
|
- qcom,sdm845-osm-l3
|
|
- qcom,sm6350-osm-l3
|
|
- qcom,sm8150-osm-l3
|
|
- const: qcom,osm-l3
|
|
- items:
|
|
- enum:
|
|
- qcom,sa8775p-epss-l3
|
|
- qcom,sc7280-epss-l3
|
|
- qcom,sc8280xp-epss-l3
|
|
- qcom,sm6375-cpucp-l3
|
|
- qcom,sm8250-epss-l3
|
|
- qcom,sm8350-epss-l3
|
|
- qcom,sm8650-epss-l3
|
|
- const: qcom,epss-l3
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
items:
|
|
- description: xo clock
|
|
- description: alternate clock
|
|
|
|
clock-names:
|
|
items:
|
|
- const: xo
|
|
- const: alternate
|
|
|
|
'#interconnect-cells':
|
|
const: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
- '#interconnect-cells'
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
|
|
#define GPLL0 165
|
|
#define RPMH_CXO_CLK 0
|
|
|
|
osm_l3: interconnect@17d41000 {
|
|
compatible = "qcom,sdm845-osm-l3", "qcom,osm-l3";
|
|
reg = <0x17d41000 0x1400>;
|
|
|
|
clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GPLL0>;
|
|
clock-names = "xo", "alternate";
|
|
|
|
#interconnect-cells = <1>;
|
|
};
|