Home
last modified time | relevance | path

Searched refs:dcache_alignment (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/subsys/ipc/ipc_service/backends/
Dipc_icmsg.c66 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
70 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
Dipc_icmsg_me_initiator.c194 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
198 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
Dipc_icmsg_me_follower.c288 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
292 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
Dipc_icbmsg.c1320 MAX(BLOCK_ALIGNMENT, DT_INST_PROP_OR(i, dcache_alignment, 0))
/Zephyr-latest/include/zephyr/ipc/
Dpbuf.h58 uint32_t dcache_alignment; /* CPU data cache line size in bytes. member
124 .dcache_alignment = (dcache_align), \
/Zephyr-latest/subsys/ipc/ipc_service/lib/
Dpbuf.c39 if (!IS_PTR_ALIGNED_BYTES(cfg->rd_idx_loc, MAX(cfg->dcache_alignment, _PBUF_IDX_SIZE)) || in validate_cfg()
40 !IS_PTR_ALIGNED_BYTES(cfg->wr_idx_loc, MAX(cfg->dcache_alignment, _PBUF_IDX_SIZE)) || in validate_cfg()
53 !(((uint8_t *)cfg->rd_idx_loc + MAX(_PBUF_IDX_SIZE, cfg->dcache_alignment)) == in validate_cfg()
/Zephyr-latest/tests/subsys/ipc/pbuf/src/
Dmain.c27 printk("cfg->dcache_alignment: %u\n", pb->cfg->dcache_alignment); in print_pbuf_info()