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.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
9 *
10 * SPDX-License-Identifier: Apache-2.0
11 */
12
13#ifndef ZEPHYR_INCLUDE_DRIVERS_MBOX_H_
14#define ZEPHYR_INCLUDE_DRIVERS_MBOX_H_
15
69#include <zephyr/kernel.h>
70#include <zephyr/device.h>
72
73#ifdef __cplusplus
74extern "C" {
75#endif
76
80struct mbox_msg {
82 const void *data;
83
85 size_t size;
86};
87
95 const struct device *dev;
96
99};
100
125#define MBOX_DT_CHANNEL_GET(node_id, name) \
126 { \
127 .dev = DEVICE_DT_GET(DT_MBOX_CTLR_BY_NAME(node_id, name)), \
128 .id = DT_MBOX_CHANNEL_BY_NAME(node_id, name), \
129 }
130
148typedef void (*mbox_callback_t)(const struct device *dev, uint32_t channel,
149 void *user_data, struct mbox_msg *data);
150
164typedef int (*mbox_send_t)(const struct device *dev, uint32_t channel,
165 const struct mbox_msg *msg);
166
174typedef int (*mbox_mtu_get_t)(const struct device *dev);
175
191typedef int (*mbox_register_callback_t)(const struct device *dev,
192 uint32_t channel,
194 void *user_data);
195
209typedef int (*mbox_set_enabled_t)(const struct device *dev, uint32_t channel, bool enable);
210
218typedef uint32_t (*mbox_max_channels_get_t)(const struct device *dev);
219
220__subsystem struct mbox_driver_api {
226};
227
240static inline void mbox_init_channel(struct mbox_channel *channel, const struct device *dev,
241 uint32_t ch_id)
242{
243 channel->dev = dev;
244 channel->id = ch_id;
245}
246
266__syscall int mbox_send(const struct mbox_channel *channel, const struct mbox_msg *msg);
267
268static inline int z_impl_mbox_send(const struct mbox_channel *channel, const struct mbox_msg *msg)
269{
270 const struct mbox_driver_api *api =
271 (const struct mbox_driver_api *)channel->dev->api;
272
273 if (api->send == NULL) {
274 return -ENOSYS;
275 }
276
277 return api->send(channel->dev, channel->id, msg);
278}
279
294static inline int mbox_register_callback(const struct mbox_channel *channel,
296 void *user_data)
297{
298 const struct mbox_driver_api *api =
299 (const struct mbox_driver_api *)channel->dev->api;
300
301 if (api->register_callback == NULL) {
302 return -ENOSYS;
303 }
304
305 return api->register_callback(channel->dev, channel->id, cb, user_data);
306}
307
327__syscall int mbox_mtu_get(const struct device *dev);
328
329static inline int z_impl_mbox_mtu_get(const struct device *dev)
330{
331 const struct mbox_driver_api *api =
332 (const struct mbox_driver_api *)dev->api;
333
334 if (api->mtu_get == NULL) {
335 return -ENOSYS;
336 }
337
338 return api->mtu_get(dev);
339}
340
364__syscall int mbox_set_enabled(const struct mbox_channel *channel, bool enable);
365
366static inline int z_impl_mbox_set_enabled(const struct mbox_channel *channel, bool enable)
367{
368 const struct mbox_driver_api *api =
369 (const struct mbox_driver_api *)channel->dev->api;
370
371 if (api->set_enabled == NULL) {
372 return -ENOSYS;
373 }
374
375 return api->set_enabled(channel->dev, channel->id, enable);
376}
377
388__syscall uint32_t mbox_max_channels_get(const struct device *dev);
389
390static inline uint32_t z_impl_mbox_max_channels_get(const struct device *dev)
391{
392 const struct mbox_driver_api *api =
393 (const struct mbox_driver_api *)dev->api;
394
395 if (api->max_channels_get == NULL) {
396 return -ENOSYS;
397 }
398
399 return api->max_channels_get(dev);
400}
401
402#ifdef __cplusplus
403}
404#endif
405
410#include <syscalls/mbox.h>
411
412#endif /* ZEPHYR_INCLUDE_DRIVERS_MBOX_H_ */
MBOX Devicetree macro public API header file.
int(* mbox_register_callback_t)(const struct device *dev, uint32_t channel, mbox_callback_t cb, void *user_data)
Callback API upon registration.
Definition: mbox.h:191
int mbox_send(const struct mbox_channel *channel, const struct mbox_msg *msg)
Try to send a message over the MBOX device.
int(* mbox_send_t)(const struct device *dev, uint32_t channel, const struct mbox_msg *msg)
Callback API to send MBOX messages.
Definition: mbox.h:164
void(* mbox_callback_t)(const struct device *dev, uint32_t channel, void *user_data, struct mbox_msg *data)
Callback API for incoming MBOX messages.
Definition: mbox.h:148
int mbox_set_enabled(const struct mbox_channel *channel, bool enable)
Enable (disable) interrupts and callbacks for inbound channels.
int(* mbox_mtu_get_t)(const struct device *dev)
Callback API to get maximum data size.
Definition: mbox.h:174
static void mbox_init_channel(struct mbox_channel *channel, const struct device *dev, uint32_t ch_id)
Initialize a channel struct.
Definition: mbox.h:240
int mbox_mtu_get(const struct device *dev)
Return the maximum number of bytes possible in an outbound message.
int(* mbox_set_enabled_t)(const struct device *dev, uint32_t channel, bool enable)
Callback API upon enablement of interrupts.
Definition: mbox.h:209
uint32_t(* mbox_max_channels_get_t)(const struct device *dev)
Callback API to get maximum number of channels.
Definition: mbox.h:218
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.
Definition: mbox.h:294
uint32_t mbox_max_channels_get(const struct device *dev)
Return the maximum number of channels.
#define ENOSYS
Function not implemented.
Definition: errno.h:83
Public kernel APIs.
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:387
Provides a type to hold an MBOX channel.
Definition: mbox.h:93
uint32_t id
Channel ID.
Definition: mbox.h:98
const struct device * dev
MBOX device pointer.
Definition: mbox.h:95
Definition: mbox.h:220
mbox_send_t send
Definition: mbox.h:221
mbox_mtu_get_t mtu_get
Definition: mbox.h:223
mbox_max_channels_get_t max_channels_get
Definition: mbox.h:224
mbox_register_callback_t register_callback
Definition: mbox.h:222
mbox_set_enabled_t set_enabled
Definition: mbox.h:225
Message struct (to hold data and its size).
Definition: mbox.h:80
size_t size
Size of the data.
Definition: mbox.h:85
const void * data
Pointer to the data sent in the message.
Definition: mbox.h:82