1# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig MBOX
5	bool "Multi-Channel Inter-Processor Mailbox (MBOX) drivers"
6	help
7	  Include multi-channel interrupt-based inter-processor mailboxes
8	  drivers in system configuration
9
10if MBOX
11
12# Include these first so that any properties (e.g. defaults) below can be
13# overridden (by defining symbols in multiple locations)
14source "drivers/mbox/Kconfig.nrfx"
15source "drivers/mbox/Kconfig.nxp_s32"
16source "drivers/mbox/Kconfig.nxp_imx"
17source "drivers/mbox/Kconfig.andes"
18
19config MBOX_INIT_PRIORITY
20	int "MBOX init priority"
21	default 40
22	help
23	  MBOX driver device initialization priority.
24
25module = MBOX
26module-str = mbox
27source "subsys/logging/Kconfig.template.log_config"
28
29endif # MBOX
30