From: Archit Taneja <archit@ti.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v4 09/21] modetest: Allow specifying plane position
Date: Mon, 25 Mar 2013 11:44:35 +0530 [thread overview]
Message-ID: <514FEB4B.90700@ti.com> (raw)
In-Reply-To: <1363704962-14077-10-git-send-email-laurent.pinchart@ideasonboard.com>
Hi Laurent,
On Tuesday 19 March 2013 08:25 PM, Laurent Pinchart wrote:
> Extend the -P option to allow specifying the plane x and y offsets. The
> position is optional, if not specified the plane will be positioned at
> the center of the screen as before.
Thanks for this series. I tested the patches with a Panda ES board.
I was facing issues with the plane position though, when I execute this
on the command line:
./modetest -s 12:1440x900 -P 6:(0,0)/300x200
I get a syntax error by bash saying it doesn't expect "(". I guess there
are ways around to get over this, but I was wondering if we could get
rid of the braces all together to keep it simple? The "/" character
could be used to figure out whether the user has also mentioned position
or not.
Archit
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> tests/modetest/modetest.c | 72 +++++++++++++++++++++++++++++++++++++----------
> 1 file changed, 57 insertions(+), 15 deletions(-)
>
> diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c
> index 7153a40..f95efe6 100644
> --- a/tests/modetest/modetest.c
> +++ b/tests/modetest/modetest.c
> @@ -645,6 +645,7 @@ struct connector_arg {
>
> struct plane_arg {
> uint32_t con_id; /* the id of connector to bind to */
> + uint32_t x, y;
> uint32_t w, h;
> unsigned int fb_id;
> char format_str[5]; /* need to leave room for terminating \0 */
> @@ -855,11 +856,16 @@ set_plane(struct kms_driver *kms, struct connector_arg *c, struct plane_arg *p)
> return -1;
> }
>
> - /* ok, boring.. but for now put in middle of screen: */
> - crtc_x = c->mode->hdisplay / 3;
> - crtc_y = c->mode->vdisplay / 3;
> - crtc_w = crtc_x;
> - crtc_h = crtc_y;
> + if (p->x == (uint32_t)-1 || p->y == (uint32_t)-1) {
> + /* Default to the middle of the screen */
> + crtc_x = (c->mode->hdisplay - p->w) / 2;
> + crtc_y = (c->mode->vdisplay - p->h) / 2;
> + } else {
> + crtc_x = p->x;
> + crtc_y = p->y;
> + }
> + crtc_w = p->w;
> + crtc_h = p->h;
>
> /* note src coords (last 4 args) are in Q16 format */
> if (drmModeSetPlane(fd, plane_id, c->crtc, p->fb_id,
> @@ -870,6 +876,8 @@ set_plane(struct kms_driver *kms, struct connector_arg *c, struct plane_arg *p)
> return -1;
> }
>
> + ovr->crtc_id = c->crtc;
> +
> return 0;
> }
>
> @@ -1063,18 +1071,52 @@ static int parse_connector(struct connector_arg *c, const char *arg)
> return 0;
> }
>
> -static int parse_plane(struct plane_arg *p, const char *arg)
> +static int parse_plane(struct plane_arg *plane, const char *p)
> {
> - strcpy(p->format_str, "XR24");
> + char *end;
> +
> + plane->con_id = strtoul(p, &end, 10);
> + if (*end != ':')
> + return -EINVAL;
> +
> + p = end + 1;
> + if (*p == '(') {
> + plane->x = strtoul(p + 1, &end, 10);
> + if (*end != ',')
> + return -EINVAL;
> + p = end + 1;
> + plane->y = strtoul(p, &end, 10);
> + if (*end++ != ')')
> + return -EINVAL;
> + if (*end++ != '/')
> + return -EINVAL;
> + p = end;
> + } else {
> + plane->x = (uint32_t)-1;
> + plane->y = (uint32_t)-1;
> + }
>
> - if (sscanf(arg, "%d:%dx%d@%4s", &p->con_id, &p->w, &p->h, p->format_str) != 4 &&
> - sscanf(arg, "%d:%dx%d", &p->con_id, &p->w, &p->h) != 3)
> - return -1;
> + plane->w = strtoul(p, &end, 10);
> + if (*end != 'x')
> + return -EINVAL;
>
> - p->fourcc = format_fourcc(p->format_str);
> - if (p->fourcc == 0) {
> - fprintf(stderr, "unknown format %s\n", p->format_str);
> - return -1;
> + p = end + 1;
> + plane->h = strtoul(p, &end, 10);
> +
> + if (*end == '@') {
> + p = end + 1;
> + if (strlen(p) != 4)
> + return -EINVAL;
> +
> + strcpy(plane->format_str, p);
> + } else {
> + strcpy(plane->format_str, "XR24");
> + }
> +
> + plane->fourcc = format_fourcc(plane->format_str);
> + if (plane->fourcc == 0) {
> + fprintf(stderr, "unknown format %s\n", plane->format_str);
> + return -EINVAL;
> }
>
> return 0;
> @@ -1103,7 +1145,7 @@ static void usage(char *name)
> fprintf(stderr, "\t-p\tlist CRTCs and planes (pipes)\n");
>
> fprintf(stderr, "\n Test options:\n\n");
> - fprintf(stderr, "\t-P <connector_id>:<w>x<h>[@<format>]\tset a plane\n");
> + fprintf(stderr, "\t-P <connector_id>:[(x,y)/]<w>x<h>[@<format>]\tset a plane\n");
> fprintf(stderr, "\t-s <connector_id>[@<crtc_id>]:<mode>[@<format>]\tset a mode\n");
> fprintf(stderr, "\t-v\ttest vsynced page flipping\n");
> fprintf(stderr, "\t-w <obj_id>:<prop_name>:<value>\tset property\n");
>
next prev parent reply other threads:[~2013-03-25 6:15 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-19 14:55 [PATCH v4 00/21] modetest enhancements Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 01/21] modetest: Fix warnings Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 02/21] modetest: Remove extern declarations of opt(arg|ind|err|opt) Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 03/21] modetest: Sort command line arguments Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 04/21] modetest: Add a command line parameter to select the driver Laurent Pinchart
2013-04-03 10:06 ` Ville Syrjälä
2013-04-04 13:22 ` Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 05/21] modetest: Add a command line parameter to drop master after mode set Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 06/21] modetest: Retrieve all resources in one go Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 07/21] modetest: Don't limit mode set and planes to two instances Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 08/21] modetest: Add a command line parameter to set properties Laurent Pinchart
2013-03-28 12:23 ` Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 09/21] modetest: Allow specifying plane position Laurent Pinchart
2013-03-25 6:14 ` Archit Taneja [this message]
2013-03-25 22:41 ` Laurent Pinchart
2013-03-26 8:44 ` Archit Taneja
2013-03-27 15:57 ` Ville Syrjälä
2013-03-27 17:15 ` Ville Syrjälä
2013-03-28 0:16 ` Laurent Pinchart
2013-03-28 10:44 ` Ville Syrjälä
2013-04-04 16:24 ` Laurent Pinchart
2013-04-05 15:15 ` Ville Syrjälä
2013-03-28 0:17 ` Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 10/21] modetest: Print the plane ID when setting up a plane Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 11/21] modetest: Remove the -m argument Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 12/21] modetest: Create a device structure Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 13/21] modetest: Compute CRTC pipe number as needed Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 14/21] modetest: Remove the struct connector_arg encoder field Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 15/21] modetest: Store the crtc in the connector_arg structure Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 16/21] modetest: Store the mode in the crtc structure Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 17/21] modetest: Give the CRTC ID to the -P option Laurent Pinchart
2013-03-19 18:21 ` Rob Clark
2013-03-20 15:01 ` Laurent Pinchart
2013-03-19 14:55 ` [PATCH v4 18/21] modetest: Split mode setting and plane setup Laurent Pinchart
2013-03-19 14:56 ` [PATCH v4 19/21] modetest: Rename struct connector_arg to struct pipe_arg Laurent Pinchart
2013-03-19 14:56 ` [PATCH v4 20/21] modetest: Support pipes with multiple connectors Laurent Pinchart
2013-03-19 14:56 ` [PATCH v4 21/21] modetest: Try all possible encoders for a connector 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=514FEB4B.90700@ti.com \
--to=archit@ti.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox