zephyr/drivers/mbox/mbox_nrf_vevif_event_tx.c
Krzysztof Chruściński 841e852513 drivers: mbox: nrf_vevif_event_tx: Fix errata 16 workaround
Pend until requested event is set before clearing it. Without that
check event could be cleared too early and APP core is not waken up.

Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
2025-03-11 11:34:44 +01:00

74 lines
1.7 KiB
C

/*
* Copyright (c) 2024 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/
#define DT_DRV_COMPAT nordic_nrf_vevif_event_tx
#include <zephyr/devicetree.h>
#include <zephyr/drivers/mbox.h>
#include <hal/nrf_vpr.h>
#include <hal/nrf_vpr_csr.h>
#include <hal/nrf_vpr_csr_vevif.h>
#define EVENTS_IDX_MAX NRF_VPR_EVENTS_TRIGGERED_MAX
#define VEVIF_EVENTS_NUM DT_INST_PROP(0, nordic_events)
#define VEVIF_EVENTS_MASK DT_INST_PROP(0, nordic_events_mask)
BUILD_ASSERT(DT_INST_PROP(0, nordic_events) <= NRF_VPR_EVENTS_TRIGGERED_COUNT,
"Number of events exceeds maximum");
static inline bool vevif_event_tx_is_valid(uint32_t id)
{
return (id < EVENTS_IDX_MAX) && ((VEVIF_EVENTS_MASK & BIT(id)) != 0U);
}
static int vevif_event_tx_send(const struct device *dev, uint32_t id, const struct mbox_msg *msg)
{
ARG_UNUSED(dev);
if (!vevif_event_tx_is_valid(id)) {
return -EINVAL;
}
if (msg != NULL) {
return -EMSGSIZE;
}
nrf_vpr_csr_vevif_events_trigger(BIT(id));
#if defined(CONFIG_MBOX_NRF_VEVIF_EVENT_USE_54L_ERRATA_16)
while (!(nrf_vpr_csr_vevif_events_get() & BIT(id))) {
;
}
nrf_vpr_csr_vevif_events_set(0);
#endif
return 0;
}
static int vevif_event_tx_mtu_get(const struct device *dev)
{
ARG_UNUSED(dev);
return 0;
}
static uint32_t vevif_event_tx_max_channels_get(const struct device *dev)
{
ARG_UNUSED(dev);
return VEVIF_EVENTS_NUM;
}
static DEVICE_API(mbox, vevif_event_tx_driver_api) = {
.send = vevif_event_tx_send,
.mtu_get = vevif_event_tx_mtu_get,
.max_channels_get = vevif_event_tx_max_channels_get,
};
DEVICE_DT_INST_DEFINE(0, NULL, NULL, NULL, NULL, POST_KERNEL, CONFIG_MBOX_INIT_PRIORITY,
&vevif_event_tx_driver_api);