dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Inki Dae <inki.dae@samsung.com>
To: 'Inki Dae' <inki.dae@samsung.com>,
	airlied@linux.ie, dri-devel@lists.freedesktop.org
Cc: kyungmin.park@samsung.com, sw0312.kim@samsung.com
Subject: RE: [git pull] updated exynos-drm-next
Date: Tue, 08 May 2012 19:09:38 +0900	[thread overview]
Message-ID: <023f01cd2d02$adb90220$092b0660$%dae@samsung.com> (raw)
In-Reply-To: <1336127103-7718-1-git-send-email-inki.dae@samsung.com>

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

  reply	other threads:[~2012-05-08 10:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-04 10:25 [git pull] updated exynos-drm-next Inki Dae
2012-05-08 10:09 ` Inki Dae [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-03-21  2:27 Inki Dae

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='023f01cd2d02$adb90220$092b0660$%dae@samsung.com' \
    --to=inki.dae@samsung.com \
    --cc=airlied@linux.ie \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=kyungmin.park@samsung.com \
    --cc=sw0312.kim@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox