mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 15:11:50 +00:00
drm/i915: Re-enable GGTT earlier during resume on pre-gen6 platforms
Move the intel_enable_gtt() call to happen before we touch the GTT during resume. Right now it's done way too late. Before commitebb7c78d35
("agp/intel-gtt: Only register fake agp driver for gen1") it was actually done earlier on account of also getting called from the resume hook of the fake agp driver. With the fake agp driver no longer getting registered we must move the call up. The symptoms I've seen on my 830 machine include lowmem corruption, other kinds of memory corruption, and straight up hung machine during or just after resume. Not really sure what causes the memory corruption, but so far I've not seen any with this fix. I think we shouldn't really need to call this during init, but we have been doing that so I've decided to keep the call. However moving that call earlier could be prudent as well. Doing it right after the intel-gtt probe seems appropriate. Also tested this on 946gz,elk,ilk and all seemed quite happy with this change. v2: Reorder init_hw vs. enable_hw functions (Chris) Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: drm-intel-fixes@lists.freedesktop.org Fixes:ebb7c78d35
("agp/intel-gtt: Only register fake agp driver for gen1") Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1462559755-353-1-git-send-email-ville.syrjala@linux.intel.com Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
01e5d3b42e
commit
ac840ae535
@ -1235,6 +1235,12 @@ static int i915_driver_init_hw(struct drm_i915_private *dev_priv)
|
|||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
ret = i915_ggtt_enable_hw(dev);
|
||||||
|
if (ret) {
|
||||||
|
DRM_ERROR("failed to enable GGTT\n");
|
||||||
|
goto out_ggtt;
|
||||||
|
}
|
||||||
|
|
||||||
/* WARNING: Apparently we must kick fbdev drivers before vgacon,
|
/* WARNING: Apparently we must kick fbdev drivers before vgacon,
|
||||||
* otherwise the vga fbdev driver falls over. */
|
* otherwise the vga fbdev driver falls over. */
|
||||||
ret = i915_kick_out_firmware_fb(dev_priv);
|
ret = i915_kick_out_firmware_fb(dev_priv);
|
||||||
|
@ -730,9 +730,14 @@ int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state)
|
|||||||
static int i915_drm_resume(struct drm_device *dev)
|
static int i915_drm_resume(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
struct drm_i915_private *dev_priv = dev->dev_private;
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
||||||
|
int ret;
|
||||||
|
|
||||||
disable_rpm_wakeref_asserts(dev_priv);
|
disable_rpm_wakeref_asserts(dev_priv);
|
||||||
|
|
||||||
|
ret = i915_ggtt_enable_hw(dev);
|
||||||
|
if (ret)
|
||||||
|
DRM_ERROR("failed to re-enable GGTT\n");
|
||||||
|
|
||||||
intel_csr_ucode_resume(dev_priv);
|
intel_csr_ucode_resume(dev_priv);
|
||||||
|
|
||||||
mutex_lock(&dev->struct_mutex);
|
mutex_lock(&dev->struct_mutex);
|
||||||
|
@ -4821,9 +4821,6 @@ i915_gem_init_hw(struct drm_device *dev)
|
|||||||
struct intel_engine_cs *engine;
|
struct intel_engine_cs *engine;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
|
|
||||||
return -EIO;
|
|
||||||
|
|
||||||
/* Double layer security blanket, see i915_gem_init() */
|
/* Double layer security blanket, see i915_gem_init() */
|
||||||
intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
||||||
|
|
||||||
|
@ -3232,6 +3232,14 @@ out_gtt_cleanup:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int i915_ggtt_enable_hw(struct drm_device *dev)
|
||||||
|
{
|
||||||
|
if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
|
||||||
|
return -EIO;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
void i915_gem_restore_gtt_mappings(struct drm_device *dev)
|
void i915_gem_restore_gtt_mappings(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
struct drm_i915_private *dev_priv = to_i915(dev);
|
struct drm_i915_private *dev_priv = to_i915(dev);
|
||||||
|
@ -517,6 +517,7 @@ i915_page_dir_dma_addr(const struct i915_hw_ppgtt *ppgtt, const unsigned n)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int i915_ggtt_init_hw(struct drm_device *dev);
|
int i915_ggtt_init_hw(struct drm_device *dev);
|
||||||
|
int i915_ggtt_enable_hw(struct drm_device *dev);
|
||||||
void i915_gem_init_ggtt(struct drm_device *dev);
|
void i915_gem_init_ggtt(struct drm_device *dev);
|
||||||
void i915_ggtt_cleanup_hw(struct drm_device *dev);
|
void i915_ggtt_cleanup_hw(struct drm_device *dev);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user