/* * Copyright (c) 2017 - 2018, Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ #pragma once #include "runtime/gen_common/hw_cmds.h" #include "runtime/command_stream/linear_stream.h" #include "runtime/built_ins/sip.h" #include #include namespace OCLRT { struct HardwareCapabilities; class HwHelper { public: static HwHelper &get(GFXCORE_FAMILY gfxCore); virtual uint32_t getBindingTableStateSurfaceStatePointer(void *pBindingTable, uint32_t index) = 0; virtual size_t getBindingTableStateSize() const = 0; virtual uint32_t getBindingTableStateAlignement() const = 0; virtual size_t getInterfaceDescriptorDataSize() const = 0; virtual size_t getMaxBarrierRegisterPerSlice() const = 0; virtual uint32_t getComputeUnitsUsedForScratch(const HardwareInfo *pHwInfo) const = 0; virtual void setCapabilityCoherencyFlag(const HardwareInfo *pHwInfo, bool &coherencyFlag) = 0; virtual bool setupPreemptionRegisters(HardwareInfo *pHwInfo, bool enable) = 0; virtual void adjustDefaultEngineType(HardwareInfo *pHwInfo) = 0; virtual void setupHardwareCapabilities(HardwareCapabilities *caps, const HardwareInfo &hwInfo) = 0; virtual SipKernelType getSipKernelType(bool debuggingActive) = 0; virtual uint32_t getConfigureAddressSpaceMode() = 0; virtual bool isLocalMemoryEnabled(const HardwareInfo &hwInfo) = 0; protected: HwHelper(){}; }; template class HwHelperHw : public HwHelper { public: static HwHelper &get() { static HwHelperHw hwHelper; return hwHelper; } uint32_t getBindingTableStateSurfaceStatePointer(void *pBindingTable, uint32_t index) override { using BINDING_TABLE_STATE = typename GfxFamily::BINDING_TABLE_STATE; BINDING_TABLE_STATE *bindingTableState = static_cast(pBindingTable); return bindingTableState[index].getRawData(0); } size_t getBindingTableStateSize() const override { using BINDING_TABLE_STATE = typename GfxFamily::BINDING_TABLE_STATE; return sizeof(BINDING_TABLE_STATE); } uint32_t getBindingTableStateAlignement() const override { using BINDING_TABLE_STATE = typename GfxFamily::BINDING_TABLE_STATE; return BINDING_TABLE_STATE::SURFACESTATEPOINTER_ALIGN_SIZE; } size_t getInterfaceDescriptorDataSize() const override { using INTERFACE_DESCRIPTOR_DATA = typename GfxFamily::INTERFACE_DESCRIPTOR_DATA; return sizeof(INTERFACE_DESCRIPTOR_DATA); } size_t getMaxBarrierRegisterPerSlice() const override; uint32_t getComputeUnitsUsedForScratch(const HardwareInfo *pHwInfo) const override; void setCapabilityCoherencyFlag(const HardwareInfo *pHwInfo, bool &coherencyFlag) override; bool setupPreemptionRegisters(HardwareInfo *pHwInfo, bool enable) override; void adjustDefaultEngineType(HardwareInfo *pHwInfo) override; void setupHardwareCapabilities(HardwareCapabilities *caps, const HardwareInfo &hwInfo) override; SipKernelType getSipKernelType(bool debuggingActive) override; uint32_t getConfigureAddressSpaceMode() override; bool isLocalMemoryEnabled(const HardwareInfo &hwInfo) override; private: HwHelperHw(){}; }; struct DwordBuilder { static uint32_t build(uint32_t bitNumberToSet, bool masked, bool set = true, uint32_t initValue = 0) { uint32_t dword = initValue; if (set) { dword |= (1 << bitNumberToSet); } if (masked) { dword |= (1 << (bitNumberToSet + 16)); } return dword; }; }; template struct LriHelper { using MI_LOAD_REGISTER_IMM = typename GfxFamily::MI_LOAD_REGISTER_IMM; static MI_LOAD_REGISTER_IMM *program(LinearStream *cmdStream, uint32_t address, uint32_t value) { auto lri = (MI_LOAD_REGISTER_IMM *)cmdStream->getSpace(sizeof(MI_LOAD_REGISTER_IMM)); *lri = MI_LOAD_REGISTER_IMM::sInit(); lri->setRegisterOffset(address); lri->setDataDword(value); return lri; } }; } // namespace OCLRT