Message ID | 20240904085415.645031-1-frieder@fris.de |
---|---|
Headers | show |
Series | Add support for Kontron OSM-S i.MX8MP SoM and carrier boards | expand |
On Wed, 04 Sep 2024 10:53:18 +0200, Frieder Schrempf wrote: > From: Frieder Schrempf <frieder.schrempf@kontron.de> > > Patch 1: board DT bindings > Patch 2: OSM-S i.MX8MP SoM and BL carrier board devicetrees > Patch 3: i.MX8MP SMARC module and eval carrier board devicetrees > > Changes for v3: > > * Address Shawn's review comments (thanks!) > * Fix HDMI DDC interface > * Fix gpio-hog pinctrl in DL devicetree > * Fix DT check warnings in DL devicetree > * Adjust LVDS panel node to match that of proposed DL i.MX8MM > > Changes for v2: > > DT bindings (patch1): > * Add tags from Krzysztof and Conor (thanks!) > > SMARC DTs (patch 3): > * Fix GPIO labels > * Add support for TPM chip on SMARC module > * Disable PWM in favor of GPIO5 on SMARC carrier > * Enable LCDIF node to make HDMI work > * Add support for GPIO expanders on SMARC carrier > * Remove SPI flash as its removable and should be in an overlay > * Add CAN regulators to fix transceiver enable > > Frieder Schrempf (3): > dt-bindings: arm: fsl: Add Kontron i.MX8MP OSM-S based boards > arm64: dts: Add support for Kontron OSM-S i.MX8MP SoM and BL carrier > board > arm64: dts: Add support for Kontron i.MX8MP SMARC module and eval > carrier > > .../devicetree/bindings/arm/fsl.yaml | 13 + > arch/arm64/boot/dts/freescale/Makefile | 6 + > .../dts/freescale/imx8mp-kontron-bl-osm-s.dts | 305 ++++++ > .../boot/dts/freescale/imx8mp-kontron-dl.dtso | 110 +++ > .../dts/freescale/imx8mp-kontron-osm-s.dtsi | 908 ++++++++++++++++++ > .../imx8mp-kontron-smarc-eval-carrier.dts | 254 +++++ > .../dts/freescale/imx8mp-kontron-smarc.dtsi | 280 ++++++ > 7 files changed, 1876 insertions(+) > create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-bl-osm-s.dts > create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-dl.dtso > create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-osm-s.dtsi > create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-smarc-eval-carrier.dts > create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-smarc.dtsi > > -- > 2.46.0 > > > My bot found new DTB warnings on the .dts files added or changed in this series. Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings are fixed by another series. Ultimately, it is up to the platform maintainer whether these warnings are acceptable or not. No need to reply unless the platform maintainer has comments. If you already ran DT checks and didn't see these error(s), then make sure dt-schema is up to date: pip3 install dtschema --upgrade New warnings running 'make CHECK_DTBS=y freescale/imx8mp-kontron-bl-osm-s.dtb freescale/imx8mp-kontron-smarc-eval-carrier.dtb' for 20240904085415.645031-1-frieder@fris.de: arch/arm64/boot/dts/freescale/imx8mp-kontron-bl-osm-s.dtb: clock-controller@30e20000: '#reset-cells' does not match any of the regexes: 'pinctrl-[0-9]+' from schema $id: http://devicetree.org/schemas/clock/imx8mp-audiomix.yaml# arch/arm64/boot/dts/freescale/imx8mp-kontron-smarc-eval-carrier.dtb: clock-controller@30e20000: '#reset-cells' does not match any of the regexes: 'pinctrl-[0-9]+' from schema $id: http://devicetree.org/schemas/clock/imx8mp-audiomix.yaml# arch/arm64/boot/dts/freescale/imx8mp-kontron-bl-osm-s.dtb: pcie-ep@33800000: reg: [[864026624, 1048576], [402653184, 134217728], [865075200, 1048576], [867172352, 1048576]] is too long from schema $id: http://devicetree.org/schemas/pci/fsl,imx6q-pcie-ep.yaml# arch/arm64/boot/dts/freescale/imx8mp-kontron-bl-osm-s.dtb: pcie-ep@33800000: reg-names: ['dbi', 'addr_space', 'dbi2', 'atu'] is too long from schema $id: http://devicetree.org/schemas/pci/fsl,imx6q-pcie-ep.yaml# arch/arm64/boot/dts/freescale/imx8mp-kontron-smarc-eval-carrier.dtb: pcie-ep@33800000: reg: [[864026624, 1048576], [402653184, 134217728], [865075200, 1048576], [867172352, 1048576]] is too long from schema $id: http://devicetree.org/schemas/pci/fsl,imx6q-pcie-ep.yaml# arch/arm64/boot/dts/freescale/imx8mp-kontron-smarc-eval-carrier.dtb: pcie-ep@33800000: reg-names: ['dbi', 'addr_space', 'dbi2', 'atu'] is too long from schema $id: http://devicetree.org/schemas/pci/fsl,imx6q-pcie-ep.yaml#
On 04.09.24 10:53 AM, Frieder Schrempf wrote: > From: Frieder Schrempf <frieder.schrempf@kontron.de> > > Patch 1: board DT bindings > Patch 2: OSM-S i.MX8MP SoM and BL carrier board devicetrees > Patch 3: i.MX8MP SMARC module and eval carrier board devicetrees > > Changes for v3: > > * Address Shawn's review comments (thanks!) > * Fix HDMI DDC interface > * Fix gpio-hog pinctrl in DL devicetree > * Fix DT check warnings in DL devicetree > * Adjust LVDS panel node to match that of proposed DL i.MX8MM > > Changes for v2: > > DT bindings (patch1): > * Add tags from Krzysztof and Conor (thanks!) > > SMARC DTs (patch 3): > * Fix GPIO labels > * Add support for TPM chip on SMARC module > * Disable PWM in favor of GPIO5 on SMARC carrier > * Enable LCDIF node to make HDMI work > * Add support for GPIO expanders on SMARC carrier > * Remove SPI flash as its removable and should be in an overlay > * Add CAN regulators to fix transceiver enable > > Frieder Schrempf (3): > dt-bindings: arm: fsl: Add Kontron i.MX8MP OSM-S based boards > arm64: dts: Add support for Kontron OSM-S i.MX8MP SoM and BL carrier > board > arm64: dts: Add support for Kontron i.MX8MP SMARC module and eval > carrier Gentle ping for this series. Shawn, can you apply this for v6.13, please? Thanks Frieder
On Wed, Sep 04, 2024 at 10:53:18AM +0200, Frieder Schrempf wrote: > Frieder Schrempf (3): > dt-bindings: arm: fsl: Add Kontron i.MX8MP OSM-S based boards > arm64: dts: Add support for Kontron OSM-S i.MX8MP SoM and BL carrier > board > arm64: dts: Add support for Kontron i.MX8MP SMARC module and eval > carrier Applied all, thanks!
From: Frieder Schrempf <frieder.schrempf@kontron.de> Patch 1: board DT bindings Patch 2: OSM-S i.MX8MP SoM and BL carrier board devicetrees Patch 3: i.MX8MP SMARC module and eval carrier board devicetrees Changes for v3: * Address Shawn's review comments (thanks!) * Fix HDMI DDC interface * Fix gpio-hog pinctrl in DL devicetree * Fix DT check warnings in DL devicetree * Adjust LVDS panel node to match that of proposed DL i.MX8MM Changes for v2: DT bindings (patch1): * Add tags from Krzysztof and Conor (thanks!) SMARC DTs (patch 3): * Fix GPIO labels * Add support for TPM chip on SMARC module * Disable PWM in favor of GPIO5 on SMARC carrier * Enable LCDIF node to make HDMI work * Add support for GPIO expanders on SMARC carrier * Remove SPI flash as its removable and should be in an overlay * Add CAN regulators to fix transceiver enable Frieder Schrempf (3): dt-bindings: arm: fsl: Add Kontron i.MX8MP OSM-S based boards arm64: dts: Add support for Kontron OSM-S i.MX8MP SoM and BL carrier board arm64: dts: Add support for Kontron i.MX8MP SMARC module and eval carrier .../devicetree/bindings/arm/fsl.yaml | 13 + arch/arm64/boot/dts/freescale/Makefile | 6 + .../dts/freescale/imx8mp-kontron-bl-osm-s.dts | 305 ++++++ .../boot/dts/freescale/imx8mp-kontron-dl.dtso | 110 +++ .../dts/freescale/imx8mp-kontron-osm-s.dtsi | 908 ++++++++++++++++++ .../imx8mp-kontron-smarc-eval-carrier.dts | 254 +++++ .../dts/freescale/imx8mp-kontron-smarc.dtsi | 280 ++++++ 7 files changed, 1876 insertions(+) create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-bl-osm-s.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-dl.dtso create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-osm-s.dtsi create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-smarc-eval-carrier.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8mp-kontron-smarc.dtsi