[PATCH 09/10] drm/exynos: add G2D driver

2013-01-22 Thread Inki Dae
2013/1/21 Rob Clark : > I don't suppose you could send a libdrm patch to the list with an up > to date version of the g2dtest code so we can get it in libdrm tree? > We are planning on updating exynos drm for libdrm. At that time, the up to date version of the g2dtest will be posted. Joonyoung, le

[PATCH 09/10] drm/exynos: add G2D driver

2013-01-21 Thread Rob Clark
On Mon, Jan 21, 2013 at 7:33 PM, Inki Dae wrote: > 2013/1/21 Rob Clark : >> I don't suppose you could send a libdrm patch to the list with an up >> to date version of the g2dtest code so we can get it in libdrm tree? >> > > We are planning on updating exynos drm for libdrm. At that time, the > up

Re: [PATCH 09/10] drm/exynos: add G2D driver

2013-01-21 Thread Rob Clark
On Mon, Jan 21, 2013 at 7:33 PM, Inki Dae wrote: > 2013/1/21 Rob Clark : >> I don't suppose you could send a libdrm patch to the list with an up >> to date version of the g2dtest code so we can get it in libdrm tree? >> > > We are planning on updating exynos drm for libdrm. At that time, the > up

Re: [PATCH 09/10] drm/exynos: add G2D driver

2013-01-21 Thread Inki Dae
2013/1/21 Rob Clark : > I don't suppose you could send a libdrm patch to the list with an up > to date version of the g2dtest code so we can get it in libdrm tree? > We are planning on updating exynos drm for libdrm. At that time, the up to date version of the g2dtest will be posted. Joonyoung, le

[PATCH 09/10] drm/exynos: add G2D driver

2013-01-20 Thread Rob Clark
I don't suppose you could send a libdrm patch to the list with an up to date version of the g2dtest code so we can get it in libdrm tree? BR, -R On Fri, Mar 16, 2012 at 1:28 AM, Joonyoung Shim wrote: > On 03/15/2012 07:50 PM, Dave Airlie wrote: >>> >>> G2D is a 2D graphic accelerator that suppo

Re: [PATCH 09/10] drm/exynos: add G2D driver

2013-01-20 Thread Rob Clark
I don't suppose you could send a libdrm patch to the list with an up to date version of the g2dtest code so we can get it in libdrm tree? BR, -R On Fri, Mar 16, 2012 at 1:28 AM, Joonyoung Shim wrote: > On 03/15/2012 07:50 PM, Dave Airlie wrote: >>> >>> G2D is a 2D graphic accelerator that suppor

[PATCH 09/10] drm/exynos: add G2D driver

2012-03-16 Thread Joonyoung Shim
On 03/15/2012 07:50 PM, Dave Airlie wrote: >> G2D is a 2D graphic accelerator that supports Bit Block Transfer. This >> G2D driver is exynos drm specific and supports only exynos4x12 series. >> user application fills command set in cmdlist and once dma start request >> these cmdlists are parsed and

Re: [PATCH 09/10] drm/exynos: add G2D driver

2012-03-15 Thread Joonyoung Shim
On 03/15/2012 07:50 PM, Dave Airlie wrote: G2D is a 2D graphic accelerator that supports Bit Block Transfer. This G2D driver is exynos drm specific and supports only exynos4x12 series. user application fills command set in cmdlist and once dma start request these cmdlists are parsed and performed

[PATCH 09/10] drm/exynos: add G2D driver

2012-03-15 Thread Joonyoung Shim
On 03/15/2012 07:50 PM, Dave Airlie wrote: >> G2D is a 2D graphic accelerator that supports Bit Block Transfer. This >> G2D driver is exynos drm specific and supports only exynos4x12 series. >> user application fills command set in cmdlist and once dma start request >> these cmdlists are parsed and

[PATCH 09/10] drm/exynos: add G2D driver

2012-03-15 Thread Dave Airlie
> > G2D is a 2D graphic accelerator that supports Bit Block Transfer. This > G2D driver is exynos drm specific and supports only exynos4x12 series. > user application fills command set in cmdlist and once dma start request > these cmdlists are parsed and performed by dma. Where is this block docum

Re: [PATCH 09/10] drm/exynos: add G2D driver

2012-03-15 Thread Joonyoung Shim
On 03/15/2012 07:50 PM, Dave Airlie wrote: G2D is a 2D graphic accelerator that supports Bit Block Transfer. This G2D driver is exynos drm specific and supports only exynos4x12 series. user application fills command set in cmdlist and once dma start request these cmdlists are parsed and performed

Re: [PATCH 09/10] drm/exynos: add G2D driver

2012-03-15 Thread Dave Airlie
> > G2D is a 2D graphic accelerator that supports Bit Block Transfer. This > G2D driver is exynos drm specific and supports only exynos4x12 series. > user application fills command set in cmdlist and once dma start request > these cmdlists are parsed and performed by dma. Where is this block docum

[RESEND][PATCH 09/10] drm/exynos: add G2D driver

2012-03-14 Thread Inki Dae
From: Joonyoung Shim G2D is a 2D graphic accelerator that supports Bit Block Transfer. This G2D driver is exynos drm specific. This adds below three exynos specific ioctl and one event for G2D. - DRM_EXYNOS_G2D_GET_VER - DRM_EXYNOS_G2D_SET_CMDLIST - DRM_EXYNOS_G2D_EXEC - DRM_EXYNOS_G2D_EVENT

[PATCH 09/10] drm/exynos: add G2D driver

2012-03-13 Thread Inki Dae
From: Joonyoung Shim G2D is a 2D graphic accelerator that supports Bit Block Transfer. This G2D driver is exynos drm specific and supports only exynos4x12 series. user application fills command set in cmdlist and once dma start request these cmdlists are parsed and performed by dma. This adds be

[RESEND][PATCH 09/10] drm/exynos: add G2D driver

2012-03-13 Thread Inki Dae
From: Joonyoung Shim G2D is a 2D graphic accelerator that supports Bit Block Transfer. This G2D driver is exynos drm specific. This adds below three exynos specific ioctl and one event for G2D. - DRM_EXYNOS_G2D_GET_VER - DRM_EXYNOS_G2D_SET_CMDLIST - DRM_EXYNOS_G2D_EXEC - DRM_EXYNOS_G2D_EVENT

[PATCH 09/10] drm/exynos: add G2D driver

2012-03-13 Thread Inki Dae
From: Joonyoung Shim G2D is a 2D graphic accelerator that supports Bit Block Transfer. This G2D driver is exynos drm specific and supports only exynos4x12 series. user application fills command set in cmdlist and once dma start request these cmdlists are parsed and performed by dma. This adds be