/* * Copyright (C) 2018-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/gmm_helper/gmm_interface.h" namespace NEO { GMM_INIT_IN_ARGS passedInputArgs = {}; SKU_FEATURE_TABLE passedFtrTable = {}; WA_TABLE passedWaTable = {}; bool copyInputArgs = false; namespace GmmInterface { GMM_STATUS initialize(GMM_INIT_IN_ARGS *pInArgs, GMM_INIT_OUT_ARGS *pOutArgs) { pOutArgs->pGmmClientContext = reinterpret_cast(0x08); if (pInArgs) { if (pInArgs->Platform.eProductFamily == PRODUCT_FAMILY::IGFX_UNKNOWN && pInArgs->Platform.ePCHProductFamily == PCH_PRODUCT_FAMILY::PCH_UNKNOWN) { return GMM_ERROR; } if (copyInputArgs) { passedInputArgs = *pInArgs; passedFtrTable = *reinterpret_cast(pInArgs->pSkuTable); passedWaTable = *reinterpret_cast(pInArgs->pWaTable); } return GMM_SUCCESS; } return GMM_INVALIDPARAM; } void destroy(GMM_INIT_OUT_ARGS *pInArgs) { } } // namespace GmmInterface } // namespace NEO