diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2020-03-12 22:39:52 -0700 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-03-14 09:12:47 +0530 |
commit | 9275ed39492a3924a780a24a2c85b97807726965 (patch) | |
tree | 351069cb8ce5fae7aa627c9917dbc1548e6253ec /platform | |
parent | 9aabba2665f0e58df97d4fbf85d1b5a1b29a2e29 (diff) |
platform: ariane-fpga: Set per-HART stack size to 8KB
Recent commit
4a603eb ("platform: kendryte/k210: Set per-HART stack size to 8KB")
forgot to update ariane-fpga codes, and the following commit
678c3c3 ("include: sbi_scratch: Set per-HART scratch size to 4KB")
changed the per-HART scratch size to 4KB, which potentially breaks
ariane-fpga platform.
This patch set per-HART stack size of ariane-fpga to 8KB for consistency.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'platform')
-rw-r--r-- | platform/ariane-fpga/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ariane-fpga/platform.c b/platform/ariane-fpga/platform.c index cc8429b..9d9207e 100644 --- a/platform/ariane-fpga/platform.c +++ b/platform/ariane-fpga/platform.c @@ -201,6 +201,6 @@ const struct sbi_platform platform = { .name = "ARIANE RISC-V", .features = SBI_ARIANE_FEATURES, .hart_count = ARIANE_HART_COUNT, - .hart_stack_size = 4096, + .hart_stack_size = 8192, .platform_ops_addr = (unsigned long)&platform_ops }; |