configs: am62x_evm_*: Set DFU buffer size to 256k
authorJonathan Humphreys <j-humphreys@ti.com>
Fri, 20 Dec 2024 21:53:34 +0000 (15:53 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 21 Jan 2025 15:27:41 +0000 (09:27 -0600)
commit9b5ff131d0be0ba1443977b5eaae75eadefa10ce
tree8f83f94cb340547d17cb0c1d7babf6e44a6705ab
parent9698e8ddbf95ea366d748b03c41c07416d312d23
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 <j-humphreys@ti.com>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
configs/am62x_a53_usbdfu.config
configs/am62x_r5_usbdfu.config