Lines Matching refs:cacheop
100 static inline void __slc_entire_op(const int cacheop) in __slc_entire_op() argument
103 unsigned int ctrl_reg = __before_slc_op(cacheop); in __slc_entire_op()
105 if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */ in __slc_entire_op()
112 __after_slc_op(cacheop, ctrl_reg); in __slc_entire_op()
116 const int cacheop) in __slc_line_op() argument
118 unsigned int ctrl_reg = __before_slc_op(cacheop); in __slc_line_op()
119 __slc_line_loop(paddr, sz, cacheop); in __slc_line_op()
120 __after_slc_op(cacheop, ctrl_reg); in __slc_line_op()
123 #define __slc_entire_op(cacheop) argument
124 #define __slc_line_op(paddr, sz, cacheop) argument
324 const int cacheop) in __cache_line_loop() argument
332 if (cacheop == OP_INV_IC) { in __cache_line_loop()
339 aux_cmd = cacheop & OP_INV ? ARC_AUX_DC_IVDL : ARC_AUX_DC_FLDL; in __cache_line_loop()
386 static inline void __dc_entire_op(const int cacheop) in __dc_entire_op() argument
389 unsigned int ctrl_reg = __before_dc_op(cacheop); in __dc_entire_op()
391 if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */ in __dc_entire_op()
398 __after_dc_op(cacheop, ctrl_reg); in __dc_entire_op()
402 const int cacheop) in __dc_line_op() argument
404 unsigned int ctrl_reg = __before_dc_op(cacheop); in __dc_line_op()
405 __cache_line_loop(paddr, sz, cacheop); in __dc_line_op()
406 __after_dc_op(cacheop, ctrl_reg); in __dc_line_op()
409 #define __dc_entire_op(cacheop) argument
410 #define __dc_line_op(paddr, sz, cacheop) argument