1# Copyright (c) 2021 Andes Technology Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4if SOC_RISCV_ANDES_AE350
5
6config SOC
7	default "ae350"
8
9config SYS_CLOCK_TICKS_PER_SEC
10	default 100 if (!ICACHE || XIP)
11
12config MAIN_STACK_SIZE
13	default 2048
14
15config IDLE_STACK_SIZE
16	default 1536
17
18config PRIVILEGED_STACK_SIZE
19	default 2048 if 64BIT
20
21config TEST_EXTRA_STACK_SIZE
22	default 2048 if 64BIT
23
24config MP_MAX_NUM_CPUS
25	default 1
26	range 1 8
27
28endif # SOC_RISCV_ANDES_AE350
29