From c055eca643fb07f71cb8ee89ce525e241fbacb0e Mon Sep 17 00:00:00 2001 From: Lim Siew Hoon Date: Thu, 13 Feb 2025 09:02:40 +0800 Subject: gmmlib: upgrade 22.5.2 -> 22.5.5 Signed-off-by: Lim Siew Hoon Signed-off-by: Anuj Mittal --- .../files/0001-Extend-helper-Macros-219.patch | 74 ---------------------- 1 file changed, 74 deletions(-) delete mode 100644 recipes-graphics/gmmlib/files/0001-Extend-helper-Macros-219.patch (limited to 'recipes-graphics/gmmlib/files/0001-Extend-helper-Macros-219.patch') diff --git a/recipes-graphics/gmmlib/files/0001-Extend-helper-Macros-219.patch b/recipes-graphics/gmmlib/files/0001-Extend-helper-Macros-219.patch deleted file mode 100644 index d6be11f4..00000000 --- a/recipes-graphics/gmmlib/files/0001-Extend-helper-Macros-219.patch +++ /dev/null @@ -1,74 +0,0 @@ -From a025de4d83066f1ddf0890a0c7d87044f8723777 Mon Sep 17 00:00:00 2001 -From: John Machado -Date: Mon, 18 Nov 2024 16:14:08 +0530 -Subject: [PATCH] Extend helper Macros (#219) - -Upstream-Status: Backport [https://github.com/intel/gmmlib/commit/31ee7e6d48a98a2cb8afb87f0d4f2afc97fe06a0] -Signed-off-by: Lim Siew Hoon - ---- - Source/inc/common/igfxfmid.h | 13 +++++++------ - 1 file changed, 7 insertions(+), 6 deletions(-) - -diff --git a/Source/inc/common/igfxfmid.h b/Source/inc/common/igfxfmid.h -index a9176de..8d831e4 100644 ---- a/Source/inc/common/igfxfmid.h -+++ b/Source/inc/common/igfxfmid.h -@@ -399,7 +399,7 @@ typedef enum __NATIVEGTTYPE - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN12_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HP_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPG_CORE ) || \ -- ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPC_CORE ) || \ -+ ( GFX_GET_CURRENT_RENDERCORE(p) >= IGFX_XE_HPC_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GENNEXT_CORE ) ) - - #define GFX_IS_GEN_8_OR_LATER(p) ( ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN8_CORE ) || \ -@@ -409,7 +409,7 @@ typedef enum __NATIVEGTTYPE - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN12_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HP_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPG_CORE ) || \ -- ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPC_CORE ) || \ -+ ( GFX_GET_CURRENT_RENDERCORE(p) >= IGFX_XE_HPC_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GENNEXT_CORE ) ) - - #define GFX_IS_GEN_8_CHV_OR_LATER(p) ( ( GFX_GET_CURRENT_PRODUCT(p) == IGFX_CHERRYVIEW ) || \ -@@ -419,7 +419,7 @@ typedef enum __NATIVEGTTYPE - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN12_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HP_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPG_CORE ) || \ -- ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPC_CORE ) || \ -+ ( GFX_GET_CURRENT_RENDERCORE(p) >= IGFX_XE_HPC_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GENNEXT_CORE ) ) - - #define GFX_IS_GEN_9_OR_LATER(p) ( ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN9_CORE ) || \ -@@ -428,7 +428,7 @@ typedef enum __NATIVEGTTYPE - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN12_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPG_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HP_CORE ) || \ -- ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPC_CORE ) || \ -+ ( GFX_GET_CURRENT_RENDERCORE(p) >= IGFX_XE_HPC_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GENNEXT_CORE ) ) - - #define GFX_IS_GEN_10_OR_LATER(p) (( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN10_CORE ) || \ -@@ -436,15 +436,16 @@ typedef enum __NATIVEGTTYPE - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN12_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HP_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPG_CORE ) || \ -- ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPC_CORE ) || \ -+ ( GFX_GET_CURRENT_RENDERCORE(p) >= IGFX_XE_HPC_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GENNEXT_CORE ) ) - - #define GFX_IS_GEN_11_OR_LATER(p) (( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN11_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GEN12_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HP_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPG_CORE ) || \ -- ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_XE_HPC_CORE ) || \ -+ ( GFX_GET_CURRENT_RENDERCORE(p) >= IGFX_XE_HPC_CORE ) || \ - ( GFX_GET_CURRENT_RENDERCORE(p) == IGFX_GENNEXT_CORE ) ) -+ - #define GFX_IS_GEN_12_OR_LATER(p) (( GFX_GET_CURRENT_RENDERCORE(p) >= IGFX_GEN12_CORE )) - #define GFX_IS_ATOM_PRODUCT_FAMILY(p) ( GFX_IS_PRODUCT(p, IGFX_VALLEYVIEW) || \ - GFX_IS_PRODUCT(p, IGFX_CHERRYVIEW) || \ --- -2.43.2 - -- cgit v1.2.3-54-g00ecf