diff options
| author | Shengyu Qu <[email protected]> | 2023-08-09 21:11:31 +0800 |
|---|---|---|
| committer | Leo Yu-Chi Liang <[email protected]> | 2023-08-10 10:58:12 +0800 |
| commit | d365f6646aa4ecaabc58c07ecc432a3177f13138 (patch) | |
| tree | f483d31ac436a9f89fab68c9b67179995d88c0ea | |
| parent | 7d79bed00c9e02187a09e74e90c5bd5a927a6a61 (diff) | |
riscv: Kconfig: Add SPL_ZERO_MEM_BEFORE_USE
Add a Kconfig item to allow SPL to clear stack/GD/malloc area before
using them.
Signed-off-by: Bo Gan <[email protected]>
Signed-off-by: Shengyu Qu <[email protected]>
Reviewed-by: Leo Yu-Chi Liang <[email protected]>
| -rw-r--r-- | arch/riscv/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig index 867cbcbe74e..6771d8d9198 100644 --- a/arch/riscv/Kconfig +++ b/arch/riscv/Kconfig @@ -64,6 +64,14 @@ config SPL_SYS_DCACHE_OFF help Do not enable data cache in SPL. +config SPL_ZERO_MEM_BEFORE_USE + bool "Zero memory before use" + depends on SPL + default n + help + Zero stack/GD/malloc area in SPL before using them, this is needed for + Sifive core devices that uses L2 cache to store SPL. + # board-specific options below source "board/AndesTech/ae350/Kconfig" source "board/emulation/qemu-riscv/Kconfig" |
