* [PATCH v3 0/3] arm64: dts: ti: use ti,am62-mcan compatible for m_can devices
@ 2026-09-12 21:32 Kendall Willis
2026-09-12 21:32 ` [PATCH v3 1/3] arm64: dts: ti: k3-am62: " Kendall Willis
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Kendall Willis @ 2026-09-12 21:32 UTC (permalink / raw)
To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: s-kochidanadu, a-kaur, s-tripathi1, vishalm, k-willis,
linux-arm-kernel, devicetree, linux-kernel
This series prepends "ti,am62-mcan" compatible to the m_can devices in
the TI AM62 family of devices. By adding this compatible, this series
adds out-of-band wakeup support for m_can devices.
Dependency
----------
This series depends on the "can: m_can: introduce ti,am62-mcan compatible
for out-of-band wakeup" [1] series which implements the "ti,am62-mcan"
compatible in the m_can driver and dt bindings.
Testing
-------
Tested suspend/resume with CAN wakeup on AM62P SK EVM.
[1] https://lore.kernel.org/all/20260912-temp-v5-0-2e3201c02109@ti.com/
Signed-off-by: Kendall Willis <k-willis@ti.com>
---
Changes in v3:
- Renamed compatible from "ti,am62-m_can" to "ti,am62-mcan".
- Extended coverage to main domain m_can nodes in addition to MCU domain nodes.
- Link to v2: https://lore.kernel.org/r/20260902-smth-v2-0-b3678ca44c7b@ti.com
Changes in v2:
- Removed "out-band-wakeup" device tree property.
- Add "ti,am62-m_can" compatible to m_can devices.
- Link to v1: https://lore.kernel.org/r/20260820-smth-v1-0-e1738a38d58e@ti.com
---
Kendall Willis (3):
arm64: dts: ti: k3-am62: use ti,am62-mcan compatible for m_can devices
arm64: dts: ti: k3-am62a: use ti,am62-mcan compatible for m_can devices
arm64: dts: ti: k3-am62p: use ti,am62-mcan compatible for m_can devices
arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 2 +-
arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi | 4 ++--
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi | 4 ++--
arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi | 4 ++--
arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi | 4 ++--
6 files changed, 10 insertions(+), 10 deletions(-)
---
base-commit: df2908090cda368b01ff43709f51890076c56157
change-id: 20260819-smth-6fb189fc148f
Best regards,
--
Kendall Willis <k-willis@ti.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v3 1/3] arm64: dts: ti: k3-am62: use ti,am62-mcan compatible for m_can devices
2026-09-12 21:32 [PATCH v3 0/3] arm64: dts: ti: use ti,am62-mcan compatible for m_can devices Kendall Willis
@ 2026-09-12 21:32 ` Kendall Willis
2026-09-12 21:40 ` sashiko-bot
2026-09-12 21:32 ` [PATCH v3 2/3] arm64: dts: ti: k3-am62a: " Kendall Willis
2026-09-12 21:32 ` [PATCH v3 3/3] arm64: dts: ti: k3-am62p: " Kendall Willis
2 siblings, 1 reply; 7+ messages in thread
From: Kendall Willis @ 2026-09-12 21:32 UTC (permalink / raw)
To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: s-kochidanadu, a-kaur, s-tripathi1, vishalm, k-willis,
linux-arm-kernel, devicetree, linux-kernel
Prepend "ti,am62-mcan" to the m_can device compatible property since
this compatible adds out-of-band wakeup functionality. The m_can pins
can be a wakeup source in the deepest low power states, despite being
in power domains which are OFF during deeper low power states since
it has the out-of-band wakeup capability.
Signed-off-by: Kendall Willis <k-willis@ti.com>
---
arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 2 +-
arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index c5ee263d34a62ef46b416ffa45bc2ec5c28d010a..4c7e793d84a0e0f2ad3084ae41ae7ba97e8e2b62 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -933,7 +933,7 @@ eqep2: counter@23220000 {
};
main_mcan0: can@20701000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x20701000 0x00 0x200>,
<0x00 0x20708000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
diff --git a/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi
index 68e906796aefebc5eaaa5a231e56105a9cdd13e5..a21e3b889159b2ed8ea05af8543a589e96ff143d 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-mcu.dtsi
@@ -152,7 +152,7 @@ mcu_rti0: watchdog@4880000 {
};
mcu_mcan0: can@4e08000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x4e08000 0x00 0x200>,
<0x00 0x4e00000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
@@ -164,7 +164,7 @@ mcu_mcan0: can@4e08000 {
};
mcu_mcan1: can@4e18000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x4e18000 0x00 0x200>,
<0x00 0x4e10000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v3 2/3] arm64: dts: ti: k3-am62a: use ti,am62-mcan compatible for m_can devices
2026-09-12 21:32 [PATCH v3 0/3] arm64: dts: ti: use ti,am62-mcan compatible for m_can devices Kendall Willis
2026-09-12 21:32 ` [PATCH v3 1/3] arm64: dts: ti: k3-am62: " Kendall Willis
@ 2026-09-12 21:32 ` Kendall Willis
2026-09-12 21:40 ` sashiko-bot
2026-09-12 21:32 ` [PATCH v3 3/3] arm64: dts: ti: k3-am62p: " Kendall Willis
2 siblings, 1 reply; 7+ messages in thread
From: Kendall Willis @ 2026-09-12 21:32 UTC (permalink / raw)
To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: s-kochidanadu, a-kaur, s-tripathi1, vishalm, k-willis,
linux-arm-kernel, devicetree, linux-kernel
Prepend "ti,am62-mcan" to the m_can device compatible property since
this compatible adds out-of-band wakeup functionality. The m_can pins
can be a wakeup source in the deepest low power states, despite being
in power domains which are OFF during deeper low power states since
it has the out-of-band wakeup capability.
Signed-off-by: Kendall Willis <k-willis@ti.com>
---
arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 2 +-
arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
index 9e5b75a4e88e23c74270b667a0a02d5efd931532..1552029fe4d4945b8fbe87792719c7ec7335bebb 100644
--- a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
@@ -848,7 +848,7 @@ mailbox0_cluster3: mailbox@29030000 {
};
main_mcan0: can@20701000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x20701000 0x00 0x200>,
<0x00 0x20708000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
diff --git a/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi
index d22caa7c346b35dcb11163a5e73e17790ff751dd..b9a66e884434132dbfe93811578ca436e8c6103f 100644
--- a/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi
@@ -152,7 +152,7 @@ mcu_rti0: watchdog@4880000 {
};
mcu_mcan0: can@4e08000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x4e08000 0x00 0x200>,
<0x00 0x4e00000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
@@ -164,7 +164,7 @@ mcu_mcan0: can@4e08000 {
};
mcu_mcan1: can@4e18000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x4e18000 0x00 0x200>,
<0x00 0x4e10000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v3 3/3] arm64: dts: ti: k3-am62p: use ti,am62-mcan compatible for m_can devices
2026-09-12 21:32 [PATCH v3 0/3] arm64: dts: ti: use ti,am62-mcan compatible for m_can devices Kendall Willis
2026-09-12 21:32 ` [PATCH v3 1/3] arm64: dts: ti: k3-am62: " Kendall Willis
2026-09-12 21:32 ` [PATCH v3 2/3] arm64: dts: ti: k3-am62a: " Kendall Willis
@ 2026-09-12 21:32 ` Kendall Willis
2026-09-12 21:41 ` sashiko-bot
2 siblings, 1 reply; 7+ messages in thread
From: Kendall Willis @ 2026-09-12 21:32 UTC (permalink / raw)
To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: s-kochidanadu, a-kaur, s-tripathi1, vishalm, k-willis,
linux-arm-kernel, devicetree, linux-kernel
Prepend "ti,am62-mcan" to the m_can device compatible property since
this compatible adds out-of-band wakeup functionality. The m_can pins
can be a wakeup source in the deepest low power states, despite being
in power domains which are OFF during deeper low power states since
it has the out-of-band wakeup capability.
Signed-off-by: Kendall Willis <k-willis@ti.com>
---
arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi | 4 ++--
arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
index f130c7cb998d797f918e5017b4434496dca6067c..9e8d9246f61699c0788a50d21c1f3fd0f39b1741 100644
--- a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
@@ -883,7 +883,7 @@ eqep2: counter@23220000 {
};
main_mcan0: can@20701000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x20701000 0x00 0x200>,
<0x00 0x20708000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
@@ -898,7 +898,7 @@ main_mcan0: can@20701000 {
};
main_mcan1: can@20711000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x20711000 0x00 0x200>,
<0x00 0x20718000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
diff --git a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi
index 5288c959f3c1aecfde363f9e2440253545591171..3db8b63ef01fefd5177272a7e895317dc6d5921b 100644
--- a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi
@@ -154,7 +154,7 @@ mcu_rti0: watchdog@4880000 {
};
mcu_mcan0: can@4e08000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x4e08000 0x00 0x200>,
<0x00 0x4e00000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
@@ -169,7 +169,7 @@ mcu_mcan0: can@4e08000 {
};
mcu_mcan1: can@4e18000 {
- compatible = "bosch,m_can";
+ compatible = "ti,am62-mcan", "bosch,m_can";
reg = <0x00 0x4e18000 0x00 0x200>,
<0x00 0x4e10000 0x00 0x8000>;
reg-names = "m_can", "message_ram";
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/3] arm64: dts: ti: k3-am62: use ti,am62-mcan compatible for m_can devices
2026-09-12 21:32 ` [PATCH v3 1/3] arm64: dts: ti: k3-am62: " Kendall Willis
@ 2026-09-12 21:40 ` sashiko-bot
0 siblings, 0 replies; 7+ messages in thread
From: sashiko-bot @ 2026-09-12 21:40 UTC (permalink / raw)
To: Kendall Willis; +Cc: robh, conor+dt, devicetree
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The compatible string 'ti,am62-mcan' is used in the device tree but is not documented in the dt-bindings, causing dtbs validation failures.
--
commit 38209444ad0c4e93f314506da051123caab882d5
Author: Kendall Willis <k-willis@ti.com>
arm64: dts: ti: k3-am62: use ti,am62-mcan compatible for m_can devices
This commit prepends the ti,am62-mcan compatible string to m_can devices
in the AM62 device trees to indicate out-of-band wakeup capabilities.
> diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
> index c5ee263d34a62..4c7e793d84a0e 100644
> --- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
> @@ -933,7 +933,7 @@ eqep2: counter@23220000 {
> };
>
> main_mcan0: can@20701000 {
> - compatible = "bosch,m_can";
> + compatible = "ti,am62-mcan", "bosch,m_can";
[Severity: Low]
Is the ti,am62-mcan compatible string documented in the dt-bindings?
Running make dtbs_check on the generated device trees for k3-am62 platforms
will fail validation because the dt-binding for bosch,m_can strictly requires
the compatible property to be const: bosch,m_can and does not accept the new
ti,am62-mcan string or an array of strings.
Does this patch depend on a separate dt-bindings update that needs to be
applied first, or should the bosch,m_can binding be updated alongside this
change?
[ ... ]
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260912-smth-v3-0-6fa661ae5a4c@ti.com?part=1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 2/3] arm64: dts: ti: k3-am62a: use ti,am62-mcan compatible for m_can devices
2026-09-12 21:32 ` [PATCH v3 2/3] arm64: dts: ti: k3-am62a: " Kendall Willis
@ 2026-09-12 21:40 ` sashiko-bot
0 siblings, 0 replies; 7+ messages in thread
From: sashiko-bot @ 2026-09-12 21:40 UTC (permalink / raw)
To: Kendall Willis; +Cc: robh, conor+dt, devicetree
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The newly added devicetree compatible string 'ti,am62-mcan' is undocumented in the DT bindings, causing schema validation violations.
--
commit 92a95f8fe8cc6fc6551c41c8019698e288ff900b
Author: Kendall Willis <k-willis@ti.com>
arm64: dts: ti: k3-am62a: use ti,am62-mcan compatible for m_can devices
Prepends the "ti,am62-mcan" compatible to the m_can devices in the
k3-am62a-main and k3-am62a-mcu device trees to support out-of-band wakeup.
This enables the m_can pins to serve as wakeup sources even when power
domains are off during deep low power states.
> diff --git a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
> index 9e5b75a4e88e2..1552029fe4d49 100644
> --- a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi
> @@ -848,7 +848,7 @@ mailbox0_cluster3: mailbox@29030000 {
> };
>
> main_mcan0: can@20701000 {
> - compatible = "bosch,m_can";
> + compatible = "ti,am62-mcan", "bosch,m_can";
[Severity: Low]
Does this new compatible string cause schema validation regressions during
dtbs_check? It appears that "ti,am62-mcan" has not been added to the DT
bindings documentation.
> reg = <0x00 0x20701000 0x00 0x200>,
> <0x00 0x20708000 0x00 0x8000>;
[ ... ]
> diff --git a/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi
> index d22caa7c346b3..b9a66e8844341 100644
> --- a/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am62a-mcu.dtsi
> @@ -152,7 +152,7 @@ mcu_rti0: watchdog@4880000 {
> };
>
> mcu_mcan0: can@4e08000 {
> - compatible = "bosch,m_can";
> + compatible = "ti,am62-mcan", "bosch,m_can";
[Severity: Low]
Are we missing a corresponding update to the bosch,m_can.yaml binding file
to document this new string for mcu_mcan0 and mcu_mcan1 as well?
> reg = <0x00 0x4e08000 0x00 0x200>,
> <0x00 0x4e00000 0x00 0x8000>;
> reg-names = "m_can", "message_ram";
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260912-smth-v3-0-6fa661ae5a4c@ti.com?part=2
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 3/3] arm64: dts: ti: k3-am62p: use ti,am62-mcan compatible for m_can devices
2026-09-12 21:32 ` [PATCH v3 3/3] arm64: dts: ti: k3-am62p: " Kendall Willis
@ 2026-09-12 21:41 ` sashiko-bot
0 siblings, 0 replies; 7+ messages in thread
From: sashiko-bot @ 2026-09-12 21:41 UTC (permalink / raw)
To: Kendall Willis; +Cc: robh, conor+dt, devicetree
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The new compatible string 'ti,am62-mcan' is not documented or permitted by the corresponding device tree binding schema.
--
commit c9a5bd5e593b159b3d44f9ab0c75ab2dacec0f49
Author: Kendall Willis <k-willis@ti.com>
arm64: dts: ti: k3-am62p: use ti,am62-mcan compatible for m_can devices
This commit prepends the "ti,am62-mcan" compatible string to the m_can devices
in the device tree for the AM62p. The new compatible string adds out-of-band
wakeup functionality.
> diff --git a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
> index f130c7cb998d7..9e8d9246f6169 100644
> --- a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi
> @@ -883,7 +883,7 @@ eqep2: counter@23220000 {
> };
>
> main_mcan0: can@20701000 {
> - compatible = "bosch,m_can";
> + compatible = "ti,am62-mcan", "bosch,m_can";
[Severity: Low]
Does this change cause make dtbs_check to fail for the main_mcan0 and
main_mcan1 nodes?
Looking at Documentation/devicetree/bindings/net/can/bosch,m_can.yaml, the
schema expects the compatible property to be exactly the constant string:
compatible:
const: bosch,m_can
Without updating the device tree binding schema to permit the new
"ti,am62-mcan" string alongside "bosch,m_can", it appears the schema
validation will reject these nodes.
[ ... ]
> diff --git a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi
> index 5288c959f3c1a..3db8b63ef01fe 100644
> --- a/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-am62p-j722s-common-mcu.dtsi
> @@ -154,7 +154,7 @@ mcu_rti0: watchdog@4880000 {
> };
>
> mcu_mcan0: can@4e08000 {
> - compatible = "bosch,m_can";
> + compatible = "ti,am62-mcan", "bosch,m_can";
[Severity: Low]
Will this also trigger a dtbs_check validation failure for the mcu_mcan0 and
mcu_mcan1 nodes?
The same schema documentation issue applies here. Is there a missing
prerequisite patch to update the yaml binding?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260912-smth-v3-0-6fa661ae5a4c@ti.com?part=3
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-09-12 21:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-12 21:32 [PATCH v3 0/3] arm64: dts: ti: use ti,am62-mcan compatible for m_can devices Kendall Willis
2026-09-12 21:32 ` [PATCH v3 1/3] arm64: dts: ti: k3-am62: " Kendall Willis
2026-09-12 21:40 ` sashiko-bot
2026-09-12 21:32 ` [PATCH v3 2/3] arm64: dts: ti: k3-am62a: " Kendall Willis
2026-09-12 21:40 ` sashiko-bot
2026-09-12 21:32 ` [PATCH v3 3/3] arm64: dts: ti: k3-am62p: " Kendall Willis
2026-09-12 21:41 ` sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox