All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: dri-devel@lists.freedesktop.org
Subject: [PULL v2] SH Mobile DRM driver for v3.7
Date: Tue, 18 Sep 2012 12:31:54 +0200	[thread overview]
Message-ID: <2191093.AqxUiGV2NM@avalon> (raw)
In-Reply-To: <CAPM=9txBOU8qMOpeD2oQPYzKqDXgfMdSTsYq6oTp4093G+myag@mail.gmail.com>

Hi Dave,

Here's the second pull request for the SH Mobile DRM driver. Compared to v1, 
the include/drm/shmob_drm.h private header has been moved to 
include/linux/platform_data/.

The following changes since commit 0b2443ed4e07d7973e4554a2cc166bc35447b59e:

  drm/edid: limit printk when facing bad edid (2012-09-17 11:16:40 +1000)

are available in the git repository at:
  git://linuxtv.org/pinchartl/fbdev.git drm-lcdc

Lars-Peter Clausen (1):
      DRM: Add DRM KMS/FB CMA helper

Laurent Pinchart (2):
      drm: Add NV24 and NV42 pixel formats
      drm: Renesas SH Mobile DRM driver

Sascha Hauer (1):
      DRM: Add DRM GEM CMA helper

 drivers/gpu/drm/Kconfig                        |   17 +
 drivers/gpu/drm/Makefile                       |    3 +
 drivers/gpu/drm/drm_crtc.c                     |    6 +
 drivers/gpu/drm/drm_fb_cma_helper.c            |  406 +++++++++++++
 drivers/gpu/drm/drm_gem_cma_helper.c           |  251 ++++++++
 drivers/gpu/drm/shmobile/Kconfig               |   10 +
 drivers/gpu/drm/shmobile/Makefile              |    7 +
 drivers/gpu/drm/shmobile/shmob_drm_backlight.c |   90 +++
 drivers/gpu/drm/shmobile/shmob_drm_backlight.h |   23 +
 drivers/gpu/drm/shmobile/shmob_drm_crtc.c      |  763 +++++++++++++++++++++++
 drivers/gpu/drm/shmobile/shmob_drm_crtc.h      |   60 ++
 drivers/gpu/drm/shmobile/shmob_drm_drv.c       |  361 +++++++++++
 drivers/gpu/drm/shmobile/shmob_drm_drv.h       |   47 ++
 drivers/gpu/drm/shmobile/shmob_drm_kms.c       |  160 +++++
 drivers/gpu/drm/shmobile/shmob_drm_kms.h       |   34 +
 drivers/gpu/drm/shmobile/shmob_drm_plane.c     |  268 +++++++++
 drivers/gpu/drm/shmobile/shmob_drm_plane.h     |   22 +
 drivers/gpu/drm/shmobile/shmob_drm_regs.h      |  311 ++++++++++
 include/drm/drm_fb_cma_helper.h                |   27 +
 include/drm/drm_fourcc.h                       |    2 +
 include/drm/drm_gem_cma_helper.h               |   44 ++
 include/linux/platform_data/shmob_drm.h        |   99 +++
 22 files changed, 3011 insertions(+), 0 deletions(-)
 create mode 100644 drivers/gpu/drm/drm_fb_cma_helper.c
 create mode 100644 drivers/gpu/drm/drm_gem_cma_helper.c
 create mode 100644 drivers/gpu/drm/shmobile/Kconfig
 create mode 100644 drivers/gpu/drm/shmobile/Makefile
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_backlight.c
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_backlight.h
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_crtc.c
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_crtc.h
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_drv.c
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_drv.h
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_kms.c
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_kms.h
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_plane.c
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_plane.h
 create mode 100644 drivers/gpu/drm/shmobile/shmob_drm_regs.h
 create mode 100644 include/drm/drm_fb_cma_helper.h
 create mode 100644 include/drm/drm_gem_cma_helper.h
 create mode 100644 include/linux/platform_data/shmob_drm.h

-- 
Regards,

Laurent Pinchart

      reply	other threads:[~2012-09-18 10:31 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-14 12:38 [PULL] SH Mobile DRM driver for v3.7 Laurent Pinchart
2012-09-14 12:47 ` Alan Cox
2012-09-14 13:05   ` Laurent Pinchart
2012-09-14 22:57     ` Alan Cox
2012-09-14 23:15       ` Laurent Pinchart
2012-09-14 23:28 ` Dave Airlie
2012-09-14 23:36   ` Laurent Pinchart
2012-09-15 13:06   ` Lars-Peter Clausen
2012-09-16 15:38     ` Laurent Pinchart
2012-09-17  3:33       ` Dave Airlie
2012-09-18 10:31         ` Laurent Pinchart [this message]

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=2191093.AqxUiGV2NM@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=dri-devel@lists.freedesktop.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.