Commit 1d264d91 authored by Chris Wilson's avatar Chris Wilson

drm/i915/fb: Track rpm wakerefs

Keep track of the rpm wakeref used for framebuffer access so that we can
cancel upon release and so more clearly identify leaks.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Cc: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190114142129.24398-11-chris@chris-wilson.co.uk
parent 538ef96b
...@@ -2023,6 +2023,7 @@ intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, ...@@ -2023,6 +2023,7 @@ intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
struct drm_device *dev = fb->dev; struct drm_device *dev = fb->dev;
struct drm_i915_private *dev_priv = to_i915(dev); struct drm_i915_private *dev_priv = to_i915(dev);
struct drm_i915_gem_object *obj = intel_fb_obj(fb); struct drm_i915_gem_object *obj = intel_fb_obj(fb);
intel_wakeref_t wakeref;
struct i915_vma *vma; struct i915_vma *vma;
unsigned int pinctl; unsigned int pinctl;
u32 alignment; u32 alignment;
...@@ -2046,7 +2047,7 @@ intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, ...@@ -2046,7 +2047,7 @@ intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
* intel_runtime_pm_put(), so it is correct to wrap only the * intel_runtime_pm_put(), so it is correct to wrap only the
* pin/unpin/fence and not more. * pin/unpin/fence and not more.
*/ */
intel_runtime_pm_get(dev_priv); wakeref = intel_runtime_pm_get(dev_priv);
atomic_inc(&dev_priv->gpu_error.pending_fb_pin); atomic_inc(&dev_priv->gpu_error.pending_fb_pin);
...@@ -2101,7 +2102,7 @@ intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, ...@@ -2101,7 +2102,7 @@ intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
err: err:
atomic_dec(&dev_priv->gpu_error.pending_fb_pin); atomic_dec(&dev_priv->gpu_error.pending_fb_pin);
intel_runtime_pm_put_unchecked(dev_priv); intel_runtime_pm_put(dev_priv, wakeref);
return vma; return vma;
} }
......
...@@ -177,8 +177,9 @@ static int intelfb_create(struct drm_fb_helper *helper, ...@@ -177,8 +177,9 @@ static int intelfb_create(struct drm_fb_helper *helper,
const struct i915_ggtt_view view = { const struct i915_ggtt_view view = {
.type = I915_GGTT_VIEW_NORMAL, .type = I915_GGTT_VIEW_NORMAL,
}; };
struct fb_info *info;
struct drm_framebuffer *fb; struct drm_framebuffer *fb;
intel_wakeref_t wakeref;
struct fb_info *info;
struct i915_vma *vma; struct i915_vma *vma;
unsigned long flags = 0; unsigned long flags = 0;
bool prealloc = false; bool prealloc = false;
...@@ -209,7 +210,7 @@ static int intelfb_create(struct drm_fb_helper *helper, ...@@ -209,7 +210,7 @@ static int intelfb_create(struct drm_fb_helper *helper,
} }
mutex_lock(&dev->struct_mutex); mutex_lock(&dev->struct_mutex);
intel_runtime_pm_get(dev_priv); wakeref = intel_runtime_pm_get(dev_priv);
/* Pin the GGTT vma for our access via info->screen_base. /* Pin the GGTT vma for our access via info->screen_base.
* This also validates that any existing fb inherited from the * This also validates that any existing fb inherited from the
...@@ -276,7 +277,7 @@ static int intelfb_create(struct drm_fb_helper *helper, ...@@ -276,7 +277,7 @@ static int intelfb_create(struct drm_fb_helper *helper,
ifbdev->vma = vma; ifbdev->vma = vma;
ifbdev->vma_flags = flags; ifbdev->vma_flags = flags;
intel_runtime_pm_put_unchecked(dev_priv); intel_runtime_pm_put(dev_priv, wakeref);
mutex_unlock(&dev->struct_mutex); mutex_unlock(&dev->struct_mutex);
vga_switcheroo_client_fb_set(pdev, info); vga_switcheroo_client_fb_set(pdev, info);
return 0; return 0;
...@@ -284,7 +285,7 @@ static int intelfb_create(struct drm_fb_helper *helper, ...@@ -284,7 +285,7 @@ static int intelfb_create(struct drm_fb_helper *helper,
out_unpin: out_unpin:
intel_unpin_fb_vma(vma, flags); intel_unpin_fb_vma(vma, flags);
out_unlock: out_unlock:
intel_runtime_pm_put_unchecked(dev_priv); intel_runtime_pm_put(dev_priv, wakeref);
mutex_unlock(&dev->struct_mutex); mutex_unlock(&dev->struct_mutex);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment