mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 13:22:36 +00:00
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>
17 lines
480 B
Plaintext
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
|