Home
last modified time | relevance | path

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

/Zephyr-latest/tests/subsys/ipc/ipc_sessions/interoperability/
Dipc_icmsg_v1.c66 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
70 DT_INST_PROP_OR(i, dcache_alignment, 0)); \
Dpbuf_v1.h58 uint32_t dcache_alignment; /* CPU data cache line size in bytes. member
124 .dcache_alignment = (dcache_align), \
Dpbuf_v1.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/include/zephyr/ipc/
Dpbuf.h61 uint32_t dcache_alignment; /* CPU data cache line size in bytes. member
132 .dcache_alignment = (dcache_align), \
/Zephyr-latest/subsys/ipc/ipc_service/backends/
Dipc_icmsg.c69 DT_INST_PROP_OR(i, dcache_alignment, 0), \
75 DT_INST_PROP_OR(i, dcache_alignment, 0), \
Dipc_icmsg_me_initiator.c195 DT_INST_PROP_OR(i, dcache_alignment, 0), 0, 0); \
199 DT_INST_PROP_OR(i, dcache_alignment, 0), 0, 0); \
Dipc_icmsg_me_follower.c289 DT_INST_PROP_OR(i, dcache_alignment, 0), 0, 0); \
293 DT_INST_PROP_OR(i, dcache_alignment, 0), 0, 0); \
Dipc_icbmsg.c1320 MAX(BLOCK_ALIGNMENT, DT_INST_PROP_OR(i, dcache_alignment, 0))
/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()
56 !(((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()