Re: [Intel-gfx] [PATCH] drm/i915: Drop pipe_enable checks in vblank funcs

2015-01-28 Thread Daniel Vetter
On Mon, Jan 26, 2015 at 11:03:14PM +0200, Laurent Pinchart wrote: > Hi Daniel, > > Thank you for the patch. > > On Monday 26 January 2015 07:41:59 Daniel Vetter wrote: > > With Ville's rework to use drm_crtc_vblank_on/off the core will take > > care of rejecting drm_vblank_get calls when the pipe

Re: [Intel-gfx] [PATCH] drm/i915: Drop pipe_enable checks in vblank funcs

2015-01-26 Thread Laurent Pinchart
Hi Daniel, Thank you for the patch. On Monday 26 January 2015 07:41:59 Daniel Vetter wrote: > With Ville's rework to use drm_crtc_vblank_on/off the core will take > care of rejecting drm_vblank_get calls when the pipe is off. After debugging a related issue in the omapdrm driver I think this is

[Intel-gfx] [PATCH] drm/i915: Drop pipe_enable checks in vblank funcs

2015-01-25 Thread Daniel Vetter
With Ville's rework to use drm_crtc_vblank_on/off the core will take care of rejecting drm_vblank_get calls when the pipe is off. Also the core won't call the get_vblank_counter hooks in that case either. And since we've dropped ums support recently we can now remove these hacks, yay! Noticed whil