mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Each queue in a multi queue group has a dedicated timestamp counter. Use this QUEUE TIMESTAMP register to capture the start timestamp for the job. Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> Link: https://patch.msgid.link/20260507162016.3888309-23-umesh.nerlige.ramappa@intel.com
653 lines
17 KiB
C
653 lines
17 KiB
C
// SPDX-License-Identifier: MIT
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#include "xe_ring_ops.h"
|
|
|
|
#include <generated/xe_wa_oob.h>
|
|
|
|
#include "instructions/xe_gpu_commands.h"
|
|
#include "instructions/xe_mi_commands.h"
|
|
#include "regs/xe_engine_regs.h"
|
|
#include "regs/xe_gt_regs.h"
|
|
#include "xe_exec_queue.h"
|
|
#include "xe_gt_types.h"
|
|
#include "xe_lrc.h"
|
|
#include "xe_sched_job.h"
|
|
#include "xe_sriov.h"
|
|
#include "xe_vm_types.h"
|
|
#include "xe_vm.h"
|
|
#include "xe_wa.h"
|
|
|
|
/*
|
|
* 3D-related flags that can't be set on _engines_ that lack access to the 3D
|
|
* pipeline (i.e., CCS engines).
|
|
*/
|
|
#define PIPE_CONTROL_3D_ENGINE_FLAGS (\
|
|
PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH | \
|
|
PIPE_CONTROL_DEPTH_CACHE_FLUSH | \
|
|
PIPE_CONTROL_TILE_CACHE_FLUSH | \
|
|
PIPE_CONTROL_DEPTH_STALL | \
|
|
PIPE_CONTROL_STALL_AT_SCOREBOARD | \
|
|
PIPE_CONTROL_PSD_SYNC | \
|
|
PIPE_CONTROL_AMFS_FLUSH | \
|
|
PIPE_CONTROL_VF_CACHE_INVALIDATE | \
|
|
PIPE_CONTROL_GLOBAL_SNAPSHOT_RESET)
|
|
|
|
/* 3D-related flags that can't be set on _platforms_ that lack a 3D pipeline */
|
|
#define PIPE_CONTROL_3D_ARCH_FLAGS ( \
|
|
PIPE_CONTROL_3D_ENGINE_FLAGS | \
|
|
PIPE_CONTROL_INDIRECT_STATE_DISABLE | \
|
|
PIPE_CONTROL_FLUSH_ENABLE | \
|
|
PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE | \
|
|
PIPE_CONTROL_DC_FLUSH_ENABLE)
|
|
|
|
static u32 preparser_disable(bool state)
|
|
{
|
|
return MI_ARB_CHECK | BIT(8) | state;
|
|
}
|
|
|
|
static u32 *
|
|
__emit_aux_table_inv(u32 *cmd, const struct xe_reg reg, u32 adj_offset)
|
|
{
|
|
*cmd++ = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1) |
|
|
MI_LRI_MMIO_REMAP_EN;
|
|
*cmd++ = reg.addr + adj_offset;
|
|
*cmd++ = AUX_INV;
|
|
*cmd++ = MI_SEMAPHORE_WAIT_TOKEN | MI_SEMAPHORE_REGISTER_POLL |
|
|
MI_SEMAPHORE_POLL | MI_SEMAPHORE_SAD_EQ_SDD;
|
|
*cmd++ = 0;
|
|
*cmd++ = reg.addr + adj_offset;
|
|
*cmd++ = 0;
|
|
*cmd++ = 0;
|
|
|
|
return cmd;
|
|
}
|
|
|
|
static u32 *emit_aux_table_inv_render_compute(struct xe_gt *gt, u32 *cmd)
|
|
{
|
|
return __emit_aux_table_inv(cmd, CCS_AUX_INV, gt->mmio.adj_offset);
|
|
}
|
|
|
|
static u32 *emit_aux_table_inv_video_decode(struct xe_gt *gt, u32 *cmd)
|
|
{
|
|
return __emit_aux_table_inv(cmd, VD0_AUX_INV, gt->mmio.adj_offset);
|
|
}
|
|
|
|
static u32 *emit_aux_table_inv_video_enhance(struct xe_gt *gt, u32 *cmd)
|
|
{
|
|
return __emit_aux_table_inv(cmd, VE0_AUX_INV, gt->mmio.adj_offset);
|
|
}
|
|
|
|
static int emit_aux_table_inv(struct xe_hw_engine *hwe, u32 *dw, int i)
|
|
{
|
|
struct xe_gt *gt = hwe->gt;
|
|
u32 *(*emit)(struct xe_gt *gt, u32 *cmd) =
|
|
gt->ring_ops[hwe->class]->emit_aux_table_inv;
|
|
|
|
if (emit)
|
|
return emit(gt, dw + i) - dw;
|
|
else
|
|
return i;
|
|
}
|
|
|
|
static int emit_user_interrupt(u32 *dw, int i)
|
|
{
|
|
dw[i++] = MI_USER_INTERRUPT;
|
|
dw[i++] = MI_ARB_ON_OFF | MI_ARB_ENABLE;
|
|
dw[i++] = MI_ARB_CHECK;
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_store_imm_ggtt(u32 addr, u32 value, u32 *dw, int i)
|
|
{
|
|
dw[i++] = MI_STORE_DATA_IMM | MI_SDI_GGTT | MI_SDI_NUM_DW(1);
|
|
dw[i++] = addr;
|
|
dw[i++] = 0;
|
|
dw[i++] = value;
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_flush_dw(u32 *dw, int i)
|
|
{
|
|
dw[i++] = MI_FLUSH_DW | MI_FLUSH_IMM_DW;
|
|
dw[i++] = 0;
|
|
dw[i++] = 0;
|
|
dw[i++] = 0;
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_flush_imm_ggtt(u32 addr, u32 value, u32 flags, u32 *dw, int i)
|
|
{
|
|
dw[i++] = MI_FLUSH_DW | MI_FLUSH_DW_OP_STOREDW | MI_FLUSH_IMM_DW |
|
|
flags;
|
|
dw[i++] = addr | MI_FLUSH_DW_USE_GTT;
|
|
dw[i++] = 0;
|
|
dw[i++] = value;
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_bb_start(u64 batch_addr, u32 ppgtt_flag, u32 *dw, int i)
|
|
{
|
|
dw[i++] = MI_BATCH_BUFFER_START | ppgtt_flag | XE_INSTR_NUM_DW(3);
|
|
dw[i++] = lower_32_bits(batch_addr);
|
|
dw[i++] = upper_32_bits(batch_addr);
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_flush_invalidate(u32 addr, u32 val, u32 flush_flags, u32 *dw, int i)
|
|
{
|
|
dw[i++] = MI_FLUSH_DW | MI_FLUSH_DW_OP_STOREDW |
|
|
MI_FLUSH_IMM_DW | (flush_flags & MI_INVALIDATE_TLB) ?: 0;
|
|
|
|
dw[i++] = addr | MI_FLUSH_DW_USE_GTT;
|
|
dw[i++] = 0;
|
|
dw[i++] = val;
|
|
|
|
return i;
|
|
}
|
|
|
|
static int
|
|
emit_pipe_control(u32 *dw, int i, u32 bit_group_0, u32 bit_group_1, u32 offset, u32 value)
|
|
{
|
|
dw[i++] = GFX_OP_PIPE_CONTROL(6) | bit_group_0;
|
|
dw[i++] = bit_group_1;
|
|
dw[i++] = offset;
|
|
dw[i++] = 0;
|
|
dw[i++] = value;
|
|
dw[i++] = 0;
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_pipe_invalidate(struct xe_exec_queue *q, u32 mask_flags,
|
|
bool invalidate_tlb, u32 *dw, int i)
|
|
{
|
|
u32 flags0 = 0;
|
|
u32 flags1 = PIPE_CONTROL_COMMAND_CACHE_INVALIDATE |
|
|
PIPE_CONTROL_INSTRUCTION_CACHE_INVALIDATE |
|
|
PIPE_CONTROL_TEXTURE_CACHE_INVALIDATE |
|
|
PIPE_CONTROL_VF_CACHE_INVALIDATE |
|
|
PIPE_CONTROL_CONST_CACHE_INVALIDATE |
|
|
PIPE_CONTROL_STATE_CACHE_INVALIDATE |
|
|
PIPE_CONTROL_QW_WRITE |
|
|
PIPE_CONTROL_STORE_DATA_INDEX;
|
|
|
|
if (invalidate_tlb)
|
|
flags1 |= PIPE_CONTROL_TLB_INVALIDATE;
|
|
|
|
if (xe_exec_queue_is_multi_queue(q))
|
|
flags0 |= PIPE_CONTROL0_QUEUE_DRAIN_MODE;
|
|
else
|
|
flags1 |= PIPE_CONTROL_CS_STALL;
|
|
|
|
flags1 &= ~mask_flags;
|
|
|
|
if (flags1 & PIPE_CONTROL_VF_CACHE_INVALIDATE)
|
|
flags0 |= PIPE_CONTROL0_L3_READ_ONLY_CACHE_INVALIDATE;
|
|
|
|
return emit_pipe_control(dw, i, flags0, flags1,
|
|
LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR, 0);
|
|
}
|
|
|
|
static int emit_store_imm_ppgtt_posted(u64 addr, u64 value,
|
|
u32 *dw, int i)
|
|
{
|
|
dw[i++] = MI_STORE_DATA_IMM | MI_SDI_NUM_QW(1);
|
|
dw[i++] = lower_32_bits(addr);
|
|
dw[i++] = upper_32_bits(addr);
|
|
dw[i++] = lower_32_bits(value);
|
|
dw[i++] = upper_32_bits(value);
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_render_cache_flush(struct xe_sched_job *job, u32 *dw, int i)
|
|
{
|
|
struct xe_exec_queue *q = job->q;
|
|
struct xe_gt *gt = q->gt;
|
|
bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
|
|
u32 flags0, flags1;
|
|
|
|
if (XE_GT_WA(gt, 14016712196))
|
|
i = emit_pipe_control(dw, i, 0, PIPE_CONTROL_DEPTH_CACHE_FLUSH,
|
|
LRC_PPHWSP_FLUSH_INVAL_SCRATCH_ADDR, 0);
|
|
|
|
flags0 = PIPE_CONTROL0_HDC_PIPELINE_FLUSH;
|
|
flags1 = (PIPE_CONTROL_TILE_CACHE_FLUSH |
|
|
PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH |
|
|
PIPE_CONTROL_DEPTH_CACHE_FLUSH |
|
|
PIPE_CONTROL_DC_FLUSH_ENABLE |
|
|
PIPE_CONTROL_FLUSH_ENABLE);
|
|
|
|
if (XE_GT_WA(gt, 1409600907))
|
|
flags1 |= PIPE_CONTROL_DEPTH_STALL;
|
|
|
|
if (lacks_render)
|
|
flags1 &= ~PIPE_CONTROL_3D_ARCH_FLAGS;
|
|
else if (job->q->class == XE_ENGINE_CLASS_COMPUTE)
|
|
flags1 &= ~PIPE_CONTROL_3D_ENGINE_FLAGS;
|
|
|
|
if (xe_exec_queue_is_multi_queue(q))
|
|
flags0 |= PIPE_CONTROL0_QUEUE_DRAIN_MODE;
|
|
else
|
|
flags1 |= PIPE_CONTROL_CS_STALL;
|
|
|
|
return emit_pipe_control(dw, i, flags0, flags1, 0, 0);
|
|
}
|
|
|
|
static int emit_pipe_imm_ggtt(struct xe_exec_queue *q, u32 addr, u32 value,
|
|
bool stall_only, u32 *dw, int i)
|
|
{
|
|
u32 flags0 = 0, flags1 = PIPE_CONTROL_GLOBAL_GTT_IVB | PIPE_CONTROL_QW_WRITE;
|
|
|
|
if (!stall_only)
|
|
flags1 |= PIPE_CONTROL_FLUSH_ENABLE;
|
|
|
|
if (xe_exec_queue_is_multi_queue(q))
|
|
flags0 |= PIPE_CONTROL0_QUEUE_DRAIN_MODE;
|
|
else
|
|
flags1 |= PIPE_CONTROL_CS_STALL;
|
|
|
|
return emit_pipe_control(dw, i, flags0, flags1, addr, value);
|
|
}
|
|
|
|
static u32 get_ppgtt_flag(struct xe_sched_job *job)
|
|
{
|
|
if (job->q->vm && !job->ggtt)
|
|
return BIT(8);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int emit_copy_timestamp(struct xe_device *xe, struct xe_lrc *lrc,
|
|
u32 *dw, int i)
|
|
{
|
|
const struct xe_reg reg = xe_lrc_is_multi_queue(lrc) ?
|
|
RING_QUEUE_TIMESTAMP(0) :
|
|
RING_CTX_TIMESTAMP(0);
|
|
|
|
dw[i++] = MI_STORE_REGISTER_MEM | MI_SRM_USE_GGTT | MI_SRM_ADD_CS_OFFSET;
|
|
dw[i++] = reg.addr;
|
|
dw[i++] = xe_lrc_ctx_job_timestamp_ggtt_addr(lrc);
|
|
dw[i++] = 0;
|
|
|
|
/*
|
|
* Ensure CTX timestamp >= Job timestamp during VF sampling to avoid
|
|
* arithmetic wraparound in TDR.
|
|
*/
|
|
if (IS_SRIOV_VF(xe)) {
|
|
dw[i++] = MI_STORE_REGISTER_MEM | MI_SRM_USE_GGTT |
|
|
MI_SRM_ADD_CS_OFFSET;
|
|
dw[i++] = reg.addr;
|
|
dw[i++] = xe_lrc_ctx_timestamp_ggtt_addr(lrc);
|
|
dw[i++] = 0;
|
|
}
|
|
|
|
return i;
|
|
}
|
|
|
|
static int emit_fake_watchdog(struct xe_lrc *lrc, u32 *dw, int i)
|
|
{
|
|
/*
|
|
* Setup a watchdog with impossible condition to always trigger an
|
|
* hardware interrupt that would force the GuC to reset the engine.
|
|
*/
|
|
|
|
dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(2) | MI_LRI_LRM_CS_MMIO;
|
|
dw[i++] = PR_CTR_THRSH(0).addr;
|
|
dw[i++] = 2; /* small threshold */
|
|
dw[i++] = PR_CTR_CTRL(0).addr;
|
|
dw[i++] = CTR_LOGIC_OP(START);
|
|
|
|
dw[i++] = MI_SEMAPHORE_WAIT | MI_SEMW_GGTT | MI_SEMW_POLL | MI_SEMW_COMPARE(SAD_EQ_SDD);
|
|
dw[i++] = 0xdead; /* this should never be seen */
|
|
dw[i++] = lower_32_bits(xe_lrc_ggtt_addr(lrc));
|
|
dw[i++] = upper_32_bits(xe_lrc_ggtt_addr(lrc));
|
|
dw[i++] = 0; /* unused token */
|
|
|
|
dw[i++] = MI_LOAD_REGISTER_IMM | MI_LRI_NUM_REGS(1) | MI_LRI_LRM_CS_MMIO;
|
|
dw[i++] = PR_CTR_CTRL(0).addr;
|
|
dw[i++] = CTR_LOGIC_OP(STOP);
|
|
|
|
return i;
|
|
}
|
|
|
|
/* for engines that don't require any special HW handling (no EUs, no aux inval, etc) */
|
|
static void __emit_job_gen12_simple(struct xe_sched_job *job, struct xe_lrc *lrc,
|
|
u64 batch_addr, u32 *head, u32 seqno)
|
|
{
|
|
u32 dw[MAX_JOB_SIZE_DW], i = 0;
|
|
u32 ppgtt_flag = get_ppgtt_flag(job);
|
|
struct xe_gt *gt = job->q->gt;
|
|
|
|
*head = lrc->ring.tail;
|
|
|
|
if (job->ring_ops_force_reset)
|
|
i = emit_fake_watchdog(lrc, dw, i);
|
|
|
|
i = emit_copy_timestamp(gt_to_xe(gt), lrc, dw, i);
|
|
|
|
if (job->ring_ops_flush_tlb) {
|
|
dw[i++] = preparser_disable(true);
|
|
i = emit_flush_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
|
|
seqno, MI_INVALIDATE_TLB, dw, i);
|
|
dw[i++] = preparser_disable(false);
|
|
} else {
|
|
i = emit_store_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
|
|
seqno, dw, i);
|
|
}
|
|
|
|
i = emit_bb_start(batch_addr, ppgtt_flag, dw, i);
|
|
|
|
/* Don't preempt fence signaling */
|
|
dw[i++] = MI_ARB_ON_OFF | MI_ARB_DISABLE;
|
|
|
|
if (job->user_fence.used) {
|
|
i = emit_flush_dw(dw, i);
|
|
i = emit_store_imm_ppgtt_posted(job->user_fence.addr,
|
|
job->user_fence.value,
|
|
dw, i);
|
|
}
|
|
|
|
i = emit_flush_imm_ggtt(xe_lrc_seqno_ggtt_addr(lrc), seqno, 0, dw, i);
|
|
|
|
i = emit_user_interrupt(dw, i);
|
|
|
|
xe_gt_assert(gt, i <= MAX_JOB_SIZE_DW);
|
|
|
|
xe_lrc_write_ring(lrc, dw, i * sizeof(*dw));
|
|
}
|
|
|
|
static bool has_aux_ccs(struct xe_device *xe)
|
|
{
|
|
/*
|
|
* PVC is a special case that has no compression of either type
|
|
* (FlatCCS or AuxCCS). Also, AuxCCS is no longer used from Xe2
|
|
* onward, so any future platforms with no FlatCCS will not have
|
|
* AuxCCS, and we explicitly do not want to support it on MTL.
|
|
*/
|
|
if (GRAPHICS_VERx100(xe) >= 1270 || xe->info.platform == XE_PVC)
|
|
return false;
|
|
|
|
return !xe->info.has_flat_ccs;
|
|
}
|
|
|
|
static void __emit_job_gen12_video(struct xe_sched_job *job, struct xe_lrc *lrc,
|
|
u64 batch_addr, u32 *head, u32 seqno)
|
|
{
|
|
u32 dw[MAX_JOB_SIZE_DW], i = 0;
|
|
u32 ppgtt_flag = get_ppgtt_flag(job);
|
|
struct xe_gt *gt = job->q->gt;
|
|
struct xe_device *xe = gt_to_xe(gt);
|
|
|
|
*head = lrc->ring.tail;
|
|
|
|
if (job->ring_ops_force_reset)
|
|
i = emit_fake_watchdog(lrc, dw, i);
|
|
|
|
i = emit_copy_timestamp(xe, lrc, dw, i);
|
|
|
|
dw[i++] = preparser_disable(true);
|
|
|
|
/* hsdes: 1809175790 */
|
|
i = emit_aux_table_inv(job->q->hwe, dw, i);
|
|
|
|
if (job->ring_ops_flush_tlb)
|
|
i = emit_flush_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
|
|
seqno, MI_INVALIDATE_TLB, dw, i);
|
|
|
|
dw[i++] = preparser_disable(false);
|
|
|
|
if (!job->ring_ops_flush_tlb)
|
|
i = emit_store_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
|
|
seqno, dw, i);
|
|
|
|
i = emit_bb_start(batch_addr, ppgtt_flag, dw, i);
|
|
|
|
/* Don't preempt fence signaling */
|
|
dw[i++] = MI_ARB_ON_OFF | MI_ARB_DISABLE;
|
|
|
|
if (job->user_fence.used) {
|
|
i = emit_flush_dw(dw, i);
|
|
i = emit_store_imm_ppgtt_posted(job->user_fence.addr,
|
|
job->user_fence.value,
|
|
dw, i);
|
|
}
|
|
|
|
i = emit_flush_imm_ggtt(xe_lrc_seqno_ggtt_addr(lrc), seqno, 0, dw, i);
|
|
|
|
i = emit_user_interrupt(dw, i);
|
|
|
|
xe_gt_assert(gt, i <= MAX_JOB_SIZE_DW);
|
|
|
|
xe_lrc_write_ring(lrc, dw, i * sizeof(*dw));
|
|
}
|
|
|
|
static void __emit_job_gen12_render_compute(struct xe_sched_job *job,
|
|
struct xe_lrc *lrc,
|
|
u64 batch_addr, u32 *head,
|
|
u32 seqno)
|
|
{
|
|
u32 dw[MAX_JOB_SIZE_DW], i = 0;
|
|
u32 ppgtt_flag = get_ppgtt_flag(job);
|
|
struct xe_gt *gt = job->q->gt;
|
|
struct xe_device *xe = gt_to_xe(gt);
|
|
bool lacks_render = !(gt->info.engine_mask & XE_HW_ENGINE_RCS_MASK);
|
|
u32 mask_flags = 0;
|
|
|
|
*head = lrc->ring.tail;
|
|
|
|
if (job->ring_ops_force_reset)
|
|
i = emit_fake_watchdog(lrc, dw, i);
|
|
|
|
i = emit_copy_timestamp(xe, lrc, dw, i);
|
|
|
|
/*
|
|
* On AuxCCS platforms the invalidation of the Aux table requires
|
|
* quiescing the memory traffic beforehand.
|
|
*/
|
|
if (has_aux_ccs(xe))
|
|
i = emit_render_cache_flush(job, dw, i);
|
|
|
|
dw[i++] = preparser_disable(true);
|
|
if (lacks_render)
|
|
mask_flags = PIPE_CONTROL_3D_ARCH_FLAGS;
|
|
else if (job->q->class == XE_ENGINE_CLASS_COMPUTE)
|
|
mask_flags = PIPE_CONTROL_3D_ENGINE_FLAGS;
|
|
|
|
/* See __xe_pt_bind_vma() for a discussion on TLB invalidations. */
|
|
i = emit_pipe_invalidate(job->q, mask_flags, job->ring_ops_flush_tlb, dw, i);
|
|
|
|
/* hsdes: 1809175790 */
|
|
i = emit_aux_table_inv(job->q->hwe, dw, i);
|
|
|
|
dw[i++] = preparser_disable(false);
|
|
|
|
i = emit_store_imm_ggtt(xe_lrc_start_seqno_ggtt_addr(lrc),
|
|
seqno, dw, i);
|
|
|
|
i = emit_bb_start(batch_addr, ppgtt_flag, dw, i);
|
|
|
|
/* Don't preempt fence signaling */
|
|
dw[i++] = MI_ARB_ON_OFF | MI_ARB_DISABLE;
|
|
|
|
i = emit_render_cache_flush(job, dw, i);
|
|
|
|
if (job->user_fence.used)
|
|
i = emit_store_imm_ppgtt_posted(job->user_fence.addr,
|
|
job->user_fence.value,
|
|
dw, i);
|
|
|
|
i = emit_pipe_imm_ggtt(job->q, xe_lrc_seqno_ggtt_addr(lrc), seqno, lacks_render, dw, i);
|
|
|
|
i = emit_user_interrupt(dw, i);
|
|
|
|
xe_gt_assert(gt, i <= MAX_JOB_SIZE_DW);
|
|
|
|
xe_lrc_write_ring(lrc, dw, i * sizeof(*dw));
|
|
}
|
|
|
|
static void emit_migration_job_gen12(struct xe_sched_job *job,
|
|
struct xe_lrc *lrc, u32 *head,
|
|
u32 seqno)
|
|
{
|
|
struct xe_gt *gt = job->q->gt;
|
|
struct xe_device *xe = gt_to_xe(gt);
|
|
u32 saddr = xe_lrc_start_seqno_ggtt_addr(lrc);
|
|
u32 dw[MAX_JOB_SIZE_DW], i = 0;
|
|
|
|
*head = lrc->ring.tail;
|
|
|
|
xe_gt_assert(gt, !job->ring_ops_force_reset);
|
|
|
|
i = emit_copy_timestamp(xe, lrc, dw, i);
|
|
|
|
i = emit_store_imm_ggtt(saddr, seqno, dw, i);
|
|
|
|
dw[i++] = MI_ARB_ON_OFF | MI_ARB_DISABLE; /* Enabled again below */
|
|
|
|
i = emit_bb_start(job->ptrs[0].batch_addr, BIT(8), dw, i);
|
|
|
|
dw[i++] = preparser_disable(true);
|
|
i = emit_flush_invalidate(saddr, seqno, job->migrate_flush_flags, dw, i);
|
|
dw[i++] = preparser_disable(false);
|
|
|
|
i = emit_bb_start(job->ptrs[1].batch_addr, BIT(8), dw, i);
|
|
|
|
i = emit_flush_imm_ggtt(xe_lrc_seqno_ggtt_addr(lrc), seqno,
|
|
job->migrate_flush_flags,
|
|
dw, i);
|
|
|
|
i = emit_user_interrupt(dw, i);
|
|
|
|
xe_gt_assert(job->q->gt, i <= MAX_JOB_SIZE_DW);
|
|
|
|
xe_lrc_write_ring(lrc, dw, i * sizeof(*dw));
|
|
}
|
|
|
|
static void emit_job_gen12_gsc(struct xe_sched_job *job)
|
|
{
|
|
struct xe_gt *gt = job->q->gt;
|
|
|
|
xe_gt_assert(gt, job->q->width <= 1); /* no parallel submission for GSCCS */
|
|
|
|
__emit_job_gen12_simple(job, job->q->lrc[0],
|
|
job->ptrs[0].batch_addr,
|
|
&job->ptrs[0].head,
|
|
xe_sched_job_lrc_seqno(job));
|
|
}
|
|
|
|
static void emit_job_gen12_copy(struct xe_sched_job *job)
|
|
{
|
|
int i;
|
|
|
|
if (xe_sched_job_is_migration(job->q)) {
|
|
emit_migration_job_gen12(job, job->q->lrc[0],
|
|
&job->ptrs[0].head,
|
|
xe_sched_job_lrc_seqno(job));
|
|
return;
|
|
}
|
|
|
|
for (i = 0; i < job->q->width; ++i)
|
|
__emit_job_gen12_simple(job, job->q->lrc[i],
|
|
job->ptrs[i].batch_addr,
|
|
&job->ptrs[i].head,
|
|
xe_sched_job_lrc_seqno(job));
|
|
}
|
|
|
|
static void emit_job_gen12_video(struct xe_sched_job *job)
|
|
{
|
|
int i;
|
|
|
|
/* FIXME: Not doing parallel handshake for now */
|
|
for (i = 0; i < job->q->width; ++i)
|
|
__emit_job_gen12_video(job, job->q->lrc[i],
|
|
job->ptrs[i].batch_addr,
|
|
&job->ptrs[i].head,
|
|
xe_sched_job_lrc_seqno(job));
|
|
}
|
|
|
|
static void emit_job_gen12_render_compute(struct xe_sched_job *job)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < job->q->width; ++i)
|
|
__emit_job_gen12_render_compute(job, job->q->lrc[i],
|
|
job->ptrs[i].batch_addr,
|
|
&job->ptrs[i].head,
|
|
xe_sched_job_lrc_seqno(job));
|
|
}
|
|
|
|
static const struct xe_ring_ops ring_ops_gen12_gsc = {
|
|
.emit_job = emit_job_gen12_gsc,
|
|
};
|
|
|
|
static const struct xe_ring_ops ring_ops_gen12_copy = {
|
|
.emit_job = emit_job_gen12_copy,
|
|
};
|
|
|
|
static const struct xe_ring_ops ring_ops_gen12_video_decode = {
|
|
.emit_job = emit_job_gen12_video,
|
|
};
|
|
|
|
static const struct xe_ring_ops ring_ops_gen12_video_enhance = {
|
|
.emit_job = emit_job_gen12_video,
|
|
};
|
|
|
|
static const struct xe_ring_ops ring_ops_gen12_render_compute = {
|
|
.emit_job = emit_job_gen12_render_compute,
|
|
};
|
|
|
|
static const struct xe_ring_ops auxccs_ring_ops_gen12_video_decode = {
|
|
.emit_job = emit_job_gen12_video,
|
|
.emit_aux_table_inv = emit_aux_table_inv_video_decode,
|
|
};
|
|
|
|
static const struct xe_ring_ops auxccs_ring_ops_gen12_video_enhance = {
|
|
.emit_job = emit_job_gen12_video,
|
|
.emit_aux_table_inv = emit_aux_table_inv_video_enhance,
|
|
};
|
|
|
|
static const struct xe_ring_ops auxccs_ring_ops_gen12_render_compute = {
|
|
.emit_job = emit_job_gen12_render_compute,
|
|
.emit_aux_table_inv = emit_aux_table_inv_render_compute,
|
|
};
|
|
|
|
const struct xe_ring_ops *
|
|
xe_ring_ops_get(struct xe_gt *gt, enum xe_engine_class class)
|
|
{
|
|
struct xe_device *xe = gt_to_xe(gt);
|
|
|
|
switch (class) {
|
|
case XE_ENGINE_CLASS_OTHER:
|
|
return &ring_ops_gen12_gsc;
|
|
case XE_ENGINE_CLASS_COPY:
|
|
return &ring_ops_gen12_copy;
|
|
case XE_ENGINE_CLASS_VIDEO_DECODE:
|
|
if (has_aux_ccs(xe))
|
|
return &auxccs_ring_ops_gen12_video_decode;
|
|
else
|
|
return &ring_ops_gen12_video_decode;
|
|
case XE_ENGINE_CLASS_VIDEO_ENHANCE:
|
|
if (has_aux_ccs(xe))
|
|
return &auxccs_ring_ops_gen12_video_enhance;
|
|
else
|
|
return &ring_ops_gen12_video_enhance;
|
|
case XE_ENGINE_CLASS_RENDER:
|
|
case XE_ENGINE_CLASS_COMPUTE:
|
|
if (has_aux_ccs(xe))
|
|
return &auxccs_ring_ops_gen12_render_compute;
|
|
else
|
|
return &ring_ops_gen12_render_compute;
|
|
default:
|
|
return NULL;
|
|
}
|
|
}
|