mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Device ID Cleanup
Resolves: NEO-5250 Signed-off-by: Adam Cetnerowski <adam.cetnerowski@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
152f89f2f2
commit
8c0a97a618
@ -26,8 +26,8 @@ int HwInfoConfigHw<IGFX_COFFEELAKE>::configureHardwareCustom(HardwareInfo *hwInf
|
||||
gtSystemInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = true;
|
||||
gtSystemInfo->VEBoxInfo.IsValid = true;
|
||||
|
||||
if (hwInfo->platform.usDeviceID == ICFL_GT3_ULT_28W_DEVICE_F0_ID ||
|
||||
hwInfo->platform.usDeviceID == ICFL_GT3_ULT_15W_DEVICE_F0_ID) {
|
||||
if (hwInfo->platform.usDeviceID == 0x3EA8 ||
|
||||
hwInfo->platform.usDeviceID == 0x3EA6) {
|
||||
gtSystemInfo->EdramSizeInKb = 64 * 1024;
|
||||
}
|
||||
|
||||
|
@ -26,8 +26,8 @@ int HwInfoConfigHw<IGFX_KABYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo,
|
||||
gtSystemInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
|
||||
gtSystemInfo->VEBoxInfo.IsValid = true;
|
||||
|
||||
if (hwInfo->platform.usDeviceID == IKBL_GT3_28W_ULT_DEVICE_F0_ID ||
|
||||
hwInfo->platform.usDeviceID == IKBL_GT3_15W_ULT_DEVICE_F0_ID) {
|
||||
if (hwInfo->platform.usDeviceID == 0x5927 ||
|
||||
hwInfo->platform.usDeviceID == 0x5926) {
|
||||
gtSystemInfo->EdramSizeInKb = 64 * 1024;
|
||||
}
|
||||
|
||||
|
@ -24,14 +24,14 @@ int HwInfoConfigHw<IGFX_SKYLAKE>::configureHardwareCustom(HardwareInfo *hwInfo,
|
||||
gtSystemInfo->VEBoxInfo.IsValid = true;
|
||||
gtSystemInfo->VDBoxInfo.IsValid = true;
|
||||
|
||||
if (hwInfo->platform.usDeviceID == ISKL_GT3e_ULT_DEVICE_F0_ID_540 ||
|
||||
hwInfo->platform.usDeviceID == ISKL_GT3e_ULT_DEVICE_F0_ID_550 ||
|
||||
hwInfo->platform.usDeviceID == ISKL_GT3_MEDIA_SERV_DEVICE_F0_ID) {
|
||||
if (hwInfo->platform.usDeviceID == 0x1926 ||
|
||||
hwInfo->platform.usDeviceID == 0x1927 ||
|
||||
hwInfo->platform.usDeviceID == 0x192D) {
|
||||
gtSystemInfo->EdramSizeInKb = 64 * 1024;
|
||||
}
|
||||
|
||||
if (hwInfo->platform.usDeviceID == ISKL_GT4_HALO_MOBL_DEVICE_F0_ID ||
|
||||
hwInfo->platform.usDeviceID == ISKL_GT4_WRK_DEVICE_F0_ID) {
|
||||
if (hwInfo->platform.usDeviceID == 0x193B ||
|
||||
hwInfo->platform.usDeviceID == 0x193D) {
|
||||
gtSystemInfo->EdramSizeInKb = 128 * 1024;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user