All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: dri-devel@lists.freedesktop.org
Subject: Re: [GIT PULL FOR v5.12] R-Car DU and misc other changes
Date: Thu, 7 Jan 2021 17:42:14 +0100	[thread overview]
Message-ID: <X/c55tkJsqy2q936@phenom.ffwll.local> (raw)
In-Reply-To: <X/P8IOrVXkTpLeCm@pendragon.ideasonboard.com>

On Tue, Jan 05, 2021 at 07:41:52AM +0200, Laurent Pinchart wrote:
> Hi Dave and Daniel,
> 
> The following changes since commit 5b2fc08c455bbf749489254a81baeffdf4c0a693:
> 
>   Merge tag 'amd-drm-fixes-5.11-2020-12-23' of git://people.freedesktop.org/~agd5f/linux into drm-next (2020-12-24 10:31:16 +1000)
> 
> are available in the Git repository at:
> 
>   git://linuxtv.org/pinchartl/media.git tags/du-next-20210105
> 
> for you to fetch changes up to 3fc5a284213d5fca1c0807ea8725355d39808930:
> 
>   drm: bridge: adv7511: Remove redundant null check before clk_disable_unprepare (2021-01-05 07:20:42 +0200)
> 
> ----------------------------------------------------------------
> - Add default modes for connectors in unknown state
> - R-Car DU conversion to DRM-managed API

Pulled, and also pulled the new drmm_ helper from imx, which means you can
now convert over to these.

Thanks, Daniel

> - R-Car DU miscellaneous fixes
> - Miscellaneous bridge and bridge bindings fixes
> - Assorted misc driver cleanups
> - Constify drm_driver for PCI devices
> 
> ----------------------------------------------------------------
> Fabrizio Castro (1):
>       dt-bindings: display: bridge: renesas,lvds: RZ/G2E needs renesas,companion too
> 
> Laurent Pinchart (20):
>       dt-bindings: display: bridge: thc63lvd1024: Document dual-output mode
>       drm: Add default modes for connectors in unknown state
>       drm: rcar-du: Fix crash when using LVDS1 clock for CRTC
>       drm: rcar-du: Release vsp device reference in all error paths
>       drm: rcar-du: Drop unneeded encoder cleanup in error path
>       drm: rcar-du: Use DRM-managed allocation for VSP planes
>       drm: rcar-du: Use DRM-managed allocation for encoders
>       drm: rcar-du: Embed drm_device in rcar_du_device
>       drm: rcar-du: Replace dev_private with container_of
>       drm: rcar-du: Skip encoder allocation for LVDS1 in dual-link mode
>       drm: rcar-du: Drop local encoder variable
>       drm: rcar-du: Fix leak of CMM platform device reference
>       drm: arc: Remove unnecessary drm_plane_cleanup() wrapper
>       drm: sti: Remove unnecessary drm_plane_cleanup() wrapper
>       drm: vc4: Remove unnecessary drm_plane_cleanup() wrapper
>       drm: zte: Remove unnecessary drm_plane_cleanup() wrapper
>       drm: Don't export the drm_gem_dumb_destroy() function
>       drm: Move legacy device list out of drm_driver
>       drm: Use a const drm_driver for legacy PCI devices
>       drm: Constify drm_driver in drivers that don't modify it
> 
> Mark Brown (1):
>       drm/bridge: thc63lvd1024: Fix regulator_get_optional() misuse
> 
> Qinglang Miao (1):
>       drm: rcar-du: Fix PM reference leak in rcar_cmm_enable()
> 
> Wang Xiaojun (1):
>       drm: rcar-du: Fix the return check of of_parse_phandle and of_find_device_by_node
> 
> Xu Wang (2):
>       drm: bridge: dw-hdmi: Remove redundant null check before clk_disable_unprepare
>       drm: bridge: adv7511: Remove redundant null check before clk_disable_unprepare
> 
>  .../bindings/display/bridge/renesas,lvds.yaml      |  6 +-
>  .../display/bridge/thine,thc63lvd1024.yaml         | 16 ++--
>  drivers/gpu/drm/arc/arcpgu_crtc.c                  |  9 +-
>  drivers/gpu/drm/arc/arcpgu_drv.c                   |  2 +-
>  drivers/gpu/drm/bridge/adv7511/adv7511_drv.c       |  6 +-
>  drivers/gpu/drm/bridge/synopsys/dw-hdmi.c          |  6 +-
>  drivers/gpu/drm/bridge/thc63lvd1024.c              |  2 +-
>  drivers/gpu/drm/drm_drv.c                          |  4 -
>  drivers/gpu/drm/drm_dumb_buffers.c                 |  8 +-
>  drivers/gpu/drm/drm_gem.c                          | 12 +--
>  drivers/gpu/drm/drm_internal.h                     |  3 +
>  drivers/gpu/drm/drm_pci.c                          | 33 +++++---
>  drivers/gpu/drm/drm_probe_helper.c                 |  3 +-
>  drivers/gpu/drm/kmb/kmb_drv.c                      |  2 +-
>  drivers/gpu/drm/rcar-du/rcar_cmm.c                 |  2 +-
>  drivers/gpu/drm/rcar-du/rcar_du_crtc.c             | 12 +--
>  drivers/gpu/drm/rcar-du/rcar_du_drv.c              | 33 +++-----
>  drivers/gpu/drm/rcar-du/rcar_du_drv.h              | 16 ++--
>  drivers/gpu/drm/rcar-du/rcar_du_encoder.c          | 98 +++++++++++-----------
>  drivers/gpu/drm/rcar-du/rcar_du_encoder.h          |  2 -
>  drivers/gpu/drm/rcar-du/rcar_du_kms.c              | 42 +++++++---
>  drivers/gpu/drm/rcar-du/rcar_du_plane.c            |  8 +-
>  drivers/gpu/drm/rcar-du/rcar_du_vsp.c              | 28 +++++--
>  drivers/gpu/drm/rcar-du/rcar_du_writeback.c        |  2 +-
>  drivers/gpu/drm/sti/sti_cursor.c                   |  9 +-
>  drivers/gpu/drm/sti/sti_gdp.c                      |  9 +-
>  drivers/gpu/drm/sti/sti_hqvdp.c                    |  9 +-
>  drivers/gpu/drm/tdfx/tdfx_drv.c                    |  2 +-
>  drivers/gpu/drm/vc4/vc4_plane.c                    |  7 +-
>  drivers/gpu/drm/zte/zx_plane.c                     |  7 +-
>  include/drm/drm_device.h                           | 14 +---
>  include/drm/drm_drv.h                              |  2 -
>  include/drm/drm_gem.h                              |  3 -
>  include/drm/drm_legacy.h                           | 10 ++-
>  include/drm/drm_modeset_helper_vtables.h           |  8 +-
>  35 files changed, 209 insertions(+), 226 deletions(-)
> 
> -- 
> Regards,
> 
> Laurent Pinchart

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

      reply	other threads:[~2021-01-07 16:42 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-05  5:41 [GIT PULL FOR v5.12] R-Car DU and misc other changes Laurent Pinchart
2021-01-07 16:42 ` Daniel Vetter [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=X/c55tkJsqy2q936@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=laurent.pinchart@ideasonboard.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 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.