Fix: add heap size to fix cpu 59-63 offline when linux smp bringup

Signed-off-by: Xiaoguang Xing <xiaoguang.xing@sophgo.com>
This commit is contained in:
Xiaoguang Xing
2024-08-28 17:20:50 +08:00
parent 91259a7058
commit 14a44c33ba

View File

@@ -152,7 +152,7 @@ struct sbi_platform_operations {
/** Platform default heap size */
#define SBI_PLATFORM_DEFAULT_HEAP_SIZE(__num_hart) \
(0x8000 + 0x800 * (__num_hart))
(0x8000 + 0x1000 * (__num_hart))
/** Representation of a platform */
struct sbi_platform {