Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
MBOX Interface

MBOX Interface. More...

Data Structures

struct  mbox_msg
 Message struct (to hold data and its size). More...
 
struct  mbox_channel
 Provides a type to hold an MBOX channel. More...
 
struct  mbox_driver_api
 

Macros

#define MBOX_DT_CHANNEL_GET(node_id, name)
 Structure initializer for mbox_channel from devicetree.
 

Typedefs

typedef void(* mbox_callback_t) (const struct device *dev, uint32_t channel, void *user_data, struct mbox_msg *data)
 Callback API for incoming MBOX messages.
 
typedef int(* mbox_send_t) (const struct device *dev, uint32_t channel, const struct mbox_msg *msg)
 Callback API to send MBOX messages.
 
typedef int(* mbox_mtu_get_t) (const struct device *dev)
 Callback API to get maximum data size.
 
typedef int(* mbox_register_callback_t) (const struct device *dev, uint32_t channel, mbox_callback_t cb, void *user_data)
 Callback API upon registration.
 
typedef int(* mbox_set_enabled_t) (const struct device *dev, uint32_t channel, bool enable)
 Callback API upon enablement of interrupts.
 
typedef uint32_t(* mbox_max_channels_get_t) (const struct device *dev)
 Callback API to get maximum number of channels.
 

Functions

static void mbox_init_channel (struct mbox_channel *channel, const struct device *dev, uint32_t ch_id)
 Initialize a channel struct.
 
int mbox_send (const struct mbox_channel *channel, const struct mbox_msg *msg)
 Try to send a message over the MBOX device.
 
static int mbox_register_callback (const struct mbox_channel *channel, mbox_callback_t cb, void *user_data)
 Register a callback function on a channel for incoming messages.
 
int mbox_mtu_get (const struct device *dev)
 Return the maximum number of bytes possible in an outbound message.
 
int mbox_set_enabled (const struct mbox_channel *channel, bool enable)
 Enable (disable) interrupts and callbacks for inbound channels.
 
uint32_t mbox_max_channels_get (const struct device *dev)
 Return the maximum number of channels.
 

Detailed Description

MBOX Interface.

CPU #1 |
+----------+ | +----------+
| +---TX9----+ +--------+--RX8---+ |
| dev A | | | | | CPU #2 |
| <---RX8--+ | | +------+--TX9---> |
+----------+ | | | | | +----------+
+--+-v---v-+--+ |
| | |
| MBOX dev | |
| | |
+--+-^---^--+-+ |
+----------+ | | | | | +----------+
| <---RX2--+ | | +-----+--TX3---> |
| dev B | | | | | CPU #3 |
| +---TX3----+ +--------+--RX2---+ |
+----------+ | +----------+
|

An MBOX device is a peripheral capable of passing signals (and data depending on the peripheral) between CPUs and clusters in the system. Each MBOX instance is providing one or more channels, each one targeting one other CPU cluster (multiple channels can target the same cluster).

For example in the plot the device 'dev A' is using the TX channel 9 to signal (or send data to) the CPU #2 and it's expecting data or signals on the RX channel 8. Thus it can send the message through the channel 9, and it can register a callback on the channel 8 of the MBOX device.

This API supports two modes: signalling mode and data transfer mode.

In signalling mode:

In data transfer mode:

Macro Definition Documentation

◆ MBOX_DT_CHANNEL_GET

#define MBOX_DT_CHANNEL_GET (   node_id,
  name 
)

#include <zephyr/drivers/mbox.h>

Value:
{ \
.dev = DEVICE_DT_GET(DT_MBOX_CTLR_BY_NAME(node_id, name)), \
.id = DT_MBOX_CHANNEL_BY_NAME(node_id, name), \
}
#define DEVICE_DT_GET(node_id)
Get a device reference from a devicetree node identifier.
Definition: device.h:229
#define DT_MBOX_CHANNEL_BY_NAME(node_id, name)
Get a MBOX channel value by name.
Definition: mbox.h:89
#define DT_MBOX_CTLR_BY_NAME(node_id, name)
Get the node identifier for the MBOX controller from a mboxes property by name.
Definition: mbox.h:52

Structure initializer for mbox_channel from devicetree.

This helper macro expands to a static initializer for a mbox_channel by reading the relevant device controller and channel number from the devicetree.

Example devicetree fragment:

mbox1: mbox-controller@... { ... };

n: node {
        mboxes = <&mbox1 8>,
                 <&mbox1 9>;
        mbox-names = "tx", "rx";
};

Example usage:

const struct mbox_channel channel = MBOX_DT_CHANNEL_GET(DT_NODELABEL(n), tx);
Parameters
node_idDevicetree node identifier for the MBOX device
namelowercase-and-underscores name of the mboxes element

Typedef Documentation

◆ mbox_callback_t

mbox_callback_t

#include <zephyr/drivers/mbox.h>

Callback API for incoming MBOX messages.

These callbacks execute in interrupt context. Therefore, use only interrupt-safe APIS. Registration of callbacks is done via mbox_register_callback()

The data parameter must be NULL in signalling mode.

Parameters
devDriver instance
channelChannel ID
user_dataPointer to some private data provided at registration time
dataMessage struct

◆ mbox_max_channels_get_t

mbox_max_channels_get_t

#include <zephyr/drivers/mbox.h>

Callback API to get maximum number of channels.

See mbox_max_channels_get() for argument definitions.

◆ mbox_mtu_get_t

mbox_mtu_get_t

#include <zephyr/drivers/mbox.h>

Callback API to get maximum data size.

See mbox_mtu_get() for argument definitions.

◆ mbox_register_callback_t

mbox_register_callback_t

#include <zephyr/drivers/mbox.h>

Callback API upon registration.

See mbox_register_callback() for function description

Parameters
devDriver instance
channelChannel ID
cbCallback function to execute on incoming message interrupts.
user_dataApplication-specific data pointer which will be passed to the callback function when executed.
Returns
See return values for mbox_register_callback()

◆ mbox_send_t

mbox_send_t

#include <zephyr/drivers/mbox.h>

Callback API to send MBOX messages.

See mbox_send() for function description

Parameters
devDriver instance
channelChannel ID
msgMessage struct
Returns
See return values for mbox_send()

◆ mbox_set_enabled_t

mbox_set_enabled_t

#include <zephyr/drivers/mbox.h>

Callback API upon enablement of interrupts.

See mbox_set_enabled() for function description

Parameters
devDriver instance
channelChannel ID
enableSet to 0 to disable and to nonzero to enable.
Returns
See return values for mbox_set_enabled()

Function Documentation

◆ mbox_init_channel()

static void mbox_init_channel ( struct mbox_channel channel,
const struct device dev,
uint32_t  ch_id 
)
inlinestatic

#include <zephyr/drivers/mbox.h>

Initialize a channel struct.

Initialize an mbox_channel passed by the user with a provided MBOX device and channel ID. This function is needed when the information about the device and the channel ID is not in the DT. In the DT case MBOX_DT_CHANNEL_GET() must be used instead.

Parameters
channelPointer to the channel struct
devDriver instance
ch_idChannel ID

◆ mbox_max_channels_get()

uint32_t mbox_max_channels_get ( const struct device dev)

#include <zephyr/drivers/mbox.h>

Return the maximum number of channels.

Return the maximum number of channels supported by the hardware.

Parameters
devDriver instance pointer.
Returns
Maximum possible number of supported channels on success, negative value on error.

◆ mbox_mtu_get()

int mbox_mtu_get ( const struct device dev)

#include <zephyr/drivers/mbox.h>

Return the maximum number of bytes possible in an outbound message.

Returns the actual number of bytes that it is possible to send through an outgoing channel.

This number can be 0 when the driver only supports signalling or when on the receiving side the content and size of the message must be retrieved in an indirect way (i.e. probing some other peripheral, reading memory regions, etc...).

If this function returns 0, the msg parameter in mbox_send() is expected to be NULL.

Parameters
devDriver instance pointer.
Returns
Maximum possible size of a message in bytes, 0 for signalling, negative value on error.

◆ mbox_register_callback()

static int mbox_register_callback ( const struct mbox_channel channel,
mbox_callback_t  cb,
void *  user_data 
)
inlinestatic

#include <zephyr/drivers/mbox.h>

Register a callback function on a channel for incoming messages.

This function doesn't assume anything concerning the status of the interrupts. Use mbox_set_enabled() to enable or to disable the interrupts if needed.

Parameters
channelChannel instance pointer.
cbCallback function to execute on incoming message interrupts.
user_dataApplication-specific data pointer which will be passed to the callback function when executed.
Return values
0On success, negative value on error.

◆ mbox_send()

int mbox_send ( const struct mbox_channel channel,
const struct mbox_msg msg 
)

#include <zephyr/drivers/mbox.h>

Try to send a message over the MBOX device.

Send a message over an mbox_channel. The msg parameter must be NULL when the driver is used for signalling.

If the msg parameter is not NULL, this data is expected to be delivered on the receiving side using the data parameter of the receiving callback.

Parameters
channelChannel instance pointer
msgPointer to the message struct
Return values
-EBUSYIf the remote hasn't yet read the last data sent.
-EMSGSIZEIf the supplied data size is unsupported by the driver.
-EINVALIf there was a bad parameter, such as: too-large channel descriptor or the device isn't an outbound MBOX channel.
0On success, negative value on error.

◆ mbox_set_enabled()

int mbox_set_enabled ( const struct mbox_channel channel,
bool  enable 
)

#include <zephyr/drivers/mbox.h>

Enable (disable) interrupts and callbacks for inbound channels.

Enable interrupt for the channel when the parameter 'enable' is set to true. Disable it otherwise.

Immediately after calling this function with 'enable' set to true, the channel is considered enabled and ready to receive signal and messages (even already pending), so the user must take care of installing a proper callback (if needed) using mbox_register_callback() on the channel before enabling it. For this reason it is recommended that all the channels are disabled at probe time.

Enabling a channel for which there is no installed callback is considered undefined behavior (in general the driver must take care of gracefully handling spurious interrupts with no installed callback).

Parameters
channelChannel instance pointer.
enableSet to 0 to disable and to nonzero to enable.
Return values
0On success.
-EINVALIf it isn't an inbound channel.