[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <cc5ee0e5-5cc7-bf80-68cc-2d38b1118c6d@linaro.org>
Date: Thu, 6 Apr 2023 20:07:44 +0200
From: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>
To: Konrad Dybcio <konrad.dybcio@...aro.org>,
Andy Gross <agross@...nel.org>,
Bjorn Andersson <andersson@...nel.org>,
Joerg Roedel <joro@...tes.org>, Will Deacon <will@...nel.org>,
Robin Murphy <robin.murphy@....com>,
Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>
Cc: Marijn Suijten <marijn.suijten@...ainline.org>,
linux-arm-msm@...r.kernel.org, iommu@...ts.linux.dev,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] dt-bindings: iommu: Convert QCOM IOMMU to YAML
On 06/04/2023 13:58, Konrad Dybcio wrote:
> Convert the Qualcomm IOMMU bindings to YAML.
>
> Signed-off-by: Konrad Dybcio <konrad.dybcio@...aro.org>
> ---
> v1 -> v2:
Thank you for your patch. There is something to discuss/improve.
> +
> +patternProperties:
> + "^iommu-ctx@[0-9a-f]+$":
> + type: object
On this level:
additionalProperties: false
> + properties:
> + compatible:
> + enum:
> + - qcom,msm-iommu-v1-ns
> + - qcom,msm-iommu-v1-sec
> +
> + interrupts:
> + maxItems: 1
> +
> + reg:
> + maxItems: 1
On this level:
required:
- compatible
- interrupts
- reg
> +
> +required:
> + - compatible
> + - clocks
> + - clock-names
> + - ranges
> + - '#address-cells'
> + - '#size-cells'
> + - '#iommu-cells'
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/qcom,gcc-msm8916.h>
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> +
> + apps_iommu: iommu@...0000 {
> + compatible = "qcom,msm8916-iommu", "qcom,msm-iommu-v1";
> + reg = <0x01ef0000 0x3000>;
> + clocks = <&gcc GCC_SMMU_CFG_CLK>,
> + <&gcc GCC_APSS_TCU_CLK>;
> + clock-names = "iface", "bus";
> + qcom,iommu-secure-id = <17>;
> + #address-cells = <1>;
> + #size-cells = <1>;
> + #iommu-cells = <1>;
> + ranges = <0 0x01e20000 0x40000>;
> +
> + /* mdp_0: */
> + iommu-ctx@...0 {
> + compatible = "qcom,msm-iommu-v1-ns";
> + reg = <0x4000 0x1000>;
> + interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
> + };
> + };
> +
> + mdp: mdp@...1000 {
> + reg = <0x01a01000 0x1000>;
> + iommus = <&apps_iommu 4>;
Drop mdp node. Consumers should not be in provider bindings.
Best regards,
Krzysztof
Powered by blists - more mailing lists