2018-10-02 21:09:06 +08:00
|
|
|
/*
|
2019-05-13 20:15:03 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2018-10-02 21:09:06 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2019-05-13 20:15:03 +08:00
|
|
|
#include "runtime/command_queue/command_queue.h"
|
2018-10-02 21:09:06 +08:00
|
|
|
#include "runtime/command_queue/gpgpu_walker.h"
|
2019-05-13 20:15:03 +08:00
|
|
|
#include "runtime/command_queue/local_id_gen.h"
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
|
|
#include "runtime/device/device_info.h"
|
|
|
|
#include "runtime/event/perf_counter.h"
|
|
|
|
#include "runtime/event/user_event.h"
|
|
|
|
#include "runtime/helpers/aligned_memory.h"
|
|
|
|
#include "runtime/helpers/debug_helpers.h"
|
2019-06-12 15:13:06 +08:00
|
|
|
#include "runtime/helpers/hardware_commands_helper.h"
|
2019-05-13 20:15:03 +08:00
|
|
|
#include "runtime/helpers/hw_helper.h"
|
|
|
|
#include "runtime/helpers/queue_helpers.h"
|
|
|
|
#include "runtime/helpers/validators.h"
|
|
|
|
#include "runtime/indirect_heap/indirect_heap.h"
|
|
|
|
#include "runtime/mem_obj/mem_obj.h"
|
|
|
|
#include "runtime/memory_manager/graphics_allocation.h"
|
|
|
|
#include "runtime/utilities/tag_allocator.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cmath>
|
2018-10-02 21:09:06 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-10-02 21:09:06 +08:00
|
|
|
|
2019-05-13 20:15:03 +08:00
|
|
|
// Performs ReadModifyWrite operation on value of a register: Register = Register Operation Mask
|
2018-10-02 21:09:06 +08:00
|
|
|
template <typename GfxFamily>
|
2019-05-13 20:15:03 +08:00
|
|
|
void GpgpuWalkerHelper<GfxFamily>::addAluReadModifyWriteRegister(
|
|
|
|
NEO::LinearStream *pCommandStream,
|
|
|
|
uint32_t aluRegister,
|
|
|
|
uint32_t operation,
|
|
|
|
uint32_t mask) {
|
|
|
|
// Load "Register" value into CS_GPR_R0
|
|
|
|
typedef typename GfxFamily::MI_LOAD_REGISTER_REG MI_LOAD_REGISTER_REG;
|
|
|
|
typedef typename GfxFamily::MI_MATH MI_MATH;
|
|
|
|
typedef typename GfxFamily::MI_MATH_ALU_INST_INLINE MI_MATH_ALU_INST_INLINE;
|
|
|
|
auto pCmd = pCommandStream->getSpaceForCmd<MI_LOAD_REGISTER_REG>();
|
|
|
|
*pCmd = GfxFamily::cmdInitLoadRegisterReg;
|
|
|
|
pCmd->setSourceRegisterAddress(aluRegister);
|
|
|
|
pCmd->setDestinationRegisterAddress(CS_GPR_R0);
|
|
|
|
|
|
|
|
// Load "Mask" into CS_GPR_R1
|
|
|
|
typedef typename GfxFamily::MI_LOAD_REGISTER_IMM MI_LOAD_REGISTER_IMM;
|
|
|
|
auto pCmd2 = pCommandStream->getSpaceForCmd<MI_LOAD_REGISTER_IMM>();
|
|
|
|
*pCmd2 = GfxFamily::cmdInitLoadRegisterImm;
|
|
|
|
pCmd2->setRegisterOffset(CS_GPR_R1);
|
|
|
|
pCmd2->setDataDword(mask);
|
|
|
|
|
|
|
|
// Add instruction MI_MATH with 4 MI_MATH_ALU_INST_INLINE operands
|
|
|
|
auto pCmd3 = reinterpret_cast<uint32_t *>(pCommandStream->getSpace(sizeof(MI_MATH) + NUM_ALU_INST_FOR_READ_MODIFY_WRITE * sizeof(MI_MATH_ALU_INST_INLINE)));
|
|
|
|
reinterpret_cast<MI_MATH *>(pCmd3)->DW0.Value = 0x0;
|
|
|
|
reinterpret_cast<MI_MATH *>(pCmd3)->DW0.BitField.InstructionType = MI_MATH::COMMAND_TYPE_MI_COMMAND;
|
|
|
|
reinterpret_cast<MI_MATH *>(pCmd3)->DW0.BitField.InstructionOpcode = MI_MATH::MI_COMMAND_OPCODE_MI_MATH;
|
|
|
|
// 0x3 - 5 Dwords length cmd (-2): 1 for MI_MATH, 4 for MI_MATH_ALU_INST_INLINE
|
|
|
|
reinterpret_cast<MI_MATH *>(pCmd3)->DW0.BitField.DwordLength = NUM_ALU_INST_FOR_READ_MODIFY_WRITE - 1;
|
|
|
|
pCmd3++;
|
|
|
|
MI_MATH_ALU_INST_INLINE *pAluParam = reinterpret_cast<MI_MATH_ALU_INST_INLINE *>(pCmd3);
|
|
|
|
|
|
|
|
// Setup first operand of MI_MATH - load CS_GPR_R0 into register A
|
|
|
|
pAluParam->DW0.BitField.ALUOpcode = ALU_OPCODE_LOAD;
|
|
|
|
pAluParam->DW0.BitField.Operand1 = ALU_REGISTER_R_SRCA;
|
|
|
|
pAluParam->DW0.BitField.Operand2 = ALU_REGISTER_R_0;
|
|
|
|
pAluParam++;
|
|
|
|
|
|
|
|
// Setup second operand of MI_MATH - load CS_GPR_R1 into register B
|
|
|
|
pAluParam->DW0.BitField.ALUOpcode = ALU_OPCODE_LOAD;
|
|
|
|
pAluParam->DW0.BitField.Operand1 = ALU_REGISTER_R_SRCB;
|
|
|
|
pAluParam->DW0.BitField.Operand2 = ALU_REGISTER_R_1;
|
|
|
|
pAluParam++;
|
|
|
|
|
|
|
|
// Setup third operand of MI_MATH - "Operation" on registers A and B
|
|
|
|
pAluParam->DW0.BitField.ALUOpcode = operation;
|
|
|
|
pAluParam->DW0.BitField.Operand1 = 0;
|
|
|
|
pAluParam->DW0.BitField.Operand2 = 0;
|
|
|
|
pAluParam++;
|
|
|
|
|
|
|
|
// Setup fourth operand of MI_MATH - store result into CS_GPR_R0
|
|
|
|
pAluParam->DW0.BitField.ALUOpcode = ALU_OPCODE_STORE;
|
|
|
|
pAluParam->DW0.BitField.Operand1 = ALU_REGISTER_R_0;
|
|
|
|
pAluParam->DW0.BitField.Operand2 = ALU_REGISTER_R_ACCU;
|
|
|
|
|
|
|
|
// LOAD value of CS_GPR_R0 into "Register"
|
|
|
|
auto pCmd4 = pCommandStream->getSpaceForCmd<MI_LOAD_REGISTER_REG>();
|
|
|
|
*pCmd4 = GfxFamily::cmdInitLoadRegisterReg;
|
|
|
|
pCmd4->setSourceRegisterAddress(CS_GPR_R0);
|
|
|
|
pCmd4->setDestinationRegisterAddress(aluRegister);
|
|
|
|
|
|
|
|
// Add PIPE_CONTROL to flush caches
|
|
|
|
auto pCmd5 = pCommandStream->getSpaceForCmd<PIPE_CONTROL>();
|
|
|
|
*pCmd5 = GfxFamily::cmdInitPipeControl;
|
|
|
|
pCmd5->setCommandStreamerStallEnable(true);
|
|
|
|
pCmd5->setDcFlushEnable(true);
|
|
|
|
pCmd5->setTextureCacheInvalidationEnable(true);
|
|
|
|
pCmd5->setPipeControlFlushEnable(true);
|
|
|
|
pCmd5->setStateCacheInvalidationEnable(true);
|
2018-10-02 21:09:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
2019-05-13 20:15:03 +08:00
|
|
|
void GpgpuWalkerHelper<GfxFamily>::dispatchProfilingCommandsStart(
|
|
|
|
TagNode<HwTimeStamps> &hwTimeStamps,
|
|
|
|
LinearStream *commandStream) {
|
|
|
|
|
|
|
|
using MI_STORE_REGISTER_MEM = typename GfxFamily::MI_STORE_REGISTER_MEM;
|
|
|
|
|
|
|
|
// PIPE_CONTROL for global timestamp
|
|
|
|
uint64_t timeStampAddress = hwTimeStamps.getGpuAddress() + offsetof(HwTimeStamps, GlobalStartTS);
|
|
|
|
|
2019-07-11 20:35:40 +08:00
|
|
|
PipeControlHelper<GfxFamily>::obtainPipeControlAndProgramPostSyncOperation(*commandStream,
|
|
|
|
PIPE_CONTROL::POST_SYNC_OPERATION_WRITE_TIMESTAMP,
|
|
|
|
timeStampAddress, 0llu, false);
|
2019-05-13 20:15:03 +08:00
|
|
|
|
|
|
|
//MI_STORE_REGISTER_MEM for context local timestamp
|
|
|
|
timeStampAddress = hwTimeStamps.getGpuAddress() + offsetof(HwTimeStamps, ContextStartTS);
|
|
|
|
|
|
|
|
//low part
|
|
|
|
auto pMICmdLow = commandStream->getSpaceForCmd<MI_STORE_REGISTER_MEM>();
|
|
|
|
*pMICmdLow = GfxFamily::cmdInitStoreRegisterMem;
|
|
|
|
adjustMiStoreRegMemMode(pMICmdLow);
|
|
|
|
pMICmdLow->setRegisterAddress(GP_THREAD_TIME_REG_ADDRESS_OFFSET_LOW);
|
|
|
|
pMICmdLow->setMemoryAddress(timeStampAddress);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
void GpgpuWalkerHelper<GfxFamily>::dispatchProfilingCommandsEnd(
|
|
|
|
TagNode<HwTimeStamps> &hwTimeStamps,
|
|
|
|
LinearStream *commandStream) {
|
|
|
|
|
|
|
|
using MI_STORE_REGISTER_MEM = typename GfxFamily::MI_STORE_REGISTER_MEM;
|
|
|
|
|
|
|
|
// PIPE_CONTROL for global timestamp
|
|
|
|
auto pPipeControlCmd = commandStream->getSpaceForCmd<PIPE_CONTROL>();
|
|
|
|
*pPipeControlCmd = GfxFamily::cmdInitPipeControl;
|
|
|
|
pPipeControlCmd->setCommandStreamerStallEnable(true);
|
|
|
|
|
|
|
|
//MI_STORE_REGISTER_MEM for context local timestamp
|
|
|
|
uint64_t timeStampAddress = hwTimeStamps.getGpuAddress() + offsetof(HwTimeStamps, ContextEndTS);
|
|
|
|
|
|
|
|
//low part
|
|
|
|
auto pMICmdLow = commandStream->getSpaceForCmd<MI_STORE_REGISTER_MEM>();
|
|
|
|
*pMICmdLow = GfxFamily::cmdInitStoreRegisterMem;
|
|
|
|
adjustMiStoreRegMemMode(pMICmdLow);
|
|
|
|
pMICmdLow->setRegisterAddress(GP_THREAD_TIME_REG_ADDRESS_OFFSET_LOW);
|
|
|
|
pMICmdLow->setMemoryAddress(timeStampAddress);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
void GpgpuWalkerHelper<GfxFamily>::dispatchPerfCountersCommandsStart(
|
|
|
|
CommandQueue &commandQueue,
|
|
|
|
TagNode<HwPerfCounter> &hwPerfCounter,
|
|
|
|
LinearStream *commandStream) {
|
|
|
|
|
2019-05-20 17:19:27 +08:00
|
|
|
auto pPerformanceCounters = commandQueue.getPerfCounters();
|
|
|
|
const uint32_t size = pPerformanceCounters->getGpuCommandsSize(true);
|
|
|
|
void *pBuffer = commandStream->getSpace(size);
|
2019-05-13 20:15:03 +08:00
|
|
|
|
2019-05-20 17:19:27 +08:00
|
|
|
pPerformanceCounters->getGpuCommands(hwPerfCounter, true, size, pBuffer);
|
2019-05-13 20:15:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
void GpgpuWalkerHelper<GfxFamily>::dispatchPerfCountersCommandsEnd(
|
|
|
|
CommandQueue &commandQueue,
|
|
|
|
TagNode<HwPerfCounter> &hwPerfCounter,
|
|
|
|
LinearStream *commandStream) {
|
|
|
|
|
2019-05-20 17:19:27 +08:00
|
|
|
auto pPerformanceCounters = commandQueue.getPerfCounters();
|
|
|
|
const uint32_t size = pPerformanceCounters->getGpuCommandsSize(false);
|
|
|
|
void *pBuffer = commandStream->getSpace(size);
|
2019-05-13 20:15:03 +08:00
|
|
|
|
2019-05-20 17:19:27 +08:00
|
|
|
pPerformanceCounters->getGpuCommands(hwPerfCounter, false, size, pBuffer);
|
2019-05-13 20:15:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
void GpgpuWalkerHelper<GfxFamily>::applyWADisableLSQCROPERFforOCL(NEO::LinearStream *pCommandStream, const Kernel &kernel, bool disablePerfMode) {
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
size_t GpgpuWalkerHelper<GfxFamily>::getSizeForWADisableLSQCROPERFforOCL(const Kernel *pKernel) {
|
|
|
|
return (size_t)0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
void GpgpuWalkerHelper<GfxFamily>::adjustMiStoreRegMemMode(MI_STORE_REG_MEM<GfxFamily> *storeCmd) {
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
2019-07-03 15:30:30 +08:00
|
|
|
size_t EnqueueOperation<GfxFamily>::getTotalSizeRequiredCS(uint32_t eventType, const CsrDependencies &csrDeps, bool reserveProfilingCmdsSpace, bool reservePerfCounters, bool blitEnqueue, CommandQueue &commandQueue, const MultiDispatchInfo &multiDispatchInfo) {
|
|
|
|
if (blitEnqueue) {
|
|
|
|
return TimestampPacketHelper::getRequiredCmdStreamSizeForNodeDependency<GfxFamily>();
|
|
|
|
}
|
|
|
|
|
2019-05-13 20:15:03 +08:00
|
|
|
size_t expectedSizeCS = 0;
|
|
|
|
Kernel *parentKernel = multiDispatchInfo.peekParentKernel();
|
|
|
|
for (auto &dispatchInfo : multiDispatchInfo) {
|
|
|
|
expectedSizeCS += EnqueueOperation<GfxFamily>::getSizeRequiredCS(eventType, reserveProfilingCmdsSpace, reservePerfCounters, commandQueue, dispatchInfo.getKernel());
|
2019-07-09 20:24:33 +08:00
|
|
|
expectedSizeCS += dispatchInfo.dispatchInitCommands.estimateCommandsSize();
|
|
|
|
expectedSizeCS += dispatchInfo.dispatchEpilogueCommands.estimateCommandsSize();
|
2019-05-13 20:15:03 +08:00
|
|
|
}
|
|
|
|
if (parentKernel) {
|
|
|
|
SchedulerKernel &scheduler = commandQueue.getDevice().getExecutionEnvironment()->getBuiltIns()->getSchedulerKernel(parentKernel->getContext());
|
|
|
|
expectedSizeCS += EnqueueOperation<GfxFamily>::getSizeRequiredCS(eventType, reserveProfilingCmdsSpace, reservePerfCounters, commandQueue, &scheduler);
|
|
|
|
}
|
2019-07-15 20:28:09 +08:00
|
|
|
if (commandQueue.getGpgpuCommandStreamReceiver().peekTimestampPacketWriteEnabled()) {
|
2019-05-13 20:15:03 +08:00
|
|
|
expectedSizeCS += TimestampPacketHelper::getRequiredCmdStreamSize<GfxFamily>(csrDeps);
|
2019-07-03 15:30:30 +08:00
|
|
|
expectedSizeCS += EnqueueOperation<GfxFamily>::getSizeRequiredForTimestampPacketWrite();
|
2019-05-13 20:15:03 +08:00
|
|
|
}
|
|
|
|
return expectedSizeCS;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
size_t EnqueueOperation<GfxFamily>::getSizeRequiredCS(uint32_t cmdType, bool reserveProfilingCmdsSpace, bool reservePerfCounters, CommandQueue &commandQueue, const Kernel *pKernel) {
|
|
|
|
if (isCommandWithoutKernel(cmdType)) {
|
|
|
|
return EnqueueOperation<GfxFamily>::getSizeRequiredCSNonKernel(reserveProfilingCmdsSpace, reservePerfCounters, commandQueue);
|
|
|
|
} else {
|
|
|
|
return EnqueueOperation<GfxFamily>::getSizeRequiredCSKernel(reserveProfilingCmdsSpace, reservePerfCounters, commandQueue, pKernel);
|
2018-10-02 21:09:06 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
2019-05-13 20:15:03 +08:00
|
|
|
size_t EnqueueOperation<GfxFamily>::getSizeRequiredCSNonKernel(bool reserveProfilingCmdsSpace, bool reservePerfCounters, CommandQueue &commandQueue) {
|
|
|
|
size_t size = 0;
|
|
|
|
if (reserveProfilingCmdsSpace) {
|
|
|
|
size += 2 * sizeof(PIPE_CONTROL) + 4 * sizeof(typename GfxFamily::MI_STORE_REGISTER_MEM);
|
2018-10-02 21:09:06 +08:00
|
|
|
}
|
2019-05-13 20:15:03 +08:00
|
|
|
return size;
|
2018-10-02 21:09:06 +08:00
|
|
|
}
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|