cache_op
arml2cc_cache_range_op(paddr_t pa, psize_t len, bus_size_t cache_op)
arml2cc_cache_op(sc, cache_op, pa, false);
cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBST);
cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBF);
cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBI);
cache_op(va, PAGE_SIZE, curcpu()->ci_ci.dcache_line_size, OP_DCBZ);
cache_op(va, PAGE_SIZE, curcpu()->ci_ci.icache_line_size, OP_ICBI);
cache_op(va, len, curcpu()->ci_ci.dcache_line_size, OP_DCBST);
cache_op(va, len, curcpu()->ci_ci.dcache_line_size, OP_DCBF);
cache_op(va, len, curcpu()->ci_ci.dcache_line_size, OP_DCBI);
cache_op(va, len, curcpu()->ci_ci.icache_line_size, OP_ICBI);
cache_op(vaddr_t va, vsize_t len, vsize_t line_size, enum cache_op op)