/* * Copyright (C) 2019-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/command_stream/csr_definitions.h" #include "shared/source/helpers/engine_node_helper.h" #include "shared/source/helpers/pipe_control_args.h" #include "shared/source/helpers/preamble_bdw_and_later.inl" #include "shared/source/os_interface/hw_info_config.h" #include "reg_configs_common.h" namespace NEO { template <> uint32_t PreambleHelper::getL3Config(const HardwareInfo &hwInfo, bool useSLM) { uint32_t l3Config = 0; switch (hwInfo.platform.eProductFamily) { case IGFX_TIGERLAKE_LP: l3Config = getL3ConfigHelper(useSLM); break; default: l3Config = getL3ConfigHelper(true); } return l3Config; } template <> void PreambleHelper::programPipelineSelect(LinearStream *pCommandStream, const PipelineSelectArgs &pipelineSelectArgs, const HardwareInfo &hwInfo) { using PIPELINE_SELECT = typename TGLLPFamily::PIPELINE_SELECT; if (MemorySynchronizationCommands::isPipeControlPriorToPipelineSelectWArequired(hwInfo)) { PipeControlArgs args; args.renderTargetCacheFlushEnable = true; MemorySynchronizationCommands::addPipeControl(*pCommandStream, args); } auto pCmd = pCommandStream->getSpaceForCmd(); PIPELINE_SELECT cmd = TGLLPFamily::cmdInitPipelineSelect; auto mask = pipelineSelectEnablePipelineSelectMaskBits | pipelineSelectMediaSamplerDopClockGateMaskBits; auto pipeline = pipelineSelectArgs.is3DPipelineRequired ? PIPELINE_SELECT::PIPELINE_SELECTION_3D : PIPELINE_SELECT::PIPELINE_SELECTION_GPGPU; cmd.setMaskBits(mask); cmd.setPipelineSelection(pipeline); cmd.setMediaSamplerDopClockGateEnable(!pipelineSelectArgs.mediaSamplerRequired); HwInfoConfig::get(hwInfo.platform.eProductFamily)->setAdditionalPipelineSelectFields(&cmd, pipelineSelectArgs, hwInfo); *pCmd = cmd; } template <> void PreambleHelper::addPipeControlBeforeVfeCmd(LinearStream *pCommandStream, const HardwareInfo *hwInfo, EngineGroupType engineGroupType) { auto pipeControl = pCommandStream->getSpaceForCmd(); PIPE_CONTROL cmd = TGLLPFamily::cmdInitPipeControl; cmd.setCommandStreamerStallEnable(true); if (hwInfo->workaroundTable.flags.waSendMIFLUSHBeforeVFE) { if (engineGroupType != EngineGroupType::Compute) { cmd.setRenderTargetCacheFlushEnable(true); cmd.setDepthCacheFlushEnable(true); cmd.setDepthStallEnable(true); } cmd.setDcFlushEnable(true); } *pipeControl = cmd; } template <> void PreambleHelper::programL3(LinearStream *pCommandStream, uint32_t l3Config) { } template <> uint32_t PreambleHelper::getUrbEntryAllocationSize() { return 1024u; } template <> void PreambleHelper::programAdditionalFieldsInVfeState(VFE_STATE_TYPE *mediaVfeState, const HardwareInfo &hwInfo) { auto &hwHelper = HwHelper::get(hwInfo.platform.eRenderCoreFamily); if (!hwHelper.isFusedEuDispatchEnabled(hwInfo)) { mediaVfeState->setDisableSlice0Subslice2(true); } if (DebugManager.flags.MediaVfeStateMaxSubSlices.get() != -1) { mediaVfeState->setMaximumNumberOfDualSubslices(DebugManager.flags.MediaVfeStateMaxSubSlices.get()); } } // Explicitly instantiate PreambleHelper for TGLLP device family template struct PreambleHelper; } // namespace NEO