Commit 8091e938 authored by Jakub Zymelka's avatar Jakub Zymelka Committed by Anas Nashif
Browse files

drivers: mbox: nrf: Change VEVIFs and BELLBOARD nomenclature



Renaming 'LOCAL' to 'RX' and 'REMOTE' to 'TX'.
This seems more descriptive and intuitive to use.

Signed-off-by: default avatarJakub Zymelka <jakub.zymelka@nordicsemi.no>
parent c7b36517
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -10,10 +10,10 @@ zephyr_library_sources_ifdef(CONFIG_MBOX_NXP_S32_MRU mbox_nxp_s32_mru.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NXP_IMX_MU   mbox_nxp_imx_mu.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NXP_MAILBOX   mbox_nxp_mailbox.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_ANDES_PLIC_SW   mbox_andes_plic_sw.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_VEVIF_LOCAL mbox_nrf_vevif_local.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_VEVIF_REMOTE mbox_nrf_vevif_remote.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_VEVIF_TASK_RX mbox_nrf_vevif_task_rx.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_VEVIF_TASK_TX mbox_nrf_vevif_task_tx.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_VEVIF_EVENT_RX mbox_nrf_vevif_event_rx.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_VEVIF_EVENT_TX mbox_nrf_vevif_event_tx.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_BELLBOARD_LOCAL mbox_nrf_bellboard_local.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_BELLBOARD_REMOTE mbox_nrf_bellboard_remote.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_BELLBOARD_RX mbox_nrf_bellboard_rx.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_NRF_BELLBOARD_TX mbox_nrf_bellboard_tx.c)
zephyr_library_sources_ifdef(CONFIG_MBOX_STM32_HSEM   mbox_stm32_hsem.c)
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ source "drivers/mbox/Kconfig.nxp_s32"
source "drivers/mbox/Kconfig.nxp_imx"
source "drivers/mbox/Kconfig.nxp_mailbox"
source "drivers/mbox/Kconfig.andes"
source "drivers/mbox/Kconfig.nrf_vevif"
source "drivers/mbox/Kconfig.nrf_vevif_task"
source "drivers/mbox/Kconfig.nrf_vevif_event"
source "drivers/mbox/Kconfig.nrf_bellboard"
source "drivers/mbox/Kconfig.stm32_hsem"
+8 −8
Original line number Diff line number Diff line
# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0

config MBOX_NRF_BELLBOARD_LOCAL
	bool "nRF BELLBOARD local driver"
	depends on DT_HAS_NORDIC_NRF_BELLBOARD_LOCAL_ENABLED
config MBOX_NRF_BELLBOARD_RX
	bool "nRF BELLBOARD RX driver"
	depends on DT_HAS_NORDIC_NRF_BELLBOARD_RX_ENABLED
	default y
	help
	  Mailbox driver for local Nordic nRF BELLBOARD
	  Mailbox driver for RX Nordic nRF BELLBOARD

config MBOX_NRF_BELLBOARD_REMOTE
	bool "nRF BELLBOARD remote driver"
	depends on DT_HAS_NORDIC_NRF_BELLBOARD_REMOTE_ENABLED
config MBOX_NRF_BELLBOARD_TX
	bool "nRF BELLBOARD TX driver"
	depends on DT_HAS_NORDIC_NRF_BELLBOARD_TX_ENABLED
	default y
	help
	  Mailbox driver for remote Nordic nRF BELLBOARD
	  Mailbox driver for TX Nordic nRF BELLBOARD

drivers/mbox/Kconfig.nrf_vevif

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
# 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)
+16 −0
Original line number Diff line number Diff line
# Copyright (c) 2024 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0

config MBOX_NRF_VEVIF_TASK_RX
	bool "nRF VEVIF task RX driver"
	depends on DT_HAS_NORDIC_NRF_VEVIF_TASK_RX_ENABLED
	default y
	help
	  Mailbox driver for receiving VEVIF tasks on VPR as CLIC interrupts

config MBOX_NRF_VEVIF_TASK_TX
	bool "nRF VEVIF task TX driver"
	depends on DT_HAS_NORDIC_NRF_VEVIF_TASK_TX_ENABLED
	default y
	help
	  Mailbox driver for transmitting VEVIF tasks to VPR as CLIC interrupts
Loading