Re: [PATCH 4/7] dt-bindings: interconnect: qcom: Fix and separate out QCS404

From: Krzysztof Kozlowski
Date: Sat Jul 22 2023 - 05:40:51 EST


On 21/07/2023 15:54, Konrad Dybcio wrote:
> Separate out QCS404 icc bindings from the common file and fix the
> clocks description by removing the wrong internal RPM bus clock
> representation that we've been carrying for years.
>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@xxxxxxxxxx>
> ---
> .../bindings/interconnect/qcom,qcs404.yaml | 52 ++++++++++++++++++++++
> .../devicetree/bindings/interconnect/qcom,rpm.yaml | 6 ---
> 2 files changed, 52 insertions(+), 6 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/interconnect/qcom,qcs404.yaml b/Documentation/devicetree/bindings/interconnect/qcom,qcs404.yaml
> new file mode 100644
> index 000000000000..aff2daa55802
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/interconnect/qcom,qcs404.yaml
> @@ -0,0 +1,52 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/interconnect/qcom,qcs404.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Qualcomm QCS404 Network-On-Chip interconnect
> +
> +maintainers:
> + - Konrad Dybcio <konradybcio@xxxxxxxxxx>
> +
> +description: |
> + The Qualcomm QCS404 interconnect providers support adjusting the
> + bandwidth requirements between the various NoC fabrics.
> +
> +allOf:
> + - $ref: qcom,rpm-common.yaml#
> +
> +properties:
> + compatible:
> + enum:
> + - qcom,qcs404-bimc
> + - qcom,qcs404-pcnoc
> + - qcom,qcs404-snoc

I am not sure it is reasonable to keep such short bindings each in its
own file. Maybe 8916 and qcs404 should be left in common file?

> +
> +required:
> + - compatible
> + - reg
> +
> +unevaluatedProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/qcom,rpmcc.h>
> +
> + snoc: interconnect@580000 {
> + compatible = "qcom,qcs404-snoc";
> + reg = <0x00580000 0x23080>;
> + #interconnect-cells = <1>;
> + };
> +
> + pcnoc: interconnect@500000 {
> + compatible = "qcom,qcs404-pcnoc";
> + reg = <0x00500000 0x15080>;
> + #interconnect-cells = <1>;
> + };
> +
> + bimc: interconnect@400000 {
> + compatible = "qcom,qcs404-bimc";
> + reg = <0x00400000 0x80000>;
> + #interconnect-cells = <1>;
> + };

Keep only one example.

Best regards,
Krzysztof