From: Alexander Stein <alexander.stein@ew.tq-group.com>
To: Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>, Marek Vasut <marex@denx.de>
Cc: Alexander Stein <alexander.stein@ew.tq-group.com>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
NXP Linux Team <linux-imx@nxp.com>, Li Yang <leoyang.li@nxp.com>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/4] TQMa8Xx (i.MX8QXP/i.MX8DXP) support
Date: Thu, 14 Dec 2023 15:23:23 +0100 [thread overview]
Message-ID: <20231214142327.1962914-1-alexander.stein@ew.tq-group.com> (raw)
Hi,
this series adds initial support for the TQ TQMa8Xx series, namely
TQMa8XQP (imx8qxp based) and TQMa8XDP (imx8dxp based).
The device tree is split into generic mba8xx.dtsi and tqma8xx.dtsi which
can be used for both imx8qxp and imx8dxp based hardware.
Changes in v2:
* Rebased to next-20231214
* Add imx8dxp support patch
* Collected Marco's and Conor's R-b
* Added support for TQMa8XDP as well
* Add PWM polarity to PWM consumer
* Add PWM pinctrl settings
* Rename ethphy node names
* Remove obsolete num-cs property for SPI nodes
* Add gpio-line-names for lsio_gpio3
* Add USB host support (usbotg3)
* Add eMMC pinctrl settings for 100 & 200 MHz
* Merged SPI pinctrl groups (SPI lines + CS)
* Enabled USB3 host related driver in defconfig
* Add TODO entries
Alexander Stein (4):
arm64: dts: imx: add imx8dxp support
dt-bindings: arm: add TQMa8Xx boards
arm64: dts: freescale: add initial device tree for TQMa8Xx
arm64: defconfig: Enable i.MX8QXP device drivers
.../devicetree/bindings/arm/fsl.yaml | 16 +
arch/arm64/boot/dts/freescale/Makefile | 2 +
.../dts/freescale/imx8dxp-tqma8xdp-mba8xx.dts | 16 +
.../boot/dts/freescale/imx8dxp-tqma8xdp.dtsi | 24 +
arch/arm64/boot/dts/freescale/imx8dxp.dtsi | 24 +
.../dts/freescale/imx8qxp-tqma8xqp-mba8xx.dts | 16 +
.../boot/dts/freescale/imx8qxp-tqma8xqp.dtsi | 14 +
arch/arm64/boot/dts/freescale/mba8xx.dtsi | 532 ++++++++++++++++++
arch/arm64/boot/dts/freescale/tqma8xx.dtsi | 265 +++++++++
arch/arm64/configs/defconfig | 6 +
10 files changed, 915 insertions(+)
create mode 100644 arch/arm64/boot/dts/freescale/imx8dxp-tqma8xdp-mba8xx.dts
create mode 100644 arch/arm64/boot/dts/freescale/imx8dxp-tqma8xdp.dtsi
create mode 100644 arch/arm64/boot/dts/freescale/imx8dxp.dtsi
create mode 100644 arch/arm64/boot/dts/freescale/imx8qxp-tqma8xqp-mba8xx.dts
create mode 100644 arch/arm64/boot/dts/freescale/imx8qxp-tqma8xqp.dtsi
create mode 100644 arch/arm64/boot/dts/freescale/mba8xx.dtsi
create mode 100644 arch/arm64/boot/dts/freescale/tqma8xx.dtsi
--
2.34.1
next reply other threads:[~2023-12-14 14:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-14 14:23 Alexander Stein [this message]
2023-12-14 14:23 ` [PATCH v2 1/4] arm64: dts: imx: add imx8dxp support Alexander Stein
2023-12-14 14:23 ` [PATCH v2 2/4] dt-bindings: arm: add TQMa8Xx boards Alexander Stein
2023-12-14 14:23 ` [PATCH v2 3/4] arm64: dts: freescale: add initial device tree for TQMa8Xx Alexander Stein
2023-12-14 14:23 ` [PATCH v2 4/4] arm64: defconfig: Enable i.MX8QXP device drivers Alexander Stein
2024-02-01 9:47 ` [PATCH v2 0/4] TQMa8Xx (i.MX8QXP/i.MX8DXP) support Shawn Guo
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=20231214142327.1962914-1-alexander.stein@ew.tq-group.com \
--to=alexander.stein@ew.tq-group.com \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=festevam@gmail.com \
--cc=kernel@pengutronix.de \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=leoyang.li@nxp.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=marex@denx.de \
--cc=robh+dt@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=will@kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).