SWDEV-322620 - Virtual Memory Management

Hooked up the start VA hint address to PAL.

Change-Id: I4301d3eaaabcc85faf63fb25291291dcc3e8ebd1
Esse commit está contido em:
Christophe Paquot
2022-09-28 14:05:56 -07:00
commit de Christophe Paquot
commit 470c4d7335
2 arquivos alterados com 5 adições e 1 exclusões
+1 -1
Ver Arquivo
@@ -1,3 +1,3 @@
# PAL interface versions
PAL_MAJOR_VERSION = 734
PAL_MAJOR_VERSION = 761
GPUOPEN_MAJOR_VERSION = 42
+4
Ver Arquivo
@@ -1255,6 +1255,10 @@ bool Resource::create(MemoryType memType, CreateParams* params, bool forceLinear
createInfo.flags.busAddressable = true;
} else if (memoryType() == VaRange) {
createInfo.flags.virtualAlloc = true;
if (params->owner_->getSvmPtr() != nullptr) {
createInfo.flags.startVaHintFlag = true;
createInfo.startVaHint = reinterpret_cast<Pal::gpusize>(params->owner_->getSvmPtr());
}
}
memTypeToHeap(&createInfo);