45 lines
1.6 KiB
C++
45 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "gmm_client_context.h"
|
|
#include "runtime/gmm_helper/gmm_memory_base.h"
|
|
#include "runtime/gmm_helper/gmm_helper.h"
|
|
#include "runtime/os_interface/windows/windows_defs.h"
|
|
|
|
namespace OCLRT {
|
|
GmmMemoryBase::GmmMemoryBase() {
|
|
clientContext = GmmHelper::getClientContext()->getHandle();
|
|
}
|
|
bool GmmMemoryBase::configureDeviceAddressSpace(GMM_ESCAPE_HANDLE hAdapter,
|
|
GMM_ESCAPE_HANDLE hDevice,
|
|
GMM_ESCAPE_FUNC_TYPE pfnEscape,
|
|
GMM_GFX_SIZE_T SvmSize,
|
|
BOOLEAN BDWL3Coherency) {
|
|
return clientContext->ConfigureDeviceAddressSpace(
|
|
{hAdapter},
|
|
{hDevice},
|
|
{pfnEscape},
|
|
SvmSize,
|
|
0,
|
|
0,
|
|
BDWL3Coherency,
|
|
0,
|
|
0) != 0;
|
|
}
|
|
|
|
bool GmmMemoryBase::configureDevice(GMM_ESCAPE_HANDLE hAdapter,
|
|
GMM_ESCAPE_HANDLE hDevice,
|
|
GMM_ESCAPE_FUNC_TYPE pfnEscape,
|
|
GMM_GFX_SIZE_T SvmSize,
|
|
BOOLEAN BDWL3Coherency,
|
|
GMM_GFX_PARTITIONING &gfxPartition,
|
|
uintptr_t &minAddress) {
|
|
minAddress = windowsMinAddress;
|
|
return configureDeviceAddressSpace(hAdapter, hDevice, pfnEscape, SvmSize, BDWL3Coherency);
|
|
}
|
|
}; // namespace OCLRT
|