drm/i915: update with_intel_runtime_pm to use the rpm structure
authorDaniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Thu, 13 Jun 2019 23:21:55 +0000 (16:21 -0700)
committerChris Wilson <chris@chris-wilson.co.uk>
Fri, 14 Jun 2019 14:58:33 +0000 (15:58 +0100)
Matching the underlying get/put functions.

Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Imre Deak <imre.deak@intel.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20190613232156.34940-8-daniele.ceraolospurio@intel.com
21 files changed:
drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c
drivers/gpu/drm/i915/gt/intel_context.c
drivers/gpu/drm/i915/gt/intel_reset.c
drivers/gpu/drm/i915/gt/selftest_reset.c
drivers/gpu/drm/i915/gt/selftest_workarounds.c
drivers/gpu/drm/i915/i915_debugfs.c
drivers/gpu/drm/i915/i915_gem.c
drivers/gpu/drm/i915/i915_gem_gtt.c
drivers/gpu/drm/i915/i915_pmu.c
drivers/gpu/drm/i915/i915_sysfs.c
drivers/gpu/drm/i915/intel_guc_log.c
drivers/gpu/drm/i915/intel_huc.c
drivers/gpu/drm/i915/intel_panel.c
drivers/gpu/drm/i915/intel_pm.c
drivers/gpu/drm/i915/intel_runtime_pm.h
drivers/gpu/drm/i915/intel_uc.c
drivers/gpu/drm/i915/intel_uncore.c
drivers/gpu/drm/i915/selftests/i915_gem.c
drivers/gpu/drm/i915/selftests/i915_gem_evict.c
drivers/gpu/drm/i915/selftests/i915_request.c

index 13ff05566a0a31121d9834c0805be421c17f6bb5..a521f23c18adf33e0ad34ce9f3ccfe5ec311b732 100644 (file)
@@ -297,7 +297,7 @@ unsigned long i915_gem_shrink_all(struct drm_i915_private *i915)
        intel_wakeref_t wakeref;
        unsigned long freed = 0;
 
-       with_intel_runtime_pm(i915, wakeref) {
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                freed = i915_gem_shrink(i915, -1UL, NULL,
                                        I915_SHRINK_BOUND |
                                        I915_SHRINK_UNBOUND |
@@ -358,7 +358,7 @@ i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
        if (sc->nr_scanned < sc->nr_to_scan && current_is_kswapd()) {
                intel_wakeref_t wakeref;
 
-               with_intel_runtime_pm(i915, wakeref) {
+               with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                        freed += i915_gem_shrink(i915,
                                                 sc->nr_to_scan - sc->nr_scanned,
                                                 &sc->nr_scanned,
@@ -385,7 +385,7 @@ i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
        unsigned long flags;
 
        freed_pages = 0;
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                freed_pages += i915_gem_shrink(i915, -1UL, NULL,
                                               I915_SHRINK_BOUND |
                                               I915_SHRINK_UNBOUND |
@@ -433,7 +433,7 @@ i915_gem_shrinker_vmap(struct notifier_block *nb, unsigned long event, void *ptr
                                   MAX_SCHEDULE_TIMEOUT))
                goto out;
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                freed_pages += i915_gem_shrink(i915, -1UL, NULL,
                                               I915_SHRINK_BOUND |
                                               I915_SHRINK_UNBOUND |
index b85a4a43536a6ca011acacb739d0037b9ad0a9de..03ac5003abf1d2fd4bec566b43f001d4f305a82a 100644 (file)
@@ -527,7 +527,7 @@ static int igt_ctx_exec(void *arg)
                                }
                        }
 
-                       with_intel_runtime_pm(i915, wakeref)
+                       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                                err = gpu_fill(obj, ctx, engine, dw);
                        if (err) {
                                pr_err("Failed to fill dword %lu [%lu/%lu] with gpu (%s) in ctx %u [full-ppgtt? %s], err=%d\n",
@@ -647,7 +647,7 @@ static int igt_shared_ctx_exec(void *arg)
                        }
 
                        err = 0;
-                       with_intel_runtime_pm(i915, wakeref)
+                       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                                err = gpu_fill(obj, ctx, engine, dw);
                        if (err) {
                                pr_err("Failed to fill dword %lu [%lu/%lu] with gpu (%s) in ctx %u [full-ppgtt? %s], err=%d\n",
@@ -1230,7 +1230,7 @@ static int igt_ctx_readonly(void *arg)
                        }
 
                        err = 0;
-                       with_intel_runtime_pm(i915, wakeref)
+                       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                                err = gpu_fill(obj, ctx, engine, dw);
                        if (err) {
                                pr_err("Failed to fill dword %lu [%lu/%lu] with gpu (%s) in ctx %u [full-ppgtt? %s], err=%d\n",
index c78ec0b58e771981471d6fc8e3156cab478fa25f..285e869713e8a91ccb5eba6be7cff83f0f43568b 100644 (file)
@@ -54,7 +54,7 @@ int __intel_context_do_pin(struct intel_context *ce)
                intel_wakeref_t wakeref;
 
                err = 0;
-               with_intel_runtime_pm(ce->engine->i915, wakeref)
+               with_intel_runtime_pm(&ce->engine->i915->runtime_pm, wakeref)
                        err = ce->ops->pin(ce);
                if (err)
                        goto err;
index 9e7d400c083a779fc83ed1cc6970a2b2232eeb19..6e6807a3f7486c0e4b28383036b761cf6c3a22bd 100644 (file)
@@ -851,7 +851,7 @@ void i915_gem_set_wedged(struct drm_i915_private *i915)
        intel_wakeref_t wakeref;
 
        mutex_lock(&error->wedge_mutex);
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                __i915_gem_set_wedged(i915);
        mutex_unlock(&error->wedge_mutex);
 }
index 91f0349882fca38bcbdf31d9aecaad491ee54410..89da9e7cc1bae0c65bf64054253a975d5829fc94 100644 (file)
@@ -111,7 +111,7 @@ int intel_reset_live_selftests(struct drm_i915_private *i915)
        if (i915_terminally_wedged(i915))
                return -EIO; /* we're long past hope of a successful reset */
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                err = i915_subtests(tests, i915);
 
        return err;
index 8891e1a8ac160f27650d2258832e552d8c34b565..91449d5157f61ee971ca908287072d799ac01f0c 100644 (file)
@@ -256,7 +256,7 @@ switch_to_scratch_context(struct intel_engine_cs *engine,
        GEM_BUG_ON(i915_gem_context_is_bannable(ctx));
 
        rq = ERR_PTR(-ENODEV);
-       with_intel_runtime_pm(engine->i915, wakeref)
+       with_intel_runtime_pm(&engine->i915->runtime_pm, wakeref)
                rq = igt_spinner_create_request(spin, ctx, engine, MI_NOOP);
 
        kernel_context_close(ctx);
@@ -312,7 +312,7 @@ static int check_whitelist_across_reset(struct intel_engine_cs *engine,
        if (err)
                goto out;
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                err = reset(engine);
 
        igt_spinner_end(&spin);
index 5ca41165fb780bb0e6eb4d8129de762122c2dffc..f584868208236f9750f041735ee0803f0a7330c0 100644 (file)
@@ -769,7 +769,7 @@ static int i915_gpu_info_open(struct inode *inode, struct file *file)
        intel_wakeref_t wakeref;
 
        gpu = NULL;
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                gpu = i915_capture_gpu_state(i915);
        if (IS_ERR(gpu))
                return PTR_ERR(gpu);
@@ -1097,7 +1097,7 @@ static int i915_hangcheck_info(struct seq_file *m, void *unused)
                return 0;
        }
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                for_each_engine(engine, dev_priv, id)
                        acthd[id] = intel_engine_get_active_head(engine);
 
@@ -1357,7 +1357,7 @@ static int i915_drpc_info(struct seq_file *m, void *unused)
        intel_wakeref_t wakeref;
        int err = -ENODEV;
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
                        err = vlv_drpc_info(m);
                else if (INTEL_GEN(dev_priv) >= 6)
@@ -1524,7 +1524,7 @@ static int i915_emon_status(struct seq_file *m, void *unused)
        if (!IS_GEN(i915, 5))
                return -ENODEV;
 
-       with_intel_runtime_pm(i915, wakeref) {
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                unsigned long temp, chipset, gfx;
 
                temp = i915_mch_val(i915);
@@ -1816,7 +1816,7 @@ static int i915_rps_boost_info(struct seq_file *m, void *data)
        u32 act_freq = rps->cur_freq;
        intel_wakeref_t wakeref;
 
-       with_intel_runtime_pm_if_in_use(dev_priv, wakeref) {
+       with_intel_runtime_pm_if_in_use(&dev_priv->runtime_pm, wakeref) {
                if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
                        vlv_punit_get(dev_priv);
                        act_freq = vlv_punit_read(dev_priv,
@@ -1899,7 +1899,7 @@ static int i915_huc_load_status_info(struct seq_file *m, void *data)
        p = drm_seq_file_printer(m);
        intel_uc_fw_dump(&dev_priv->huc.fw, &p);
 
-       with_intel_runtime_pm(dev_priv, wakeref)
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
                seq_printf(m, "\nHuC status 0x%08x:\n", I915_READ(HUC_STATUS2));
 
        return 0;
@@ -1917,7 +1917,7 @@ static int i915_guc_load_status_info(struct seq_file *m, void *data)
        p = drm_seq_file_printer(m);
        intel_uc_fw_dump(&dev_priv->guc.fw, &p);
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                u32 tmp = I915_READ(GUC_STATUS);
                u32 i;
 
@@ -2423,7 +2423,7 @@ static int i915_energy_uJ(struct seq_file *m, void *data)
                return -ENODEV;
 
        units = (power & 0x1f00) >> 8;
-       with_intel_runtime_pm(dev_priv, wakeref)
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
                power = I915_READ(MCH_SECP_NRG_STTS);
 
        power = (1000000 * power) >> units; /* convert to uJ */
@@ -3009,7 +3009,7 @@ static ssize_t i915_ipc_status_write(struct file *file, const char __user *ubuf,
        if (ret < 0)
                return ret;
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                if (!dev_priv->ipc_enabled && enable)
                        DRM_INFO("Enabling IPC: WM will be proper only after next commit\n");
                dev_priv->wm.distrust_bios_wm = true;
@@ -3761,7 +3761,7 @@ i915_cache_sharing_get(void *data, u64 *val)
        if (!(IS_GEN_RANGE(dev_priv, 6, 7)))
                return -ENODEV;
 
-       with_intel_runtime_pm(dev_priv, wakeref)
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
                snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
 
        *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
@@ -3782,7 +3782,7 @@ i915_cache_sharing_set(void *data, u64 val)
                return -EINVAL;
 
        DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                u32 snpcr;
 
                /* Update the cache sharing policy here as well */
@@ -4028,7 +4028,7 @@ static int i915_sseu_status(struct seq_file *m, void *unused)
        sseu.max_eus_per_subslice =
                RUNTIME_INFO(dev_priv)->sseu.max_eus_per_subslice;
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                if (IS_CHERRYVIEW(dev_priv))
                        cherryview_sseu_device_status(dev_priv, &sseu);
                else if (IS_BROADWELL(dev_priv))
index 9804e194fa7dff80ac4355bed1827fe9c4064c42..217236596202450a9fa6019fcfaa717403d800a5 100644 (file)
@@ -262,7 +262,7 @@ void i915_gem_flush_ggtt_writes(struct drm_i915_private *dev_priv)
 
        i915_gem_chipset_flush(dev_priv);
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                struct intel_uncore *uncore = &dev_priv->uncore;
 
                spin_lock_irq(&uncore->lock);
index 057ea8303bce3ed4c9b99c12e7d75b8aad4ef1d2..278de04a96aaa3a6061114aa0c404900c439503d 100644 (file)
@@ -2619,7 +2619,7 @@ static int ggtt_bind_vma(struct i915_vma *vma,
        if (i915_gem_object_is_readonly(obj))
                pte_flags |= PTE_READ_ONLY;
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                vma->vm->insert_entries(vma->vm, vma, cache_level, pte_flags);
 
        vma->page_sizes.gtt = I915_GTT_PAGE_SIZE;
@@ -2639,7 +2639,7 @@ static void ggtt_unbind_vma(struct i915_vma *vma)
        struct drm_i915_private *i915 = vma->vm->i915;
        intel_wakeref_t wakeref;
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                vma->vm->clear_range(vma->vm, vma->node.start, vma->size);
 }
 
@@ -2674,7 +2674,7 @@ static int aliasing_gtt_bind_vma(struct i915_vma *vma,
        if (flags & I915_VMA_GLOBAL_BIND) {
                intel_wakeref_t wakeref;
 
-               with_intel_runtime_pm(i915, wakeref) {
+               with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                        vma->vm->insert_entries(vma->vm, vma,
                                                cache_level, pte_flags);
                }
@@ -2691,7 +2691,7 @@ static void aliasing_gtt_unbind_vma(struct i915_vma *vma)
                struct i915_address_space *vm = vma->vm;
                intel_wakeref_t wakeref;
 
-               with_intel_runtime_pm(i915, wakeref)
+               with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                        vm->clear_range(vm, vma->node.start, vma->size);
        }
 
index 507fcdb0f97effa9e24e04640b0ca9842463223c..8fe46ee920a0e73c43ede44479ca40ccd3ac4583 100644 (file)
@@ -227,7 +227,8 @@ frequency_sample(struct drm_i915_private *dev_priv, unsigned int period_ns)
                if (dev_priv->gt.awake) {
                        intel_wakeref_t wakeref;
 
-                       with_intel_runtime_pm_if_in_use(dev_priv, wakeref) {
+                       with_intel_runtime_pm_if_in_use(&dev_priv->runtime_pm,
+                                                       wakeref) {
                                val = intel_uncore_read_notrace(&dev_priv->uncore,
                                                                GEN6_RPSTAT1);
                                val = intel_get_cagf(dev_priv, val);
index 75acbf686ec90b899dfd2560fa8ebbe31fbb2587..ecac1c3861091f32b605323ef9ef6b251ec606d2 100644 (file)
@@ -48,7 +48,7 @@ static u32 calc_residency(struct drm_i915_private *dev_priv,
        intel_wakeref_t wakeref;
        u64 res = 0;
 
-       with_intel_runtime_pm(dev_priv, wakeref)
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
                res = intel_rc6_residency_us(dev_priv, reg);
 
        return DIV_ROUND_CLOSEST_ULL(res, 1000);
index 4f9c53681f92415d4b8a73444e80ec7f7169204f..bf1446629703ea9ee8b43766c8122ef348c9f3d0 100644 (file)
@@ -436,7 +436,7 @@ static void guc_log_capture_logs(struct intel_guc_log *log)
         * Generally device is expected to be active only at this
         * time, so get/put should be really quick.
         */
-       with_intel_runtime_pm(dev_priv, wakeref)
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
                guc_action_flush_log_complete(guc);
 }
 
@@ -515,7 +515,7 @@ int intel_guc_log_set_level(struct intel_guc_log *log, u32 level)
        if (log->level == level)
                goto out_unlock;
 
-       with_intel_runtime_pm(dev_priv, wakeref)
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
                ret = guc_action_control_log(guc,
                                             GUC_LOG_LEVEL_IS_VERBOSE(level),
                                             GUC_LOG_LEVEL_IS_ENABLED(level),
@@ -600,7 +600,7 @@ void intel_guc_log_relay_flush(struct intel_guc_log *log)
         */
        flush_work(&log->relay.flush_work);
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                guc_action_flush_log(guc);
 
        /* GuC would have updated log buffer by now, so capture it */
index 8572a0588efcd8f5c3d062f491e584e2047244a5..fb6f693d3cacbe764c0d2606a697186a96f9ce8b 100644 (file)
@@ -174,7 +174,7 @@ int intel_huc_check_status(struct intel_huc *huc)
        if (!HAS_HUC(dev_priv))
                return -ENODEV;
 
-       with_intel_runtime_pm(dev_priv, wakeref)
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref)
                status = (I915_READ(huc->status.reg) & huc->status.mask) ==
                          huc->status.value;
 
index 9cd4e37e3934df27e21537f5b17a5775aff17abd..39d7420940658426a7cd2808d995670c6728e63d 100644 (file)
@@ -1288,7 +1288,7 @@ static int intel_backlight_device_get_brightness(struct backlight_device *bd)
        intel_wakeref_t wakeref;
        int ret = 0;
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                u32 hw_level;
 
                drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
index 2c7f3ebc01170eaad0bb38342b55376413d8fb7f..b03e2a467e8b3c792adfa2b2a1a0fa4ed5b88b4b 100644 (file)
@@ -8167,7 +8167,7 @@ unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
        if (!IS_GEN(dev_priv, 5))
                return 0;
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                spin_lock_irq(&mchdev_lock);
                val = __i915_chipset_val(dev_priv);
                spin_unlock_irq(&mchdev_lock);
@@ -8253,7 +8253,7 @@ void i915_update_gfx_val(struct drm_i915_private *dev_priv)
        if (!IS_GEN(dev_priv, 5))
                return;
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                spin_lock_irq(&mchdev_lock);
                __i915_update_gfx_val(dev_priv);
                spin_unlock_irq(&mchdev_lock);
@@ -8305,7 +8305,7 @@ unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
        if (!IS_GEN(dev_priv, 5))
                return 0;
 
-       with_intel_runtime_pm(dev_priv, wakeref) {
+       with_intel_runtime_pm(&dev_priv->runtime_pm, wakeref) {
                spin_lock_irq(&mchdev_lock);
                val = __i915_gfx_val(dev_priv);
                spin_unlock_irq(&mchdev_lock);
@@ -8346,7 +8346,7 @@ unsigned long i915_read_mch_val(void)
        if (!i915)
                return 0;
 
-       with_intel_runtime_pm(i915, wakeref) {
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                spin_lock_irq(&mchdev_lock);
                chipset_val = __i915_chipset_val(i915);
                graphics_val = __i915_gfx_val(i915);
index f6445ca5bbf1b89f4a55f22c63bb6f17d9ac56a7..f2d6299a8161be9ba58abc09fad463e065068efb 100644 (file)
@@ -179,13 +179,13 @@ intel_wakeref_t intel_runtime_pm_get_if_in_use(struct intel_runtime_pm *rpm);
 intel_wakeref_t intel_runtime_pm_get_noresume(struct intel_runtime_pm *rpm);
 intel_wakeref_t intel_runtime_pm_get_raw(struct intel_runtime_pm *rpm);
 
-#define with_intel_runtime_pm(i915, wf) \
-       for ((wf) = intel_runtime_pm_get(&(i915)->runtime_pm); (wf); \
-            intel_runtime_pm_put(&(i915)->runtime_pm, (wf)), (wf) = 0)
+#define with_intel_runtime_pm(rpm, wf) \
+       for ((wf) = intel_runtime_pm_get(rpm); (wf); \
+            intel_runtime_pm_put((rpm), (wf)), (wf) = 0)
 
-#define with_intel_runtime_pm_if_in_use(i915, wf) \
-       for ((wf) = intel_runtime_pm_get_if_in_use(&(i915)->runtime_pm); (wf); \
-            intel_runtime_pm_put(&(i915)->runtime_pm, (wf)), (wf) = 0)
+#define with_intel_runtime_pm_if_in_use(rpm, wf) \
+       for ((wf) = intel_runtime_pm_get_if_in_use(rpm); (wf); \
+            intel_runtime_pm_put((rpm), (wf)), (wf) = 0)
 
 void intel_runtime_pm_put_unchecked(struct intel_runtime_pm *rpm);
 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_RUNTIME_PM)
index a8e7f0ba7c3b5997ca1de01cf4ddefc356b437f4..ae45651ac73c28510da35bc4dd1d04ec886ae325 100644 (file)
@@ -537,7 +537,7 @@ void intel_uc_suspend(struct drm_i915_private *i915)
        if (!intel_guc_is_loaded(guc))
                return;
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                intel_uc_runtime_suspend(i915);
 }
 
index 5eb1d130fc2ef171dab6cef2c1e8b29f14407052..da33aa672c3de1f475695eac0fbc683378362bcc 100644 (file)
@@ -1702,7 +1702,7 @@ int i915_reg_read_ioctl(struct drm_device *dev,
 
        flags = reg->offset & (entry->size - 1);
 
-       with_intel_runtime_pm(i915, wakeref) {
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                if (entry->size == 8 && flags == I915_REG_READ_8B_WA)
                        reg->val = intel_uncore_read64_2x32(uncore,
                                                            entry->offset_ldw,
index 23a54da47ca58fc0ff1c78c2f745b6521282c4f3..c6a01a6e87f15b4b2b85945a40a037feb50fecc6 100644 (file)
@@ -88,7 +88,7 @@ static void pm_suspend(struct drm_i915_private *i915)
 {
        intel_wakeref_t wakeref;
 
-       with_intel_runtime_pm(i915, wakeref) {
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                i915_gem_suspend_gtt_mappings(i915);
                i915_gem_suspend_late(i915);
        }
@@ -98,7 +98,7 @@ static void pm_hibernate(struct drm_i915_private *i915)
 {
        intel_wakeref_t wakeref;
 
-       with_intel_runtime_pm(i915, wakeref) {
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                i915_gem_suspend_gtt_mappings(i915);
 
                i915_gem_freeze(i915);
@@ -114,7 +114,7 @@ static void pm_resume(struct drm_i915_private *i915)
         * Both suspend and hibernate follow the same wakeup path and assume
         * that runtime-pm just works.
         */
-       with_intel_runtime_pm(i915, wakeref) {
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
                intel_gt_sanitize(i915, false);
                i915_gem_sanitize(i915);
                i915_gem_resume(i915);
index e5f67474dcb466643bc2dcfdca9b56834eeab2b9..8c69198c7e4ec1c52f17a6fb1618a86d9e8e094e 100644 (file)
@@ -539,7 +539,7 @@ int i915_gem_evict_mock_selftests(void)
                return -ENOMEM;
 
        mutex_lock(&i915->drm.struct_mutex);
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                err = i915_subtests(tests, i915);
 
        mutex_unlock(&i915->drm.struct_mutex);
index dd4e72eafc6cd47435c0ff8f14657bdbf4bbac68..3de24f3d4ed5dc920c117da68c8402cc9b09ad46 100644 (file)
@@ -514,7 +514,7 @@ int i915_request_mock_selftests(void)
        if (!i915)
                return -ENOMEM;
 
-       with_intel_runtime_pm(i915, wakeref)
+       with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                err = i915_subtests(tests, i915);
 
        drm_dev_put(&i915->drm);