All of lore.kernel.org
 help / color / mirror / Atom feed
From: maxime.ripard@free-electrons.com (Maxime Ripard)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] Allwinner DRM changes for 4.9
Date: Sun, 11 Sep 2016 23:01:14 +0200	[thread overview]
Message-ID: <20160911210114.GA16376@lukather> (raw)

Hi David,

Please pull the following patches for the next merge window.

Thanks!
Maxime

The following changes since commit 29b4817d4018df78086157ea3a55c1d9424a7cfc:

  Linux 4.8-rc1 (2016-08-07 18:18:00 -0700)

are available in the git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git tags/sunxi-drm-for-4.9

for you to fetch changes up to 0c3ff44cc23cbede56aa1ca5916b126e681ca69b:

  drm/sun4i: add missing header dependencies (2016-09-08 14:55:48 +0200)

----------------------------------------------------------------
Allwinner DRM changes for 4.9

This tag adds the support of a new SoC to sun4i-drm (the Allwinner A33),
and the usual few fixes and enhancements

----------------------------------------------------------------
Baoyou Xie (1):
      drm/sun4i: add missing header dependencies

Chen-Yu Tsai (1):
      drm/sun4i: Clear encoder->bridge if a bridge is not found

Jonathan Liu (1):
      drm/sun4i: rgb: add missing calls to drm_panel_{prepare,unprepare}

Maxime Ripard (7):
      drm/sun4i: Store TCON's device structure pointer
      drm/sun4i: Move panel retrieval in RGB connector
      drm/sun4i: Add bridge support
      drm/sun4i: support TCONs without channel 1
      drm/sun4i: support A33 tcon
      drm/sun4i: backend: Handle the SAT
      drm/sun4i: Add a DRC driver

Wei Yongjun (1):
      drm/sun4i: Remove redundant dev_err call in sun4i_tcon_init_regmap()

 .../bindings/display/sunxi/sun4i-drm.txt           |  43 +++++++-
 drivers/gpu/drm/sun4i/Makefile                     |   2 +-
 drivers/gpu/drm/sun4i/sun4i_backend.c              |  61 +++++++++++
 drivers/gpu/drm/sun4i/sun4i_backend.h              |   3 +
 drivers/gpu/drm/sun4i/sun4i_dotclock.c             |   1 +
 drivers/gpu/drm/sun4i/sun4i_drv.c                  |  12 ++-
 drivers/gpu/drm/sun4i/sun4i_framebuffer.c          |   1 +
 drivers/gpu/drm/sun4i/sun4i_rgb.c                  |  71 ++++++++++---
 drivers/gpu/drm/sun4i/sun4i_tcon.c                 |  98 ++++++++++++-----
 drivers/gpu/drm/sun4i/sun4i_tcon.h                 |   6 ++
 drivers/gpu/drm/sun4i/sun6i_drc.c                  | 118 +++++++++++++++++++++
 11 files changed, 365 insertions(+), 51 deletions(-)
 create mode 100644 drivers/gpu/drm/sun4i/sun6i_drc.c

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160911/3ab18d55/attachment.sig>

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: David Airlie <airlied@linux.ie>
Cc: dri-devel@lists.freedesktop.org, Chen-Yu Tsai <wens@csie.org>,
	Maxime Ripard <maxime.ripard@free-electrons.com>,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] Allwinner DRM changes for 4.9
Date: Sun, 11 Sep 2016 23:01:14 +0200	[thread overview]
Message-ID: <20160911210114.GA16376@lukather> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 2428 bytes --]

Hi David,

Please pull the following patches for the next merge window.

Thanks!
Maxime

The following changes since commit 29b4817d4018df78086157ea3a55c1d9424a7cfc:

  Linux 4.8-rc1 (2016-08-07 18:18:00 -0700)

are available in the git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git tags/sunxi-drm-for-4.9

for you to fetch changes up to 0c3ff44cc23cbede56aa1ca5916b126e681ca69b:

  drm/sun4i: add missing header dependencies (2016-09-08 14:55:48 +0200)

----------------------------------------------------------------
Allwinner DRM changes for 4.9

This tag adds the support of a new SoC to sun4i-drm (the Allwinner A33),
and the usual few fixes and enhancements

----------------------------------------------------------------
Baoyou Xie (1):
      drm/sun4i: add missing header dependencies

Chen-Yu Tsai (1):
      drm/sun4i: Clear encoder->bridge if a bridge is not found

Jonathan Liu (1):
      drm/sun4i: rgb: add missing calls to drm_panel_{prepare,unprepare}

Maxime Ripard (7):
      drm/sun4i: Store TCON's device structure pointer
      drm/sun4i: Move panel retrieval in RGB connector
      drm/sun4i: Add bridge support
      drm/sun4i: support TCONs without channel 1
      drm/sun4i: support A33 tcon
      drm/sun4i: backend: Handle the SAT
      drm/sun4i: Add a DRC driver

Wei Yongjun (1):
      drm/sun4i: Remove redundant dev_err call in sun4i_tcon_init_regmap()

 .../bindings/display/sunxi/sun4i-drm.txt           |  43 +++++++-
 drivers/gpu/drm/sun4i/Makefile                     |   2 +-
 drivers/gpu/drm/sun4i/sun4i_backend.c              |  61 +++++++++++
 drivers/gpu/drm/sun4i/sun4i_backend.h              |   3 +
 drivers/gpu/drm/sun4i/sun4i_dotclock.c             |   1 +
 drivers/gpu/drm/sun4i/sun4i_drv.c                  |  12 ++-
 drivers/gpu/drm/sun4i/sun4i_framebuffer.c          |   1 +
 drivers/gpu/drm/sun4i/sun4i_rgb.c                  |  71 ++++++++++---
 drivers/gpu/drm/sun4i/sun4i_tcon.c                 |  98 ++++++++++++-----
 drivers/gpu/drm/sun4i/sun4i_tcon.h                 |   6 ++
 drivers/gpu/drm/sun4i/sun6i_drc.c                  | 118 +++++++++++++++++++++
 11 files changed, 365 insertions(+), 51 deletions(-)
 create mode 100644 drivers/gpu/drm/sun4i/sun6i_drc.c

-- 
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

             reply	other threads:[~2016-09-11 21:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-11 21:01 Maxime Ripard [this message]
2016-09-11 21:01 ` [GIT PULL] Allwinner DRM changes for 4.9 Maxime Ripard

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=20160911210114.GA16376@lukather \
    --to=maxime.ripard@free-electrons.com \
    --cc=linux-arm-kernel@lists.infradead.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.