zephyr/drivers/mbox/Kconfig.nrf_vevif_event
Jakub Zymelka bace4a102d drivers: mbox: add initial driver for nRF VEVIF event
Add a mailbox driver for VEVIF events (VPR irq).
The driver can be built in either 'rx' or 'tx' configuration.
The VPR sends the event, so it uses the 'tx' configuration,
while the master core uses the 'rx' configuration of the driver
to receive the VPR events.

Signed-off-by: Jakub Zymelka <jakub.zymelka@nordicsemi.no>
2024-06-15 04:41:47 -04:00

17 lines
480 B
Plaintext

# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config MBOX_NRF_VEVIF_EVENT_RX
bool "nRF VEVIF event RX driver"
depends on DT_HAS_NORDIC_NRF_VEVIF_EVENT_RX_ENABLED
default y
help
Mailbox driver for receiving events triggered by VPR
config MBOX_NRF_VEVIF_EVENT_TX
bool "nRF VEVIF event TX driver"
depends on DT_HAS_NORDIC_NRF_VEVIF_EVENT_TX_ENABLED
default y
help
Mailbox driver for transmitting events from VPR to a remote core