15#ifndef ZEPHYR_INCLUDE_RTIO_SQE_H_
16#define ZEPHYR_INCLUDE_RTIO_SQE_H_
50#define RTIO_PRIO_LOW 0U
55#define RTIO_PRIO_NORM 127U
60#define RTIO_PRIO_HIGH 255U
81#define RTIO_SQE_CHAINED BIT(0)
93#define RTIO_SQE_TRANSACTION BIT(1)
105#define RTIO_SQE_MEMPOOL_BUFFER BIT(2)
113#define RTIO_SQE_CANCELED BIT(3)
121#define RTIO_SQE_MULTISHOT BIT(4)
126#define RTIO_SQE_NO_RESPONSE BIT(5)
144#define RTIO_OP_RX (RTIO_OP_NOP+1)
147#define RTIO_OP_TX (RTIO_OP_RX+1)
150#define RTIO_OP_TINY_TX (RTIO_OP_TX+1)
153#define RTIO_OP_CALLBACK (RTIO_OP_TINY_TX+1)
156#define RTIO_OP_TXRX (RTIO_OP_CALLBACK+1)
159#define RTIO_OP_DELAY (RTIO_OP_TXRX+1)
162#define RTIO_OP_I2C_RECOVER (RTIO_OP_DELAY+1)
165#define RTIO_OP_I2C_CONFIGURE (RTIO_OP_I2C_RECOVER+1)
168#define RTIO_OP_I3C_RECOVER (RTIO_OP_I2C_CONFIGURE+1)
171#define RTIO_OP_I3C_CONFIGURE (RTIO_OP_I3C_RECOVER+1)
174#define RTIO_OP_I3C_CCC (RTIO_OP_I3C_CONFIGURE+1)
177#define RTIO_OP_AWAIT (RTIO_OP_I3C_CCC+1)
194#define RTIO_IODEV_I2C_STOP BIT(1)
199#define RTIO_IODEV_I2C_RESTART BIT(2)
204#define RTIO_IODEV_I2C_10_BITS BIT(3)
220#define RTIO_IODEV_I3C_STOP BIT(1)
225#define RTIO_IODEV_I3C_RESTART BIT(2)
230#define RTIO_IODEV_I3C_HDR BIT(3)
235#define RTIO_IODEV_I3C_NBCH BIT(4)
240#define RTIO_IODEV_I3C_HDR_MODE_MASK GENMASK(15, 8)
245#define RTIO_IODEV_I3C_HDR_MODE_SET(flags) \
246 FIELD_PREP(RTIO_IODEV_I3C_HDR_MODE_MASK, flags)
251#define RTIO_IODEV_I3C_HDR_MODE_GET(flags) \
252 FIELD_GET(RTIO_IODEV_I3C_HDR_MODE_MASK, flags)
257#define RTIO_IODEV_I3C_HDR_CMD_CODE_MASK GENMASK(22, 16)
262#define RTIO_IODEV_I3C_HDR_CMD_CODE_SET(flags) \
263 FIELD_PREP(RTIO_IODEV_I3C_HDR_CMD_CODE_MASK, flags)
268#define RTIO_IODEV_I3C_HDR_CMD_CODE_GET(flags) \
269 FIELD_GET(RTIO_IODEV_I3C_HDR_CMD_CODE_MASK, flags)
357#ifdef CONFIG_RTIO_OP_DELAY
404#if CONFIG_RTIO_SQE_CACHELINE_CHECK
405#ifdef CONFIG_DCACHE_LINE_SIZE
406#define RTIO_CACHE_LINE_SIZE CONFIG_DCACHE_LINE_SIZE
408#define RTIO_CACHE_LINE_SIZE 64
411 "RTIO performs best when the submissions queue entries are less than a cache line")
500 const uint8_t *tiny_write_data,
504 __ASSERT_NO_MSG(tiny_write_len <=
sizeof(sqe->
tiny_tx.
buf));
615 int8_t prio,
void *userdata)
617 __ASSERT_NO_MSG(iodev !=
NULL);
647#ifdef CONFIG_RTIO_OP_DELAY
656 sqe->delay.timeout = timeout;
660#define rtio_sqe_prep_delay(sqe, timeout, userdata) \
661 BUILD_ASSERT(false, "CONFIG_RTIO_OP_DELAY not enabled")
715 return iodev_sqe->
next;
736 callback(iodev_sqe, userdata);
743struct rtio_sqe_pool {
747 struct rtio_iodev_sqe *pool;
750static inline struct rtio_iodev_sqe *rtio_sqe_pool_alloc(
struct rtio_sqe_pool *pool)
765static inline void rtio_sqe_pool_free(
struct rtio_sqe_pool *pool,
struct rtio_iodev_sqe *iodev_sqe)
776#define Z_RTIO_SQE_POOL_DEFINE(name, sz) \
777 static struct rtio_iodev_sqe CONCAT(_sqe_pool_, name)[sz]; \
778 STRUCT_SECTION_ITERABLE(rtio_sqe_pool, name) = { \
779 .free_q = MPSC_INIT((name.free_q)), \
782 .pool = CONCAT(_sqe_pool_, name), \
workaround assembler barfing for ST r
Definition asm-macro-32-bit-gnu.h:24
long atomic_t
Definition atomic_types.h:15
_Bool atomic_cas(atomic_t *target, atomic_val_t old_value, atomic_val_t new_value)
Atomic compare-and-set.
static ALWAYS_INLINE void mpsc_push(struct mpsc *q, struct mpsc_node *n)
Push a node.
Definition mpsc_lockfree.h:126
static struct mpsc_node * mpsc_pop(struct mpsc *q)
Pop a node off of the list.
Definition mpsc_lockfree.h:145
#define RTIO_OP_CALLBACK
An operation that calls a given function (callback).
Definition sqe.h:153
#define RTIO_OP_TINY_TX
An operation that transmits tiny writes by copying the data to write.
Definition sqe.h:150
#define RTIO_OP_TX
An operation that transmits (writes).
Definition sqe.h:147
#define RTIO_OP_TXRX
An operation that transceives (reads and writes simultaneously).
Definition sqe.h:156
#define RTIO_OP_NOP
An operation that does nothing and will complete immediately.
Definition sqe.h:141
#define RTIO_OP_AWAIT
An operation to await a signal while blocking the iodev (if one is provided).
Definition sqe.h:177
#define RTIO_OP_DELAY
An operation that takes a specified amount of time (asynchronously) before completing.
Definition sqe.h:159
#define RTIO_OP_RX
An operation that receives (reads).
Definition sqe.h:144
#define RTIO_SQE_MULTISHOT
The SQE should continue producing CQEs until canceled.
Definition sqe.h:121
#define RTIO_SQE_TRANSACTION
The next request in the queue is part of a transaction.
Definition sqe.h:93
#define RTIO_SQE_MEMPOOL_BUFFER
The buffer should be allocated by the RTIO mempool.
Definition sqe.h:105
#define RTIO_SQE_NO_RESPONSE
The SQE does not produce a CQE.
Definition sqe.h:126
#define RTIO_SQE_CHAINED
The next request in the queue should wait on this one.
Definition sqe.h:81
static void rtio_sqe_prep_read_with_pool(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, void *userdata)
Prepare a read op submission with context's mempool.
Definition sqe.h:452
static void rtio_sqe_prep_tiny_write(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, const uint8_t *tiny_write_data, uint8_t tiny_write_len, void *userdata)
Prepare a tiny write op submission.
Definition sqe.h:497
static void rtio_sqe_prep_nop(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, void *userdata)
Prepare a nop (no op) submission.
Definition sqe.h:418
void(* rtio_callback_t)(struct rtio *r, const struct rtio_sqe *sqe, int res, void *arg0)
Callback signature for RTIO_OP_CALLBACK.
Definition sqe.h:291
static void rtio_sqe_prep_await_iodev(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, void *userdata)
Prepare an await op submission which blocks an rtio_iodev until completion.
Definition sqe.h:614
static void rtio_iodev_sqe_await_signal(struct rtio_iodev_sqe *iodev_sqe, rtio_signaled_t callback, void *userdata)
Await an AWAIT SQE signal from RTIO IODEV.
Definition sqe.h:728
static void rtio_sqe_prep_write(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, const uint8_t *buf, uint32_t len, void *userdata)
Prepare a write op submission.
Definition sqe.h:471
static void rtio_sqe_prep_read(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, uint8_t *buf, uint32_t len, void *userdata)
Prepare a read op submission.
Definition sqe.h:431
static void rtio_sqe_prep_read_multishot(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, void *userdata)
Definition sqe.h:460
static void rtio_sqe_prep_callback(struct rtio_sqe *sqe, rtio_callback_t callback, void *arg0, void *userdata)
Prepare a callback op submission.
Definition sqe.h:523
static void rtio_sqe_prep_await_executor(struct rtio_sqe *sqe, int8_t prio, void *userdata)
Prepare an await op submission which completes the sqe after being signaled.
Definition sqe.h:631
void(* rtio_signaled_t)(struct rtio_iodev_sqe *iodev_sqe, void *userdata)
Callback signature for RTIO_OP_AWAIT signaled.
Definition sqe.h:299
static void rtio_sqe_prep_transceive(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, const uint8_t *tx_buf, uint8_t *rx_buf, uint32_t buf_len, void *userdata)
Prepare a transceive op submission.
Definition sqe.h:559
#define rtio_sqe_prep_delay(sqe, timeout, userdata)
Prepare a delay operation submission which completes after the given timeout.
Definition sqe.h:660
static struct rtio_iodev_sqe * rtio_chain_next(const struct rtio_iodev_sqe *iodev_sqe)
Get the next sqe in the chain.
Definition sqe.h:693
static struct rtio_iodev_sqe * rtio_iodev_sqe_next(const struct rtio_iodev_sqe *iodev_sqe)
Get the next sqe in the chain or transaction.
Definition sqe.h:713
static void rtio_sqe_prep_callback_no_cqe(struct rtio_sqe *sqe, rtio_callback_t callback, void *arg0, void *userdata)
Prepare a callback op submission that does not create a CQE.
Definition sqe.h:547
static struct rtio_iodev_sqe * rtio_txn_next(const struct rtio_iodev_sqe *iodev_sqe)
Get the next sqe in the transaction.
Definition sqe.h:672
static void rtio_sqe_prep_await(struct rtio_sqe *sqe, const struct rtio_iodev *iodev, int8_t prio, void *userdata)
Prepare an await op submission.
Definition sqe.h:591
#define SYS_PORT_TRACING_FUNC_ENTER(type, func,...)
Tracing macro for the entry into a function that might or might not return a value.
Definition tracing_macros.h:257
#define SYS_PORT_TRACING_FUNC_EXIT(type, func,...)
Tracing macro for when a function ends its execution.
Definition tracing_macros.h:283
#define CONTAINER_OF(ptr, type, field)
Get a pointer to a structure containing the element.
Definition util.h:281
#define NULL
Definition iar_missing_defs.h:20
A wait-free intrusive multi producer single consumer (MPSC) queue using a singly linked list.
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
__INT8_TYPE__ int8_t
Definition stdint.h:72
void * memset(void *buf, int c, size_t n)
void * memcpy(void *ZRESTRICT d, const void *ZRESTRICT s, size_t n)
Kernel timeout type.
Definition clock.h:65
Queue member.
Definition mpsc_lockfree.h:79
IO device submission queue entry.
Definition sqe.h:394
struct rtio_iodev_sqe * next
Definition sqe.h:397
struct rtio_sqe sqe
Definition sqe.h:395
struct rtio * r
Definition sqe.h:398
struct mpsc_node q
Definition sqe.h:396
An IO device with a function table for submitting requests.
Definition iodev.h:48
A submission queue event.
Definition sqe.h:304
uint32_t i2c_config
OP_I2C_CONFIGURE.
Definition sqe.h:366
void * userdata
User provided data which is returned upon operation completion.
Definition sqe.h:322
const uint8_t * tx_buf
Buffer to write from.
Definition sqe.h:353
uint8_t op
Op code.
Definition sqe.h:305
struct rtio_sqe::@126267262255374054123217063150244034155174062054::@222067021034074304061254367152327164076222165070 rx
OP_RX.
struct rtio_sqe::@126267262255374054123217063150244034155174062054::@036347012270137154075057170156115300365157200061 tiny_tx
OP_TINY_TX.
void * arg0
Last argument given to callback.
Definition sqe.h:347
atomic_t ok
Definition sqe.h:381
uint8_t * rx_buf
Buffer to read into.
Definition sqe.h:354
uint8_t prio
Op priority.
Definition sqe.h:307
struct rtio_sqe::@126267262255374054123217063150244034155174062054::@236333123355174166163204241333175337261032350217 await
OP_AWAIT.
uint32_t buf_len
Length of buffer.
Definition sqe.h:328
const struct rtio_iodev * iodev
Device to operation on.
Definition sqe.h:313
uint32_t iodev_flags
Op iodev flags.
Definition sqe.h:311
void * ccc_payload
OP_I3C_CCC.
Definition sqe.h:377
struct rtio_sqe::@126267262255374054123217063150244034155174062054::@366052340324346171254040100167341103343101366005 txrx
OP_TXRX.
int type
Definition sqe.h:371
uint16_t flags
Op Flags.
Definition sqe.h:309
const uint8_t * buf
Buffer to write from.
Definition sqe.h:329
void * config
Definition sqe.h:372
struct rtio_sqe::@126267262255374054123217063150244034155174062054::@344335000264002157174077227357232142206143107046 tx
OP_TX.
rtio_callback_t callback
Definition sqe.h:346
An RTIO context containing what can be viewed as a pair of queues.
Definition rtio.h:71