Re: [Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-08 Thread Jesse Barnes
On Tue, 8 Nov 2011 15:20:37 +0100 Daniel Vetter wrote: > On Mon, Nov 07, 2011 at 10:02:52AM -0800, Jesse Barnes wrote: > > Planes are a bit like half-CRTCs. They have a location and fb, but > > don't drive outputs directly. Add support for handling them to the core > > KMS code. > > > > Signed

Re: [Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-08 Thread Daniel Vetter
On Mon, Nov 07, 2011 at 10:02:52AM -0800, Jesse Barnes wrote: > Planes are a bit like half-CRTCs. They have a location and fb, but > don't drive outputs directly. Add support for handling them to the core > KMS code. > > Signed-off-by: Jesse Barnes One question belowk, but still: Reviewed-by:

[Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-07 Thread Jesse Barnes
Planes are a bit like half-CRTCs. They have a location and fb, but don't drive outputs directly. Add support for handling them to the core KMS code. Signed-off-by: Jesse Barnes --- drivers/gpu/drm/drm_crtc.c | 251 +++- drivers/gpu/drm/drm_drv.c |3

Re: [Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-04 Thread Jesse Barnes
On Fri, 04 Nov 2011 11:22:10 +0900 Joonyoung Shim wrote: > > +struct drm_plane { > > + struct drm_device *dev; > > + struct device kdev; > > + struct device_attribute *attr; > > + struct list_head head; > > + > > + struct drm_mode_object base; > > + > > + uint32_t possible_crtcs; > > +

Re: [Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-03 Thread Daniel Vetter
On Thu, Nov 03, 2011 at 03:48:52PM -0700, Jesse Barnes wrote: > On Thu, 3 Nov 2011 11:21:18 -0700 > Jesse Barnes wrote: > > > On Wed, 2 Nov 2011 15:33:04 -0700 > > Jesse Barnes wrote: > > > > > On Wed, 2 Nov 2011 13:03:19 -0700 > > > Jesse Barnes wrote: > > > > > > > Planes are a bit like ha

Re: [Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-03 Thread Jesse Barnes
On Thu, 3 Nov 2011 11:21:18 -0700 Jesse Barnes wrote: > On Wed, 2 Nov 2011 15:33:04 -0700 > Jesse Barnes wrote: > > > On Wed, 2 Nov 2011 13:03:19 -0700 > > Jesse Barnes wrote: > > > > > Planes are a bit like half-CRTCs. They have a location and fb, but > > > don't drive outputs directly. A

Re: [Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-03 Thread Jesse Barnes
On Wed, 2 Nov 2011 15:33:04 -0700 Jesse Barnes wrote: > On Wed, 2 Nov 2011 13:03:19 -0700 > Jesse Barnes wrote: > > > Planes are a bit like half-CRTCs. They have a location and fb, but > > don't drive outputs directly. Add support for handling them to the core > > KMS code. > > Accidentally

Re: [Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-02 Thread Jesse Barnes
On Wed, 2 Nov 2011 13:03:19 -0700 Jesse Barnes wrote: > Planes are a bit like half-CRTCs. They have a location and fb, but > don't drive outputs directly. Add support for handling them to the core > KMS code. Accidentally left out the ->destroy hook in this one. The drm-overlays branch at gi

[Intel-gfx] [PATCH 1/5] drm: add plane support

2011-11-02 Thread Jesse Barnes
Planes are a bit like half-CRTCs. They have a location and fb, but don't drive outputs directly. Add support for handling them to the core KMS code. Signed-off-by: Jesse Barnes --- drivers/gpu/drm/drm_crtc.c | 236 +++- drivers/gpu/drm/drm_drv.c |3