From: Dario Binacchi <dario.binacchi@amarulasolutions.com>
To: linux-kernel@vger.kernel.org
Cc: Matteo Lisi <matteo.lisi@engicam.com>,
linux-amarula@amarulasolutions.com,
Dario Binacchi <dario.binacchi@amarulasolutions.com>,
Alexander Stein <alexander.stein@ew.tq-group.com>,
Andreas Kemnade <andreas@kemnade.info>,
Ard Biesheuvel <ardb@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Dmitry Baryshkov <lumag@kernel.org>,
Elinor Montmasson <elinor.montmasson@savoirfairelinux.com>,
Eric Biggers <ebiggers@google.com>,
Fabio Estevam <festevam@denx.de>,
Fabio Estevam <festevam@gmail.com>,
Francesco Dolcini <francesco.dolcini@toradex.com>,
Frieder Schrempf <frieder.schrempf@kontron.de>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Marek Vasut <marex@denx.de>,
Markus Niebel <Markus.Niebel@tq-group.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
Max Merchel <Max.Merchel@ew.tq-group.com>,
Michael Walle <mwalle@kernel.org>, Peng Fan <peng.fan@nxp.com>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Primoz Fiser <primoz.fiser@norik.com>,
Rob Herring <robh@kernel.org>,
Russell King <linux@armlinux.org.uk>,
Sascha Hauer <s.hauer@pengutronix.de>,
Shawn Guo <shawnguo@kernel.org>,
Stefan Eichenberger <stefan.eichenberger@toradex.com>,
Tim Harvey <tharvey@gateworks.com>,
devicetree@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 00/10] Support Engicam MicroGEA boards
Date: Tue, 10 Jun 2025 12:00:13 +0200 [thread overview]
Message-ID: <20250610100139.2476555-1-dario.binacchi@amarulasolutions.com> (raw)
The series adds support for Engicam MicroGEA boards:
- BMM
- RMM
- GTW
based on MicroGEA-MX6UL SoM.
Changes in v3:
- Drop extra blank lines from iomuxc and iomuxc_snvs nodes.
- Rename sgtl5000 node to audio-codec.
- Move the reg property of the audio-codec node right
after the compatible property.
Changes in v2:
- Change local-mac-address to 00 00 00 00 00 00. The actual value will
be set by the bootloader. The previous one was assigned to Freescale
Semiconductor.
- Move iomuxc and iomuxc_snvs nodes to the end of the DTS file.
- Move iomuxc and iomuxc_snvs nodes to the end of the DTS file.
- Drop an extra blank line
- Move iomuxc and iomuxc_snvs nodes to the end of the DTS file.
Dario Binacchi (10):
dt-bindings: arm: fsl: support Engicam MicroGEA BMM board
ARM: dts: imx6ul: support Engicam MicroGEA-MX6UL SoM
ARM: dts: imx6ul: support Engicam MicroGEA BMM board
ARM: imx_v6_v7_defconfig: cleanup mxs_defconfig
ARM: imx_v6_v7_defconfig: select CONFIG_INPUT_PWM_BEEPER
dt-bindings: arm: fsl: support Engicam MicroGEA RMM board
ARM: dts: imx6ul: support Engicam MicroGEA RMM board
dt-bindings: arm: fsl: support Engicam MicroGEA GTW board
ARM: dts: imx6ul: support Engicam MicroGEA GTW board
ARM: imx_v6_v7_defconfig: select CONFIG_USB_HSIC_USB3503
.../devicetree/bindings/arm/fsl.yaml | 9 +
arch/arm/boot/dts/nxp/imx/Makefile | 3 +
.../nxp/imx/imx6ull-engicam-microgea-bmm.dts | 303 +++++++++++++++
.../nxp/imx/imx6ull-engicam-microgea-gtw.dts | 162 ++++++++
.../nxp/imx/imx6ull-engicam-microgea-rmm.dts | 360 ++++++++++++++++++
.../dts/nxp/imx/imx6ull-engicam-microgea.dtsi | 95 +++++
arch/arm/configs/imx_v6_v7_defconfig | 27 +-
7 files changed, 938 insertions(+), 21 deletions(-)
create mode 100644 arch/arm/boot/dts/nxp/imx/imx6ull-engicam-microgea-bmm.dts
create mode 100644 arch/arm/boot/dts/nxp/imx/imx6ull-engicam-microgea-gtw.dts
create mode 100644 arch/arm/boot/dts/nxp/imx/imx6ull-engicam-microgea-rmm.dts
create mode 100644 arch/arm/boot/dts/nxp/imx/imx6ull-engicam-microgea.dtsi
--
2.43.0
base-commit: f09079bd04a924c72d555cd97942d5f8d7eca98c
branch: imx6ull-engicam-microgea
next reply other threads:[~2025-06-10 10:01 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-10 10:00 Dario Binacchi [this message]
2025-06-10 10:00 ` [PATCH v3 02/10] ARM: dts: imx6ul: support Engicam MicroGEA-MX6UL SoM Dario Binacchi
2025-06-10 15:18 ` Frank Li
2025-06-10 10:00 ` [PATCH v3 03/10] ARM: dts: imx6ul: support Engicam MicroGEA BMM board Dario Binacchi
2025-06-10 15:19 ` Frank Li
2025-06-10 10:00 ` [PATCH v3 04/10] ARM: imx_v6_v7_defconfig: cleanup mxs_defconfig Dario Binacchi
2025-06-11 20:05 ` Stefan Wahren
2025-06-10 10:00 ` [PATCH v3 05/10] ARM: imx_v6_v7_defconfig: select CONFIG_INPUT_PWM_BEEPER Dario Binacchi
2025-06-10 10:00 ` [PATCH v3 07/10] ARM: dts: imx6ul: support Engicam MicroGEA RMM board Dario Binacchi
2025-06-10 15:20 ` Frank Li
2025-06-10 10:00 ` [PATCH v3 09/10] ARM: dts: imx6ul: support Engicam MicroGEA GTW board Dario Binacchi
2025-06-10 15:20 ` Frank Li
2025-06-10 10:00 ` [PATCH v3 10/10] ARM: imx_v6_v7_defconfig: select CONFIG_USB_HSIC_USB3503 Dario Binacchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250610100139.2476555-1-dario.binacchi@amarulasolutions.com \
--to=dario.binacchi@amarulasolutions.com \
--cc=Markus.Niebel@tq-group.com \
--cc=Max.Merchel@ew.tq-group.com \
--cc=alexander.stein@ew.tq-group.com \
--cc=andreas@kemnade.info \
--cc=ardb@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=ebiggers@google.com \
--cc=elinor.montmasson@savoirfairelinux.com \
--cc=festevam@denx.de \
--cc=festevam@gmail.com \
--cc=francesco.dolcini@toradex.com \
--cc=frieder.schrempf@kontron.de \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=krzk+dt@kernel.org \
--cc=linux-amarula@amarulasolutions.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=lumag@kernel.org \
--cc=marex@denx.de \
--cc=martin.petersen@oracle.com \
--cc=matteo.lisi@engicam.com \
--cc=mwalle@kernel.org \
--cc=peng.fan@nxp.com \
--cc=primoz.fiser@norik.com \
--cc=robh@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=stefan.eichenberger@toradex.com \
--cc=tharvey@gateworks.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox