From: Sinclair Yeh <syeh@vmware.com>
To: Ville Syrjala <ville.syrjala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org,
VMware Graphics <linux-graphics-maintainer@vmware.com>,
Thomas Hellstrom <thellstrom@vmware.com>,
dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 0/5] drm: drm_plane_helper_check_state() related stuff
Date: Fri, 10 Nov 2017 13:26:47 -0800 [thread overview]
Message-ID: <20171110212647.GA17666@ubuntu> (raw)
In-Reply-To: <20171101182920.14386-1-ville.syrjala@linux.intel.com>
Sorry this took so long.
The vmwgfx part: Reviewed-by: Sinclair Yeh <syeh@vmware.com>
I've done some testing and the vmwgfx part looks good. Has Daniel
already taken these or should I put them in my next request?
Sinclair
On Wed, Nov 01, 2017 at 08:29:15PM +0200, Ville Syrjala wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> While trawling the tree I spotted some issues with the way vmwgfx
> uses drm_plane_helper_check_state(). Here's my attempt at fixing it.
> Do note that I haven't actually tested the resulting code at all,
> but it does build at least.
>
> And while touching that general area I took up Daniel's suggestion from
> long ago that drm_plane_helper_check_state() should be renamed and
> relocated to better reflect its status.
>
> Here's a branch with the entire series:
> git://github.com/vsyrjala/linux.git atomic_helper_plane_stuff
>
> Cc: VMware Graphics <linux-graphics-maintainer@vmware.com>
> Cc: Sinclair Yeh <syeh@vmware.com>
> Cc: Thomas Hellstrom <thellstrom@vmware.com>
> Cc: Daniel Vetter <daniel@ffwll.ch>
>
> Ville Syrjälä (5):
> drm/vmwgfx: Remove bogus crtc coords vs fb size check
> drm/vmwgfx: Use drm_plane_helper_check_state()
> drm/vmwgfx: Try to fix plane clipping
> drm: Check crtc_state->enable rather than crtc->enabled in
> drm_plane_helper_check_state()
> drm: Move drm_plane_helper_check_state() into drm_atomic_helper.c
>
> drivers/gpu/drm/arm/hdlcd_crtc.c | 8 +-
> drivers/gpu/drm/arm/malidp_planes.c | 3 +-
> drivers/gpu/drm/drm_atomic_helper.c | 95 ++++++++++++++++++++++++
> drivers/gpu/drm/drm_plane_helper.c | 111 +++-------------------------
> drivers/gpu/drm/drm_simple_kms_helper.c | 9 ++-
> drivers/gpu/drm/i915/intel_display.c | 20 ++---
> drivers/gpu/drm/imx/ipuv3-plane.c | 8 +-
> drivers/gpu/drm/mediatek/mtk_drm_plane.c | 8 +-
> drivers/gpu/drm/meson/meson_plane.c | 8 +-
> drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c | 5 +-
> drivers/gpu/drm/nouveau/nv50_display.c | 18 +++--
> drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 6 +-
> drivers/gpu/drm/tegra/dc.c | 4 +-
> drivers/gpu/drm/vmwgfx/vmwgfx_kms.c | 40 ++++------
> drivers/gpu/drm/zte/zx_plane.c | 15 ++--
> include/drm/drm_atomic_helper.h | 7 ++
> include/drm/drm_plane_helper.h | 5 --
> 17 files changed, 187 insertions(+), 183 deletions(-)
>
> --
> 2.13.6
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2017-11-10 23:00 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-01 18:29 [PATCH 0/5] drm: drm_plane_helper_check_state() related stuff Ville Syrjala
2017-11-01 18:29 ` [PATCH 1/5] drm/vmwgfx: Remove bogus crtc coords vs fb size check Ville Syrjala
2017-11-02 10:04 ` Daniel Vetter
2017-11-23 9:54 ` Laurent Pinchart
2017-11-01 18:29 ` [PATCH 2/5] drm/vmwgfx: Use drm_plane_helper_check_state() Ville Syrjala
2017-11-02 10:06 ` Daniel Vetter
2017-11-23 9:54 ` Laurent Pinchart
2017-11-01 18:29 ` [PATCH 3/5] drm/vmwgfx: Try to fix plane clipping Ville Syrjala
2017-11-02 10:12 ` Daniel Vetter
2017-11-02 13:19 ` Ville Syrjälä
2017-11-06 18:04 ` [Intel-gfx] " Ville Syrjälä
2017-11-07 12:30 ` Daniel Vetter
2017-11-23 9:46 ` [Intel-gfx] " Laurent Pinchart
2017-11-01 18:29 ` [PATCH 4/5] drm: Check crtc_state->enable rather than crtc->enabled in drm_plane_helper_check_state() Ville Syrjala
2017-11-01 20:15 ` [PATCH v2 " Ville Syrjala
2017-11-02 10:15 ` Daniel Vetter
2017-11-23 9:52 ` [PATCH " Laurent Pinchart
2017-11-01 18:29 ` [PATCH 5/5] drm: Move drm_plane_helper_check_state() into drm_atomic_helper.c Ville Syrjala
2017-11-01 20:16 ` [PATCH v2 " Ville Syrjala
2017-11-02 10:16 ` Daniel Vetter
2017-11-23 9:53 ` [PATCH " Laurent Pinchart
2017-11-10 21:26 ` Sinclair Yeh [this message]
2017-11-10 21:42 ` [PATCH 0/5] drm: drm_plane_helper_check_state() related stuff Ville Syrjälä
2017-11-20 7:34 ` Daniel Vetter
2017-11-20 17:32 ` Sinclair Yeh
2017-11-20 19:36 ` Ville Syrjälä
2017-11-23 9:56 ` Laurent Pinchart
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=20171110212647.GA17666@ubuntu \
--to=syeh@vmware.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=linux-graphics-maintainer@vmware.com \
--cc=thellstrom@vmware.com \
--cc=ville.syrjala@linux.intel.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;
as well as URLs for NNTP newsgroup(s).