Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
icmsg.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_IPC_ICMSG_H_
8#define ZEPHYR_INCLUDE_IPC_ICMSG_H_
9
10#include <stddef.h>
11#include <stdint.h>
12#include <zephyr/kernel.h>
13#include <zephyr/drivers/mbox.h>
15#include <zephyr/ipc/pbuf.h>
16#include <zephyr/sys/atomic.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
71
77
83
85 /* Tx/Rx buffers. */
86 struct pbuf *tx_pb;
87 struct pbuf *rx_pb;
88#ifdef CONFIG_IPC_SERVICE_ICMSG_SHMEM_ACCESS_SYNC
89 struct k_mutex tx_lock;
90#endif
91
92 /* Callbacks for an endpoint. */
93 const struct ipc_service_cb *cb;
94 void *ctx;
95
96 /* General */
97 const struct icmsg_config_t *cfg;
98#ifdef CONFIG_MULTITHREADING
99 struct k_work mbox_work;
100#endif
104};
105
130int icmsg_open(const struct icmsg_config_t *conf,
131 struct icmsg_data_t *dev_data,
132 const struct ipc_service_cb *cb, void *ctx);
133
148int icmsg_close(const struct icmsg_config_t *conf,
149 struct icmsg_data_t *dev_data);
150
169int icmsg_send(const struct icmsg_config_t *conf,
170 struct icmsg_data_t *dev_data,
171 const void *msg, size_t len);
172
177#ifdef __cplusplus
178}
179#endif
180
181#endif /* ZEPHYR_INCLUDE_IPC_ICMSG_H_ */
long atomic_t
Definition atomic_types.h:15
int icmsg_close(const struct icmsg_config_t *conf, struct icmsg_data_t *dev_data)
Close an icmsg instance.
int icmsg_send(const struct icmsg_config_t *conf, struct icmsg_data_t *dev_data, const void *msg, size_t len)
Send a message to the remote icmsg instance.
int icmsg_open(const struct icmsg_config_t *conf, struct icmsg_data_t *dev_data, const struct ipc_service_cb *cb, void *ctx)
Open an icmsg instance.
icmsg_state
Definition icmsg.h:29
icmsg_unbound_mode
Definition icmsg.h:72
@ ICMSG_STATE_DISCONNECTED
Instance was closed on remote side.
Definition icmsg.h:56
@ ICMSG_STATE_CONNECTED_SID_ENABLED
Instance is connected with session handshake support.
Definition icmsg.h:69
@ ICMSG_STATE_INITIALIZING_SID_DISABLED
Instance is initializing without session handshake.
Definition icmsg.h:37
@ ICMSG_STATE_INITIALIZING_SID_DETECT
Instance is initializing with detection of session handshake support on remote side.
Definition icmsg.h:50
@ ICMSG_STATE_OFF
Instance is not initialized yet.
Definition icmsg.h:32
@ ICMSG_STATE_CONNECTED_SID_DISABLED
Instance is connected without session handshake support.
Definition icmsg.h:63
@ ICMSG_STATE_INITIALIZING_SID_ENABLED
Instance is initializing with session handshake.
Definition icmsg.h:43
@ ICMSG_UNBOUND_MODE_DETECT
Definition icmsg.h:75
@ ICMSG_UNBOUND_MODE_ENABLE
Definition icmsg.h:74
@ ICMSG_UNBOUND_MODE_DISABLE
Definition icmsg.h:73
Public kernel APIs.
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Definition icmsg.h:78
struct mbox_dt_spec mbox_tx
Definition icmsg.h:79
struct mbox_dt_spec mbox_rx
Definition icmsg.h:80
enum icmsg_unbound_mode unbound_mode
Definition icmsg.h:81
Definition icmsg.h:84
const struct ipc_service_cb * cb
Definition icmsg.h:93
uint16_t remote_sid
Definition icmsg.h:101
uint16_t local_sid
Definition icmsg.h:102
const struct icmsg_config_t * cfg
Definition icmsg.h:97
struct pbuf * tx_pb
Definition icmsg.h:86
struct pbuf * rx_pb
Definition icmsg.h:87
void * ctx
Definition icmsg.h:94
atomic_t state
Definition icmsg.h:103
Event callback structure.
Definition ipc_service.h:145
Mutex Structure.
Definition kernel.h:3025
A structure used to submit work.
Definition kernel.h:4006
MBOX specification from DT.
Definition mbox.h:87
Scure packed buffer.
Definition pbuf.h:99