From ab4a45b2719b55f63dfb41af575512f851ae637d Mon Sep 17 00:00:00 2001 From: Bartosz Dunajski Date: Wed, 18 May 2022 11:11:04 +0000 Subject: [PATCH] Update PVC device ids Signed-off-by: Bartosz Dunajski --- .../xe_hpc_core/pvc/linux/dll/device_id_tests_pvc.cpp | 6 +++++- shared/source/dll/devices/devices_additional.inl | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/opencl/test/unit_test/xe_hpc_core/pvc/linux/dll/device_id_tests_pvc.cpp b/opencl/test/unit_test/xe_hpc_core/pvc/linux/dll/device_id_tests_pvc.cpp index d453822c9a..7a72249ad4 100644 --- a/opencl/test/unit_test/xe_hpc_core/pvc/linux/dll/device_id_tests_pvc.cpp +++ b/opencl/test/unit_test/xe_hpc_core/pvc/linux/dll/device_id_tests_pvc.cpp @@ -10,11 +10,15 @@ using namespace NEO; TEST_F(DeviceIdTests, GivenPvcSupportedDeviceIdThenConfigIsCorrect) { - std::array expectedDescriptors = {{ + std::array expectedDescriptors = {{ {0x0BD0, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, {0x0BD5, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, {0x0BD6, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, + {0x0BD7, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, {0x0BD8, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, + {0x0BD9, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, + {0x0BDA, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, + {0x0BDB, &PVC_CONFIG::hwInfo, &PVC_CONFIG::setupHardwareInfo}, }}; testImpl(expectedDescriptors); diff --git a/shared/source/dll/devices/devices_additional.inl b/shared/source/dll/devices/devices_additional.inl index 41fb154fd7..1f02b0a965 100644 --- a/shared/source/dll/devices/devices_additional.inl +++ b/shared/source/dll/devices/devices_additional.inl @@ -10,7 +10,11 @@ DEVICE(0x0BD0, PVC_CONFIG) DEVICE(0x0BD5, PVC_CONFIG) DEVICE(0x0BD6, PVC_CONFIG) +DEVICE(0x0BD7, PVC_CONFIG) DEVICE(0x0BD8, PVC_CONFIG) +DEVICE(0x0BD9, PVC_CONFIG) +DEVICE(0x0BDA, PVC_CONFIG) +DEVICE(0x0BDB, PVC_CONFIG) #endif #endif