Message ID | 20230323-topic-sm8450-upstream-dt-bindings-fixes-v1-0-3ead1e418fe4@linaro.org |
---|---|
Headers | show |
Series | arm64: qcom: sm8450: bindings check cleanup | expand |
On 23/03/2023 11:25, Neil Armstrong wrote: > Fixes the following DT bindings check error: > domain-idle-states: cluster-sleep-0: 'idle-state-name', 'local-timer-stop' do not match any of the regexes: > 'pinctrl-[0-9]+' > domain-idle-states: cluster-sleep-1: 'idle-state-name', 'local-timer-stop' do not match any of the regexes: > 'pinctrl-[0-9]+' I don't get from the commit msg why these properties are not correct here. The idle states allow them, so maybe something is missing in the binding? At least commit msg should explain this. Best regards, Krzysztof
On Thu, 23 Mar 2023 11:25:18 +0100, Neil Armstrong wrote: > Move the qcom,sm8450-ufshc to the right allOf:if allowing the ICE clocks > and registers to be specified. > > Fixes: 462c5c0aa798 ("dt-bindings: ufs: qcom,ufs: convert to dtschema") > Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> > --- > Documentation/devicetree/bindings/ufs/qcom,ufs.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check' on your patch (DT_CHECKER_FLAGS is new in v5.13): yamllint warnings/errors: dtschema/dtc warnings/errors: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/ufs/qcom,ufs.example.dtb: ufs@1d84000: clocks: [[4294967295, 151], [4294967295, 10], [4294967295, 150], [4294967295, 166], [4294967295, 0], [4294967295, 164], [4294967295, 160], [4294967295, 162]] is too short From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/ufs/qcom,ufs.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/ufs/qcom,ufs.example.dtb: ufs@1d84000: clock-names: ['core_clk', 'bus_aggr_clk', 'iface_clk', 'core_clk_unipro', 'ref_clk', 'tx_lane0_sync_clk', 'rx_lane0_sync_clk', 'rx_lane1_sync_clk'] is too short From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/ufs/qcom,ufs.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/ufs/qcom,ufs.example.dtb: ufs@1d84000: reg: [[0, 30949376, 0, 12288]] is too short From schema: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/ufs/qcom,ufs.yaml doc reference errors (make refcheckdocs): See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20230323-topic-sm8450-upstream-dt-bindings-fixes-v1-3-3ead1e418fe4@linaro.org The base for the series is generally the latest rc1. A different dependency should be noted in *this* patch. If you already ran 'make dt_binding_check' and didn't see the above error(s), then make sure 'yamllint' is installed and dt-schema is up to date: pip3 install dtschema --upgrade Please check and re-submit after running the above command yourself. Note that DT_SCHEMA_FILES can be set to your schema file to speed up checking your schema. However, it must be unset to test all examples with your schema.
On 23/03/2023 14:14, Neil Armstrong wrote: > On 23/03/2023 11:51, Krzysztof Kozlowski wrote: >> On 23/03/2023 11:25, Neil Armstrong wrote: >>> Fixes the following DT bindings check error: >>> domain-idle-states: cluster-sleep-0: 'idle-state-name', 'local-timer-stop' do not match any of the regexes: >>> 'pinctrl-[0-9]+' >>> domain-idle-states: cluster-sleep-1: 'idle-state-name', 'local-timer-stop' do not match any of the regexes: >>> 'pinctrl-[0-9]+' >> >> I don't get from the commit msg why these properties are not correct >> here. The idle states allow them, so maybe something is missing in the >> binding? At least commit msg should explain this. > > The domain-idle-states bindings doesn't document those 2 properties, so perhaps it's missing ? Ah, you are right. These were copied from CPU idle states, so here they do not make sense. Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof
A few fixes to pass the DT bindings check successfully for sm8450 qrd & hdk DTs. The following are still needed to pass all the checks: - https://lore.kernel.org/r/20230308082424.140224-3-manivannan.sadhasivam@linaro.org - https://lore.kernel.org/r/20230130-topic-sm8450-upstream-pmic-glink-v5-5-552f3b721f9e@linaro.org - https://lore.kernel.org/all/20230308075648.134119-1-manivannan.sadhasivam@linaro.org/ Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> --- Neil Armstrong (8): dt-bindings: display: msm: sm8450-mdss: Fix DSI compatible dt-bindings: mfd: qcom,spmi-pmic: document pm8450 pmic dt-bindings: ufs: qcom: document the fact the UFS controller can have an ICE core arm64: dts: qcom: sm8450: remove invalid properties in cluster-sleep nodes arm64: dts: qcom: sm8450: remove invalid power-domain-names in pcie nodes arm64: dts: qcom: sm8450: remove invalid npl clock in vamacro node arm64: dts: qcom: sm8450: remove invalid reg-names from ufs node arm64: dts: qcom: sm8450: fix pcie1 gpios properties name .../bindings/display/msm/qcom,sm8450-mdss.yaml | 2 +- .../devicetree/bindings/mfd/qcom,spmi-pmic.yaml | 1 + Documentation/devicetree/bindings/ufs/qcom,ufs.yaml | 2 +- arch/arm64/boot/dts/qcom/sm8450.dtsi | 16 ++++------------ 4 files changed, 7 insertions(+), 14 deletions(-) --- base-commit: b9e9869138880e668fa8cb3b186d04cd13bd57a6 change-id: 20230323-topic-sm8450-upstream-dt-bindings-fixes-81630722ee31 Best regards,