From: Sean Paul <seanpaul@chromium.org>
To: Haneen Mohammed <hamohammed.sa@gmail.com>
Cc: rodrigosiqueiramelo@gmail.com, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 3/5] drm/vkms: Add atomic_helper_check_plane_state
Date: Mon, 16 Jul 2018 14:06:02 -0400 [thread overview]
Message-ID: <20180716180602.GW20303@art_vandelay> (raw)
In-Reply-To: <df931beed2dd208f2747989f16bd534acca486ef.1531570020.git.hamohammed.sa@gmail.com>
On Sat, Jul 14, 2018 at 03:21:13PM +0300, Haneen Mohammed wrote:
> Call atomic_helper_check_plane_state to clip plane coordinates.
>
> Signed-off-by: Haneen Mohammed <hamohammed.sa@gmail.com>
Reviewed-by: Sean Paul <seanpaul@chromium.org>
> ---
> Changes in v2:
> - check for plane_state->visible since we can't handle a disabled
> primary plane yet.
>
> drivers/gpu/drm/vkms/vkms_plane.c | 29 +++++++++++++++++++++++++++++
> 1 file changed, 29 insertions(+)
>
> diff --git a/drivers/gpu/drm/vkms/vkms_plane.c b/drivers/gpu/drm/vkms/vkms_plane.c
> index 877483984897..aaf7c35faed6 100644
> --- a/drivers/gpu/drm/vkms/vkms_plane.c
> +++ b/drivers/gpu/drm/vkms/vkms_plane.c
> @@ -7,6 +7,7 @@
> */
>
> #include "vkms_drv.h"
> +#include <drm/drm_atomic.h>
> #include <drm/drm_atomic_helper.h>
> #include <drm/drm_gem_framebuffer_helper.h>
> #include <drm/drm_plane_helper.h>
> @@ -25,6 +26,33 @@ static void vkms_primary_plane_update(struct drm_plane *plane,
> {
> }
>
> +static int vkms_plane_atomic_check(struct drm_plane *plane,
> + struct drm_plane_state *state)
> +{
> + struct drm_crtc_state *crtc_state;
> + int ret;
> +
> + if (!state->fb | !state->crtc)
> + return 0;
> +
> + crtc_state = drm_atomic_get_crtc_state(state->state, state->crtc);
> + if (IS_ERR(crtc_state))
> + return PTR_ERR(crtc_state);
> +
> + ret = drm_atomic_helper_check_plane_state(state, crtc_state,
> + DRM_PLANE_HELPER_NO_SCALING,
> + DRM_PLANE_HELPER_NO_SCALING,
> + false, true);
> + if (ret != 0)
> + return ret;
> +
> + /* for now primary plane must be visible and full screen */
> + if (!state->visible)
> + return -EINVAL;
> +
> + return 0;
> +}
> +
> static int vkms_prepare_fb(struct drm_plane *plane,
> struct drm_plane_state *state)
> {
> @@ -58,6 +86,7 @@ static void vkms_cleanup_fb(struct drm_plane *plane,
>
> static const struct drm_plane_helper_funcs vkms_primary_helper_funcs = {
> .atomic_update = vkms_primary_plane_update,
> + .atomic_check = vkms_plane_atomic_check,
> .prepare_fb = vkms_prepare_fb,
> .cleanup_fb = vkms_cleanup_fb,
> };
> --
> 2.17.1
>
--
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2018-07-16 18:06 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-14 12:17 [PATCH v2 0/5] Implement CRC and Add necessary infrastructure Haneen Mohammed
2018-07-14 12:18 ` [PATCH v2 1/5] drm/vkms: Add functions to map/unmap GEM backing storage Haneen Mohammed
2018-07-16 17:56 ` Sean Paul
2018-07-14 12:20 ` [PATCH v2 2/5] drm/vkms: map/unmap buffers in [prepare/cleanup]_fb hooks Haneen Mohammed
2018-07-16 18:04 ` Sean Paul
2018-07-14 12:21 ` [PATCH v2 3/5] drm/vkms: Add atomic_helper_check_plane_state Haneen Mohammed
2018-07-16 18:06 ` Sean Paul [this message]
2018-07-14 12:22 ` [PATCH v2 4/5] drm/vkms: subclass CRTC state Haneen Mohammed
2018-07-16 18:08 ` Sean Paul
2018-07-14 12:23 ` [PATCH v2 5/5] drm/vkms: Implement CRC debugfs API Haneen Mohammed
2018-07-16 18:22 ` Sean Paul
2018-07-16 23:52 ` Haneen Mohammed
2018-07-17 20:43 ` Sean Paul
2018-07-17 21:05 ` Sean Paul
2018-07-18 16:24 ` Haneen Mohammed
2018-07-18 18:44 ` Sean Paul
2018-07-18 19:42 ` Haneen Mohammed
2018-07-28 18:40 ` Haneen Mohammed
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=20180716180602.GW20303@art_vandelay \
--to=seanpaul@chromium.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=hamohammed.sa@gmail.com \
--cc=rodrigosiqueiramelo@gmail.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.