1# Copyright (c) 2024, Felipe Neves
2# SPDX-License-Identifier: Apache-2.0
3
4config MBOX_IVSHMEM
5	bool "MBOX driver based on IVSHMEM-Doorbell"
6	default y
7	depends on DT_HAS_LINARO_IVSHMEM_MBOX_ENABLED
8	depends on IVSHMEM
9	depends on IVSHMEM_DOORBELL
10	help
11	  Mailbox driver using IVSHMEM Doorbell mechanism.
12
13if MBOX_IVSHMEM
14
15config MBOX_IVSHMEM_EVENT_LOOP_STACK_SIZE
16	int "Stack size in bytes of IVSHMEM MBOX Event loop task"
17	default 8192
18	help
19	  Adjust the stack size, in bytes of the ivshmem event loop task.
20
21config MBOX_IVSHMEM_EVENT_LOOP_PRIO
22	int "Priority of IVSHMEM MBOX Event loop task"
23	default 2
24	help
25	  Adjust the priority of the ivshmem event loop task.
26
27endif
28