Hi, this drop fixes the review comments from Krzysztof and Rob (many thanks for that!). Changelog below. ================= In an effort to get the FVP DTs to pass the automated DT bindings checks, this series collects some DT schema binding conversions for various Arm Ltd. IP devices. This is mostly for old IP, but it's still used by the FVPs, for which we have DTs in the tree. Please have a look! Cheers, Andre Changelog: v1 .. v2: - all: fix indentation in examples (4 spaces) - all: drop line break preservation in descriptions - smmu-v3: tighten IRQ ordering to only allow certain combinations - spe-pmu: move new .yaml file into perf/ directory - sp810: don't require fixed clock output names - sp810: explain optional assigned-clock properties - pl041/pl051: rename binding file name - pl041/pl051: use generic node name in example nodes - vexpress-sysreg: specify additionalProperties - vexpress-sysreg: disallow uppercase hex letters in node name address - vexpress-config: specify additionalProperties - hdlcd/mali-dp: use properties/port instead of $defs/port-base Andre Przywara (11): dt-bindings: iommu: arm,smmu-v3: make PRI IRQ optional dt-bindings: arm: spe-pmu: convert to DT schema dt-bindings: arm: sp810: convert to DT schema dt-bindings: sound: add Arm PL041 AACI DT schema dt-bindings: serio: add Arm PL050 DT schema dt-bindings: arm: convert vexpress-sysregs to DT schema dt-bindings: arm: convert vexpress-config to DT schema dt-bindings: display: convert PL110/PL111 to DT schema dt-bindings: display: convert Arm HDLCD to DT schema dt-bindings: display: convert Arm Mali-DP to DT schema dt-bindings: display: convert Arm Komeda to DT schema .../devicetree/bindings/arm/sp810.txt | 46 --- .../devicetree/bindings/arm/sp810.yaml | 80 +++++ .../devicetree/bindings/arm/spe-pmu.txt | 20 -- .../bindings/arm/vexpress-config.yaml | 285 ++++++++++++++++++ .../bindings/arm/vexpress-sysreg.txt | 103 ------- .../bindings/arm/vexpress-sysreg.yaml | 90 ++++++ .../devicetree/bindings/display/arm,hdlcd.txt | 79 ----- .../bindings/display/arm,hdlcd.yaml | 89 ++++++ .../bindings/display/arm,komeda.txt | 78 ----- .../bindings/display/arm,komeda.yaml | 130 ++++++++ .../bindings/display/arm,malidp.txt | 68 ----- .../bindings/display/arm,malidp.yaml | 116 +++++++ .../devicetree/bindings/display/arm,pl11x.txt | 110 ------- .../bindings/display/arm,pl11x.yaml | 174 +++++++++++ .../bindings/iommu/arm,smmu-v3.yaml | 16 +- .../devicetree/bindings/perf/spe-pmu.yaml | 40 +++ .../devicetree/bindings/serio/arm,pl050.yaml | 67 ++++ .../devicetree/bindings/sound/arm,pl041.yaml | 62 ++++ 18 files changed, 1144 insertions(+), 509 deletions(-) delete mode 100644 Documentation/devicetree/bindings/arm/sp810.txt create mode 100644 Documentation/devicetree/bindings/arm/sp810.yaml delete mode 100644 Documentation/devicetree/bindings/arm/spe-pmu.txt create mode 100644 Documentation/devicetree/bindings/arm/vexpress-config.yaml delete mode 100644 Documentation/devicetree/bindings/arm/vexpress-sysreg.txt create mode 100644 Documentation/devicetree/bindings/arm/vexpress-sysreg.yaml delete mode 100644 Documentation/devicetree/bindings/display/arm,hdlcd.txt create mode 100644 Documentation/devicetree/bindings/display/arm,hdlcd.yaml delete mode 100644 Documentation/devicetree/bindings/display/arm,komeda.txt create mode 100644 Documentation/devicetree/bindings/display/arm,komeda.yaml delete mode 100644 Documentation/devicetree/bindings/display/arm,malidp.txt create mode 100644 Documentation/devicetree/bindings/display/arm,malidp.yaml delete mode 100644 Documentation/devicetree/bindings/display/arm,pl11x.txt create mode 100644 Documentation/devicetree/bindings/display/arm,pl11x.yaml create mode 100644 Documentation/devicetree/bindings/perf/spe-pmu.yaml create mode 100644 Documentation/devicetree/bindings/serio/arm,pl050.yaml create mode 100644 Documentation/devicetree/bindings/sound/arm,pl041.yaml -- 2.25.1