diff options
| author | Jonathan Humphreys <[email protected]> | 2024-12-20 15:53:34 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-01-21 09:27:41 -0600 |
| commit | 9b5ff131d0be0ba1443977b5eaae75eadefa10ce (patch) | |
| tree | 8f83f94cb340547d17cb0c1d7babf6e44a6705ab /configs/am62x_a53_usbdfu.config | |
| parent | 9698e8ddbf95ea366d748b03c41c07416d312d23 (diff) | |
configs: am62x_evm_*: Set DFU buffer size to 256k
OSPI flash writing was broken on am62x SKs as the OSPI flash device has a
256k sector size but was set to 20k. This breaks OSPI flash writes because
the current implementation of the SF DFU backend requires that the DFU data
buffer size be the same as the sector erase size, and the USB DFU config
fragment (for both A53 and R5) reduced the size of the DFU data buffer,
presumably so that it can fit into SPL's much smaller heap.
Change the SYS_DFU_DATA_BUF_SIZE to the erase sector size, which still fits
within the post-relocation heap size in SPL.
Fixes: dfc2dff5a844 ("configs: am62x_evm_*: Enable USB and DFU support")
Signed-off-by: Jonathan Humphreys <[email protected]>
Reviewed-by: Roger Quadros <[email protected]>
Reviewed-by: Mattijs Korpershoek <[email protected]>
Diffstat (limited to 'configs/am62x_a53_usbdfu.config')
| -rw-r--r-- | configs/am62x_a53_usbdfu.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/am62x_a53_usbdfu.config b/configs/am62x_a53_usbdfu.config index 0d3c6df1e73..812f99ee70b 100644 --- a/configs/am62x_a53_usbdfu.config +++ b/configs/am62x_a53_usbdfu.config @@ -10,7 +10,7 @@ CONFIG_SYSCON=y CONFIG_SPL_SYSCON=y CONFIG_DFU_MMC=y CONFIG_DFU_RAM=y -CONFIG_SYS_DFU_DATA_BUF_SIZE=0x5000 +CONFIG_SYS_DFU_DATA_BUF_SIZE=0x40000 CONFIG_SYS_DFU_MAX_FILE_SIZE=0x800000 CONFIG_USB=y CONFIG_DM_USB_GADGET=y |
