mbox

[PULL] drm-misc-next

Message ID 20161129101315.peegivrdxrwhxibg@phenom.ffwll.local
State New
Headers show

Pull-request

git://anongit.freedesktop.org/git/drm-misc tags/drm-misc-next-2016-11-29

Message

Daniel Vetter Nov. 29, 2016, 10:13 a.m. UTC
Hi Dave,

Big thing is that drm-misc is now officially a group maintainer/committer
model thing, with MAINTAINERS suitably updated. Otherwise just the usual
pile of misc things all over, nothing that stands out this time around.

Backmerge would also be great, since I just noticed that

commit 8ae94224c9d72fc4d9aaac93b2d7833cf46d7141
Author: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date:   Fri Nov 4 19:39:38 2016 +0100

    kbuild: add -fno-PIE

landed in Linus' tree a bit ago, and having that in drm trees would help
with a lot of pain I'm having right now ;-)

Cheers, Daniel


The following changes since commit 43167f6c7d7172e0a6cb1ecaa1771a2f457fd165:

  Merge tag 'drm-hisilicon-next-2016-11-17' of http://github.com/zourongrong/linux into drm-next (2016-11-21 11:42:17 +1000)

are available in the git repository at:

  git://anongit.freedesktop.org/git/drm-misc tags/drm-misc-next-2016-11-29

for you to fetch changes up to 389f78b361fcdc52a9dbb5382c3922d80b52ed9f:

  drm: Introduce drm_framebuffer_assign() (2016-11-29 10:22:08 +0100)

----------------------------------------------------------------
Arnd Bergmann (3):
      vgaarb: use valid dev pointer in vgaarb_info()
      drm/hisilicon/hibmc: mark PM functions __maybe_unused
      drm: bridge: dw-hdmi: add ASoC dependency

Bjorn Helgaas (2):
      vgaarb: Use dev_printk() when possible
      vgaarb: Downgrade userspace-triggerable messages to debug

Chen-Yu Tsai (1):
      drm/bridge: dumb-vga-dac: Support a VDD regulator supply

Chris Wilson (8):
      drm: Define drm_mm_for_each_node_in_range()
      drm: Check against color expansion in drm_mm_reserve_node()
      drm: Fixup kernel doc for driver->gem_create_object
      drm: Fix conflicting macro parameter in drm_mm_for_each_node_in_range()
      drm: Use u64_to_user_ptr() helper for blob ioctls
      drm: Avoid NULL dereference for DRM_LEGACY debug message
      drm: Fix shift operations for drm_fb_helper::drm_target_preferred()
      drm: Introduce drm_framebuffer_assign()

Dan Carpenter (1):
      drm/hisilicon/hibmc: Checking for NULL instead of IS_ERR()

Daniel Vetter (9):
      drm: Nerf DRM_CONTROL nodes
      MAINTAINERS: Add drm-misc
      MAINTAINERS: Add Archit as drm bridge maintainer
      MAINTAINERS: Move dma-buf to drm-misc git
      drm: document standard connector properties
      drm/atomic: Unconfuse the old_state mess in commmit_tail
      MAINTAINERS: Add link to drm-misc documentation
      drm/doc: Fix links in drm_property.c
      Merge remote-tracking branch 'airlied/drm-next' into drm-misc-next

Gustavo Padovan (2):
      Revert "dma-buf/sync-file: Avoid enable fence signaling if poll(.timeout=0)"
      drm/fences: add DOC: for explicit fencing

Jani Nikula (1):
      drm: also move DSI panels to the front of the connector list

John Stultz (1):
      drm/bridge: adv7511: Add Audio support

Kuninori Morimoto (1):
      drm: bridge: add DesignWare HDMI I2S audio support

Liviu Dudau (1):
      drm/atomic: cleanup debugfs entries on un-registering the driver.

Srinivas Kandagatla (1):
      drm/bridge: adv7511: Enable the audio data and clock pads on adv7533

Ville Syrjälä (3):
      drm: Nuke modifier[1-3]
      drm/atomic: Constify drm_atomic_crtc_needs_modeset()
      drm/edid: Consider alternate cea timings to be the same VIC

 .../bindings/display/bridge/dumb-vga-dac.txt       |   2 +
 Documentation/gpu/drm-kms-helpers.rst              |   3 +
 Documentation/gpu/drm-kms.rst                      |  12 ++
 MAINTAINERS                                        |  23 ++-
 drivers/dma-buf/sync_file.c                        |   3 +-
 drivers/gpu/drm/bridge/Kconfig                     |   9 +
 drivers/gpu/drm/bridge/Makefile                    |   1 +
 drivers/gpu/drm/bridge/adv7511/Kconfig             |   8 +
 drivers/gpu/drm/bridge/adv7511/Makefile            |   1 +
 drivers/gpu/drm/bridge/adv7511/adv7511.h           |  16 ++
 drivers/gpu/drm/bridge/adv7511/adv7511_audio.c     | 213 +++++++++++++++++++++
 drivers/gpu/drm/bridge/adv7511/adv7511_drv.c       |   4 +
 drivers/gpu/drm/bridge/adv7511/adv7533.c           |   1 +
 drivers/gpu/drm/bridge/dumb-vga-dac.c              |  33 ++++
 drivers/gpu/drm/bridge/dw-hdmi-audio.h             |   7 +
 drivers/gpu/drm/bridge/dw-hdmi-i2s-audio.c         | 141 ++++++++++++++
 drivers/gpu/drm/bridge/dw-hdmi.c                   |  22 ++-
 drivers/gpu/drm/bridge/dw-hdmi.h                   |  20 ++
 drivers/gpu/drm/drm_atomic.c                       |  69 ++++++-
 drivers/gpu/drm/drm_atomic_helper.c                |  78 ++++----
 drivers/gpu/drm/drm_connector.c                    |  44 +++++
 drivers/gpu/drm/drm_debugfs.c                      |   9 +
 drivers/gpu/drm/drm_drv.c                          |   6 -
 drivers/gpu/drm/drm_edid.c                         |  66 +++++--
 drivers/gpu/drm/drm_fb_helper.c                    |  13 +-
 drivers/gpu/drm/drm_framebuffer.c                  |   7 +
 drivers/gpu/drm/drm_lock.c                         |   3 +-
 drivers/gpu/drm/drm_mm.c                           |  22 +--
 drivers/gpu/drm/drm_modeset_helper.c               |   7 +-
 drivers/gpu/drm/drm_property.c                     |  54 +++---
 drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c    |   8 +-
 drivers/gpu/drm/i915/i915_debugfs.c                |   4 +-
 drivers/gpu/drm/i915/intel_atomic_plane.c          |   4 +-
 drivers/gpu/drm/i915/intel_display.c               |  72 +++----
 drivers/gpu/drm/i915/intel_fbdev.c                 |   2 +-
 drivers/gpu/drm/i915/intel_pm.c                    |  22 +--
 drivers/gpu/drm/i915/intel_sprite.c                |  14 +-
 drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c          |   2 +-
 drivers/gpu/vga/vgaarb.c                           |  65 ++++---
 include/drm/drm_atomic.h                           |   3 +-
 include/drm/drm_drv.h                              |   2 +
 include/drm/drm_framebuffer.h                      |  22 ++-
 include/drm/drm_mm.h                               |  22 ++-
 include/drm/drm_modeset_helper_vtables.h           |  12 +-
 include/uapi/drm/drm_mode.h                        |  13 +-
 45 files changed, 939 insertions(+), 225 deletions(-)
 create mode 100644 drivers/gpu/drm/bridge/adv7511/adv7511_audio.c
 create mode 100644 drivers/gpu/drm/bridge/dw-hdmi-i2s-audio.c

Comments

Daniel Vetter Nov. 29, 2016, 11:17 a.m. UTC | #1
Hi Stephen,

drm-misc has slightly moved around, new branches for you to pull in:

git://anongit.freedesktop.org/drm/drm-misc for-linux-next-fixes
git://anongit.freedesktop.org/drm/drm-misc for-linux-next

It's the same aliasing branch concept as for drm-intel, to avoid
trouble for you around the merge window.

Cheers, Daniel


On Tue, Nov 29, 2016 at 11:13 AM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> Hi Dave,
>
> Big thing is that drm-misc is now officially a group maintainer/committer
> model thing, with MAINTAINERS suitably updated. Otherwise just the usual
> pile of misc things all over, nothing that stands out this time around.
>
> Backmerge would also be great, since I just noticed that
>
> commit 8ae94224c9d72fc4d9aaac93b2d7833cf46d7141
> Author: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
> Date:   Fri Nov 4 19:39:38 2016 +0100
>
>     kbuild: add -fno-PIE
>
> landed in Linus' tree a bit ago, and having that in drm trees would help
> with a lot of pain I'm having right now ;-)
>
> Cheers, Daniel
>
>
> The following changes since commit 43167f6c7d7172e0a6cb1ecaa1771a2f457fd165:
>
>   Merge tag 'drm-hisilicon-next-2016-11-17' of http://github.com/zourongrong/linux into drm-next (2016-11-21 11:42:17 +1000)
>
> are available in the git repository at:
>
>   git://anongit.freedesktop.org/git/drm-misc tags/drm-misc-next-2016-11-29
>
> for you to fetch changes up to 389f78b361fcdc52a9dbb5382c3922d80b52ed9f:
>
>   drm: Introduce drm_framebuffer_assign() (2016-11-29 10:22:08 +0100)
>
> ----------------------------------------------------------------
> Arnd Bergmann (3):
>       vgaarb: use valid dev pointer in vgaarb_info()
>       drm/hisilicon/hibmc: mark PM functions __maybe_unused
>       drm: bridge: dw-hdmi: add ASoC dependency
>
> Bjorn Helgaas (2):
>       vgaarb: Use dev_printk() when possible
>       vgaarb: Downgrade userspace-triggerable messages to debug
>
> Chen-Yu Tsai (1):
>       drm/bridge: dumb-vga-dac: Support a VDD regulator supply
>
> Chris Wilson (8):
>       drm: Define drm_mm_for_each_node_in_range()
>       drm: Check against color expansion in drm_mm_reserve_node()
>       drm: Fixup kernel doc for driver->gem_create_object
>       drm: Fix conflicting macro parameter in drm_mm_for_each_node_in_range()
>       drm: Use u64_to_user_ptr() helper for blob ioctls
>       drm: Avoid NULL dereference for DRM_LEGACY debug message
>       drm: Fix shift operations for drm_fb_helper::drm_target_preferred()
>       drm: Introduce drm_framebuffer_assign()
>
> Dan Carpenter (1):
>       drm/hisilicon/hibmc: Checking for NULL instead of IS_ERR()
>
> Daniel Vetter (9):
>       drm: Nerf DRM_CONTROL nodes
>       MAINTAINERS: Add drm-misc
>       MAINTAINERS: Add Archit as drm bridge maintainer
>       MAINTAINERS: Move dma-buf to drm-misc git
>       drm: document standard connector properties
>       drm/atomic: Unconfuse the old_state mess in commmit_tail
>       MAINTAINERS: Add link to drm-misc documentation
>       drm/doc: Fix links in drm_property.c
>       Merge remote-tracking branch 'airlied/drm-next' into drm-misc-next
>
> Gustavo Padovan (2):
>       Revert "dma-buf/sync-file: Avoid enable fence signaling if poll(.timeout=0)"
>       drm/fences: add DOC: for explicit fencing
>
> Jani Nikula (1):
>       drm: also move DSI panels to the front of the connector list
>
> John Stultz (1):
>       drm/bridge: adv7511: Add Audio support
>
> Kuninori Morimoto (1):
>       drm: bridge: add DesignWare HDMI I2S audio support
>
> Liviu Dudau (1):
>       drm/atomic: cleanup debugfs entries on un-registering the driver.
>
> Srinivas Kandagatla (1):
>       drm/bridge: adv7511: Enable the audio data and clock pads on adv7533
>
> Ville Syrjälä (3):
>       drm: Nuke modifier[1-3]
>       drm/atomic: Constify drm_atomic_crtc_needs_modeset()
>       drm/edid: Consider alternate cea timings to be the same VIC
>
>  .../bindings/display/bridge/dumb-vga-dac.txt       |   2 +
>  Documentation/gpu/drm-kms-helpers.rst              |   3 +
>  Documentation/gpu/drm-kms.rst                      |  12 ++
>  MAINTAINERS                                        |  23 ++-
>  drivers/dma-buf/sync_file.c                        |   3 +-
>  drivers/gpu/drm/bridge/Kconfig                     |   9 +
>  drivers/gpu/drm/bridge/Makefile                    |   1 +
>  drivers/gpu/drm/bridge/adv7511/Kconfig             |   8 +
>  drivers/gpu/drm/bridge/adv7511/Makefile            |   1 +
>  drivers/gpu/drm/bridge/adv7511/adv7511.h           |  16 ++
>  drivers/gpu/drm/bridge/adv7511/adv7511_audio.c     | 213 +++++++++++++++++++++
>  drivers/gpu/drm/bridge/adv7511/adv7511_drv.c       |   4 +
>  drivers/gpu/drm/bridge/adv7511/adv7533.c           |   1 +
>  drivers/gpu/drm/bridge/dumb-vga-dac.c              |  33 ++++
>  drivers/gpu/drm/bridge/dw-hdmi-audio.h             |   7 +
>  drivers/gpu/drm/bridge/dw-hdmi-i2s-audio.c         | 141 ++++++++++++++
>  drivers/gpu/drm/bridge/dw-hdmi.c                   |  22 ++-
>  drivers/gpu/drm/bridge/dw-hdmi.h                   |  20 ++
>  drivers/gpu/drm/drm_atomic.c                       |  69 ++++++-
>  drivers/gpu/drm/drm_atomic_helper.c                |  78 ++++----
>  drivers/gpu/drm/drm_connector.c                    |  44 +++++
>  drivers/gpu/drm/drm_debugfs.c                      |   9 +
>  drivers/gpu/drm/drm_drv.c                          |   6 -
>  drivers/gpu/drm/drm_edid.c                         |  66 +++++--
>  drivers/gpu/drm/drm_fb_helper.c                    |  13 +-
>  drivers/gpu/drm/drm_framebuffer.c                  |   7 +
>  drivers/gpu/drm/drm_lock.c                         |   3 +-
>  drivers/gpu/drm/drm_mm.c                           |  22 +--
>  drivers/gpu/drm/drm_modeset_helper.c               |   7 +-
>  drivers/gpu/drm/drm_property.c                     |  54 +++---
>  drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c    |   8 +-
>  drivers/gpu/drm/i915/i915_debugfs.c                |   4 +-
>  drivers/gpu/drm/i915/intel_atomic_plane.c          |   4 +-
>  drivers/gpu/drm/i915/intel_display.c               |  72 +++----
>  drivers/gpu/drm/i915/intel_fbdev.c                 |   2 +-
>  drivers/gpu/drm/i915/intel_pm.c                    |  22 +--
>  drivers/gpu/drm/i915/intel_sprite.c                |  14 +-
>  drivers/gpu/drm/msm/mdp/mdp4/mdp4_plane.c          |   2 +-
>  drivers/gpu/vga/vgaarb.c                           |  65 ++++---
>  include/drm/drm_atomic.h                           |   3 +-
>  include/drm/drm_drv.h                              |   2 +
>  include/drm/drm_framebuffer.h                      |  22 ++-
>  include/drm/drm_mm.h                               |  22 ++-
>  include/drm/drm_modeset_helper_vtables.h           |  12 +-
>  include/uapi/drm/drm_mode.h                        |  13 +-
>  45 files changed, 939 insertions(+), 225 deletions(-)
>  create mode 100644 drivers/gpu/drm/bridge/adv7511/adv7511_audio.c
>  create mode 100644 drivers/gpu/drm/bridge/dw-hdmi-i2s-audio.c
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch
Stephen Rothwell Nov. 29, 2016, 9:01 p.m. UTC | #2
Hi Daniel,

On Tue, 29 Nov 2016 12:17:15 +0100 Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
>
> drm-misc has slightly moved around, new branches for you to pull in:
> 
> git://anongit.freedesktop.org/drm/drm-misc for-linux-next-fixes
> git://anongit.freedesktop.org/drm/drm-misc for-linux-next
> 
> It's the same aliasing branch concept as for drm-intel, to avoid
> trouble for you around the merge window.

I have added the drm-misc-fixes tree and updated the drm-misc tree.