compute-runtime/unit_tests/mock_gdi/mock_gdi.cpp

412 lines
15 KiB
C++
Raw Normal View History

/*
* 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.
*/
#define UMDF_USING_NTSTATUS
#include <Windows.h>
#ifndef NTSTATUS
#define NTSTATUS LONG
#endif
#include "mock_gdi.h"
#include <ntstatus.h>
#include "runtime/os_interface/windows/os_time.h"
ADAPTER_INFO gAdapterInfo = {0};
#ifdef __cplusplus // If used by C++ code,
extern "C" { // we need to export the C interface
#endif
BOOLEAN WINAPI DllMain(IN HINSTANCE hDllHandle,
IN DWORD nReason,
IN LPVOID Reserved) {
BOOLEAN bRet = TRUE;
switch (nReason) {
case DLL_PROCESS_ATTACH:
gAdapterInfo.GfxPartition.Standard.Base = 0x0000800400000000;
gAdapterInfo.GfxPartition.Standard.Limit = 0x0000eeffffffffff;
gAdapterInfo.GfxPartition.SVM.Base = 0;
gAdapterInfo.GfxPartition.SVM.Limit = 0x00007fffffffffff;
gAdapterInfo.GfxPartition.Heap32[0].Base = 0x0000800000000000;
gAdapterInfo.GfxPartition.Heap32[0].Limit = 0x00008000ffffefff;
gAdapterInfo.GfxPartition.Heap32[1].Base = 0x0000800100000000;
gAdapterInfo.GfxPartition.Heap32[1].Limit = 0x00008001ffffefff;
gAdapterInfo.GfxPartition.Heap32[2].Base = 0x0000800200000000;
gAdapterInfo.GfxPartition.Heap32[2].Limit = 0x00008002ffffefff;
gAdapterInfo.GfxPartition.Heap32[3].Base = 0x0000800300000000;
gAdapterInfo.GfxPartition.Heap32[3].Limit = 0x00008003ffffefff;
break;
case DLL_PROCESS_DETACH:
break;
default:
break;
}
return bRet;
}
NTSTATUS __stdcall D3DKMTEscape(IN CONST D3DKMT_ESCAPE *pData) {
static int PerfTicks = 0;
((OCLRT::TimeStampDataHeader *)pData->pPrivateDriverData)->m_Data.m_Out.RetCode = OCLRT::GTDI_RET_OK;
((OCLRT::TimeStampDataHeader *)pData->pPrivateDriverData)->m_Data.m_Out.gpuPerfTicks = ++PerfTicks;
((OCLRT::TimeStampDataHeader *)pData->pPrivateDriverData)->m_Data.m_Out.cpuPerfTicks = PerfTicks;
((OCLRT::TimeStampDataHeader *)pData->pPrivateDriverData)->m_Data.m_Out.gpuPerfFreq = 1;
((OCLRT::TimeStampDataHeader *)pData->pPrivateDriverData)->m_Data.m_Out.cpuPerfFreq = 1;
return STATUS_SUCCESS;
}
DECL_FUNCTIONS()
UINT64 PagingFence = 0;
void __stdcall MockSetAdapterInfo(const void *pGfxPlatform, const void *pGTSystemInfo) {
if (pGfxPlatform != NULL) {
gAdapterInfo.GfxPlatform = *(PLATFORM *)pGfxPlatform;
}
if (pGTSystemInfo != NULL) {
gAdapterInfo.SystemInfo = *(GT_SYSTEM_INFO *)pGTSystemInfo;
}
}
NTSTATUS __stdcall D3DKMTOpenAdapterFromLuid(IN OUT CONST D3DKMT_OPENADAPTERFROMLUID *openAdapter) {
if (openAdapter == nullptr || (openAdapter->AdapterLuid.HighPart == 0 && openAdapter->AdapterLuid.LowPart == 0)) {
return STATUS_INVALID_PARAMETER;
}
D3DKMT_OPENADAPTERFROMLUID *openAdapterNonConst = const_cast<D3DKMT_OPENADAPTERFROMLUID *>(openAdapter);
openAdapterNonConst->hAdapter = ADAPTER_HANDLE;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTCreateDevice(IN OUT D3DKMT_CREATEDEVICE *createDevice) {
if (createDevice == nullptr || createDevice->hAdapter != ADAPTER_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
createDevice->hDevice = DEVICE_HANDLE;
SetMockCreateDeviceParams(*createDevice);
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTDestroyDevice(IN CONST D3DKMT_DESTROYDEVICE *destoryDevice) {
if (destoryDevice == nullptr || destoryDevice->hDevice != DEVICE_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTCreatePagingQueue(IN OUT D3DKMT_CREATEPAGINGQUEUE *createQueue) {
if (createQueue == nullptr || (createQueue->hDevice != DEVICE_HANDLE)) {
return STATUS_INVALID_PARAMETER;
}
createQueue->hPagingQueue = PAGINGQUEUE_HANDLE;
createQueue->hSyncObject = PAGINGQUEUE_SYNCOBJECT_HANDLE;
createQueue->FenceValueCPUVirtualAddress = &PagingFence;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTDestroyPagingQueue(IN OUT D3DDDI_DESTROYPAGINGQUEUE *destoryQueue) {
if (destoryQueue == nullptr || destoryQueue->hPagingQueue != PAGINGQUEUE_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTCreateContextVirtual(IN D3DKMT_CREATECONTEXTVIRTUAL *createContext) {
if (createContext == nullptr || createContext->hDevice != DEVICE_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
if ((createContext->PrivateDriverDataSize != 0 && createContext->pPrivateDriverData == nullptr) ||
(createContext->PrivateDriverDataSize == 0 && createContext->pPrivateDriverData != nullptr)) {
return STATUS_INVALID_PARAMETER;
}
createContext->hContext = CONTEXT_HANDLE;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTDestroyContext(IN CONST D3DKMT_DESTROYCONTEXT *destroyContext) {
if (destroyContext == nullptr || destroyContext->hContext != CONTEXT_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
return STATUS_SUCCESS;
}
static D3DKMT_CREATEALLOCATION *pallocation = nullptr;
NTSTATUS __stdcall D3DKMTCreateAllocation(IN OUT D3DKMT_CREATEALLOCATION *allocation) {
D3DDDI_ALLOCATIONINFO *allocationInfo;
int numOfAllocations;
bool createResource;
bool globalShare;
pallocation = allocation;
if (allocation == nullptr || allocation->hDevice != DEVICE_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
allocationInfo = allocation->pAllocationInfo;
if (allocationInfo == NULL) {
return STATUS_INVALID_PARAMETER;
}
numOfAllocations = allocation->NumAllocations;
createResource = allocation->Flags.CreateResource;
globalShare = allocation->Flags.CreateShared;
if (createResource) {
allocation->hResource = RESOURCE_HANDLE;
}
if (globalShare) {
allocation->hGlobalShare = RESOURCE_HANDLE;
}
for (int i = 0; i < numOfAllocations; ++i) {
if (allocationInfo != NULL) {
allocationInfo->hAllocation = ALLOCATION_HANDLE;
}
allocationInfo++;
}
return STATUS_SUCCESS;
}
static unsigned int DestroyAllocationWithResourceHandleCalled = 0u;
static D3DKMT_DESTROYALLOCATION2 destroyalloc2 = {0};
static D3DKMT_HANDLE LastDestroyedResourceHandle = 0;
static D3DKMT_CREATEDEVICE CreateDeviceParams = {{0}};
NTSTATUS __stdcall D3DKMTDestroyAllocation2(IN CONST D3DKMT_DESTROYALLOCATION2 *destroyAllocation) {
int numOfAllocations;
const D3DKMT_HANDLE *allocationList;
LastDestroyedResourceHandle = 0;
if (destroyAllocation == nullptr || destroyAllocation->hDevice != DEVICE_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
destroyalloc2 = *destroyAllocation;
numOfAllocations = destroyAllocation->AllocationCount;
allocationList = destroyAllocation->phAllocationList;
for (int i = 0; i < numOfAllocations; ++i) {
if (allocationList != NULL) {
if (*allocationList != ALLOCATION_HANDLE) {
return STATUS_UNSUCCESSFUL;
}
}
allocationList++;
}
if (numOfAllocations == 0 && destroyAllocation->hResource == 0u) {
return STATUS_UNSUCCESSFUL;
}
if (destroyAllocation->hResource) {
DestroyAllocationWithResourceHandleCalled = 1;
LastDestroyedResourceHandle = destroyAllocation->hResource;
}
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTMapGpuVirtualAddress(IN OUT D3DDDI_MAPGPUVIRTUALADDRESS *mapGpuVA) {
uint64_t maxSvmAddress = sizeof(size_t) == 8 ? 0x7fffffffffff : 0xffffffff;
if (mapGpuVA == nullptr || mapGpuVA->hPagingQueue != PAGINGQUEUE_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
if (mapGpuVA->hAllocation != ALLOCATION_HANDLE && mapGpuVA->hAllocation != NT_ALLOCATION_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
if (mapGpuVA->MinimumAddress != 0) {
if (mapGpuVA->BaseAddress != 0 && mapGpuVA->BaseAddress < mapGpuVA->MinimumAddress) {
return STATUS_INVALID_PARAMETER;
}
}
if (mapGpuVA->MaximumAddress != 0) {
if (mapGpuVA->BaseAddress != 0 && mapGpuVA->BaseAddress > mapGpuVA->MaximumAddress) {
return STATUS_INVALID_PARAMETER;
}
}
if (mapGpuVA->BaseAddress == 0) {
mapGpuVA->VirtualAddress = mapGpuVA->MinimumAddress;
} else {
if (maxSvmAddress != mapGpuVA->MaximumAddress) {
return STATUS_INVALID_PARAMETER;
}
mapGpuVA->VirtualAddress = mapGpuVA->BaseAddress;
}
mapGpuVA->PagingFenceValue = 1;
return STATUS_PENDING;
}
NTSTATUS __stdcall D3DKMTQueryAdapterInfo(IN CONST D3DKMT_QUERYADAPTERINFO *queryAdapterInfo) {
if (queryAdapterInfo == nullptr || queryAdapterInfo->hAdapter != ADAPTER_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
if (queryAdapterInfo->Type == KMTQAITYPE_UMDRIVERPRIVATE) {
if (queryAdapterInfo->pPrivateDriverData == NULL) {
return STATUS_INVALID_PARAMETER;
}
if (queryAdapterInfo->PrivateDriverDataSize == 0) {
return STATUS_INVALID_PARAMETER;
}
}
ADAPTER_INFO *adapterInfo = reinterpret_cast<ADAPTER_INFO *>(queryAdapterInfo->pPrivateDriverData);
adapterInfo->GfxPlatform = gAdapterInfo.GfxPlatform;
adapterInfo->SystemInfo = gAdapterInfo.SystemInfo;
adapterInfo->CacheLineSize = 64;
adapterInfo->MinRenderFreq = 350;
adapterInfo->MaxRenderFreq = 1150;
adapterInfo->SizeOfDmaBuffer = 32768;
adapterInfo->GfxMemorySize = 2181038080;
adapterInfo->SystemSharedMemory = 4249540608;
adapterInfo->SystemVideoMemory = 0;
adapterInfo->GfxPartition.Standard.Base = gAdapterInfo.GfxPartition.Standard.Base;
adapterInfo->GfxPartition.Standard.Limit = gAdapterInfo.GfxPartition.Standard.Limit;
adapterInfo->GfxPartition.SVM.Base = gAdapterInfo.GfxPartition.SVM.Base;
adapterInfo->GfxPartition.SVM.Limit = gAdapterInfo.GfxPartition.SVM.Limit;
adapterInfo->GfxPartition.Heap32[0].Base = gAdapterInfo.GfxPartition.Heap32[0].Base;
adapterInfo->GfxPartition.Heap32[0].Limit = gAdapterInfo.GfxPartition.Heap32[0].Limit;
adapterInfo->GfxPartition.Heap32[1].Base = gAdapterInfo.GfxPartition.Heap32[1].Base;
adapterInfo->GfxPartition.Heap32[1].Limit = gAdapterInfo.GfxPartition.Heap32[1].Limit;
adapterInfo->GfxPartition.Heap32[2].Base = gAdapterInfo.GfxPartition.Heap32[2].Base;
adapterInfo->GfxPartition.Heap32[2].Limit = gAdapterInfo.GfxPartition.Heap32[2].Limit;
adapterInfo->GfxPartition.Heap32[3].Base = gAdapterInfo.GfxPartition.Heap32[3].Base;
adapterInfo->GfxPartition.Heap32[3].Limit = gAdapterInfo.GfxPartition.Heap32[3].Limit;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTMakeResident(IN OUT D3DDDI_MAKERESIDENT *makeResident) {
if (makeResident == nullptr || makeResident->hPagingQueue != PAGINGQUEUE_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
makeResident->PagingFenceValue = 0;
return STATUS_PENDING;
}
static UINT totalPrivateSize = 0u;
static UINT gmmSize = 0u;
static void *gmmPtr = nullptr;
static UINT numberOfAllocsToReturn = 0u;
NTSTATUS __stdcall D3DKMTOpenResource(IN OUT D3DKMT_OPENRESOURCE *openResurce) {
openResurce->hResource = RESOURCE_HANDLE;
openResurce->pOpenAllocationInfo[0].hAllocation = ALLOCATION_HANDLE;
openResurce->pOpenAllocationInfo[0].pPrivateDriverData = gmmPtr;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTOpenResourceFromNtHandle(IN OUT D3DKMT_OPENRESOURCEFROMNTHANDLE *openResurce) {
openResurce->hResource = NT_RESOURCE_HANDLE;
openResurce->pOpenAllocationInfo2[0].hAllocation = NT_ALLOCATION_HANDLE;
openResurce->pOpenAllocationInfo2[0].pPrivateDriverData = gmmPtr;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTQueryResourceInfo(IN OUT D3DKMT_QUERYRESOURCEINFO *queryResourceInfo) {
if (queryResourceInfo->hDevice != DEVICE_HANDLE || queryResourceInfo->hGlobalShare == INVALID_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
queryResourceInfo->TotalPrivateDriverDataSize = totalPrivateSize;
queryResourceInfo->PrivateRuntimeDataSize = gmmSize;
queryResourceInfo->NumAllocations = numberOfAllocsToReturn;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTQueryResourceInfoFromNtHandle(IN OUT D3DKMT_QUERYRESOURCEINFOFROMNTHANDLE *queryResourceInfo) {
if (queryResourceInfo->hDevice != DEVICE_HANDLE || queryResourceInfo->hNtHandle == INVALID_HANDLE) {
return STATUS_INVALID_PARAMETER;
}
queryResourceInfo->TotalPrivateDriverDataSize = totalPrivateSize;
queryResourceInfo->PrivateRuntimeDataSize = gmmSize;
queryResourceInfo->NumAllocations = numberOfAllocsToReturn;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTLock2(IN OUT D3DKMT_LOCK2 *lock2) {
if (lock2->hAllocation == 0 || lock2->hDevice == 0) {
return STATUS_INVALID_PARAMETER;
}
lock2->pData = (void *)65536;
return STATUS_SUCCESS;
}
NTSTATUS __stdcall D3DKMTUnlock2(IN CONST D3DKMT_UNLOCK2 *unlock2) {
if (unlock2->hAllocation == 0 || unlock2->hDevice == 0) {
return STATUS_INVALID_PARAMETER;
}
return STATUS_SUCCESS;
}
static size_t cpuFence = 0;
NTSTATUS __stdcall D3DKMTCreateSynchronizationObject2(IN OUT D3DKMT_CREATESYNCHRONIZATIONOBJECT2 *synchObject) {
if (synchObject == nullptr) {
return STATUS_INVALID_PARAMETER;
}
synchObject->Info.MonitoredFence.FenceValueCPUVirtualAddress = &cpuFence;
return STATUS_SUCCESS;
}
#ifdef __cplusplus
}
#endif
NTSTATUS MockSetSizes(void *inGmmPtr, UINT inNumAllocsToReturn, UINT inGmmSize, UINT inTotalPrivateSize) {
gmmSize = inGmmSize;
gmmPtr = inGmmPtr;
totalPrivateSize = inTotalPrivateSize;
numberOfAllocsToReturn = inNumAllocsToReturn;
return STATUS_SUCCESS;
}
NTSTATUS GetMockSizes(UINT &destroyAlloactionWithResourceHandleCalled, D3DKMT_DESTROYALLOCATION2 *&ptrDestroyAlloc) {
destroyAlloactionWithResourceHandleCalled = DestroyAllocationWithResourceHandleCalled;
ptrDestroyAlloc = &destroyalloc2;
return NTSTATUS();
}
D3DKMT_HANDLE GetMockLastDestroyedResHandle() {
return LastDestroyedResourceHandle;
}
void SetMockLastDestroyedResHandle(D3DKMT_HANDLE handle) {
LastDestroyedResourceHandle = handle;
}
D3DKMT_CREATEDEVICE GetMockCreateDeviceParams() {
return CreateDeviceParams;
}
void SetMockCreateDeviceParams(D3DKMT_CREATEDEVICE params) {
CreateDeviceParams = params;
}
D3DKMT_CREATEALLOCATION *getMockAllocation() {
return pallocation;
}
ADAPTER_INFO *getAdapterInfoAddress() {
return &gAdapterInfo;
}