OSDN Git Service

drm/i915/guc/slpc: Use wrapper for reading RP_STATE_CAP
authorVinay Belgaumkar <vinay.belgaumkar@intel.com>
Thu, 17 Feb 2022 19:15:25 +0000 (11:15 -0800)
committerRamalingam C <ramalingam.c@intel.com>
Tue, 22 Feb 2022 17:29:25 +0000 (22:59 +0530)
This will ensure correct values for Gen12+ platforms.

v2: Rebase

Cc: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220216181504.7155-1-vinay.belgaumkar@intel.com
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c

index ba21ace..8df6bc8 100644 (file)
@@ -6,6 +6,7 @@
 #include "i915_drv.h"
 #include "intel_guc_slpc.h"
 #include "gt/intel_gt.h"
+#include "gt/intel_rps.h"
 
 static inline struct intel_guc *slpc_to_guc(struct intel_guc_slpc *slpc)
 {
@@ -574,10 +575,10 @@ static int slpc_use_fused_rp0(struct intel_guc_slpc *slpc)
 
 static void slpc_get_rp_values(struct intel_guc_slpc *slpc)
 {
+       struct intel_rps *rps = &slpc_to_gt(slpc)->rps;
        u32 rp_state_cap;
 
-       rp_state_cap = intel_uncore_read(slpc_to_gt(slpc)->uncore,
-                                        GEN6_RP_STATE_CAP);
+       rp_state_cap = intel_rps_read_state_cap(rps);
 
        slpc->rp0_freq = REG_FIELD_GET(RP0_CAP_MASK, rp_state_cap) *
                                        GT_FREQUENCY_MULTIPLIER;