zephyr/drivers/mbox/Kconfig.nrf_vevif
Gerard Marull-Paretas 78c40fe31b drivers: mbox: add initial driver for nRF VEVIF
Add a mailbox driver for VEVIF. The driver can be built in either
'local' or 'remote' configuration. This depends on the existence of the
'interrupts' property, which signals that the instance is managed
locally. VEVIF is, as expected, always managed by a VPR core.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
2024-03-05 16:50:36 +00:00

17 lines
476 B
Plaintext

# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config MBOX_NRF_VEVIF_LOCAL
bool "nRF VEVIF local driver"
depends on DT_HAS_NORDIC_NRF_VEVIF_LOCAL_ENABLED
default y
help
Mailbox driver for local Nordic nRF VEVIF (VPR Event Interface)
config MBOX_NRF_VEVIF_REMOTE
bool "nRF VEVIF remote driver"
depends on DT_HAS_NORDIC_NRF_VEVIF_REMOTE_ENABLED
default y
help
Mailbox driver for remote Nordic nRF VEVIF (VPR Event Interface)