Home | History | Annotate | Download | only in booke

Lines Matching defs:cache_op

44 enum cache_op { OP_DCBF, OP_DCBST, OP_DCBI, OP_DCBZ, OP_DCBA, OP_ICBI };
83 cache_op(vaddr_t va, vsize_t len, vsize_t line_size, enum cache_op op)
111 cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBST);
117 cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBF);
123 cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBI);
129 cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBZ);
136 cache_op(va, PAGE_SIZE, curcpu()->ci_ci.icache_line_size, OP_ICBI);
144 cache_op(va, len, curcpu()->ci_ci.dcache_line_size, OP_DCBST);
150 cache_op(va, len, curcpu()->ci_ci.dcache_line_size, OP_DCBF);
156 cache_op(va, len, curcpu()->ci_ci.dcache_line_size, OP_DCBI);
163 cache_op(va, len, curcpu()->ci_ci.icache_line_size, OP_ICBI);