u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] J7200/J721E: Fix USB DFU Boot mode
@ 2021-08-26 15:58 Aswath Govindraju
  2021-08-26 15:58 ` [PATCH v2 1/3] arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0 instance Aswath Govindraju
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Aswath Govindraju @ 2021-08-26 15:58 UTC (permalink / raw)
  Cc: Aswath Govindraju, Lokesh Vutla, Kevin Scholz, Praneeth Bajjuri,
	Nishanth Menon, Vignesh Raghavendra, Suman Anna, Simon Glass,
	Kishon Vijay Abraham I, Faiz Abbas, Tero Kristo, Dave Gerlach,
	Heiko Schocher, u-boot

The following series of patches fix USB DFU Boot mode in J7200 and J721E
SoC's.

changes since v1:
- synced up the size allocated for tispl.bin and u-boot.img in dfu ram env
  variable with that of OSPI and eMMC dfu env variables

Aswath Govindraju (3):
  arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0
    instance
  environment: ti: k3_dfu: Increase the size allocated for bootloader
    images in dfu_alt_info_ram
  configs: j72*_evm: Define the buffer sizes for dfu

 arch/arm/dts/k3-j721e-r5-common-proc-board.dts | 2 +-
 configs/j7200_evm_a72_defconfig                | 2 ++
 configs/j7200_evm_r5_defconfig                 | 1 +
 configs/j721e_evm_a72_defconfig                | 2 ++
 configs/j721e_evm_r5_defconfig                 | 1 +
 include/configs/j721e_evm.h                    | 2 --
 include/environment/ti/k3_dfu.h                | 4 ++--
 7 files changed, 9 insertions(+), 5 deletions(-)

-- 
2.17.1


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

* [PATCH v2 1/3] arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0 instance
  2021-08-26 15:58 [PATCH v2 0/3] J7200/J721E: Fix USB DFU Boot mode Aswath Govindraju
@ 2021-08-26 15:58 ` Aswath Govindraju
  2021-09-11 12:17   ` Tom Rini
  2021-08-26 15:58 ` [PATCH v2 2/3] environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram Aswath Govindraju
  2021-08-26 15:58 ` [PATCH v2 3/3] configs: j72*_evm: Define the buffer sizes for dfu Aswath Govindraju
  2 siblings, 1 reply; 7+ messages in thread
From: Aswath Govindraju @ 2021-08-26 15:58 UTC (permalink / raw)
  Cc: Aswath Govindraju, Lokesh Vutla, Kevin Scholz, Praneeth Bajjuri,
	Nishanth Menon, Vignesh Raghavendra, Suman Anna, Simon Glass,
	Kishon Vijay Abraham I, Faiz Abbas, Tero Kristo, Dave Gerlach,
	Heiko Schocher, u-boot

In the cdns3 usb driver, the clock name looked for is ref. Therefore, fix
the clock-names property in usb0 instance for proper initialization of
cdns3 usb gadget driver.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 arch/arm/dts/k3-j721e-r5-common-proc-board.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/dts/k3-j721e-r5-common-proc-board.dts b/arch/arm/dts/k3-j721e-r5-common-proc-board.dts
index a12607dc2f75..4b2362a5dd05 100644
--- a/arch/arm/dts/k3-j721e-r5-common-proc-board.dts
+++ b/arch/arm/dts/k3-j721e-r5-common-proc-board.dts
@@ -280,7 +280,7 @@
 	/delete-property/ assigned-clocks;
 	/delete-property/ assigned-clock-parents;
 	clocks = <&clk_19_2mhz>;
-	clock-names = "usb2_refclk";
+	clock-names = "ref";
 	pinctrl-names = "default";
 	pinctrl-0 = <&main_usbss0_pins_default>;
 	ti,vbus-divider;
-- 
2.17.1


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

* [PATCH v2 2/3] environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram
  2021-08-26 15:58 [PATCH v2 0/3] J7200/J721E: Fix USB DFU Boot mode Aswath Govindraju
  2021-08-26 15:58 ` [PATCH v2 1/3] arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0 instance Aswath Govindraju
@ 2021-08-26 15:58 ` Aswath Govindraju
  2021-09-11 12:17   ` Tom Rini
  2021-08-26 15:58 ` [PATCH v2 3/3] configs: j72*_evm: Define the buffer sizes for dfu Aswath Govindraju
  2 siblings, 1 reply; 7+ messages in thread
From: Aswath Govindraju @ 2021-08-26 15:58 UTC (permalink / raw)
  Cc: Aswath Govindraju, Lokesh Vutla, Kevin Scholz, Praneeth Bajjuri,
	Nishanth Menon, Vignesh Raghavendra, Suman Anna, Simon Glass,
	Kishon Vijay Abraham I, Faiz Abbas, Tero Kristo, Dave Gerlach,
	Heiko Schocher, u-boot

The size of u-boot.img is above 1MB and that of tispl.bin is close to 1MB,
in case of j721e. Therefore, increase the sizes allocated for tispl.bin and
u-boot.img to 2 MB and 4 MB respectively, in dfu_alt_info_ram environment
variable.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 include/environment/ti/k3_dfu.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/environment/ti/k3_dfu.h b/include/environment/ti/k3_dfu.h
index 2f503b8de880..a16a3adecaf9 100644
--- a/include/environment/ti/k3_dfu.h
+++ b/include/environment/ti/k3_dfu.h
@@ -40,7 +40,7 @@
 
 #define DFU_ALT_INFO_RAM \
 	"dfu_alt_info_ram=" \
-	"tispl.bin ram 0x80080000 0x100000;" \
-	"u-boot.img ram 0x81000000 0x100000\0" \
+	"tispl.bin ram 0x80080000 0x200000;" \
+	"u-boot.img ram 0x81000000 0x400000\0" \
 
 #endif /* __TI_DFU_H */
-- 
2.17.1


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

* [PATCH v2 3/3] configs: j72*_evm: Define the buffer sizes for dfu
  2021-08-26 15:58 [PATCH v2 0/3] J7200/J721E: Fix USB DFU Boot mode Aswath Govindraju
  2021-08-26 15:58 ` [PATCH v2 1/3] arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0 instance Aswath Govindraju
  2021-08-26 15:58 ` [PATCH v2 2/3] environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram Aswath Govindraju
@ 2021-08-26 15:58 ` Aswath Govindraju
  2021-09-11 12:17   ` Tom Rini
  2 siblings, 1 reply; 7+ messages in thread
From: Aswath Govindraju @ 2021-08-26 15:58 UTC (permalink / raw)
  Cc: Aswath Govindraju, Lokesh Vutla, Kevin Scholz, Praneeth Bajjuri,
	Nishanth Menon, Vignesh Raghavendra, Suman Anna, Simon Glass,
	Kishon Vijay Abraham I, Faiz Abbas, Tero Kristo, Dave Gerlach,
	Heiko Schocher, u-boot

On J721e R5 SPL, dfu buffer for loading sysfw.itb image gets allocated
before DRAM gets initialized. So, the buffer gets allocated in MCU L3
RAM. The current buffer size to be allocated is 256KB  and the available
total heap memory is 0x70000 (448KB). This leads to NOMEM errors during
allocation.

In other cases when constraints such as above are not present fix the size
of buffers to the sector size in OSPI for proper functioning.

Also, if CONFIG_SYS_DFU_DATA_BUF_SIZE is defined and
CONFIG_SYS_DFU_MAX_FILE_SIZE is not defined then the max file size for dfu
transfer is defined as CONFIG_SYS_DFU_DATA_BUF_SIZE.

Fix these by setting appropriate buffer sizes in their respective defconfig
files and defining the max file size as 8 MB which is the default dfu
buffer size.

Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 configs/j7200_evm_a72_defconfig | 2 ++
 configs/j7200_evm_r5_defconfig  | 1 +
 configs/j721e_evm_a72_defconfig | 2 ++
 configs/j721e_evm_r5_defconfig  | 1 +
 include/configs/j721e_evm.h     | 2 --
 5 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/configs/j7200_evm_a72_defconfig b/configs/j7200_evm_a72_defconfig
index 6fc7cabd6035..a449705a4055 100644
--- a/configs/j7200_evm_a72_defconfig
+++ b/configs/j7200_evm_a72_defconfig
@@ -97,6 +97,8 @@ CONFIG_CLK=y
 CONFIG_SPL_CLK=y
 CONFIG_CLK_CCF=y
 CONFIG_CLK_TI_SCI=y
+CONFIG_SYS_DFU_DATA_BUF_SIZE=0x40000
+CONFIG_SYS_DFU_MAX_FILE_SIZE=0x800000
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_DFU_SF=y
diff --git a/configs/j7200_evm_r5_defconfig b/configs/j7200_evm_r5_defconfig
index f9fe41a434ab..b12a6414ce0e 100644
--- a/configs/j7200_evm_r5_defconfig
+++ b/configs/j7200_evm_r5_defconfig
@@ -53,6 +53,7 @@ CONFIG_SPL_SPI_LOAD=y
 CONFIG_SYS_SPI_U_BOOT_OFFS=0x80000
 CONFIG_SPL_USB_GADGET=y
 CONFIG_SPL_DFU=y
+CONFIG_SYS_DFU_DATA_BUF_SIZE=0x40000
 CONFIG_SPL_YMODEM_SUPPORT=y
 CONFIG_HUSH_PARSER=y
 CONFIG_CMD_DFU=y
diff --git a/configs/j721e_evm_a72_defconfig b/configs/j721e_evm_a72_defconfig
index d01bacdea19f..ea83fec69f1c 100644
--- a/configs/j721e_evm_a72_defconfig
+++ b/configs/j721e_evm_a72_defconfig
@@ -96,6 +96,8 @@ CONFIG_CLK_TI_SCI=y
 CONFIG_DFU_MMC=y
 CONFIG_DFU_RAM=y
 CONFIG_DFU_SF=y
+CONFIG_SYS_DFU_DATA_BUF_SIZE=0x20000
+CONFIG_SYS_DFU_MAX_FILE_SIZE=0x800000
 CONFIG_DMA_CHANNELS=y
 CONFIG_TI_K3_NAVSS_UDMA=y
 CONFIG_USB_FUNCTION_FASTBOOT=y
diff --git a/configs/j721e_evm_r5_defconfig b/configs/j721e_evm_r5_defconfig
index e8841ba953cc..cd72d27b6392 100644
--- a/configs/j721e_evm_r5_defconfig
+++ b/configs/j721e_evm_r5_defconfig
@@ -51,6 +51,7 @@ CONFIG_SPL_SPI_LOAD=y
 CONFIG_SYS_SPI_U_BOOT_OFFS=0x80000
 CONFIG_SPL_USB_GADGET=y
 CONFIG_SPL_DFU=y
+CONFIG_SYS_DFU_DATA_BUF_SIZE=0x5000
 CONFIG_SPL_YMODEM_SUPPORT=y
 CONFIG_HUSH_PARSER=y
 CONFIG_CMD_DFU=y
diff --git a/include/configs/j721e_evm.h b/include/configs/j721e_evm.h
index 18b80ef8ce7d..10555d1a6ca7 100644
--- a/include/configs/j721e_evm.h
+++ b/include/configs/j721e_evm.h
@@ -155,9 +155,7 @@
 #define EXTRA_ENV_CONFIG_MAIN_CPSW0_QSGMII_PHY
 #endif
 
-/* set default dfu_bufsiz to 128KB (sector size of OSPI) */
 #define EXTRA_ENV_DFUARGS \
-	"dfu_bufsiz=0x20000\0" \
 	DFU_ALT_INFO_MMC \
 	DFU_ALT_INFO_EMMC \
 	DFU_ALT_INFO_RAM \
-- 
2.17.1


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

* Re: [PATCH v2 1/3] arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0 instance
  2021-08-26 15:58 ` [PATCH v2 1/3] arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0 instance Aswath Govindraju
@ 2021-09-11 12:17   ` Tom Rini
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2021-09-11 12:17 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Lokesh Vutla, Kevin Scholz, Praneeth Bajjuri, Nishanth Menon,
	Vignesh Raghavendra, Suman Anna, Simon Glass,
	Kishon Vijay Abraham I, Faiz Abbas, Tero Kristo, Dave Gerlach,
	Heiko Schocher, u-boot

[-- Attachment #1: Type: text/plain, Size: 360 bytes --]

On Thu, Aug 26, 2021 at 09:28:57PM +0530, Aswath Govindraju wrote:

> In the cdns3 usb driver, the clock name looked for is ref. Therefore, fix
> the clock-names property in usb0 instance for proper initialization of
> cdns3 usb gadget driver.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: [PATCH v2 2/3] environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram
  2021-08-26 15:58 ` [PATCH v2 2/3] environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram Aswath Govindraju
@ 2021-09-11 12:17   ` Tom Rini
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2021-09-11 12:17 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Lokesh Vutla, Kevin Scholz, Praneeth Bajjuri, Nishanth Menon,
	Vignesh Raghavendra, Suman Anna, Simon Glass,
	Kishon Vijay Abraham I, Faiz Abbas, Tero Kristo, Dave Gerlach,
	Heiko Schocher, u-boot

[-- Attachment #1: Type: text/plain, Size: 428 bytes --]

On Thu, Aug 26, 2021 at 09:28:58PM +0530, Aswath Govindraju wrote:

> The size of u-boot.img is above 1MB and that of tispl.bin is close to 1MB,
> in case of j721e. Therefore, increase the sizes allocated for tispl.bin and
> u-boot.img to 2 MB and 4 MB respectively, in dfu_alt_info_ram environment
> variable.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: [PATCH v2 3/3] configs: j72*_evm: Define the buffer sizes for dfu
  2021-08-26 15:58 ` [PATCH v2 3/3] configs: j72*_evm: Define the buffer sizes for dfu Aswath Govindraju
@ 2021-09-11 12:17   ` Tom Rini
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2021-09-11 12:17 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Lokesh Vutla, Kevin Scholz, Praneeth Bajjuri, Nishanth Menon,
	Vignesh Raghavendra, Suman Anna, Simon Glass,
	Kishon Vijay Abraham I, Faiz Abbas, Tero Kristo, Dave Gerlach,
	Heiko Schocher, u-boot

[-- Attachment #1: Type: text/plain, Size: 1007 bytes --]

On Thu, Aug 26, 2021 at 09:28:59PM +0530, Aswath Govindraju wrote:

> On J721e R5 SPL, dfu buffer for loading sysfw.itb image gets allocated
> before DRAM gets initialized. So, the buffer gets allocated in MCU L3
> RAM. The current buffer size to be allocated is 256KB  and the available
> total heap memory is 0x70000 (448KB). This leads to NOMEM errors during
> allocation.
> 
> In other cases when constraints such as above are not present fix the size
> of buffers to the sector size in OSPI for proper functioning.
> 
> Also, if CONFIG_SYS_DFU_DATA_BUF_SIZE is defined and
> CONFIG_SYS_DFU_MAX_FILE_SIZE is not defined then the max file size for dfu
> transfer is defined as CONFIG_SYS_DFU_DATA_BUF_SIZE.
> 
> Fix these by setting appropriate buffer sizes in their respective defconfig
> files and defining the max file size as 8 MB which is the default dfu
> buffer size.
> 
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2021-09-11 12:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-26 15:58 [PATCH v2 0/3] J7200/J721E: Fix USB DFU Boot mode Aswath Govindraju
2021-08-26 15:58 ` [PATCH v2 1/3] arm: dts: k3-j721e-r5-*.dts: Fix clock-names property in the usb0 instance Aswath Govindraju
2021-09-11 12:17   ` Tom Rini
2021-08-26 15:58 ` [PATCH v2 2/3] environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram Aswath Govindraju
2021-09-11 12:17   ` Tom Rini
2021-08-26 15:58 ` [PATCH v2 3/3] configs: j72*_evm: Define the buffer sizes for dfu Aswath Govindraju
2021-09-11 12:17   ` Tom Rini

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).