aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAswath Govindraju <a-govindraju@ti.com>2021-08-26 21:28:58 +0530
committerTom Rini <trini@konsulko.com>2021-09-10 18:00:38 -0400
commit326d1748d54cb84f74a229216d42efa859fa71d1 (patch)
tree9e2eb52a61c279e2cf68b038921b3490050c2231
parentd42a1e4cf284b790842a934088c9bd2990a8db2e (diff)
downloadu-boot-326d1748d54cb84f74a229216d42efa859fa71d1.zip
u-boot-326d1748d54cb84f74a229216d42efa859fa71d1.tar.gz
u-boot-326d1748d54cb84f74a229216d42efa859fa71d1.tar.bz2
environment: ti: k3_dfu: Increase the size allocated for bootloader images in dfu_alt_info_ram
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>
-rw-r--r--include/environment/ti/k3_dfu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/environment/ti/k3_dfu.h b/include/environment/ti/k3_dfu.h
index 2f503b8..a16a3ad 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 */