mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay
@ 2024-01-12  9:17 Sjoerd Simons
  2024-01-12  9:17 ` [PATCH 1/2] arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0 Sjoerd Simons
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sjoerd Simons @ 2024-01-12  9:17 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: kernel, Conor Dooley, Krzysztof Kozlowski, Nishanth Menon,
	Rob Herring, Tero Kristo, Vignesh Raghavendra, devicetree,
	linux-kernel


The AM62x SoC can be booted from the first USB port using DFU. Set the
relevant boot tags for both


Sjoerd Simons (2):
  arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0
  arm64: dts: ti: k3-am625-beagleplay: Add boot phase tags for USB0

 arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts | 2 ++
 arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi | 2 ++
 2 files changed, 4 insertions(+)

-- 
2.43.0


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

* [PATCH 1/2] arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0
  2024-01-12  9:17 [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay Sjoerd Simons
@ 2024-01-12  9:17 ` Sjoerd Simons
  2024-01-12  9:17 ` [PATCH 2/2] arm64: dts: ti: k3-am625-beagleplay: " Sjoerd Simons
  2024-02-06  4:29 ` [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay Vignesh Raghavendra
  2 siblings, 0 replies; 4+ messages in thread
From: Sjoerd Simons @ 2024-01-12  9:17 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: kernel, Conor Dooley, Krzysztof Kozlowski, Nishanth Menon,
	Rob Herring, Tero Kristo, Vignesh Raghavendra, devicetree,
	linux-kernel

The USB0 port on the AM62x SK can be used for DFU booting. To enable
that functionality mark with bootph-all.

Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>
---

 arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
index 33768c02d8eb..d59a8a4c0ea5 100644
--- a/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-common.dtsi
@@ -460,6 +460,7 @@ mbox_m4_0: mbox-m4-0 {
 };
 
 &usbss0 {
+	bootph-all;
 	status = "okay";
 	ti,vbus-divider;
 };
@@ -470,6 +471,7 @@ &usbss1 {
 };
 
 &usb0 {
+	bootph-all;
 	#address-cells = <1>;
 	#size-cells = <0>;
 	usb-role-switch;
-- 
2.43.0


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

* [PATCH 2/2] arm64: dts: ti: k3-am625-beagleplay: Add boot phase tags for USB0
  2024-01-12  9:17 [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay Sjoerd Simons
  2024-01-12  9:17 ` [PATCH 1/2] arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0 Sjoerd Simons
@ 2024-01-12  9:17 ` Sjoerd Simons
  2024-02-06  4:29 ` [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay Vignesh Raghavendra
  2 siblings, 0 replies; 4+ messages in thread
From: Sjoerd Simons @ 2024-01-12  9:17 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: kernel, Conor Dooley, Krzysztof Kozlowski, Nishanth Menon,
	Rob Herring, Tero Kristo, Vignesh Raghavendra, devicetree,
	linux-kernel

The USB0 port on the beagleplay can be used for DFU booting. To enable
that functionality mark with bootph-all.

Signed-off-by: Sjoerd Simons <sjoerd@collabora.com>

---

 arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts b/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
index eadbdd9ffe37..1c243ec63dd8 100644
--- a/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
+++ b/arch/arm64/boot/dts/ti/k3-am625-beagleplay.dts
@@ -573,11 +573,13 @@ &mcu_i2c0 {
 };
 
 &usbss0 {
+	bootph-all;
 	ti,vbus-divider;
 	status = "okay";
 };
 
 &usb0 {
+	bootph-all;
 	dr_mode = "peripheral";
 };
 
-- 
2.43.0


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

* Re: [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay
  2024-01-12  9:17 [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay Sjoerd Simons
  2024-01-12  9:17 ` [PATCH 1/2] arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0 Sjoerd Simons
  2024-01-12  9:17 ` [PATCH 2/2] arm64: dts: ti: k3-am625-beagleplay: " Sjoerd Simons
@ 2024-02-06  4:29 ` Vignesh Raghavendra
  2 siblings, 0 replies; 4+ messages in thread
From: Vignesh Raghavendra @ 2024-02-06  4:29 UTC (permalink / raw)
  To: linux-arm-kernel, Sjoerd Simons
  Cc: Vignesh Raghavendra, kernel, Conor Dooley, Krzysztof Kozlowski,
	Nishanth Menon, Rob Herring, Tero Kristo, devicetree,
	linux-kernel

Hi Sjoerd Simons,

On Fri, 12 Jan 2024 10:17:06 +0100, Sjoerd Simons wrote:
> The AM62x SoC can be booted from the first USB port using DFU. Set the
> relevant boot tags for both
> 
> 
> Sjoerd Simons (2):
>   arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0
>   arm64: dts: ti: k3-am625-beagleplay: Add boot phase tags for USB0
> 
> [...]

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

[1/2] arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0
      commit: 524c8086a453b8df1002c1ccfa9f99589761fc80
[2/2] arm64: dts: ti: k3-am625-beagleplay: Add boot phase tags for USB0
      commit: f7d2844d848f8836e6a7923e3ea426f7be4f38d1

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
--
Vignesh


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

end of thread, other threads:[~2024-02-06  4:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-12  9:17 [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay Sjoerd Simons
2024-01-12  9:17 ` [PATCH 1/2] arm64: dts: ti: k3-am625-sk: Add boot phase tags for USB0 Sjoerd Simons
2024-01-12  9:17 ` [PATCH 2/2] arm64: dts: ti: k3-am625-beagleplay: " Sjoerd Simons
2024-02-06  4:29 ` [PATCH 0/2] Set boot tags for the usb0 port of AM62x SK and Beagleplay Vignesh Raghavendra

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

all inboxes | Powered by JetHome®