From: Andrew Davis <afd@ti.com>
To: Michael Walle <mwalle@kernel.org>, Nishanth Menon <nm@ti.com>,
Vignesh Raghavendra <vigneshr@ti.com>,
Tero Kristo <kristo@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Jean Delvare <jdelvare@suse.com>,
Guenter Roeck <linux@roeck-us.net>, Lee Jones <lee@kernel.org>,
Srinivas Kandagatla <srini@kernel.org>,
Wim Van Sebroeck <wim@linux-watchdog.org>
Cc: <linux-arm-kernel@lists.infradead.org>,
<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-hwmon@vger.kernel.org>, <linux-watchdog@vger.kernel.org>
Subject: Re: [PATCH v1 7/7] arm64: dts: ti: Add support for Kontron SMARC-sAM67
Date: Wed, 27 Aug 2025 08:31:33 -0500 [thread overview]
Message-ID: <992fcb80-1a54-4d57-a764-d6ba77cb11e9@ti.com> (raw)
In-Reply-To: <20250822131531.1366437-8-mwalle@kernel.org>
On 8/22/25 8:15 AM, Michael Walle wrote:
> The Kontron SMARC-sAM67 is a SMARC module which features a TI AM67 SoC.
> It supports the following features:
> * Quad-core AM67A94 with 1.4GHz
> * 8 GiB RAM
> * 64 GiB eMMC
> * 4 MiB SPI flash for failsafe booting
> * 4x UART
> * 1x USB 2.0
> * 1x USB 3.2 (or 4x USB3.2 with onboard USB 3.2 hub)
> * 1x RTC
> * 2x GBE
> * 1x QSPI (with 2 chip selects)
> * 1x SPI (with 2 chip selects)
> * 7x I2C
> * 4x CSI (*)
> * 2x LVDS (or one dual-link LVDS)
> * 1x DSI (*)
> * 1x DP (*)
> * onboard microcontroller for boot control, failsafe booting and
> external watchdog
>
> (*) not yet supported by the kernel
>
> There is a base device tree and overlays which will add optional
> features. At the moment there is one full featured variant of that
> board whose device tree is generated during build by merging all the
> device tree overlays.
>
> Signed-off-by: Michael Walle <mwalle@kernel.org>
> ---
> arch/arm64/boot/dts/ti/Makefile | 6 +
> .../dts/ti/k3-am67a-kontron-sa67-base.dts | 1092 +++++++++++++++++
> .../dts/ti/k3-am67a-kontron-sa67-gbe1.dtso | 19 +
> .../ti/k3-am67a-kontron-sa67-rtc-rv8263.dtso | 24 +
> 4 files changed, 1141 insertions(+)
> create mode 100644 arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts
> create mode 100644 arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-gbe1.dtso
> create mode 100644 arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-rtc-rv8263.dtso
>
> diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile
[...]
> diff --git a/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-gbe1.dtso b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-gbe1.dtso
> new file mode 100644
> index 000000000000..4e9eb7998f38
> --- /dev/null
> +++ b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-gbe1.dtso
> @@ -0,0 +1,19 @@
DTSO files should have copyright and license here same as DTS.
Andrew
> +/dts-v1/;
> +/plugin/;
> +
> +&cpsw3g_mdio {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + phy1: ethernet-phy@1 {
> + reg = <1>;
> + };
> +};
> +
> +&cpsw_port2 {
> + phy-connection-type = "rgmii-id";
> + phy-handle = <&phy1>;
> + nvmem-cells = <&base_mac_address 1>;
> + nvmem-cell-names = "mac-address";
> + status = "okay";
> +};
> diff --git a/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-rtc-rv8263.dtso b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-rtc-rv8263.dtso
> new file mode 100644
> index 000000000000..c9aa15269c92
> --- /dev/null
> +++ b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-rtc-rv8263.dtso
> @@ -0,0 +1,24 @@
> +/dts-v1/;
> +/plugin/;
> +
> +#include <dt-bindings/interrupt-controller/irq.h>
> +
> +&{/} {
> + aliases {
> + rtc0 = "/bus@f0000/i2c@20000000/rtc@51"; /* &rtc */
> + rtc1 = "/bus@f0000/bus@b00000/rtc@2b1f0000"; /* &wkup_rtc0 */
> + };
> +};
> +
> +&main_i2c0 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + rtc: rtc@51 {
> + compatible = "microcrystal,rv8263";
> + reg = <0x51>;
> + pinctrl-names = "default";
> + pinctrl-0 = <&rtc_pins_default>;
> + interrupts-extended = <&main_gpio0 36 IRQ_TYPE_EDGE_FALLING>;
> + };
> +};
next prev parent reply other threads:[~2025-08-27 15:26 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-22 13:15 [PATCH v1 0/7] Initial Kontron SMARC-sAM67 support Michael Walle
2025-08-22 13:15 ` [PATCH v1 1/7] dt-bindings: arm: ti: Add bindings for Kontron SMARC-sAM67 module Michael Walle
2025-08-25 7:43 ` Krzysztof Kozlowski
2025-08-22 13:15 ` [PATCH v1 2/7] dt-bindings: mfd: sl28cpld: add sa67mcu compatible Michael Walle
2025-08-27 12:56 ` Krzysztof Kozlowski
2025-09-03 12:05 ` (subset) " Lee Jones
2025-08-22 13:15 ` [PATCH v1 3/7] dt-bindings: hwmon: " Michael Walle
2025-08-27 12:56 ` Krzysztof Kozlowski
2025-08-22 13:15 ` [PATCH v1 4/7] dt-bindings: watchdog: add SMARC-sAM67 support Michael Walle
2025-08-27 13:03 ` Krzysztof Kozlowski
2025-08-22 13:15 ` [PATCH v1 5/7] dt-bindings: nvmem: sl28cpld: add sa67mcu compatible Michael Walle
2025-08-27 12:57 ` Krzysztof Kozlowski
2025-08-22 13:15 ` [PATCH v1 6/7] hwmon: sl28cpld: add SMARC-sAM67 support Michael Walle
2025-08-22 13:15 ` [PATCH v1 7/7] arm64: dts: ti: Add support for Kontron SMARC-sAM67 Michael Walle
2025-08-27 13:31 ` Andrew Davis [this message]
2025-08-22 15:23 ` [PATCH v1 0/7] Initial Kontron SMARC-sAM67 support Nishanth Menon
2025-08-25 7:28 ` Michael Walle
2025-08-27 12:18 ` Michael Walle
2025-08-22 21:27 ` Rob Herring (Arm)
2025-08-25 7:53 ` Michael Walle
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=992fcb80-1a54-4d57-a764-d6ba77cb11e9@ti.com \
--to=afd@ti.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jdelvare@suse.com \
--cc=kristo@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lee@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-watchdog@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=mwalle@kernel.org \
--cc=nm@ti.com \
--cc=robh@kernel.org \
--cc=srini@kernel.org \
--cc=vigneshr@ti.com \
--cc=wim@linux-watchdog.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).