1# Copyright (c) 2023 Intel Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "SMP test"
5
6source "Kconfig.zephyr"
7
8config SMP_TEST_RUN_FACTOR
9	int "Run factor for stressing tests, such as 'switch torture', \
10		as a percentage"
11	default 100
12
13config SMP_IPI_NUM_ITERS
14	int "Number of iterations to run the SMP IPI test"
15	default 3
16	help
17	  Number of times to run the SMP IPI broadcast test.
18
19config SMP_IPI_WAIT_MS
20	int "Milliseconds to wait for SMP IPI per iteration"
21	default 100
22	help
23	  How long to wait for broadcast IPI to be processed
24	  on other processor(s).
25
26config SMP_IPI_WAIT_RETRIES
27	int "Retries to wait for SMP IPI per iteration"
28	default 3
29	help
30	  Number of retries waiting for broadcast IPI to be
31	  processed on other processor(s). Each retry the wait
32	  is for CONFIG_SMP_IPI_WAIT_MS milliseconds.
33