diff --git a/cmake/setup_platform_flags.cmake b/cmake/setup_platform_flags.cmake index 976ba4206d..66a75ab585 100644 --- a/cmake/setup_platform_flags.cmake +++ b/cmake/setup_platform_flags.cmake @@ -298,7 +298,7 @@ if(SUPPORT_XE3_CORE) if(SUPPORT_PTL) ADD_AOT_DEFINITION(XE3_LPG) ADD_AOT_DEFINITION(PTL) - set(PTL_XE3_CORE_REVISIONS 0) + set(PTL_XE3_CORE_REVISIONS 4) set(PTL_XE3_CORE_RELEASES "30.0.0" "30.0.4" "30.1.0" "30.1.1") ADD_PRODUCT("SUPPORTED" "PTL" "IGFX_PTL") ADD_PLATFORM_FOR_CORE_TYPE("SUPPORTED" "XE3_CORE" "PTL") diff --git a/manifests/infra.yml b/manifests/infra.yml index e6082f65c1..91f1447850 100644 --- a/manifests/infra.yml +++ b/manifests/infra.yml @@ -3,7 +3,7 @@ components: branch: master dest_dir: infra fetch_tags: true - revision: v6846 + revision: v6875 type: git converter: M-3107 version: '1' diff --git a/manifests/manifest.yml b/manifests/manifest.yml index a64ee70222..d0d177ab5a 100644 --- a/manifests/manifest.yml +++ b/manifests/manifest.yml @@ -2,7 +2,7 @@ components: aub_configs: branch: aub_configs dest_dir: aub_configs - revision: c61eb321f2751d50e890a900d9301f9e995ffdcd + revision: b08d1653ff1f44a0c0e3da37cf57ab789b132a32 type: git aub_stream: branch: master @@ -41,7 +41,7 @@ components: dest_dir: kernels_bin type: git branch: kernels_bin - revision: 3381-4003 + revision: 3381-4005 kmdaf: branch: kmdaf dest_dir: kmdaf diff --git a/shared/source/xe3_core/enable_compiler_product_helper_ptl.cpp b/shared/source/xe3_core/enable_compiler_product_helper_ptl.cpp index 8aa5926918..6c3dda3189 100644 --- a/shared/source/xe3_core/enable_compiler_product_helper_ptl.cpp +++ b/shared/source/xe3_core/enable_compiler_product_helper_ptl.cpp @@ -20,7 +20,7 @@ constexpr auto gfxProduct = IGFX_PTL; namespace NEO { template <> uint32_t CompilerProductHelperHw::getDefaultHwIpVersion() const { - return AOT::PTL_H_A0; + return AOT::PTL_H_B0; } static EnableCompilerProductHelper enableCompilerProductHelperPTL; diff --git a/shared/source/xe3_core/hw_info_ptl.cpp b/shared/source/xe3_core/hw_info_ptl.cpp index 4d69afcbbe..9e9ddabbaa 100644 --- a/shared/source/xe3_core/hw_info_ptl.cpp +++ b/shared/source/xe3_core/hw_info_ptl.cpp @@ -27,7 +27,7 @@ const PLATFORM PTL::platform = { IGFX_XE3_CORE, PLATFORM_NONE, // default init 0, // usDeviceID - 0, // usRevId. 0 sets the stepping to A0 + 4, // usRevId. 0 sets the stepping to A0 0, // usDeviceID_PCH 0, // usRevId_PCH GTTYPE_UNDEFINED}; diff --git a/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp b/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp index 4639ddd843..e070be3dec 100644 --- a/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp +++ b/shared/test/unit_test/xe3_core/ptl/product_helper_tests_ptl.cpp @@ -30,7 +30,7 @@ PTLTEST_F(PtlProductHelper, whenGettingPreferredAllocationMethodThenAllocateByKm } PTLTEST_F(PtlProductHelper, givenCompilerProductHelperWhenGetDefaultHwIpVersionThenCorrectValueIsSet) { - EXPECT_EQ(compilerProductHelper->getDefaultHwIpVersion(), AOT::PTL_H_A0); + EXPECT_EQ(compilerProductHelper->getDefaultHwIpVersion(), AOT::PTL_H_B0); } HWTEST_EXCLUDE_PRODUCT(CompilerProductHelperFixture, WhenIsMidThreadPreemptionIsSupportedIsCalledThenCorrectResultIsReturned, IGFX_PTL); diff --git a/target_unit_tests/xe3_core/ptl/CMakeLists.txt b/target_unit_tests/xe3_core/ptl/CMakeLists.txt index 1faeddf3e6..c966d6dde9 100644 --- a/target_unit_tests/xe3_core/ptl/CMakeLists.txt +++ b/target_unit_tests/xe3_core/ptl/CMakeLists.txt @@ -5,6 +5,6 @@ # if(TESTS_PTL) - set(unit_test_config "ptl/2/4/8/0") + set(unit_test_config "ptl/2/4/8/4") include(${NEO_SOURCE_DIR}/cmake/run_ult_target.cmake) endif()