]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/xe: Combine common force-wake code into helpers
authorMichal Wajdeczko <michal.wajdeczko@intel.com>
Tue, 11 Jun 2024 16:35:36 +0000 (18:35 +0200)
committerMichal Wajdeczko <michal.wajdeczko@intel.com>
Wed, 12 Jun 2024 09:57:04 +0000 (11:57 +0200)
The code of 'control' and 'wait' force-wake operations are very
similar for both 'wake' and 'sleep' cases. Add helpers to maximize
code reuse.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240611163537.1944-5-michal.wajdeczko@intel.com
drivers/gpu/drm/xe/xe_force_wake.c

index afbca81c12ddc5513cd26ff5d30f8ded66368fff..468aabd72d6be7fe4ee2afde82727523975e6e11 100644 (file)
 
 #define XE_FORCE_WAKE_ACK_TIMEOUT_MS   50
 
+static const char *str_wake_sleep(bool wake)
+{
+       return wake ? "wake" : "sleep";
+}
+
 static void domain_init(struct xe_force_wake_domain *domain,
                        enum xe_force_wake_domain_id id,
                        struct xe_reg reg, struct xe_reg ack)
@@ -89,46 +94,47 @@ void xe_force_wake_init_engines(struct xe_gt *gt, struct xe_force_wake *fw)
                            FORCEWAKE_ACK_GSC);
 }
 
-static void domain_wake(struct xe_gt *gt, struct xe_force_wake_domain *domain)
+static void __domain_ctl(struct xe_gt *gt, struct xe_force_wake_domain *domain, bool wake)
 {
-       xe_mmio_write32(gt, domain->reg_ctl, domain->mask | domain->val);
+       xe_mmio_write32(gt, domain->reg_ctl, domain->mask | (wake ? domain->val : 0));
 }
 
-static int domain_wake_wait(struct xe_gt *gt,
-                           struct xe_force_wake_domain *domain)
+static int __domain_wait(struct xe_gt *gt, struct xe_force_wake_domain *domain, bool wake)
 {
        u32 value;
        int ret;
 
-       ret = xe_mmio_wait32(gt, domain->reg_ack, domain->val, domain->val,
+       ret = xe_mmio_wait32(gt, domain->reg_ack, domain->val, wake ? domain->val : 0,
                             XE_FORCE_WAKE_ACK_TIMEOUT_MS * USEC_PER_MSEC,
                             &value, true);
        if (ret)
-               xe_gt_notice(gt, "Force wake domain %d failed to ack wake (%pe) reg[%#x] = %#x\n",
-                            domain->id, ERR_PTR(ret), domain->reg_ack.addr, value);
+               xe_gt_notice(gt, "Force wake domain %d failed to ack %s (%pe) reg[%#x] = %#x\n",
+                            domain->id, str_wake_sleep(wake), ERR_PTR(ret),
+                            domain->reg_ack.addr, value);
 
        return ret;
 }
 
+static void domain_wake(struct xe_gt *gt, struct xe_force_wake_domain *domain)
+{
+       __domain_ctl(gt, domain, true);
+}
+
+static int domain_wake_wait(struct xe_gt *gt,
+                           struct xe_force_wake_domain *domain)
+{
+       return __domain_wait(gt, domain, true);
+}
+
 static void domain_sleep(struct xe_gt *gt, struct xe_force_wake_domain *domain)
 {
-       xe_mmio_write32(gt, domain->reg_ctl, domain->mask);
+       __domain_ctl(gt, domain, false);
 }
 
 static int domain_sleep_wait(struct xe_gt *gt,
                             struct xe_force_wake_domain *domain)
 {
-       u32 value;
-       int ret;
-
-       ret = xe_mmio_wait32(gt, domain->reg_ack, domain->val, 0,
-                            XE_FORCE_WAKE_ACK_TIMEOUT_MS * USEC_PER_MSEC,
-                            &value, true);
-       if (ret)
-               xe_gt_notice(gt, "Force wake domain %d failed to ack sleep (%pe) reg[%#x] = %#x\n",
-                            domain->id, ERR_PTR(ret), domain->reg_ack.addr, value);
-
-       return ret;
+       return __domain_wait(gt, domain, false);
 }
 
 #define for_each_fw_domain_masked(domain__, mask__, fw__, tmp__) \