Commit f62b27db authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau: shutdown display on suspend/hibernate

Known to fix some serious issues with hibernate on a couple of systems.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 1772fcc6
...@@ -206,6 +206,31 @@ static struct drm_prop_enum_list dither_depth[] = { ...@@ -206,6 +206,31 @@ static struct drm_prop_enum_list dither_depth[] = {
} \ } \
} while(0) } while(0)
int
nouveau_display_init(struct drm_device *dev)
{
struct drm_nouveau_private *dev_priv = dev->dev_private;
struct nouveau_display_engine *disp = &dev_priv->engine.display;
int ret;
ret = disp->init(dev);
if (ret == 0) {
drm_kms_helper_poll_enable(dev);
}
return ret;
}
void
nouveau_display_fini(struct drm_device *dev)
{
struct drm_nouveau_private *dev_priv = dev->dev_private;
struct nouveau_display_engine *disp = &dev_priv->engine.display;
drm_kms_helper_poll_disable(dev);
disp->fini(dev);
}
int int
nouveau_display_create(struct drm_device *dev) nouveau_display_create(struct drm_device *dev)
{ {
...@@ -258,13 +283,19 @@ nouveau_display_create(struct drm_device *dev) ...@@ -258,13 +283,19 @@ nouveau_display_create(struct drm_device *dev)
dev->mode_config.max_height = 8192; dev->mode_config.max_height = 8192;
} }
drm_kms_helper_poll_init(dev);
drm_kms_helper_poll_disable(dev);
ret = disp->create(dev); ret = disp->create(dev);
if (ret) if (ret)
return ret; return ret;
ret = disp->init(dev); if (dev->mode_config.num_crtc) {
if (ret) ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
disp->destroy(dev); if (ret)
return ret;
}
return ret; return ret;
} }
...@@ -274,8 +305,11 @@ nouveau_display_destroy(struct drm_device *dev) ...@@ -274,8 +305,11 @@ nouveau_display_destroy(struct drm_device *dev)
struct drm_nouveau_private *dev_priv = dev->dev_private; struct drm_nouveau_private *dev_priv = dev->dev_private;
struct nouveau_display_engine *disp = &dev_priv->engine.display; struct nouveau_display_engine *disp = &dev_priv->engine.display;
disp->fini(dev); drm_vblank_cleanup(dev);
disp->destroy(dev); disp->destroy(dev);
drm_kms_helper_poll_fini(dev);
drm_mode_config_cleanup(dev); drm_mode_config_cleanup(dev);
} }
......
...@@ -178,7 +178,8 @@ nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state) ...@@ -178,7 +178,8 @@ nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state)
if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
return 0; return 0;
drm_kms_helper_poll_disable(dev); NV_INFO(dev, "Disabling display...\n");
nouveau_display_fini(dev);
NV_INFO(dev, "Disabling fbcon...\n"); NV_INFO(dev, "Disabling fbcon...\n");
nouveau_fbcon_set_suspend(dev, 1); nouveau_fbcon_set_suspend(dev, 1);
...@@ -357,8 +358,7 @@ nouveau_pci_resume(struct pci_dev *pdev) ...@@ -357,8 +358,7 @@ nouveau_pci_resume(struct pci_dev *pdev)
nouveau_fbcon_set_suspend(dev, 0); nouveau_fbcon_set_suspend(dev, 0);
nouveau_fbcon_zfill_all(dev); nouveau_fbcon_zfill_all(dev);
engine->display.init(dev); nouveau_display_init(dev);
drm_kms_helper_poll_enable(dev);
/* Force CLUT to get re-loaded during modeset */ /* Force CLUT to get re-loaded during modeset */
list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
......
...@@ -1449,6 +1449,8 @@ extern int nouveau_gem_ioctl_info(struct drm_device *, void *, ...@@ -1449,6 +1449,8 @@ extern int nouveau_gem_ioctl_info(struct drm_device *, void *,
/* nouveau_display.c */ /* nouveau_display.c */
int nouveau_display_create(struct drm_device *dev); int nouveau_display_create(struct drm_device *dev);
void nouveau_display_destroy(struct drm_device *dev); void nouveau_display_destroy(struct drm_device *dev);
int nouveau_display_init(struct drm_device *dev);
void nouveau_display_fini(struct drm_device *dev);
int nouveau_vblank_enable(struct drm_device *dev, int crtc); int nouveau_vblank_enable(struct drm_device *dev, int crtc);
void nouveau_vblank_disable(struct drm_device *dev, int crtc); void nouveau_vblank_disable(struct drm_device *dev, int crtc);
int nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb, int nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
......
...@@ -763,12 +763,11 @@ nouveau_card_init(struct drm_device *dev) ...@@ -763,12 +763,11 @@ nouveau_card_init(struct drm_device *dev)
} }
if (dev->mode_config.num_crtc) { if (dev->mode_config.num_crtc) {
ret = drm_vblank_init(dev, dev->mode_config.num_crtc); ret = nouveau_display_init(dev);
if (ret) if (ret)
goto out_chan; goto out_chan;
nouveau_fbcon_init(dev); nouveau_fbcon_init(dev);
drm_kms_helper_poll_init(dev);
} }
return 0; return 0;
...@@ -829,9 +828,8 @@ static void nouveau_card_takedown(struct drm_device *dev) ...@@ -829,9 +828,8 @@ static void nouveau_card_takedown(struct drm_device *dev)
int e; int e;
if (dev->mode_config.num_crtc) { if (dev->mode_config.num_crtc) {
drm_kms_helper_poll_fini(dev);
nouveau_fbcon_fini(dev); nouveau_fbcon_fini(dev);
drm_vblank_cleanup(dev); nouveau_display_fini(dev);
} }
if (dev_priv->channel) { if (dev_priv->channel) {
......
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