isl: Add isl_gfx20 into build (xe2)

Signed-off-by: Jianxun Zhang <jianxun.zhang@intel.com>
Reviewed-by: Rohan Garg <rohan.garg@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29702>
This commit is contained in:
Jianxun Zhang 2024-06-12 15:18:31 -07:00 committed by Marge Bot
parent 5de9df094f
commit 8d3093a329

View file

@ -60,11 +60,16 @@ isl_gfx125_files = files(
'isl_gfx12.h',
)
isl_gfx20_files = files(
'isl_gfx20.c',
'isl_gfx20.h',
)
isl_per_hw_ver_libs = []
foreach g : [['40', isl_gfx4_files], ['50', []], ['60', isl_gfx6_files],
['70', isl_gfx7_files], ['75', []], ['80', isl_gfx8_files],
['90', isl_gfx9_files], ['110', []], ['120', isl_gfx12_files],
['125', isl_gfx12_files], ['200', isl_gfx12_files]]
['125', isl_gfx12_files], ['200', isl_gfx20_files]]
_gfx_ver = g[0]
isl_per_hw_ver_libs += static_library(
'isl_per_hw_ver@0@'.format(_gfx_ver),