public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board
@ 2026-01-15 13:14 Michael Walle
  2026-01-15 13:14 ` [PATCH 1/2] arm64: dts: ti: sa67: fix CMA node Michael Walle
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Michael Walle @ 2026-01-15 13:14 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Udit Kumar, linux-arm-kernel, devicetree, linux-kernel,
	Michael Walle

This patch series contains two small fixes for the sa67 board. The
CMA patch will fix larger screen resolutions for accelerated
graphics for example.

Michael Walle (2):
  arm64: dts: ti: sa67: fix CMA node
  arm64: dts: ti: sa67: fix SD card regulator

 arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.47.3


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] arm64: dts: ti: sa67: fix CMA node
  2026-01-15 13:14 [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
@ 2026-01-15 13:14 ` Michael Walle
  2026-01-15 13:14 ` [PATCH 2/2] arm64: dts: ti: sa67: fix SD card regulator Michael Walle
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Walle @ 2026-01-15 13:14 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Udit Kumar, linux-arm-kernel, devicetree, linux-kernel,
	Michael Walle

Fix the size of the CMA node by making it a 64bit size. This was
probably a copy&paste mistake. Also drop the unneeded alignment.

Fixes: 1c3c4df06f9d ("arm64: dts: ti: Add support for Kontron SMARC-sAM67")
Signed-off-by: Michael Walle <mwalle@kernel.org>
---
 arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts
index bfcbecd8ef33..db59ec4e4106 100644
--- a/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts
+++ b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts
@@ -85,8 +85,7 @@ reserved_memory: reserved-memory {
 		linux,cma {
 			compatible = "shared-dma-pool";
 			reusable;
-			size = <0x10000000>;
-			alignment = <0x2000>;
+			size = <0x0 0x10000000>;
 			linux,cma-default;
 		};
 
-- 
2.47.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] arm64: dts: ti: sa67: fix SD card regulator
  2026-01-15 13:14 [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
  2026-01-15 13:14 ` [PATCH 1/2] arm64: dts: ti: sa67: fix CMA node Michael Walle
@ 2026-01-15 13:14 ` Michael Walle
  2026-01-15 13:22 ` [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
  2026-01-16 14:37 ` Nishanth Menon
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Walle @ 2026-01-15 13:14 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Udit Kumar, linux-arm-kernel, devicetree, linux-kernel,
	Michael Walle

The property "enable-active-high" was missing, as the default is
active-low. Add it.

Fixes: 1c3c4df06f9d ("arm64: dts: ti: Add support for Kontron SMARC-sAM67")
Signed-off-by: Michael Walle <mwalle@kernel.org>
---
 arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts
index db59ec4e4106..ffc95bb32551 100644
--- a/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts
+++ b/arch/arm64/boot/dts/ti/k3-am67a-kontron-sa67-base.dts
@@ -173,6 +173,7 @@ vcc_3p3_sd_vio_s0: regulator-6 {
 		regulator-max-microvolt = <3300000>;
 		vin-supply = <&vcc_3p3_s0>;
 		regulator-boot-on;
+		enable-active-high;
 		enable-gpios = <&main_gpio0 7 GPIO_ACTIVE_HIGH>;
 		gpios = <&main_gpio0 8 GPIO_ACTIVE_HIGH>;
 		states = <3300000 0x0>,
-- 
2.47.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board
  2026-01-15 13:14 [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
  2026-01-15 13:14 ` [PATCH 1/2] arm64: dts: ti: sa67: fix CMA node Michael Walle
  2026-01-15 13:14 ` [PATCH 2/2] arm64: dts: ti: sa67: fix SD card regulator Michael Walle
@ 2026-01-15 13:22 ` Michael Walle
  2026-01-16 14:37 ` Nishanth Menon
  3 siblings, 0 replies; 5+ messages in thread
From: Michael Walle @ 2026-01-15 13:22 UTC (permalink / raw)
  To: Michael Walle, Nishanth Menon, Vignesh Raghavendra, Tero Kristo,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley
  Cc: Udit Kumar, linux-arm-kernel, devicetree, linux-kernel

Hi,

Borked the subject of the cover letter. It should have been:

arm64: dts: ti: sa67: some minor fixes for the SMARC-sAM67 board

-michael

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board
  2026-01-15 13:14 [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
                   ` (2 preceding siblings ...)
  2026-01-15 13:22 ` [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
@ 2026-01-16 14:37 ` Nishanth Menon
  3 siblings, 0 replies; 5+ messages in thread
From: Nishanth Menon @ 2026-01-16 14:37 UTC (permalink / raw)
  To: Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Michael Walle
  Cc: Nishanth Menon, Udit Kumar, linux-arm-kernel, devicetree,
	linux-kernel

Hi Michael Walle,

On Thu, 15 Jan 2026 14:14:17 +0100, Michael Walle wrote:
> This patch series contains two small fixes for the sa67 board. The
> CMA patch will fix larger screen resolutions for accelerated
> graphics for example.
> 
> Michael Walle (2):
>   arm64: dts: ti: sa67: fix CMA node
>   arm64: dts: ti: sa67: fix SD card regulator
> 
> [...]

I have applied the following to branch ti-k3-dts-next on [1].

I had minor cosmetic fixups in the series, do report if i need to
drop the patch series if the changes I have done is not ok.

Thank you!

[1/2] arm64: dts: ti: sa67: fix CMA node
      commit: 11a6a5bb72ce271de24330fd859e83f7bc281609
[2/2] arm64: dts: ti: sa67: fix SD card regulator
      commit: 53289af62b66812d07a7b0f5f9d62f429c94d317

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D
https://ti.com/opensource


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-01-16 14:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-15 13:14 [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
2026-01-15 13:14 ` [PATCH 1/2] arm64: dts: ti: sa67: fix CMA node Michael Walle
2026-01-15 13:14 ` [PATCH 2/2] arm64: dts: ti: sa67: fix SD card regulator Michael Walle
2026-01-15 13:22 ` [PATCH 0/2] Some minor fixes for the SMARC-sAM67 board Michael Walle
2026-01-16 14:37 ` Nishanth Menon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox