From d0e1c508c6022c7ba9ea53cff9f774e0155f882b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sat, 25 Jan 2025 12:07:24 -0500 Subject: [PATCH] ac/fake_hw_db: deobfuscate GPU name strings Reviewed-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/amd/common/ac_fake_hw_db.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/amd/common/ac_fake_hw_db.h b/src/amd/common/ac_fake_hw_db.h index 42b187fcf24..ac0e4d2a21e 100644 --- a/src/amd/common/ac_fake_hw_db.h +++ b/src/amd/common/ac_fake_hw_db.h @@ -207,21 +207,21 @@ static struct ac_fake_hw ac_fake_hw_db[] = { {"navi10_diff_pipe", init_navi10, 0, 3}, {"navi10_diff_pkr", init_navi10, 1, 4}, {"navi14", init_navi14, 1, 3}, - {"gfx103_16pipe", init_gfx103, 4, 4}, - {"gfx103_16pipe_8pkr", init_gfx103, 3, 4}, - {"gfx103_8pipe", init_gfx103, 3, 3}, - {"gfx103_4pipe", init_gfx103, 2, 2}, - {"gfx103_4pipe_2pkr", init_gfx103, 1, 2}, - {"gfx103_4pipe_1pkr", init_gfx103, 0, 2}, - {"gfx103_2pipe_1pkr", init_gfx103, 0, 1}, - {"gfx11_32pipe", init_gfx11, 5, 5}, - {"gfx11_16pipe", init_gfx11, 4, 4}, - {"gfx11_8pipe", init_gfx11, 3, 3}, - {"gfx11_4pipe", init_gfx11, 2, 2}, - {"gfx11_4pipe_2pkr", init_gfx11, 1, 2}, - {"gfx11_4pipe_1pkr", init_gfx11, 0, 2}, - {"gfx11_2pipe_1pkr", init_gfx11, 0, 1}, - {"gfx12_16pipe", init_gfx12, 4, 4}, + {"navi21", init_gfx103, 4, 4}, + {"navi21_8pkr", init_gfx103, 3, 4}, + {"navi22", init_gfx103, 3, 3}, + {"navi24", init_gfx103, 2, 2}, + {"vangogh", init_gfx103, 1, 2}, + {"vangogh_1pkr", init_gfx103, 0, 2}, + {"raphael", init_gfx103, 0, 1}, + {"navi31", init_gfx11, 5, 5}, + {"navi32", init_gfx11, 4, 4}, + {"navi33", init_gfx11, 3, 3}, + {"phoenix", init_gfx11, 2, 2}, + {"phoenix_2pkr", init_gfx11, 1, 2}, + {"phoenix2", init_gfx11, 0, 2}, + {"phoenix2_2pipe", init_gfx11, 0, 1}, + {"gfx12", init_gfx12, 4, 4}, }; static void get_radeon_info(struct radeon_info *info, struct ac_fake_hw *hw)