Home
last modified time | relevance | path

Searched refs:I3C_MSG_HDR (Results 1 – 8 of 8) sorted by relevance

/Zephyr-latest/include/zephyr/drivers/i3c/
Dhdr_ddr.h48 msg.flags = I3C_MSG_WRITE | I3C_MSG_STOP | I3C_MSG_HDR; in i3c_hdr_ddr_write()
76 msg.flags = I3C_MSG_STOP | I3C_MSG_HDR; in i3c_hdr_ddr_read()
110 msg[0].flags = I3C_MSG_WRITE | I3C_MSG_HDR; in i3c_hdr_ddr_write_read()
116 msg[1].flags = I3C_MSG_RESTART | I3C_MSG_READ | I3C_MSG_HDR | I3C_MSG_STOP; in i3c_hdr_ddr_write_read()
/Zephyr-latest/drivers/i3c/
Di3c_rtio_default.c25 ((iodev_sqe->sqe.iodev_flags & RTIO_IODEV_I3C_HDR) ? I3C_MSG_HDR : 0) | in i3c_msg_from_rx()
39 ((iodev_sqe->sqe.iodev_flags & RTIO_IODEV_I3C_HDR) ? I3C_MSG_HDR : 0) | in i3c_msg_from_tx()
53 ((iodev_sqe->sqe.iodev_flags & RTIO_IODEV_I3C_HDR) ? I3C_MSG_HDR : 0) | in i3c_msg_from_tiny_tx()
Di3c_rtio.c48 ((msgs[i].flags & I3C_MSG_HDR) ? RTIO_IODEV_I3C_HDR : 0) | in i3c_rtio_copy()
Di3c_cdns.c2327 if ((!(msgs[i].flags & I3C_MSG_HDR)) || in cdns_i3c_transfer()
2328 ((msgs[i].flags & I3C_MSG_HDR) && (msgs[i].hdr_mode == 0))) { in cdns_i3c_transfer()
2371 (msgs[i].hdr_mode == I3C_MSG_HDR_DDR) && (msgs[i].flags & I3C_MSG_HDR)) { in cdns_i3c_transfer()
Di3c_npcx.c1203 bool is_msg_hdr = (msgs[i].flags & I3C_MSG_HDR) == I3C_MSG_HDR; in npcx_i3c_transfer()
Di3c_dw.c755 if (msgs[i].flags & I3C_MSG_HDR) { in dw_i3c_xfers()
797 if (msgs[i].flags & I3C_MSG_HDR) { in dw_i3c_xfers()
Di3c_stm32.c1253 if ((msgs[i].flags & I3C_MSG_HDR) && (msgs[i].hdr_mode != 0)) { in i3c_stm32_i3c_transfer()
/Zephyr-latest/include/zephyr/drivers/
Di3c.h331 #define I3C_MSG_HDR BIT(3) macro