mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 02:18:05 +08:00
GmmClientContext cleanup
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
753b0d82d5
commit
1a042af9c6
@@ -1,12 +1,78 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "gmm_client_context.h"
|
||||
#include "shared/source/gmm_helper/client_context/gmm_client_context.h"
|
||||
|
||||
#include "shared/source/gmm_helper/gmm_helper.h"
|
||||
#include "shared/source/gmm_helper/gmm_interface.h"
|
||||
#include "shared/source/helpers/debug_helpers.h"
|
||||
#include "shared/source/helpers/hw_info.h"
|
||||
#include "shared/source/os_interface/os_interface.h"
|
||||
#include "shared/source/sku_info/operations/sku_info_transfer.h"
|
||||
|
||||
namespace NEO {
|
||||
GmmClientContext::GmmClientContext(OSInterface *osInterface, HardwareInfo *hwInfo) : GmmClientContextBase(osInterface, hwInfo){};
|
||||
GmmClientContext::GmmClientContext(OSInterface *osInterface, HardwareInfo *hwInfo) : hardwareInfo(hwInfo) {
|
||||
_SKU_FEATURE_TABLE gmmFtrTable = {};
|
||||
_WA_TABLE gmmWaTable = {};
|
||||
SkuInfoTransfer::transferFtrTableForGmm(&gmmFtrTable, &hwInfo->featureTable);
|
||||
SkuInfoTransfer::transferWaTableForGmm(&gmmWaTable, &hwInfo->workaroundTable);
|
||||
|
||||
GMM_INIT_IN_ARGS inArgs{};
|
||||
GMM_INIT_OUT_ARGS outArgs{};
|
||||
|
||||
inArgs.ClientType = GMM_CLIENT::GMM_OCL_VISTA;
|
||||
inArgs.pGtSysInfo = &hwInfo->gtSystemInfo;
|
||||
inArgs.pSkuTable = &gmmFtrTable;
|
||||
inArgs.pWaTable = &gmmWaTable;
|
||||
inArgs.Platform = hwInfo->platform;
|
||||
|
||||
if (osInterface && osInterface->getDriverModel()) {
|
||||
osInterface->getDriverModel()->setGmmInputArgs(&inArgs);
|
||||
}
|
||||
|
||||
auto ret = GmmInterface::initialize(&inArgs, &outArgs);
|
||||
|
||||
UNRECOVERABLE_IF(ret != GMM_SUCCESS);
|
||||
|
||||
clientContext = outArgs.pGmmClientContext;
|
||||
}
|
||||
GmmClientContext::~GmmClientContext() {
|
||||
GMM_INIT_OUT_ARGS outArgs;
|
||||
outArgs.pGmmClientContext = clientContext;
|
||||
|
||||
GmmInterface::destroy(&outArgs);
|
||||
};
|
||||
|
||||
MEMORY_OBJECT_CONTROL_STATE GmmClientContext::cachePolicyGetMemoryObject(GMM_RESOURCE_INFO *pResInfo, GMM_RESOURCE_USAGE_TYPE usage) {
|
||||
return clientContext->CachePolicyGetMemoryObject(pResInfo, usage);
|
||||
}
|
||||
|
||||
GMM_RESOURCE_INFO *GmmClientContext::createResInfoObject(GMM_RESCREATE_PARAMS *pCreateParams) {
|
||||
return clientContext->CreateResInfoObject(pCreateParams);
|
||||
}
|
||||
|
||||
GMM_RESOURCE_INFO *GmmClientContext::copyResInfoObject(GMM_RESOURCE_INFO *pSrcRes) {
|
||||
return clientContext->CopyResInfoObject(pSrcRes);
|
||||
}
|
||||
|
||||
void GmmClientContext::destroyResInfoObject(GMM_RESOURCE_INFO *pResInfo) {
|
||||
clientContext->DestroyResInfoObject(pResInfo);
|
||||
}
|
||||
|
||||
GMM_CLIENT_CONTEXT *GmmClientContext::getHandle() const {
|
||||
return clientContext;
|
||||
}
|
||||
|
||||
uint8_t GmmClientContext::getSurfaceStateCompressionFormat(GMM_RESOURCE_FORMAT format) {
|
||||
return clientContext->GetSurfaceStateCompressionFormat(format);
|
||||
}
|
||||
|
||||
uint8_t GmmClientContext::getMediaSurfaceStateCompressionFormat(GMM_RESOURCE_FORMAT format) {
|
||||
return clientContext->GetMediaSurfaceStateCompressionFormat(format);
|
||||
}
|
||||
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user