From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Kieran Bingham <kieran.bingham@ideasonboard.com>
Cc: dri-devel@lists.freedesktop.org, linux-media@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH v3 10/11] media: vsp1: Support Interlaced display pipelines
Date: Thu, 24 May 2018 13:08:55 +0300 [thread overview]
Message-ID: <6945038.6Y03vj1EZt@avalon> (raw)
In-Reply-To: <8df5710f-77c0-f466-e9ed-ffde4dd2f8d9@ideasonboard.com>
Hi Kieran,
On Thursday, 3 May 2018 16:45:30 EEST Kieran Bingham wrote:
> On 03/05/18 12:13, Laurent Pinchart wrote:
[snip]
> >>> diff --git a/drivers/media/platform/vsp1/vsp1_rwpf.h
> >>> b/drivers/media/platform/vsp1/vsp1_rwpf.h index
> >>> 70742ecf766f..8d6e42f27908 100644
> >>> --- a/drivers/media/platform/vsp1/vsp1_rwpf.h
> >>> +++ b/drivers/media/platform/vsp1/vsp1_rwpf.h
> >>> @@ -42,6 +42,7 @@ struct vsp1_rwpf {
> >>>
> >>> struct v4l2_pix_format_mplane format;
> >>> const struct vsp1_format_info *fmtinfo;
> >>> unsigned int brx_input;
> >>>
> >>> + bool interlaced;
> >
> > kerneldoc might be nice :-)
>
> There's no existing kerneldoc on struct vsp1_rwpf ?
I'm glad we agree it should be added :-)
> >>> unsigned int alpha;
> >
> > [snip]
> >
> >>> diff --git a/include/media/vsp1.h b/include/media/vsp1.h
> >>> index 678c24de1ac6..c10883f30980 100644
> >>> --- a/include/media/vsp1.h
> >>> +++ b/include/media/vsp1.h
> >>> @@ -50,6 +50,7 @@ int vsp1_du_setup_lif(struct device *dev, unsigned int
> >>> pipe_index,
> >>> * @dst: destination rectangle on the display (integer coordinates)
> >>> * @alpha: alpha value (0: fully transparent, 255: fully opaque)
> >>> * @zpos: Z position of the plane (from 0 to number of planes minus 1)
> >>> + * @interlaced: true for interlaced pipelines
> >
> > Maybe "true if the pipeline outputs an interlaced stream" ?
>
> That's fine - but I've neglected to incorporate this into my v4 repost :-(
>
> If by any magic - v4 is suitable for integration already, and you're happy
> to take it into your tree - please feel free to update this comment.
>
> Otherwise it will be in any next update.
I'll check v4 now.
--
Regards,
Laurent Pinchart
WARNING: multiple messages have this Message-ID (diff)
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Kieran Bingham <kieran.bingham@ideasonboard.com>
Cc: linux-renesas-soc@vger.kernel.org,
dri-devel@lists.freedesktop.org, linux-media@vger.kernel.org
Subject: Re: [PATCH v3 10/11] media: vsp1: Support Interlaced display pipelines
Date: Thu, 24 May 2018 13:08:55 +0300 [thread overview]
Message-ID: <6945038.6Y03vj1EZt@avalon> (raw)
In-Reply-To: <8df5710f-77c0-f466-e9ed-ffde4dd2f8d9@ideasonboard.com>
Hi Kieran,
On Thursday, 3 May 2018 16:45:30 EEST Kieran Bingham wrote:
> On 03/05/18 12:13, Laurent Pinchart wrote:
[snip]
> >>> diff --git a/drivers/media/platform/vsp1/vsp1_rwpf.h
> >>> b/drivers/media/platform/vsp1/vsp1_rwpf.h index
> >>> 70742ecf766f..8d6e42f27908 100644
> >>> --- a/drivers/media/platform/vsp1/vsp1_rwpf.h
> >>> +++ b/drivers/media/platform/vsp1/vsp1_rwpf.h
> >>> @@ -42,6 +42,7 @@ struct vsp1_rwpf {
> >>>
> >>> struct v4l2_pix_format_mplane format;
> >>> const struct vsp1_format_info *fmtinfo;
> >>> unsigned int brx_input;
> >>>
> >>> + bool interlaced;
> >
> > kerneldoc might be nice :-)
>
> There's no existing kerneldoc on struct vsp1_rwpf ?
I'm glad we agree it should be added :-)
> >>> unsigned int alpha;
> >
> > [snip]
> >
> >>> diff --git a/include/media/vsp1.h b/include/media/vsp1.h
> >>> index 678c24de1ac6..c10883f30980 100644
> >>> --- a/include/media/vsp1.h
> >>> +++ b/include/media/vsp1.h
> >>> @@ -50,6 +50,7 @@ int vsp1_du_setup_lif(struct device *dev, unsigned int
> >>> pipe_index,
> >>> * @dst: destination rectangle on the display (integer coordinates)
> >>> * @alpha: alpha value (0: fully transparent, 255: fully opaque)
> >>> * @zpos: Z position of the plane (from 0 to number of planes minus 1)
> >>> + * @interlaced: true for interlaced pipelines
> >
> > Maybe "true if the pipeline outputs an interlaced stream" ?
>
> That's fine - but I've neglected to incorporate this into my v4 repost :-(
>
> If by any magic - v4 is suitable for integration already, and you're happy
> to take it into your tree - please feel free to update this comment.
>
> Otherwise it will be in any next update.
I'll check v4 now.
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2018-05-24 10:08 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-03 8:44 [PATCH v3 00/11] R-Car DU Interlaced support through VSP1 Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 01/11] media: vsp1: drm: Fix minor grammar error Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 02/11] media: vsp1: Remove packed attributes from aligned structures Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 03/11] media: vsp1: Rename dl_child to dl_next Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 04/11] media: vsp1: Remove unused display list structure field Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 05/11] media: vsp1: Clean up DLM objects on error Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 06/11] media: vsp1: Provide VSP1 feature helper macro Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 07/11] media: vsp1: Use header display lists for all WPF outputs linked to the DU Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 08/11] media: vsp1: Add support for extended display list headers Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 09/11] media: vsp1: Provide support for extended command pools Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 8:44 ` [PATCH v3 10/11] media: vsp1: Support Interlaced display pipelines Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
2018-05-03 9:04 ` Kieran Bingham
2018-05-03 9:04 ` Kieran Bingham
2018-05-03 11:13 ` Laurent Pinchart
2018-05-03 11:13 ` Laurent Pinchart
2018-05-03 13:45 ` Kieran Bingham
2018-05-03 13:45 ` Kieran Bingham
2018-05-24 10:08 ` Laurent Pinchart [this message]
2018-05-24 10:08 ` Laurent Pinchart
2018-05-03 8:44 ` [PATCH v3 11/11] drm: rcar-du: Support interlaced video output through vsp1 Kieran Bingham
2018-05-03 8:44 ` Kieran Bingham
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=6945038.6Y03vj1EZt@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=kieran.bingham@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
/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.