The Qualcomm PAS/PIL (qcom,adsp.yaml) bindings grew considerably with huge amount of if:then:else blocks and 40 compatibles (still growing). These if:then:else blocks constrain clocks, power-domains and interrupt per variants. Adding new variants is now tricky - it's easy to forget to add variant to one if:then: clause. Split the bindings into reusable schema and per-soc bindings, groupping them when applicable. This part is finished, but more and more compatibles should be moved out of qcom,adsp.yaml, eventually dropping the file. Best regards, Krzysztof Krzysztof Kozlowski (5): dt-bindings: remoteproc: qcom,adsp: split common part dt-bindings: remoteproc: qcom,sm8350-pas: split into separate file dt-bindings: remoteproc: qcom,sm8150-pas: split into separate file dt-bindings: remoteproc: qcom,sm6350-pas: split into separate file dt-bindings: remoteproc: qcom,sc8280xp-pas: split into separate file .../bindings/remoteproc/qcom,adsp.yaml | 234 +----------------- .../bindings/remoteproc/qcom,pas-common.yaml | 121 +++++++++ .../remoteproc/qcom,sc8280xp-pas.yaml | 154 ++++++++++++ .../bindings/remoteproc/qcom,sm6350-pas.yaml | 169 +++++++++++++ .../bindings/remoteproc/qcom,sm8150-pas.yaml | 178 +++++++++++++ .../bindings/remoteproc/qcom,sm8350-pas.yaml | 188 ++++++++++++++ 6 files changed, 812 insertions(+), 232 deletions(-) create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,pas-common.yaml create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,sc8280xp-pas.yaml create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,sm6350-pas.yaml create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,sm8150-pas.yaml create mode 100644 Documentation/devicetree/bindings/remoteproc/qcom,sm8350-pas.yaml -- 2.34.1