diff options
author | Patryk Biel | 2023-09-20 09:41:20 +0200 |
---|---|---|
committer | Tom Rini | 2023-10-09 15:24:31 -0400 |
commit | 3d0fa4a4385e78a26096d9d806cfca6d8a7b7404 (patch) | |
tree | 9bb20515349171e3257719b433104cd5e0017155 /configs | |
parent | deb746e0f6a22696e5c752e56755436e7e39d028 (diff) |
ARM: vexpress_ca9x4: Add missing flash width config option
Allow for a proper configuration of CFI flash banks avaialble on the vexpress_ca9x4
board. Without this option, the CFI flash incorrectly detects that the board has two
banks of 32MB flash devices, while in reality, the board provides
two flash banks, each with 64MB size. As a result, it becomes impossible to e.g. to
save u-boot env in flash. According to device tree for this board and
its implementation in QEMU, the CFI width should be set to 32 bits.
After applying this fix, CFI flash will correctly detect both flash
banks each with a size of 64MB. As as result the functionality of e.g. saving u-boot
env will work correctly.
Tested on QEMU 6.2.0.
Cc: Kristian Amlie <kristian.amlie@northern.tech>
Signed-off-by: Patryk Biel <pbiel7@gmail.com>
Reviewed-by: Kristian Amlie <kristian.amlie@northern.tech>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/vexpress_ca9x4_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/vexpress_ca9x4_defconfig b/configs/vexpress_ca9x4_defconfig index 5cacecc7cbc..ac9c0e1d717 100644 --- a/configs/vexpress_ca9x4_defconfig +++ b/configs/vexpress_ca9x4_defconfig @@ -55,3 +55,4 @@ CONFIG_SMC911X_32_BIT=y CONFIG_BAUDRATE=38400 CONFIG_CONS_INDEX=0 CONFIG_SYS_TIMER_COUNTS_DOWN=y +CONFIG_SYS_FLASH_CFI_WIDTH_32BIT=y |