/* * Copyright (C) 2017-2018 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "runtime/gen_common/aub_mapper.h" #include "command_stream_receiver_simulated_hw.h" #include "runtime/command_stream/tbx_command_stream_receiver.h" #include "runtime/memory_manager/address_mapper.h" #include "runtime/memory_manager/os_agnostic_memory_manager.h" #include "runtime/memory_manager/page_table.h" namespace OCLRT { class TbxStream; class TbxMemoryManager : public OsAgnosticMemoryManager { public: TbxMemoryManager(bool enable64kbPages, bool enableLocalMemory, ExecutionEnvironment &executionEnvironment) : OsAgnosticMemoryManager(enable64kbPages, enableLocalMemory, executionEnvironment) {} uint64_t getSystemSharedMemory() override { return 1 * GB; } }; template class TbxCommandStreamReceiverHw : public CommandStreamReceiverSimulatedHw { protected: typedef CommandStreamReceiverSimulatedHw BaseClass; typedef typename OCLRT::AUBFamilyMapper::AUB AUB; typedef typename AUB::MiContextDescriptorReg MiContextDescriptorReg; using BaseClass::osContext; public: using CommandStreamReceiverSimulatedCommonHw::initAdditionalMMIO; using CommandStreamReceiverSimulatedCommonHw::stream; FlushStamp flush(BatchBuffer &batchBuffer, ResidencyContainer &allocationsForResidency) override; void makeCoherent(GraphicsAllocation &gfxAllocation) override; void processResidency(ResidencyContainer &allocationsForResidency) override; void waitBeforeMakingNonResidentWhenRequired() override; bool writeMemory(GraphicsAllocation &gfxAllocation); // Family specific version void submitLRCA(EngineType engineType, const MiContextDescriptorReg &contextDescriptor); void pollForCompletion(EngineType engineType); void initEngineMMIO(EngineType engineType); static CommandStreamReceiver *create(const HardwareInfo &hwInfoIn, bool withAubDump, ExecutionEnvironment &executionEnvironment); TbxCommandStreamReceiverHw(const HardwareInfo &hwInfoIn, ExecutionEnvironment &executionEnvironment); ~TbxCommandStreamReceiverHw() override; void initializeEngine(EngineType engineType); static const AubMemDump::LrcaHelper &getCsTraits(EngineType engineType); struct EngineInfo { void *pLRCA; uint32_t ggttLRCA; void *pGlobalHWStatusPage; uint32_t ggttHWSP; void *pRCS; uint32_t ggttRCS; size_t sizeRCS; uint32_t tailRCS; } engineInfoTable[EngineType::NUM_ENGINES]; MemoryManager *createMemoryManager(bool enable64kbPages, bool enableLocalMemory) override { return new TbxMemoryManager(enable64kbPages, enableLocalMemory, this->executionEnvironment); } TbxMemoryManager *getMemoryManager() { return (TbxMemoryManager *)CommandStreamReceiver::getMemoryManager(); } TbxStream tbxStream; uint32_t aubDeviceId; bool streamInitialized = false; std::unique_ptr physicalAddressAllocator; std::unique_ptr::type> ppgtt; std::unique_ptr ggtt; // remap CPU VA -> GGTT VA AddressMapper gttRemap; CommandStreamReceiverType getType() override { return CommandStreamReceiverType::CSR_TBX; } }; } // namespace OCLRT