Lines Matching refs:src_ofs
625 u64 src_ofs, bool src_is_indirect, in emit_copy_ccs() argument
655 *cs++ = lower_32_bits(src_ofs); in emit_copy_ccs()
656 *cs++ = upper_32_bits(src_ofs) | mocs; in emit_copy_ccs()
665 u64 src_ofs, u64 dst_ofs, unsigned int size, in emit_copy() argument
691 bb->cs[bb->len++] = lower_32_bits(src_ofs); in emit_copy()
692 bb->cs[bb->len++] = upper_32_bits(src_ofs); in emit_copy()
702 u64 src_ofs, bool src_is_indirect, in xe_migrate_ccs_copy() argument
718 u64 ccs_src_ofs = src_is_indirect ? src_ofs : m->cleared_mem_ofs; in xe_migrate_ccs_copy()
727 src_ofs = ccs_ofs; in xe_migrate_ccs_copy()
733 emit_copy_ccs(gt, bb, dst_ofs, dst_is_indirect, src_ofs, in xe_migrate_ccs_copy()
943 static void emit_clear_link_copy(struct xe_gt *gt, struct xe_bb *bb, u64 src_ofs, in emit_clear_link_copy() argument
954 *cs++ = lower_32_bits(src_ofs); in emit_clear_link_copy()
955 *cs++ = upper_32_bits(src_ofs); in emit_clear_link_copy()
967 u64 src_ofs, u32 size, u32 pitch, bool is_vram) in emit_clear_main_copy() argument
986 *cs++ = lower_32_bits(src_ofs); in emit_clear_main_copy()
987 *cs++ = upper_32_bits(src_ofs); in emit_clear_main_copy()
1029 static void emit_clear(struct xe_gt *gt, struct xe_bb *bb, u64 src_ofs, in emit_clear() argument
1033 emit_clear_link_copy(gt, bb, src_ofs, size, pitch); in emit_clear()
1035 emit_clear_main_copy(gt, bb, src_ofs, size, pitch, in emit_clear()