78c40fe31b
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>
17 lines
476 B
Plaintext
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)
|