dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [git pull] updated exynos-drm-next
@ 2012-03-21  2:27 Inki Dae
  0 siblings, 0 replies; 3+ messages in thread
From: Inki Dae @ 2012-03-21  2:27 UTC (permalink / raw)
  To: airlied, dri-devel; +Cc: Inki Dae, chulspro.kim, kyungmin.park, sw0312.kim

Hi, Dave.

as you pointed out, we have removed g2d driver from this patch set and
rebased virtual display driver. for g2d driver, we will consolidate the
security issue you pointed out for next time.

Please pull from
	git://git.infradead.org/users/kmpark/linux-samsung exynos-drm-next

this patch set is based on git repository below:
	git://people.freedesktop.org/~airlied/linux.git drm-core-next
	commit-id: 8229c885fe361e521ac64de36b16011e54a30de0

please let me know if there is any problem.
Thanks.

Eunchul Kim (1):
  drm/exynos: add default pixel format for plane

Inki Dae (4):
  drm/exynos: added mode_fixup feature and code clean.
  drm/exynos: update gem and buffer framework.
  drm/exynos: added new funtion to get/put dma address.
  drm/exynos: added virtual display driver.

Joonyoung Shim (7):
  drm/exynos: add HDMI version 1.4 support
  drm/exynos: release pending pageflip events when closed
  drm/exynos: remove module of exynos drm subdrv
  drm/exynos: add subdrv open/close functions
  drm/exynos: add is_local member in exynos_drm_subdrv struct
  drm/exynos: remove exynos_mixer.h
  drm/exynos: cleanup exynos_hdmi.h

Seung-Woo Kim (1):
  drm/exynos: enable hdmi audio feature

 drivers/gpu/drm/exynos/Kconfig                |   14 +-
 drivers/gpu/drm/exynos/Makefile               |   11 +-
 drivers/gpu/drm/exynos/exynos_ddc.c           |    1 -
 drivers/gpu/drm/exynos/exynos_drm_buf.c       |  191 +++-
 drivers/gpu/drm/exynos/exynos_drm_buf.h       |   22 +-
 drivers/gpu/drm/exynos/exynos_drm_connector.c |   35 +-
 drivers/gpu/drm/exynos/exynos_drm_core.c      |  140 +--
 drivers/gpu/drm/exynos/exynos_drm_crtc.c      |   12 +-
 drivers/gpu/drm/exynos/exynos_drm_drv.c       |   94 ++-
 drivers/gpu/drm/exynos/exynos_drm_drv.h       |   38 +-
 drivers/gpu/drm/exynos/exynos_drm_encoder.c   |   24 +-
 drivers/gpu/drm/exynos/exynos_drm_fb.c        |    6 -
 drivers/gpu/drm/exynos/exynos_drm_fbdev.c     |   90 +--
 drivers/gpu/drm/exynos/exynos_drm_fimd.c      |   20 +-
 drivers/gpu/drm/exynos/exynos_drm_gem.c       |  363 ++++++-
 drivers/gpu/drm/exynos/exynos_drm_gem.h       |   29 +-
 drivers/gpu/drm/exynos/exynos_drm_hdmi.c      |  115 +--
 drivers/gpu/drm/exynos/exynos_drm_hdmi.h      |    5 +
 drivers/gpu/drm/exynos/exynos_drm_plane.c     |    8 +-
 drivers/gpu/drm/exynos/exynos_drm_vidi.c      |  676 ++++++++++++
 drivers/gpu/drm/exynos/exynos_drm_vidi.h      |   36 +
 drivers/gpu/drm/exynos/exynos_hdmi.c          | 1437 +++++++++++++++++++++++--
 drivers/gpu/drm/exynos/exynos_hdmi.h          |   50 -
 drivers/gpu/drm/exynos/exynos_mixer.c         |   57 +-
 drivers/gpu/drm/exynos/exynos_mixer.h         |   92 --
 drivers/gpu/drm/exynos/regs-hdmi.h            |  488 ++++++++-
 include/drm/exynos_drm.h                      |   26 +
 27 files changed, 3365 insertions(+), 715 deletions(-)
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_vidi.c
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_vidi.h
 delete mode 100644 drivers/gpu/drm/exynos/exynos_mixer.h

-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [git pull] updated exynos-drm-next
@ 2012-05-04 10:25 Inki Dae
  2012-05-08 10:09 ` Inki Dae
  0 siblings, 1 reply; 3+ messages in thread
From: Inki Dae @ 2012-05-04 10:25 UTC (permalink / raw)
  To: airlied, dri-devel; +Cc: Inki Dae, kyungmin.park, sw0312.kim

Hi Dave,

Please pull from
	git://git.infradead.org/users/kmpark/linux-samsung exynos-drm-next

this is based on git repository below:
	git://people.freedesktop.org/~airlied/linux.git drm-next
	commit-id: 5db578e167cfeedbd086df45cc2328b5bb9cf3fd

this patch set had already been posted two week ago for review and among them
one patch, userptr feature, is excluded from this time because of the issue
you pointed out for now. for this, you can refer to below link:
	http://www.spinics.net/lists/dri-devel/msg21850.html

and for Rotator and FIMC driver, RFC for them are in progress so
we will post them with updated codes again in the near future.
for these, you can refer to below link:
	http://www.spinics.net/lists/dri-devel/msg22002.html
	http://lwn.net/Articles/494974/

please let me know if there is any problem.

Thanks,
Inki Dae

Inki Dae (6):
  drm/exynos: fixed duplicatd memory allocation bug.
  drm/exynos: fixed exynos_drm_gem_map_pages bug.
  drm/exynos: added missed vm area region mapping type.
  drm/exynos: added cache attribute support for gem.
  drm/exynos: added drm prime feature.
  drm/exynos: added a feature to get gem buffer information.

Joonyoung Shim (6):
  drm/exynos: cleanup for hdmi platform data
  drm/exynos: use platform_get_irq_byname for hdmi
  drm/exynos: use threaded irq for hdmi hotplug
  drm/exynos: add dpms for hdmi
  drm/exynos: add PM functions for hdmi and mixer
  drm/exynos: add G2D driver

Seung-Woo Kim (5):
  drm/exynos: fixed wrong pageflip finish event for interlace mode
  drm/exynos: enable dvi mode for dvi monitor
  drm/exynos: add additional display mode for hdmi
  drm/exynos: added source size to overlay structure
  drm/exynos: added vp scaling feature for hdmi

 drivers/gpu/drm/exynos/Kconfig             |   12 +
 drivers/gpu/drm/exynos/Makefile            |    2 +
 drivers/gpu/drm/exynos/exynos_drm_buf.c    |   12 +-
 drivers/gpu/drm/exynos/exynos_drm_crtc.c   |    4 +
 drivers/gpu/drm/exynos/exynos_drm_crtc.h   |    4 +
 drivers/gpu/drm/exynos/exynos_drm_dmabuf.c |  272 ++++++++
 drivers/gpu/drm/exynos/exynos_drm_dmabuf.h |   39 ++
 drivers/gpu/drm/exynos/exynos_drm_drv.c    |   41 ++-
 drivers/gpu/drm/exynos/exynos_drm_drv.h    |   17 +
 drivers/gpu/drm/exynos/exynos_drm_g2d.c    |  932 ++++++++++++++++++++++++++++
 drivers/gpu/drm/exynos/exynos_drm_g2d.h    |   36 ++
 drivers/gpu/drm/exynos/exynos_drm_gem.c    |  119 +++--
 drivers/gpu/drm/exynos/exynos_drm_gem.h    |   12 +
 drivers/gpu/drm/exynos/exynos_drm_hdmi.c   |   77 ++-
 drivers/gpu/drm/exynos/exynos_drm_hdmi.h   |    6 +-
 drivers/gpu/drm/exynos/exynos_drm_plane.c  |   10 +-
 drivers/gpu/drm/exynos/exynos_hdmi.c       |  429 ++++++++-----
 drivers/gpu/drm/exynos/exynos_mixer.c      |  401 ++++++------
 drivers/gpu/drm/exynos/regs-hdmi.h         |    6 +-
 include/drm/exynos_drm.h                   |   99 +++-
 20 files changed, 2066 insertions(+), 464 deletions(-)
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_dmabuf.h
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_g2d.c
 create mode 100644 drivers/gpu/drm/exynos/exynos_drm_g2d.h

-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [git pull] updated exynos-drm-next
  2012-05-04 10:25 [git pull] updated exynos-drm-next Inki Dae
@ 2012-05-08 10:09 ` Inki Dae
  0 siblings, 0 replies; 3+ messages in thread
From: Inki Dae @ 2012-05-08 10:09 UTC (permalink / raw)
  To: 'Inki Dae', airlied, dri-devel; +Cc: kyungmin.park, sw0312.kim

Hi Dave,

I have rebased exynos-drm-next on drm-next of
git://people.freedesktop.org/~airlied/linux.git

So below patches are removed from exynos-drm-next because these had already
been merged to drm-next with v3.4-rc6 merge
	drm/exynos: fixed duplicatd memory allocation bug.
	drm/exynos: fixed exynos_drm_gem_map_pages bug.
	drm/exynos: added missed vm area region mapping type.

and now is based on git repository below:
 	git://people.freedesktop.org/~airlied/linux.git drm-next
 	commit-id: 4f256e8aa3eda15c11c3cec3ec5336e1fc579cbd

please let me know if there is any problem.

Thanks,
Inki Dae

> -----Original Message-----
> From: Inki Dae [mailto:inki.dae@samsung.com]
> Sent: Friday, May 04, 2012 7:25 PM
> To: airlied@linux.ie; dri-devel@lists.freedesktop.org
> Cc: kyungmin.park@samsung.com; sw0312.kim@samsung.com;
> jy0922.shim@samsung.com; Inki Dae
> Subject: [git pull] updated exynos-drm-next
> 
> Hi Dave,
> 
> Please pull from
> 	git://git.infradead.org/users/kmpark/linux-samsung exynos-drm-next
> 
> this is based on git repository below:
> 	git://people.freedesktop.org/~airlied/linux.git drm-next
> 	commit-id: 5db578e167cfeedbd086df45cc2328b5bb9cf3fd
> 
> this patch set had already been posted two week ago for review and among
> them
> one patch, userptr feature, is excluded from this time because of the
> issue
> you pointed out for now. for this, you can refer to below link:
> 	http://www.spinics.net/lists/dri-devel/msg21850.html
> 
> and for Rotator and FIMC driver, RFC for them are in progress so
> we will post them with updated codes again in the near future.
> for these, you can refer to below link:
> 	http://www.spinics.net/lists/dri-devel/msg22002.html
> 	http://lwn.net/Articles/494974/
> 
> please let me know if there is any problem.
> 
> Thanks,
> Inki Dae
> 
> Inki Dae (6):
>   drm/exynos: fixed duplicatd memory allocation bug.
>   drm/exynos: fixed exynos_drm_gem_map_pages bug.
>   drm/exynos: added missed vm area region mapping type.
>   drm/exynos: added cache attribute support for gem.
>   drm/exynos: added drm prime feature.
>   drm/exynos: added a feature to get gem buffer information.
> 
> Joonyoung Shim (6):
>   drm/exynos: cleanup for hdmi platform data
>   drm/exynos: use platform_get_irq_byname for hdmi
>   drm/exynos: use threaded irq for hdmi hotplug
>   drm/exynos: add dpms for hdmi
>   drm/exynos: add PM functions for hdmi and mixer
>   drm/exynos: add G2D driver
> 
> Seung-Woo Kim (5):
>   drm/exynos: fixed wrong pageflip finish event for interlace mode
>   drm/exynos: enable dvi mode for dvi monitor
>   drm/exynos: add additional display mode for hdmi
>   drm/exynos: added source size to overlay structure
>   drm/exynos: added vp scaling feature for hdmi
> 
>  drivers/gpu/drm/exynos/Kconfig             |   12 +
>  drivers/gpu/drm/exynos/Makefile            |    2 +
>  drivers/gpu/drm/exynos/exynos_drm_buf.c    |   12 +-
>  drivers/gpu/drm/exynos/exynos_drm_crtc.c   |    4 +
>  drivers/gpu/drm/exynos/exynos_drm_crtc.h   |    4 +
>  drivers/gpu/drm/exynos/exynos_drm_dmabuf.c |  272 ++++++++
>  drivers/gpu/drm/exynos/exynos_drm_dmabuf.h |   39 ++
>  drivers/gpu/drm/exynos/exynos_drm_drv.c    |   41 ++-
>  drivers/gpu/drm/exynos/exynos_drm_drv.h    |   17 +
>  drivers/gpu/drm/exynos/exynos_drm_g2d.c    |  932
> ++++++++++++++++++++++++++++
>  drivers/gpu/drm/exynos/exynos_drm_g2d.h    |   36 ++
>  drivers/gpu/drm/exynos/exynos_drm_gem.c    |  119 +++--
>  drivers/gpu/drm/exynos/exynos_drm_gem.h    |   12 +
>  drivers/gpu/drm/exynos/exynos_drm_hdmi.c   |   77 ++-
>  drivers/gpu/drm/exynos/exynos_drm_hdmi.h   |    6 +-
>  drivers/gpu/drm/exynos/exynos_drm_plane.c  |   10 +-
>  drivers/gpu/drm/exynos/exynos_hdmi.c       |  429 ++++++++-----
>  drivers/gpu/drm/exynos/exynos_mixer.c      |  401 ++++++------
>  drivers/gpu/drm/exynos/regs-hdmi.h         |    6 +-
>  include/drm/exynos_drm.h                   |   99 +++-
>  20 files changed, 2066 insertions(+), 464 deletions(-)
>  create mode 100644 drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
>  create mode 100644 drivers/gpu/drm/exynos/exynos_drm_dmabuf.h
>  create mode 100644 drivers/gpu/drm/exynos/exynos_drm_g2d.c
>  create mode 100644 drivers/gpu/drm/exynos/exynos_drm_g2d.h
> 
> --
> 1.7.4.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-05-08 10:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-04 10:25 [git pull] updated exynos-drm-next Inki Dae
2012-05-08 10:09 ` Inki Dae
  -- strict thread matches above, loose matches on Subject: below --
2012-03-21  2:27 Inki Dae

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox