* drm/i915: Fix module initialisation. @ 2015-08-17 10:00 Maarten Lankhorst 2015-08-17 10:09 ` Chris Wilson 2015-08-26 7:51 ` Daniel Vetter 0 siblings, 2 replies; 11+ messages in thread From: Maarten Lankhorst @ 2015-08-17 10:00 UTC (permalink / raw) To: Intel Graphics Development Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. Remove the legacy suspend/resume, to fix a warning introduced by: "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> --- diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index 1d887459e37f..411ba8ccecca 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c @@ -1646,7 +1646,7 @@ static struct drm_driver driver = { */ .driver_features = DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME | - DRIVER_RENDER, + DRIVER_RENDER | DRIVER_MODESET | DRIVER_ATOMIC, .load = i915_driver_load, .unload = i915_driver_unload, .open = i915_driver_open, @@ -1655,10 +1655,6 @@ static struct drm_driver driver = { .postclose = i915_driver_postclose, .set_busid = drm_pci_set_busid, - /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ - .suspend = i915_suspend_legacy, - .resume = i915_resume_legacy, - #if defined(CONFIG_DEBUG_FS) .debugfs_init = i915_debugfs_init, .debugfs_cleanup = i915_debugfs_cleanup, @@ -1701,7 +1697,6 @@ static int __init i915_init(void) * either the i915.modeset prarameter or by the * vga_text_mode_force boot option. */ - driver.driver_features |= DRIVER_MODESET; if (i915.modeset == 0) driver.driver_features &= ~DRIVER_MODESET; @@ -1712,20 +1707,11 @@ static int __init i915_init(void) #endif if (!(driver.driver_features & DRIVER_MODESET)) { - driver.get_vblank_timestamp = NULL; /* Silently fail loading to not upset userspace. */ DRM_DEBUG_DRIVER("KMS and UMS disabled.\n"); return 0; } - /* - * FIXME: Note that we're lying to the DRM core here so that we can get access - * to the atomic ioctl and the atomic properties. Only plane operations on - * a single CRTC will actually work. - */ - if (driver.driver_features & DRIVER_MODESET) - driver.driver_features |= DRIVER_ATOMIC; - return drm_pci_init(&driver, &i915_pci_driver); } _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: drm/i915: Fix module initialisation. 2015-08-17 10:00 drm/i915: Fix module initialisation Maarten Lankhorst @ 2015-08-17 10:09 ` Chris Wilson 2015-08-26 7:51 ` Daniel Vetter 1 sibling, 0 replies; 11+ messages in thread From: Chris Wilson @ 2015-08-17 10:09 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: Intel Graphics Development On Mon, Aug 17, 2015 at 12:00:38PM +0200, Maarten Lankhorst wrote: > Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. > Remove the legacy suspend/resume, to fix a warning introduced by: > > "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" > > and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. > > Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> -Chris -- Chris Wilson, Intel Open Source Technology Centre _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: drm/i915: Fix module initialisation. 2015-08-17 10:00 drm/i915: Fix module initialisation Maarten Lankhorst 2015-08-17 10:09 ` Chris Wilson @ 2015-08-26 7:51 ` Daniel Vetter 2015-08-26 7:57 ` Maarten Lankhorst 1 sibling, 1 reply; 11+ messages in thread From: Daniel Vetter @ 2015-08-26 7:51 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: Intel Graphics Development On Mon, Aug 17, 2015 at 12:00:38PM +0200, Maarten Lankhorst wrote: > Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. > Remove the legacy suspend/resume, to fix a warning introduced by: > > "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" > > and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. > > Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > --- > diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c > index 1d887459e37f..411ba8ccecca 100644 > --- a/drivers/gpu/drm/i915/i915_drv.c > +++ b/drivers/gpu/drm/i915/i915_drv.c > @@ -1646,7 +1646,7 @@ static struct drm_driver driver = { > */ > .driver_features = > DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME | > - DRIVER_RENDER, > + DRIVER_RENDER | DRIVER_MODESET | DRIVER_ATOMIC, Nah, DRIVER_ATOMIC isn't quite there yet ... > .load = i915_driver_load, > .unload = i915_driver_unload, > .open = i915_driver_open, > @@ -1655,10 +1655,6 @@ static struct drm_driver driver = { > .postclose = i915_driver_postclose, > .set_busid = drm_pci_set_busid, > > - /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ > - .suspend = i915_suspend_legacy, > - .resume = i915_resume_legacy, Can't we nuke the functions themselves now too? -Daniel > - > #if defined(CONFIG_DEBUG_FS) > .debugfs_init = i915_debugfs_init, > .debugfs_cleanup = i915_debugfs_cleanup, > @@ -1701,7 +1697,6 @@ static int __init i915_init(void) > * either the i915.modeset prarameter or by the > * vga_text_mode_force boot option. > */ > - driver.driver_features |= DRIVER_MODESET; > > if (i915.modeset == 0) > driver.driver_features &= ~DRIVER_MODESET; > @@ -1712,20 +1707,11 @@ static int __init i915_init(void) > #endif > > if (!(driver.driver_features & DRIVER_MODESET)) { > - driver.get_vblank_timestamp = NULL; > /* Silently fail loading to not upset userspace. */ > DRM_DEBUG_DRIVER("KMS and UMS disabled.\n"); > return 0; > } > > - /* > - * FIXME: Note that we're lying to the DRM core here so that we can get access > - * to the atomic ioctl and the atomic properties. Only plane operations on > - * a single CRTC will actually work. > - */ > - if (driver.driver_features & DRIVER_MODESET) > - driver.driver_features |= DRIVER_ATOMIC; > - > return drm_pci_init(&driver, &i915_pci_driver); > } > > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: drm/i915: Fix module initialisation. 2015-08-26 7:51 ` Daniel Vetter @ 2015-08-26 7:57 ` Maarten Lankhorst 2015-08-26 8:12 ` Daniel Vetter 0 siblings, 1 reply; 11+ messages in thread From: Maarten Lankhorst @ 2015-08-26 7:57 UTC (permalink / raw) To: Daniel Vetter; +Cc: Intel Graphics Development Op 26-08-15 om 09:51 schreef Daniel Vetter: > On Mon, Aug 17, 2015 at 12:00:38PM +0200, Maarten Lankhorst wrote: >> Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. >> Remove the legacy suspend/resume, to fix a warning introduced by: >> >> "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" >> >> and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. >> >> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> >> --- >> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c >> index 1d887459e37f..411ba8ccecca 100644 >> --- a/drivers/gpu/drm/i915/i915_drv.c >> +++ b/drivers/gpu/drm/i915/i915_drv.c >> @@ -1646,7 +1646,7 @@ static struct drm_driver driver = { >> */ >> .driver_features = >> DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME | >> - DRIVER_RENDER, >> + DRIVER_RENDER | DRIVER_MODESET | DRIVER_ATOMIC, > Nah, DRIVER_ATOMIC isn't quite there yet ... Indeed.. >> .load = i915_driver_load, >> .unload = i915_driver_unload, >> .open = i915_driver_open, >> @@ -1655,10 +1655,6 @@ static struct drm_driver driver = { >> .postclose = i915_driver_postclose, >> .set_busid = drm_pci_set_busid, >> >> - /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ >> - .suspend = i915_suspend_legacy, >> - .resume = i915_resume_legacy, > Can't we nuke the functions themselves now too? > vga switcheroo uses them. _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: drm/i915: Fix module initialisation. 2015-08-26 7:57 ` Maarten Lankhorst @ 2015-08-26 8:12 ` Daniel Vetter 2015-08-27 13:15 ` [PATCH] drm/i915: Fix module initialisation, v2 Maarten Lankhorst 0 siblings, 1 reply; 11+ messages in thread From: Daniel Vetter @ 2015-08-26 8:12 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: Intel Graphics Development On Wed, Aug 26, 2015 at 09:57:45AM +0200, Maarten Lankhorst wrote: > Op 26-08-15 om 09:51 schreef Daniel Vetter: > > On Mon, Aug 17, 2015 at 12:00:38PM +0200, Maarten Lankhorst wrote: > >> .load = i915_driver_load, > >> .unload = i915_driver_unload, > >> .open = i915_driver_open, > >> @@ -1655,10 +1655,6 @@ static struct drm_driver driver = { > >> .postclose = i915_driver_postclose, > >> .set_busid = drm_pci_set_busid, > >> > >> - /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ > >> - .suspend = i915_suspend_legacy, > >> - .resume = i915_resume_legacy, > > Can't we nuke the functions themselves now too? > > > vga switcheroo uses them. Oh, missed that. In that case maybe rename it to _switcheroo or something? That should probably have been done in fc49b3da0e1f2, yay for not renaming functions when they're meaning changes ... -Daniel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH] drm/i915: Fix module initialisation, v2. 2015-08-26 8:12 ` Daniel Vetter @ 2015-08-27 13:15 ` Maarten Lankhorst 2015-08-29 21:51 ` shuang.he 2015-08-31 22:13 ` Matt Roper 0 siblings, 2 replies; 11+ messages in thread From: Maarten Lankhorst @ 2015-08-27 13:15 UTC (permalink / raw) To: Daniel Vetter; +Cc: Intel Graphics Development Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. Remove the legacy suspend/resume, to fix a warning introduced by: "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> --- diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index 097d4ba0421c..f0eaa6f8826b 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c @@ -364,12 +364,12 @@ static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_ dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; /* i915 resume handler doesn't set to D0 */ pci_set_power_state(dev->pdev, PCI_D0); - i915_resume_legacy(dev); + i915_resume_switcheroo(dev); dev->switch_power_state = DRM_SWITCH_POWER_ON; } else { pr_err("switched off\n"); dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; - i915_suspend_legacy(dev, pmm); + i915_suspend_switcheroo(dev, pmm); dev->switch_power_state = DRM_SWITCH_POWER_OFF; } } diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index ce3bd0c713b9..4646fe1a0499 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c @@ -679,7 +679,7 @@ static int i915_drm_suspend_late(struct drm_device *drm_dev, bool hibernation) return 0; } -int i915_suspend_legacy(struct drm_device *dev, pm_message_t state) +int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state) { int error; @@ -812,7 +812,7 @@ static int i915_drm_resume_early(struct drm_device *dev) return ret; } -int i915_resume_legacy(struct drm_device *dev) +int i915_resume_switcheroo(struct drm_device *dev) { int ret; @@ -1649,7 +1649,7 @@ static struct drm_driver driver = { */ .driver_features = DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME | - DRIVER_RENDER, + DRIVER_RENDER | DRIVER_MODESET, .load = i915_driver_load, .unload = i915_driver_unload, .open = i915_driver_open, @@ -1658,10 +1658,6 @@ static struct drm_driver driver = { .postclose = i915_driver_postclose, .set_busid = drm_pci_set_busid, - /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ - .suspend = i915_suspend_legacy, - .resume = i915_resume_legacy, - #if defined(CONFIG_DEBUG_FS) .debugfs_init = i915_debugfs_init, .debugfs_cleanup = i915_debugfs_cleanup, @@ -1704,7 +1700,6 @@ static int __init i915_init(void) * either the i915.modeset prarameter or by the * vga_text_mode_force boot option. */ - driver.driver_features |= DRIVER_MODESET; if (i915.modeset == 0) driver.driver_features &= ~DRIVER_MODESET; @@ -1715,17 +1710,11 @@ static int __init i915_init(void) #endif if (!(driver.driver_features & DRIVER_MODESET)) { - driver.get_vblank_timestamp = NULL; /* Silently fail loading to not upset userspace. */ DRM_DEBUG_DRIVER("KMS and UMS disabled.\n"); return 0; } - /* - * FIXME: Note that we're lying to the DRM core here so that we can get access - * to the atomic ioctl and the atomic properties. Only plane operations on - * a single CRTC will actually work. - */ if (i915.nuclear_pageflip) driver.driver_features |= DRIVER_ATOMIC; diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 8c938451a05e..5c2541ddf212 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -2607,8 +2607,8 @@ struct drm_i915_cmd_table { extern const struct drm_ioctl_desc i915_ioctls[]; extern int i915_max_ioctl; -extern int i915_suspend_legacy(struct drm_device *dev, pm_message_t state); -extern int i915_resume_legacy(struct drm_device *dev); +extern int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state); +extern int i915_resume_switcheroo(struct drm_device *dev); /* i915_params.c */ struct i915_params { _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i915: Fix module initialisation, v2. 2015-08-27 13:15 ` [PATCH] drm/i915: Fix module initialisation, v2 Maarten Lankhorst @ 2015-08-29 21:51 ` shuang.he 2015-08-31 22:13 ` Matt Roper 1 sibling, 0 replies; 11+ messages in thread From: shuang.he @ 2015-08-29 21:51 UTC (permalink / raw) To: shuang.he, julianx.dumez, christophe.sureau, lei.a.liu, intel-gfx, maarten.lankhorst Tested-By: Intel Graphics QA PRTS (Patch Regression Test System Contact: shuang.he@intel.com) Task id: 7275 -------------------------------------Summary------------------------------------- Platform Delta drm-intel-nightly Series Applied ILK -1 253/253 252/253 SNB 248/248 248/248 IVB 281/281 281/281 BYT 234/234 234/234 HSW 317/317 317/317 -------------------------------------Detailed------------------------------------- Platform Test drm-intel-nightly Series Applied *ILK igt@gem_reloc_vs_gpu@forked-interruptible-faulting-reloc-thrashing PASS(1) DMESG_WARN(1) Note: You need to pay more attention to line start with '*' _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i915: Fix module initialisation, v2. 2015-08-27 13:15 ` [PATCH] drm/i915: Fix module initialisation, v2 Maarten Lankhorst 2015-08-29 21:51 ` shuang.he @ 2015-08-31 22:13 ` Matt Roper 2015-09-01 10:12 ` Daniel Vetter 1 sibling, 1 reply; 11+ messages in thread From: Matt Roper @ 2015-08-31 22:13 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: Intel Graphics Development On Thu, Aug 27, 2015 at 03:15:15PM +0200, Maarten Lankhorst wrote: > Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. > Remove the legacy suspend/resume, to fix a warning introduced by: > > "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" > > and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. > > Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> > --- > diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c > index 097d4ba0421c..f0eaa6f8826b 100644 > --- a/drivers/gpu/drm/i915/i915_dma.c > +++ b/drivers/gpu/drm/i915/i915_dma.c > @@ -364,12 +364,12 @@ static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_ > dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; > /* i915 resume handler doesn't set to D0 */ > pci_set_power_state(dev->pdev, PCI_D0); > - i915_resume_legacy(dev); > + i915_resume_switcheroo(dev); > dev->switch_power_state = DRM_SWITCH_POWER_ON; > } else { > pr_err("switched off\n"); > dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; > - i915_suspend_legacy(dev, pmm); > + i915_suspend_switcheroo(dev, pmm); > dev->switch_power_state = DRM_SWITCH_POWER_OFF; > } > } > diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c > index ce3bd0c713b9..4646fe1a0499 100644 > --- a/drivers/gpu/drm/i915/i915_drv.c > +++ b/drivers/gpu/drm/i915/i915_drv.c > @@ -679,7 +679,7 @@ static int i915_drm_suspend_late(struct drm_device *drm_dev, bool hibernation) > return 0; > } > > -int i915_suspend_legacy(struct drm_device *dev, pm_message_t state) > +int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state) > { > int error; > > @@ -812,7 +812,7 @@ static int i915_drm_resume_early(struct drm_device *dev) > return ret; > } > > -int i915_resume_legacy(struct drm_device *dev) > +int i915_resume_switcheroo(struct drm_device *dev) > { > int ret; > > @@ -1649,7 +1649,7 @@ static struct drm_driver driver = { > */ > .driver_features = > DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME | > - DRIVER_RENDER, > + DRIVER_RENDER | DRIVER_MODESET, > .load = i915_driver_load, > .unload = i915_driver_unload, > .open = i915_driver_open, > @@ -1658,10 +1658,6 @@ static struct drm_driver driver = { > .postclose = i915_driver_postclose, > .set_busid = drm_pci_set_busid, > > - /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ > - .suspend = i915_suspend_legacy, > - .resume = i915_resume_legacy, > - > #if defined(CONFIG_DEBUG_FS) > .debugfs_init = i915_debugfs_init, > .debugfs_cleanup = i915_debugfs_cleanup, > @@ -1704,7 +1700,6 @@ static int __init i915_init(void) > * either the i915.modeset prarameter or by the > * vga_text_mode_force boot option. > */ > - driver.driver_features |= DRIVER_MODESET; > > if (i915.modeset == 0) > driver.driver_features &= ~DRIVER_MODESET; > @@ -1715,17 +1710,11 @@ static int __init i915_init(void) > #endif > > if (!(driver.driver_features & DRIVER_MODESET)) { > - driver.get_vblank_timestamp = NULL; > /* Silently fail loading to not upset userspace. */ > DRM_DEBUG_DRIVER("KMS and UMS disabled.\n"); > return 0; > } > > - /* > - * FIXME: Note that we're lying to the DRM core here so that we can get access > - * to the atomic ioctl and the atomic properties. Only plane operations on > - * a single CRTC will actually work. > - */ > if (i915.nuclear_pageflip) > driver.driver_features |= DRIVER_ATOMIC; > > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h > index 8c938451a05e..5c2541ddf212 100644 > --- a/drivers/gpu/drm/i915/i915_drv.h > +++ b/drivers/gpu/drm/i915/i915_drv.h > @@ -2607,8 +2607,8 @@ struct drm_i915_cmd_table { > extern const struct drm_ioctl_desc i915_ioctls[]; > extern int i915_max_ioctl; > > -extern int i915_suspend_legacy(struct drm_device *dev, pm_message_t state); > -extern int i915_resume_legacy(struct drm_device *dev); > +extern int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state); > +extern int i915_resume_switcheroo(struct drm_device *dev); > > /* i915_params.c */ > struct i915_params { > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Matt Roper Graphics Software Engineer IoTG Platform Enabling & Development Intel Corporation (916) 356-2795 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i915: Fix module initialisation, v2. 2015-08-31 22:13 ` Matt Roper @ 2015-09-01 10:12 ` Daniel Vetter 2015-09-01 11:51 ` Maarten Lankhorst 0 siblings, 1 reply; 11+ messages in thread From: Daniel Vetter @ 2015-09-01 10:12 UTC (permalink / raw) To: Matt Roper; +Cc: Intel Graphics Development On Mon, Aug 31, 2015 at 03:13:41PM -0700, Matt Roper wrote: > On Thu, Aug 27, 2015 at 03:15:15PM +0200, Maarten Lankhorst wrote: > > Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. > > Remove the legacy suspend/resume, to fix a warning introduced by: > > > > "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" > > > > and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. > > > > Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > > Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Review should include the commit message and this commit message doesn't match v2 at all ... Please rectify (or at least tell me what I should put there). Thanks, Daniel > > > --- > > diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c > > index 097d4ba0421c..f0eaa6f8826b 100644 > > --- a/drivers/gpu/drm/i915/i915_dma.c > > +++ b/drivers/gpu/drm/i915/i915_dma.c > > @@ -364,12 +364,12 @@ static void i915_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_ > > dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; > > /* i915 resume handler doesn't set to D0 */ > > pci_set_power_state(dev->pdev, PCI_D0); > > - i915_resume_legacy(dev); > > + i915_resume_switcheroo(dev); > > dev->switch_power_state = DRM_SWITCH_POWER_ON; > > } else { > > pr_err("switched off\n"); > > dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; > > - i915_suspend_legacy(dev, pmm); > > + i915_suspend_switcheroo(dev, pmm); > > dev->switch_power_state = DRM_SWITCH_POWER_OFF; > > } > > } > > diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c > > index ce3bd0c713b9..4646fe1a0499 100644 > > --- a/drivers/gpu/drm/i915/i915_drv.c > > +++ b/drivers/gpu/drm/i915/i915_drv.c > > @@ -679,7 +679,7 @@ static int i915_drm_suspend_late(struct drm_device *drm_dev, bool hibernation) > > return 0; > > } > > > > -int i915_suspend_legacy(struct drm_device *dev, pm_message_t state) > > +int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state) > > { > > int error; > > > > @@ -812,7 +812,7 @@ static int i915_drm_resume_early(struct drm_device *dev) > > return ret; > > } > > > > -int i915_resume_legacy(struct drm_device *dev) > > +int i915_resume_switcheroo(struct drm_device *dev) > > { > > int ret; > > > > @@ -1649,7 +1649,7 @@ static struct drm_driver driver = { > > */ > > .driver_features = > > DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME | > > - DRIVER_RENDER, > > + DRIVER_RENDER | DRIVER_MODESET, > > .load = i915_driver_load, > > .unload = i915_driver_unload, > > .open = i915_driver_open, > > @@ -1658,10 +1658,6 @@ static struct drm_driver driver = { > > .postclose = i915_driver_postclose, > > .set_busid = drm_pci_set_busid, > > > > - /* Used in place of i915_pm_ops for non-DRIVER_MODESET */ > > - .suspend = i915_suspend_legacy, > > - .resume = i915_resume_legacy, > > - > > #if defined(CONFIG_DEBUG_FS) > > .debugfs_init = i915_debugfs_init, > > .debugfs_cleanup = i915_debugfs_cleanup, > > @@ -1704,7 +1700,6 @@ static int __init i915_init(void) > > * either the i915.modeset prarameter or by the > > * vga_text_mode_force boot option. > > */ > > - driver.driver_features |= DRIVER_MODESET; > > > > if (i915.modeset == 0) > > driver.driver_features &= ~DRIVER_MODESET; > > @@ -1715,17 +1710,11 @@ static int __init i915_init(void) > > #endif > > > > if (!(driver.driver_features & DRIVER_MODESET)) { > > - driver.get_vblank_timestamp = NULL; > > /* Silently fail loading to not upset userspace. */ > > DRM_DEBUG_DRIVER("KMS and UMS disabled.\n"); > > return 0; > > } > > > > - /* > > - * FIXME: Note that we're lying to the DRM core here so that we can get access > > - * to the atomic ioctl and the atomic properties. Only plane operations on > > - * a single CRTC will actually work. > > - */ > > if (i915.nuclear_pageflip) > > driver.driver_features |= DRIVER_ATOMIC; > > > > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h > > index 8c938451a05e..5c2541ddf212 100644 > > --- a/drivers/gpu/drm/i915/i915_drv.h > > +++ b/drivers/gpu/drm/i915/i915_drv.h > > @@ -2607,8 +2607,8 @@ struct drm_i915_cmd_table { > > extern const struct drm_ioctl_desc i915_ioctls[]; > > extern int i915_max_ioctl; > > > > -extern int i915_suspend_legacy(struct drm_device *dev, pm_message_t state); > > -extern int i915_resume_legacy(struct drm_device *dev); > > +extern int i915_suspend_switcheroo(struct drm_device *dev, pm_message_t state); > > +extern int i915_resume_switcheroo(struct drm_device *dev); > > > > /* i915_params.c */ > > struct i915_params { > > > > _______________________________________________ > > Intel-gfx mailing list > > Intel-gfx@lists.freedesktop.org > > http://lists.freedesktop.org/mailman/listinfo/intel-gfx > > -- > Matt Roper > Graphics Software Engineer > IoTG Platform Enabling & Development > Intel Corporation > (916) 356-2795 -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i915: Fix module initialisation, v2. 2015-09-01 10:12 ` Daniel Vetter @ 2015-09-01 11:51 ` Maarten Lankhorst 2015-09-02 7:53 ` Daniel Vetter 0 siblings, 1 reply; 11+ messages in thread From: Maarten Lankhorst @ 2015-09-01 11:51 UTC (permalink / raw) To: Daniel Vetter, Matt Roper; +Cc: Intel Graphics Development Op 01-09-15 om 12:12 schreef Daniel Vetter: > On Mon, Aug 31, 2015 at 03:13:41PM -0700, Matt Roper wrote: >> On Thu, Aug 27, 2015 at 03:15:15PM +0200, Maarten Lankhorst wrote: >>> Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. >>> Remove the legacy suspend/resume, to fix a warning introduced by: >>> >>> "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" >>> >>> and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. >>> >>> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> >> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> > Review should include the commit message and this commit message doesn't > match v2 at all ... Please rectify (or at least tell me what I should put > there). > Oops.. The driver doesn't support UMS any more, so set DRIVER_MODESET by default, remove the legacy s/r callbacks, and rename the s/r functions to make it more clear they're only in use by switcheroo now. Also remove an obsolete comment about atomic. Normal updates are supported only async updates aren't yet. _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i915: Fix module initialisation, v2. 2015-09-01 11:51 ` Maarten Lankhorst @ 2015-09-02 7:53 ` Daniel Vetter 0 siblings, 0 replies; 11+ messages in thread From: Daniel Vetter @ 2015-09-02 7:53 UTC (permalink / raw) To: Maarten Lankhorst; +Cc: Intel Graphics Development On Tue, Sep 01, 2015 at 01:51:38PM +0200, Maarten Lankhorst wrote: > Op 01-09-15 om 12:12 schreef Daniel Vetter: > > On Mon, Aug 31, 2015 at 03:13:41PM -0700, Matt Roper wrote: > >> On Thu, Aug 27, 2015 at 03:15:15PM +0200, Maarten Lankhorst wrote: > >>> Set DRIVER_MODESET and DRIVER_ATOMIC by default. The driver is fully atomic. > >>> Remove the legacy suspend/resume, to fix a warning introduced by: > >>> > >>> "drm: WARN_ON if a modeset driver uses legacy suspend/resume helpers" > >>> > >>> and removing the .get_vblank_timestamp reset to NULL. It's a noop without UMS. > >>> > >>> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > >> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> > > Review should include the commit message and this commit message doesn't > > match v2 at all ... Please rectify (or at least tell me what I should put > > there). > > > Oops.. > > The driver doesn't support UMS any more, so set DRIVER_MODESET by default, > remove the legacy s/r callbacks, and rename the s/r functions to make it more clear > they're only in use by switcheroo now. > > Also remove an obsolete comment about atomic. Normal updates are supported only > async updates aren't yet. Queued for -next, thanks for the patch. -Daniel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2015-09-02 7:53 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-08-17 10:00 drm/i915: Fix module initialisation Maarten Lankhorst 2015-08-17 10:09 ` Chris Wilson 2015-08-26 7:51 ` Daniel Vetter 2015-08-26 7:57 ` Maarten Lankhorst 2015-08-26 8:12 ` Daniel Vetter 2015-08-27 13:15 ` [PATCH] drm/i915: Fix module initialisation, v2 Maarten Lankhorst 2015-08-29 21:51 ` shuang.he 2015-08-31 22:13 ` Matt Roper 2015-09-01 10:12 ` Daniel Vetter 2015-09-01 11:51 ` Maarten Lankhorst 2015-09-02 7:53 ` Daniel Vetter
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox