From bde2bba37d57c8a4ac330287670a67b1a98e874c Mon Sep 17 00:00:00 2001 From: Rohan Garg Date: Mon, 17 Jul 2023 13:34:51 +0200 Subject: [PATCH] intel/perf: add perf query support for Intel Raptorlake Fixes: 4e0eca7dc3 ("intel/dev: Add device info for RPL") Signed-off-by: Rohan Garg Reviewed-by: Lionel Landwerlin Part-of: (cherry picked from commit 36d4e832996c3e38452e98ffd3aa21e80fe32abb) --- .pick_status.json | 2 +- src/intel/perf/intel_perf.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index aec2fe23195..7b5f7b1d972 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -174,7 +174,7 @@ "description": "intel/perf: add perf query support for Intel Raptorlake", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "4e0eca7dc34942759638ab00eb006ba40284a7c5", "notes": null diff --git a/src/intel/perf/intel_perf.c b/src/intel/perf/intel_perf.c index b5124c8cb62..69d8d06ed24 100644 --- a/src/intel/perf/intel_perf.c +++ b/src/intel/perf/intel_perf.c @@ -480,6 +480,7 @@ get_register_queries_function(const struct intel_device_info *devinfo) case INTEL_PLATFORM_DG1: return intel_oa_register_queries_dg1; case INTEL_PLATFORM_ADL: + case INTEL_PLATFORM_RPL: return intel_oa_register_queries_adl; case INTEL_PLATFORM_DG2_G10: return intel_oa_register_queries_acmgt3;