mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

DTS example in the bindings should be indented with 2- or 4-spaces and aligned with opening '- |', so correct any differences like 3-spaces or mixtures 2- and 4-spaces in one binding. While re-indenting, drop unused labels. No functional changes here, but saves some comments during reviews of new patches built on existing code. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: "Rob Herring (Arm)" <robh@kernel.org> Link: https://lore.kernel.org/r/20250324125302.82167-1-krzysztof.kozlowski@linaro.org Signed-off-by: Georgi Djakov <djakov@kernel.org>
63 lines
1.3 KiB
YAML
63 lines
1.3 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/interconnect/qcom,msm8974.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Qualcomm MSM8974 Network-On-Chip Interconnect
|
|
|
|
maintainers:
|
|
- Brian Masney <masneyb@onstation.org>
|
|
|
|
description: |
|
|
The Qualcomm MSM8974 interconnect providers support setting system
|
|
bandwidth requirements between various network-on-chip fabrics.
|
|
|
|
properties:
|
|
reg:
|
|
maxItems: 1
|
|
|
|
compatible:
|
|
enum:
|
|
- qcom,msm8974-bimc
|
|
- qcom,msm8974-cnoc
|
|
- qcom,msm8974-mmssnoc
|
|
- qcom,msm8974-ocmemnoc
|
|
- qcom,msm8974-pnoc
|
|
- qcom,msm8974-snoc
|
|
|
|
'#interconnect-cells':
|
|
const: 1
|
|
|
|
clock-names:
|
|
items:
|
|
- const: bus
|
|
- const: bus_a
|
|
|
|
clocks:
|
|
items:
|
|
- description: Bus Clock
|
|
- description: Bus A Clock
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- '#interconnect-cells'
|
|
- clock-names
|
|
- clocks
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/qcom,rpmcc.h>
|
|
|
|
interconnect@fc380000 {
|
|
reg = <0xfc380000 0x6a000>;
|
|
compatible = "qcom,msm8974-bimc";
|
|
#interconnect-cells = <1>;
|
|
clock-names = "bus", "bus_a";
|
|
clocks = <&rpmcc RPM_SMD_BIMC_CLK>,
|
|
<&rpmcc RPM_SMD_BIMC_A_CLK>;
|
|
};
|