Add memory config feature flag

Increment DLL version

Change-Id: I0c923b8d5f43ef39eb70630ed1920eb4d1d2cbdb
Signed-off-by: drprajap <dimpalben.r.prajapati@intel.com>
This commit is contained in:
drprajap 2018-11-20 10:01:17 -08:00
parent fffd5a579e
commit 10ad15adc3
3 changed files with 5 additions and 4 deletions

View File

@ -24,11 +24,11 @@ cmake_minimum_required(VERSION 3.5)
project(igfx_gmmumd)
# GmmLib Api Version used for so naming
set(GMMLIB_API_MAJOR_VERSION 4)
set(GMMLIB_API_MAJOR_VERSION 5)
set(GMMLIB_API_MINOR_VERSION 0)
if(NOT DEFINED MAJOR_VERSION)
set(MAJOR_VERSION 4)
set(MAJOR_VERSION 5)
endif()
if(NOT DEFINED MINOR_VERSION)

View File

@ -29,7 +29,7 @@ OTHER DEALINGS IN THE SOFTWARE.
#if defined(_WIN64)
#define GMM_UMD_DLL "igdgmm64.dll"
#else
#define GMM_UMD_DLL "libigdgmm.so.4"
#define GMM_UMD_DLL "libigdgmm.so.5"
#endif
#else
#define GMM_ENTRY_NAME "_OpenGmm@4"
@ -40,6 +40,6 @@ OTHER DEALINGS IN THE SOFTWARE.
#if defined(_WIN32)
#define GMM_UMD_DLL "igdgmm32.dll"
#else
#define GMM_UMD_DLL "libigdgmm.so.4"
#define GMM_UMD_DLL "libigdgmm.so.5"
#endif
#endif

View File

@ -90,6 +90,7 @@ typedef struct _SKU_FEATURE_TABLE
unsigned int FtrWddm2_1_64kbPages : 1; // WDDMv2.1 64KB page support
unsigned int FtrFrameBufferLLC : 1; // Displayable Frame buffers cached in LLC
unsigned int FtrDriverFLR : 1; // Enable Function Level Reset (Gen11+)
unsigned int FtrLocalMemory : 1;
};