/* * Copyright (C) 2017-2018 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "hw_cmds.h" #include "runtime/aub/aub_helper.h" #include "runtime/aub_mem_dump/page_table_entry_bits.h" #include "runtime/command_stream/aub_stream_provider.h" #include "runtime/command_stream/aub_subcapture.h" #include "runtime/execution_environment/execution_environment.h" #include "runtime/gmm_helper/gmm.h" #include "runtime/gmm_helper/gmm_helper.h" #include "runtime/gmm_helper/resource_info.h" #include "runtime/helpers/aligned_memory.h" #include "runtime/helpers/debug_helpers.h" #include "runtime/helpers/ptr_math.h" #include "runtime/helpers/string.h" #include "runtime/memory_manager/graphics_allocation.h" #include "runtime/memory_manager/memory_banks.h" #include "runtime/memory_manager/os_agnostic_memory_manager.h" #include "runtime/memory_manager/physical_address_allocator.h" #include "runtime/os_interface/debug_settings_manager.h" #include namespace OCLRT { template AUBCommandStreamReceiverHw::AUBCommandStreamReceiverHw(const HardwareInfo &hwInfoIn, const std::string &fileName, bool standalone, ExecutionEnvironment &executionEnvironment) : BaseClass(hwInfoIn, executionEnvironment), subCaptureManager(std::make_unique(fileName)), standalone(standalone) { executionEnvironment.initAubCenter(); auto aubCenter = executionEnvironment.aubCenter.get(); UNRECOVERABLE_IF(nullptr == aubCenter); if (!aubCenter->getPhysicalAddressAllocator()) { aubCenter->initPhysicalAddressAllocator(createPhysicalAddressAllocator()); } auto physicalAddressAllocator = aubCenter->getPhysicalAddressAllocator(); UNRECOVERABLE_IF(nullptr == physicalAddressAllocator); ppgtt = std::make_unique::type>(physicalAddressAllocator); ggtt = std::make_unique(physicalAddressAllocator); gttRemap = aubCenter->getAddressMapper(); UNRECOVERABLE_IF(nullptr == gttRemap); auto streamProvider = aubCenter->getStreamProvider(); UNRECOVERABLE_IF(nullptr == streamProvider); stream = streamProvider->getStream(); UNRECOVERABLE_IF(nullptr == stream); this->dispatchMode = DispatchMode::BatchedDispatch; if (DebugManager.flags.CsrDispatchMode.get()) { this->dispatchMode = (DispatchMode)DebugManager.flags.CsrDispatchMode.get(); } if (DebugManager.flags.AUBDumpSubCaptureMode.get()) { this->subCaptureManager->subCaptureMode = static_cast(DebugManager.flags.AUBDumpSubCaptureMode.get()); this->subCaptureManager->subCaptureFilter.dumpKernelStartIdx = static_cast(DebugManager.flags.AUBDumpFilterKernelStartIdx.get()); this->subCaptureManager->subCaptureFilter.dumpKernelEndIdx = static_cast(DebugManager.flags.AUBDumpFilterKernelEndIdx.get()); this->subCaptureManager->subCaptureFilter.dumpNamedKernelStartIdx = static_cast(DebugManager.flags.AUBDumpFilterNamedKernelStartIdx.get()); this->subCaptureManager->subCaptureFilter.dumpNamedKernelEndIdx = static_cast(DebugManager.flags.AUBDumpFilterNamedKernelEndIdx.get()); if (DebugManager.flags.AUBDumpFilterKernelName.get() != "unk") { this->subCaptureManager->subCaptureFilter.dumpKernelName = DebugManager.flags.AUBDumpFilterKernelName.get(); } } auto debugDeviceId = DebugManager.flags.OverrideAubDeviceId.get(); this->aubDeviceId = debugDeviceId == -1 ? hwInfoIn.capabilityTable.aubDeviceId : static_cast(debugDeviceId); } template AUBCommandStreamReceiverHw::~AUBCommandStreamReceiverHw() { freeEngineInfoTable(); } template const AubMemDump::LrcaHelper &AUBCommandStreamReceiverHw::getCsTraits(EngineType engineType) { return *AUBFamilyMapper::csTraits[engineType]; } template void AUBCommandStreamReceiverHw::initGlobalMMIO() { for (auto &mmioPair : AUBFamilyMapper::globalMMIO) { stream->writeMMIO(mmioPair.first, mmioPair.second); } } template void AUBCommandStreamReceiverHw::initEngineMMIO(EngineType engineType) { auto mmioList = AUBFamilyMapper::perEngineMMIO[engineType]; DEBUG_BREAK_IF(!mmioList); for (auto &mmioPair : *mmioList) { stream->writeMMIO(mmioPair.first, mmioPair.second); } } template void AUBCommandStreamReceiverHw::openFile(const std::string &fileName) { auto streamLocked = stream->lockStream(); initFile(fileName); } template bool AUBCommandStreamReceiverHw::reopenFile(const std::string &fileName) { auto streamLocked = stream->lockStream(); if (isFileOpen()) { if (fileName != getFileName()) { closeFile(); freeEngineInfoTable(); } } if (!isFileOpen()) { initFile(fileName); return true; } return false; } template void AUBCommandStreamReceiverHw::initFile(const std::string &fileName) { if (!stream->isOpen()) { // Open our file stream->open(fileName.c_str()); if (!stream->isOpen()) { // This DEBUG_BREAK_IF most probably means you are not executing aub tests with correct current directory (containing aub_out folder) // try adding _aub DEBUG_BREAK_IF(true); } // Add the file header stream->init(AubMemDump::SteppingValues::A, aubDeviceId); } } template void AUBCommandStreamReceiverHw::closeFile() { stream->close(); } template bool AUBCommandStreamReceiverHw::isFileOpen() const { return stream->isOpen(); } template const std::string &AUBCommandStreamReceiverHw::getFileName() { return stream->getFileName(); } template void AUBCommandStreamReceiverHw::initializeEngine(EngineType engineType) { auto mmioBase = getCsTraits(engineType).mmioBase; auto &engineInfo = engineInfoTable[engineType]; initGlobalMMIO(); initEngineMMIO(engineType); // Global HW Status Page { const size_t sizeHWSP = 0x1000; const size_t alignHWSP = 0x1000; engineInfo.pGlobalHWStatusPage = alignedMalloc(sizeHWSP, alignHWSP); engineInfo.ggttHWSP = gttRemap->map(engineInfo.pGlobalHWStatusPage, sizeHWSP); auto physHWSP = ggtt->map(engineInfo.ggttHWSP, sizeHWSP, this->getGTTBits(), getMemoryBankForGtt()); // Write our GHWSP { std::ostringstream str; str << "ggtt: " << std::hex << std::showbase << engineInfo.ggttHWSP; stream->addComment(str.str().c_str()); } AubGTTData data = {0}; getGTTData(reinterpret_cast(physHWSP), data); AUB::reserveAddressGGTT(*stream, engineInfo.ggttHWSP, sizeHWSP, physHWSP, data); stream->writeMMIO(mmioBase + 0x2080, engineInfo.ggttHWSP); } // Allocate the LRCA auto csTraits = getCsTraits(engineType); const size_t sizeLRCA = csTraits.sizeLRCA; const size_t alignLRCA = csTraits.alignLRCA; auto pLRCABase = alignedMalloc(sizeLRCA, alignLRCA); engineInfo.pLRCA = pLRCABase; // Initialize the LRCA to a known state csTraits.initialize(pLRCABase); // Reserve the ring buffer engineInfo.sizeRingBuffer = 0x4 * 0x1000; { const size_t alignRingBuffer = 0x1000; engineInfo.pRingBuffer = alignedMalloc(engineInfo.sizeRingBuffer, alignRingBuffer); engineInfo.ggttRingBuffer = gttRemap->map(engineInfo.pRingBuffer, engineInfo.sizeRingBuffer); auto physRingBuffer = ggtt->map(engineInfo.ggttRingBuffer, engineInfo.sizeRingBuffer, this->getGTTBits(), getMemoryBankForGtt()); { std::ostringstream str; str << "ggtt: " << std::hex << std::showbase << engineInfo.ggttRingBuffer; stream->addComment(str.str().c_str()); } AubGTTData data = {0}; getGTTData(reinterpret_cast(physRingBuffer), data); AUB::reserveAddressGGTT(*stream, engineInfo.ggttRingBuffer, engineInfo.sizeRingBuffer, physRingBuffer, data); } // Initialize the ring MMIO registers { uint32_t ringHead = 0x000; uint32_t ringTail = 0x000; auto ringBase = engineInfo.ggttRingBuffer; auto ringCtrl = (uint32_t)((engineInfo.sizeRingBuffer - 0x1000) | 1); csTraits.setRingHead(pLRCABase, ringHead); csTraits.setRingTail(pLRCABase, ringTail); csTraits.setRingBase(pLRCABase, ringBase); csTraits.setRingCtrl(pLRCABase, ringCtrl); } // Write our LRCA { engineInfo.ggttLRCA = gttRemap->map(engineInfo.pLRCA, sizeLRCA); auto lrcAddressPhys = ggtt->map(engineInfo.ggttLRCA, sizeLRCA, this->getGTTBits(), getMemoryBankForGtt()); { std::ostringstream str; str << "ggtt: " << std::hex << std::showbase << engineInfo.ggttLRCA; stream->addComment(str.str().c_str()); } AubGTTData data = {0}; getGTTData(reinterpret_cast(lrcAddressPhys), data); AUB::reserveAddressGGTT(*stream, engineInfo.ggttLRCA, sizeLRCA, lrcAddressPhys, data); AUB::addMemoryWrite( *stream, lrcAddressPhys, pLRCABase, sizeLRCA, this->getAddressSpace(csTraits.aubHintLRCA), csTraits.aubHintLRCA); } // Create a context to facilitate AUB dumping of memory using PPGTT addContextToken(); } template void AUBCommandStreamReceiverHw::freeEngineInfoTable() { for (auto &engineInfo : engineInfoTable) { alignedFree(engineInfo.pLRCA); gttRemap->unmap(engineInfo.pLRCA); engineInfo.pLRCA = nullptr; alignedFree(engineInfo.pGlobalHWStatusPage); gttRemap->unmap(engineInfo.pGlobalHWStatusPage); engineInfo.pGlobalHWStatusPage = nullptr; alignedFree(engineInfo.pRingBuffer); gttRemap->unmap(engineInfo.pRingBuffer); engineInfo.pRingBuffer = nullptr; } } template CommandStreamReceiver *AUBCommandStreamReceiverHw::create(const HardwareInfo &hwInfoIn, const std::string &fileName, bool standalone, ExecutionEnvironment &executionEnvironment) { auto csr = new AUBCommandStreamReceiverHw(hwInfoIn, fileName, standalone, executionEnvironment); if (!csr->subCaptureManager->isSubCaptureMode()) { csr->openFile(fileName); } return csr; } template FlushStamp AUBCommandStreamReceiverHw::flush(BatchBuffer &batchBuffer, EngineType engineType, ResidencyContainer &allocationsForResidency, OsContext &osContext) { if (subCaptureManager->isSubCaptureMode()) { if (!subCaptureManager->isSubCaptureEnabled()) { if (this->standalone) { *this->tagAddress = this->peekLatestSentTaskCount(); } return 0; } } auto streamLocked = stream->lockStream(); uint32_t mmioBase = getCsTraits(engineType).mmioBase; auto &engineInfo = engineInfoTable[engineType]; if (!engineInfo.pLRCA) { initializeEngine(engineType); DEBUG_BREAK_IF(!engineInfo.pLRCA); } // Write our batch buffer auto pBatchBuffer = ptrOffset(batchBuffer.commandBufferAllocation->getUnderlyingBuffer(), batchBuffer.startOffset); auto batchBufferGpuAddress = ptrOffset(batchBuffer.commandBufferAllocation->getGpuAddress(), batchBuffer.startOffset); auto currentOffset = batchBuffer.usedSize; DEBUG_BREAK_IF(currentOffset < batchBuffer.startOffset); auto sizeBatchBuffer = currentOffset - batchBuffer.startOffset; std::unique_ptr> flatBatchBuffer( nullptr, [&](GraphicsAllocation *ptr) { this->getMemoryManager()->freeGraphicsMemory(ptr); }); if (DebugManager.flags.FlattenBatchBufferForAUBDump.get()) { flatBatchBuffer.reset(this->flatBatchBufferHelper->flattenBatchBuffer(batchBuffer, sizeBatchBuffer, this->dispatchMode)); if (flatBatchBuffer.get() != nullptr) { pBatchBuffer = flatBatchBuffer->getUnderlyingBuffer(); } } { { std::ostringstream str; str << "ppgtt: " << std::hex << std::showbase << pBatchBuffer; stream->addComment(str.str().c_str()); } auto physBatchBuffer = ppgtt->map(static_cast(batchBufferGpuAddress), sizeBatchBuffer, getPPGTTAdditionalBits(batchBuffer.commandBufferAllocation), this->getMemoryBank(batchBuffer.commandBufferAllocation)); AubHelperHw aubHelperHw(this->localMemoryEnabled); AUB::reserveAddressPPGTT(*stream, static_cast(batchBufferGpuAddress), sizeBatchBuffer, physBatchBuffer, getPPGTTAdditionalBits(batchBuffer.commandBufferAllocation), aubHelperHw); AUB::addMemoryWrite( *stream, physBatchBuffer, pBatchBuffer, sizeBatchBuffer, this->getAddressSpace(AubMemDump::DataTypeHintValues::TraceBatchBufferPrimary), AubMemDump::DataTypeHintValues::TraceBatchBufferPrimary); } if (this->standalone) { if (this->dispatchMode == DispatchMode::ImmediateDispatch) { if (!DebugManager.flags.FlattenBatchBufferForAUBDump.get()) { CommandStreamReceiver::makeResident(*batchBuffer.commandBufferAllocation); } } else { allocationsForResidency.push_back(batchBuffer.commandBufferAllocation); batchBuffer.commandBufferAllocation->residencyTaskCount[this->deviceIndex] = this->taskCount; } processResidency(allocationsForResidency, osContext); } if (DebugManager.flags.AddPatchInfoCommentsForAUBDump.get()) { addGUCStartMessage(static_cast(reinterpret_cast(pBatchBuffer)), engineType); addPatchInfoComments(); } // Add a batch buffer start to the ring buffer auto previousTail = engineInfo.tailRingBuffer; { typedef typename GfxFamily::MI_LOAD_REGISTER_IMM MI_LOAD_REGISTER_IMM; typedef typename GfxFamily::MI_BATCH_BUFFER_START MI_BATCH_BUFFER_START; typedef typename GfxFamily::MI_NOOP MI_NOOP; auto pTail = ptrOffset(engineInfo.pRingBuffer, engineInfo.tailRingBuffer); auto ggttTail = ptrOffset(engineInfo.ggttRingBuffer, engineInfo.tailRingBuffer); auto sizeNeeded = sizeof(MI_BATCH_BUFFER_START) + sizeof(MI_LOAD_REGISTER_IMM); auto tailAlignment = sizeof(uint64_t); sizeNeeded = alignUp(sizeNeeded, tailAlignment); if (engineInfo.tailRingBuffer + sizeNeeded >= engineInfo.sizeRingBuffer) { // Pad the remaining ring with NOOPs auto sizeToWrap = engineInfo.sizeRingBuffer - engineInfo.tailRingBuffer; memset(pTail, 0, sizeToWrap); // write remaining ring auto physDumpStart = ggtt->map(ggttTail, sizeToWrap, this->getGTTBits(), getMemoryBankForGtt()); AUB::addMemoryWrite( *stream, physDumpStart, pTail, sizeToWrap, this->getAddressSpace(AubMemDump::DataTypeHintValues::TraceCommandBuffer), AubMemDump::DataTypeHintValues::TraceCommandBuffer); previousTail = 0; engineInfo.tailRingBuffer = 0; pTail = engineInfo.pRingBuffer; } else if (engineInfo.tailRingBuffer == 0) { // Add a LRI if this is our first submission auto lri = MI_LOAD_REGISTER_IMM::sInit(); lri.setRegisterOffset(mmioBase + 0x2244); lri.setDataDword(0x00010000); *(MI_LOAD_REGISTER_IMM *)pTail = lri; pTail = ((MI_LOAD_REGISTER_IMM *)pTail) + 1; } // Add our BBS auto bbs = MI_BATCH_BUFFER_START::sInit(); bbs.setBatchBufferStartAddressGraphicsaddress472(static_cast(batchBufferGpuAddress)); bbs.setAddressSpaceIndicator(MI_BATCH_BUFFER_START::ADDRESS_SPACE_INDICATOR_PPGTT); *(MI_BATCH_BUFFER_START *)pTail = bbs; pTail = ((MI_BATCH_BUFFER_START *)pTail) + 1; // Compute our new ring tail. engineInfo.tailRingBuffer = (uint32_t)ptrDiff(pTail, engineInfo.pRingBuffer); // Add NOOPs as needed as our tail needs to be aligned while (engineInfo.tailRingBuffer % tailAlignment) { *(MI_NOOP *)pTail = MI_NOOP::sInit(); pTail = ((MI_NOOP *)pTail) + 1; engineInfo.tailRingBuffer = (uint32_t)ptrDiff(pTail, engineInfo.pRingBuffer); } UNRECOVERABLE_IF((engineInfo.tailRingBuffer % tailAlignment) != 0); // Only dump the new commands auto ggttDumpStart = ptrOffset(engineInfo.ggttRingBuffer, previousTail); auto dumpStart = ptrOffset(engineInfo.pRingBuffer, previousTail); auto dumpLength = engineInfo.tailRingBuffer - previousTail; // write ring { std::ostringstream str; str << "ggtt: " << std::hex << std::showbase << ggttDumpStart; stream->addComment(str.str().c_str()); } auto physDumpStart = ggtt->map(ggttDumpStart, dumpLength, this->getGTTBits(), getMemoryBankForGtt()); AUB::addMemoryWrite( *stream, physDumpStart, dumpStart, dumpLength, this->getAddressSpace(AubMemDump::DataTypeHintValues::TraceCommandBuffer), AubMemDump::DataTypeHintValues::TraceCommandBuffer); // update the ring mmio tail in the LRCA { std::ostringstream str; str << "ggtt: " << std::hex << std::showbase << engineInfo.ggttLRCA + 0x101c; stream->addComment(str.str().c_str()); } auto physLRCA = ggtt->map(engineInfo.ggttLRCA, sizeof(engineInfo.tailRingBuffer), this->getGTTBits(), getMemoryBankForGtt()); AUB::addMemoryWrite( *stream, physLRCA + 0x101c, &engineInfo.tailRingBuffer, sizeof(engineInfo.tailRingBuffer), this->getAddressSpace(getCsTraits(engineType).aubHintLRCA)); DEBUG_BREAK_IF(engineInfo.tailRingBuffer >= engineInfo.sizeRingBuffer); } // Submit our execlist by submitting to the execlist submit ports { typename AUB::MiContextDescriptorReg contextDescriptor = {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}; contextDescriptor.sData.Valid = true; contextDescriptor.sData.ForcePageDirRestore = false; contextDescriptor.sData.ForceRestore = false; contextDescriptor.sData.Legacy = true; contextDescriptor.sData.FaultSupport = 0; contextDescriptor.sData.PrivilegeAccessOrPPGTT = true; contextDescriptor.sData.ADor64bitSupport = AUB::Traits::addressingBits > 32; auto ggttLRCA = engineInfo.ggttLRCA; contextDescriptor.sData.LogicalRingCtxAddress = ggttLRCA / 4096; contextDescriptor.sData.ContextID = 0; submitLRCA(engineType, contextDescriptor); } if (this->standalone) { pollForCompletion(engineType); *this->tagAddress = this->peekLatestSentTaskCount(); } if (subCaptureManager->isSubCaptureMode()) { subCaptureManager->disableSubCapture(); } stream->flush(); return 0; } template bool AUBCommandStreamReceiverHw::addPatchInfoComments() { std::map allocationsMap; std::ostringstream str; str << "PatchInfoData" << std::endl; for (auto &patchInfoData : this->flatBatchBufferHelper->getPatchInfoCollection()) { str << std::hex << patchInfoData.sourceAllocation << ";"; str << std::hex << patchInfoData.sourceAllocationOffset << ";"; str << std::hex << patchInfoData.sourceType << ";"; str << std::hex << patchInfoData.targetAllocation << ";"; str << std::hex << patchInfoData.targetAllocationOffset << ";"; str << std::hex << patchInfoData.targetType << ";"; str << std::endl; if (patchInfoData.sourceAllocation) { allocationsMap.insert(std::pair(patchInfoData.sourceAllocation, ppgtt->map(static_cast(patchInfoData.sourceAllocation), 1, 0, MemoryBanks::MainBank))); } if (patchInfoData.targetAllocation) { allocationsMap.insert(std::pair(patchInfoData.targetAllocation, ppgtt->map(static_cast(patchInfoData.targetAllocation), 1, 0, MemoryBanks::MainBank))); } } bool result = stream->addComment(str.str().c_str()); this->flatBatchBufferHelper->getPatchInfoCollection().clear(); if (!result) { return false; } std::ostringstream allocationStr; allocationStr << "AllocationsList" << std::endl; for (auto &element : allocationsMap) { allocationStr << std::hex << element.first << ";" << element.second << std::endl; } result = stream->addComment(allocationStr.str().c_str()); if (!result) { return false; } return true; } template void AUBCommandStreamReceiverHw::submitLRCA(EngineType engineType, const typename AUBCommandStreamReceiverHw::MiContextDescriptorReg &contextDescriptor) { auto mmioBase = getCsTraits(engineType).mmioBase; stream->writeMMIO(mmioBase + 0x2230, 0); stream->writeMMIO(mmioBase + 0x2230, 0); stream->writeMMIO(mmioBase + 0x2230, contextDescriptor.ulData[1]); stream->writeMMIO(mmioBase + 0x2230, contextDescriptor.ulData[0]); } template void AUBCommandStreamReceiverHw::pollForCompletion(EngineType engineType) { typedef typename AubMemDump::CmdServicesMemTraceRegisterPoll CmdServicesMemTraceRegisterPoll; auto mmioBase = getCsTraits(engineType).mmioBase; bool pollNotEqual = false; this->stream->registerPoll( mmioBase + 0x2234, //EXECLIST_STATUS 0x100, 0x100, pollNotEqual, CmdServicesMemTraceRegisterPoll::TimeoutActionValues::Abort); } template void AUBCommandStreamReceiverHw::makeResidentExternal(AllocationView &allocationView) { externalAllocations.push_back(allocationView); } template void AUBCommandStreamReceiverHw::makeNonResidentExternal(uint64_t gpuAddress) { for (auto it = externalAllocations.begin(); it != externalAllocations.end(); it++) { if (it->first == gpuAddress) { externalAllocations.erase(it); break; } } } template bool AUBCommandStreamReceiverHw::writeMemory(GraphicsAllocation &gfxAllocation) { auto cpuAddress = gfxAllocation.getUnderlyingBuffer(); auto gpuAddress = GmmHelper::decanonize(gfxAllocation.getGpuAddress()); auto size = gfxAllocation.getUnderlyingBufferSize(); if (gfxAllocation.gmm && gfxAllocation.gmm->isRenderCompressed) { size = gfxAllocation.gmm->gmmResourceInfo->getSizeAllocation(); } if ((size == 0) || !gfxAllocation.isAubWritable()) return false; { std::ostringstream str; str << "ppgtt: " << std::hex << std::showbase << gpuAddress; stream->addComment(str.str().c_str()); } if (cpuAddress == nullptr) { DEBUG_BREAK_IF(gfxAllocation.isLocked()); cpuAddress = this->getMemoryManager()->lockResource(&gfxAllocation); gfxAllocation.setLocked(true); } AubHelperHw aubHelperHw(this->localMemoryEnabled); PageWalker walker = [&](uint64_t physAddress, size_t size, size_t offset, uint64_t entryBits) { AUB::reserveAddressGGTTAndWriteMmeory(*stream, static_cast(gpuAddress), cpuAddress, physAddress, size, offset, getPPGTTAdditionalBits(&gfxAllocation), aubHelperHw); }; ppgtt->pageWalk(static_cast(gpuAddress), size, 0, getPPGTTAdditionalBits(&gfxAllocation), walker, this->getMemoryBank(&gfxAllocation)); if (gfxAllocation.isLocked()) { this->getMemoryManager()->unlockResource(&gfxAllocation); gfxAllocation.setLocked(false); } if (AubHelper::isOneTimeAubWritableAllocationType(gfxAllocation.getAllocationType())) { gfxAllocation.setAubWritable(false); } return true; } template bool AUBCommandStreamReceiverHw::writeMemory(AllocationView &allocationView) { GraphicsAllocation gfxAllocation(reinterpret_cast(allocationView.first), allocationView.second); return writeMemory(gfxAllocation); } template void AUBCommandStreamReceiverHw::expectMMIO(uint32_t mmioRegister, uint32_t expectedValue) { using AubMemDump::CmdServicesMemTraceRegisterCompare; CmdServicesMemTraceRegisterCompare header; memset(&header, 0, sizeof(header)); header.setHeader(); header.data[0] = expectedValue; header.registerOffset = mmioRegister; header.noReadExpect = CmdServicesMemTraceRegisterCompare::NoReadExpectValues::ReadExpect; header.registerSize = CmdServicesMemTraceRegisterCompare::RegisterSizeValues::Dword; header.registerSpace = CmdServicesMemTraceRegisterCompare::RegisterSpaceValues::Mmio; header.readMaskLow = 0xffffffff; header.readMaskHigh = 0xffffffff; header.dwordCount = (sizeof(header) / sizeof(uint32_t)) - 1; this->stream->fileHandle.write(reinterpret_cast(&header), sizeof(header)); } template void AUBCommandStreamReceiverHw::expectMemory(void *gfxAddress, const void *srcAddress, size_t length) { PageWalker walker = [&](uint64_t physAddress, size_t size, size_t offset, uint64_t entryBits) { UNRECOVERABLE_IF(offset > length); this->stream->expectMemory(physAddress, reinterpret_cast(reinterpret_cast(srcAddress) + offset), size, this->getAddressSpaceFromPTEBits(entryBits)); }; this->ppgtt->pageWalk(reinterpret_cast(gfxAddress), length, 0, PageTableEntry::nonValidBits, walker, MemoryBanks::BankNotSpecified); } template void AUBCommandStreamReceiverHw::processResidency(ResidencyContainer &allocationsForResidency, OsContext &osContext) { if (subCaptureManager->isSubCaptureMode()) { if (!subCaptureManager->isSubCaptureEnabled()) { return; } } for (auto &externalAllocation : externalAllocations) { if (!writeMemory(externalAllocation)) { DEBUG_BREAK_IF(externalAllocation.second != 0); } } for (auto &gfxAllocation : allocationsForResidency) { if (dumpAubNonWritable) { gfxAllocation->setAubWritable(true); } if (!writeMemory(*gfxAllocation)) { DEBUG_BREAK_IF(!((gfxAllocation->getUnderlyingBufferSize() == 0) || !gfxAllocation->isAubWritable())); } gfxAllocation->residencyTaskCount[this->deviceIndex] = this->taskCount + 1; } dumpAubNonWritable = false; } template void AUBCommandStreamReceiverHw::makeNonResident(GraphicsAllocation &gfxAllocation) { if (gfxAllocation.residencyTaskCount[this->deviceIndex] != ObjectNotResident) { this->getEvictionAllocations().push_back(&gfxAllocation); gfxAllocation.residencyTaskCount[this->deviceIndex] = ObjectNotResident; } } template void AUBCommandStreamReceiverHw::activateAubSubCapture(const MultiDispatchInfo &dispatchInfo) { bool active = subCaptureManager->activateSubCapture(dispatchInfo); if (active) { std::string subCaptureFile = subCaptureManager->getSubCaptureFileName(dispatchInfo); auto isReopened = reopenFile(subCaptureFile); if (isReopened) { dumpAubNonWritable = true; } } if (this->standalone) { if (DebugManager.flags.ForceCsrFlushing.get()) { this->flushBatchedSubmissions(); } if (DebugManager.flags.ForceCsrReprogramming.get()) { this->initProgrammingFlags(); } } } template void AUBCommandStreamReceiverHw::addContextToken() { // Some simulator versions don't support adding the context token. // This hook allows specialization for those that do. } template void AUBCommandStreamReceiverHw::addGUCStartMessage(uint64_t batchBufferAddress, EngineType engineType) { typedef typename GfxFamily::MI_BATCH_BUFFER_START MI_BATCH_BUFFER_START; auto bufferSize = sizeof(uint32_t) + sizeof(MI_BATCH_BUFFER_START); AubHelperHw aubHelperHw(this->localMemoryEnabled); std::unique_ptr> buffer(this->getMemoryManager()->alignedMallocWrapper(bufferSize, MemoryConstants::pageSize), [&](void *ptr) { this->getMemoryManager()->alignedFreeWrapper(ptr); }); LinearStream linearStream(buffer.get(), bufferSize); uint32_t *header = static_cast(linearStream.getSpace(sizeof(uint32_t))); *header = getGUCWorkQueueItemHeader(engineType); MI_BATCH_BUFFER_START *miBatchBufferStart = linearStream.getSpaceForCmd(); DEBUG_BREAK_IF(bufferSize != linearStream.getUsed()); miBatchBufferStart->init(); miBatchBufferStart->setBatchBufferStartAddressGraphicsaddress472(AUB::ptrToPPGTT(buffer.get())); miBatchBufferStart->setAddressSpaceIndicator(MI_BATCH_BUFFER_START::ADDRESS_SPACE_INDICATOR_PPGTT); auto physBufferAddres = ppgtt->map(reinterpret_cast(buffer.get()), bufferSize, getPPGTTAdditionalBits(linearStream.getGraphicsAllocation()), MemoryBanks::MainBank); AUB::reserveAddressPPGTT(*stream, reinterpret_cast(buffer.get()), bufferSize, physBufferAddres, getPPGTTAdditionalBits(linearStream.getGraphicsAllocation()), aubHelperHw); AUB::addMemoryWrite( *stream, physBufferAddres, buffer.get(), bufferSize, this->getAddressSpace(AubMemDump::DataTypeHintValues::TraceNotype)); PatchInfoData patchInfoData(batchBufferAddress, 0u, PatchInfoAllocationType::Default, reinterpret_cast(buffer.get()), sizeof(uint32_t) + sizeof(MI_BATCH_BUFFER_START) - sizeof(uint64_t), PatchInfoAllocationType::GUCStartMessage); this->flatBatchBufferHelper->setPatchInfoData(patchInfoData); } template uint32_t AUBCommandStreamReceiverHw::getGUCWorkQueueItemHeader(EngineType engineType) { uint32_t GUCWorkQueueItemHeader = 0x00030001; return GUCWorkQueueItemHeader; } template uint64_t AUBCommandStreamReceiverHw::getPPGTTAdditionalBits(GraphicsAllocation *gfxAllocation) { return BIT(PageTableEntry::presentBit) | BIT(PageTableEntry::writableBit) | BIT(PageTableEntry::userSupervisorBit); } template void AUBCommandStreamReceiverHw::getGTTData(void *memory, AubGTTData &data) { data.present = true; data.localMemory = false; } template int AUBCommandStreamReceiverHw::getAddressSpaceFromPTEBits(uint64_t entryBits) const { return AubMemDump::AddressSpaceValues::TraceNonlocal; } template uint32_t AUBCommandStreamReceiverHw::getMemoryBankForGtt() const { return MemoryBanks::getBank(this->deviceIndex); } template PhysicalAddressAllocator *AUBCommandStreamReceiverHw::createPhysicalAddressAllocator() { return new PhysicalAddressAllocator(); } } // namespace OCLRT