All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takanari Hayama <taki@igel.co.jp>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: linux-media@vger.kernel.org, linux-sh@vger.kernel.org
Subject: Re: [PATCH v2 1/2] v4l: vsp1: Reset VSP1 RPF source address
Date: Thu, 27 Nov 2014 23:35:22 +0000	[thread overview]
Message-ID: <5477B53A.8050705@igel.co.jp> (raw)
In-Reply-To: <2583371.5EOVSDHmFc@avalon>

Hi Laurent,

Thank you for your comments.

On 11/28/14, 4:11 AM, Laurent Pinchart wrote:
> Hi Hayama-san,
> 
> Thank you for the patch.
> 
> On Thursday 27 November 2014 10:25:01 Takanari Hayama wrote:
>> Source address of VSP1 RPF needs to be reset whenever crop offsets are
>> recalculated.
>>
>> This correctly reflects a crop setting even VIDIOC_QBUF is called
>> before VIDIOIC_STREAMON is called.
>>
>> Signed-off-by: Takanari Hayama <taki@igel.co.jp>
>> ---
>>  drivers/media/platform/vsp1/vsp1_rpf.c  | 15 +++++++++++++++
>>  drivers/media/platform/vsp1/vsp1_rwpf.h |  2 ++
>>  2 files changed, 17 insertions(+)
>>
>> diff --git a/drivers/media/platform/vsp1/vsp1_rpf.c
>> b/drivers/media/platform/vsp1/vsp1_rpf.c index d14d26b..79c0db8 100644
>> --- a/drivers/media/platform/vsp1/vsp1_rpf.c
>> +++ b/drivers/media/platform/vsp1/vsp1_rpf.c
>> @@ -106,11 +106,22 @@ static int rpf_s_stream(struct v4l2_subdev *subdev,
>> int enable) + crop->left * fmtinfo->bpp[0] / 8;
>>  	pstride = format->plane_fmt[0].bytesperline
>>  		<< VI6_RPF_SRCM_PSTRIDE_Y_SHIFT;
>> +
>> +	vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_Y,
>> +		       rpf->buf_addr[0] + rpf->offsets[0]);
>> +
>>  	if (format->num_planes > 1) {
>>  		rpf->offsets[1] = crop->top * format->plane_fmt[1].bytesperline
>>  				+ crop->left * fmtinfo->bpp[1] / 8;
>>  		pstride |= format->plane_fmt[1].bytesperline
>>  			<< VI6_RPF_SRCM_PSTRIDE_C_SHIFT;
>> +
>> +		vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_C0,
>> +			       rpf->buf_addr[1] + rpf->offsets[1]);
>> +
>> +		if (format->num_planes > 2)
>> +			vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_C1,
>> +				       rpf->buf_addr[2] + rpf->offsets[1]);
>>  	}
>>
>>  	vsp1_rpf_write(rpf, VI6_RPF_SRCM_PSTRIDE, pstride);
>> @@ -179,6 +190,10 @@ static void rpf_vdev_queue(struct vsp1_video *video,
>>  			   struct vsp1_video_buffer *buf)
>>  {
>>  	struct vsp1_rwpf *rpf = container_of(video, struct vsp1_rwpf, video);
>> +	int i;
> 
> Nitpicking, i is always positive and should be unsigned int.

Ok.

>> +
>> +	for (i = 0; i < 3; i++)
>> +		rpf->buf_addr[i] = buf->addr[i];
> 
> How about adding
> 
>         if (!vsp1_entity_is_streaming(&rpf->entity))
>                 return;
> 
> here to avoid configuring the hardware with random offsets if s_stream hasn't 
> been called yet ?

Agreed. That's better.

> If you're fine with those changes I'll modify the patch when applying, there's 
> no need to resubmit.

Thank you. I'm all good with those changes.

>>  	vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_Y,
>>  		       buf->addr[0] + rpf->offsets[0]);
>> diff --git a/drivers/media/platform/vsp1/vsp1_rwpf.h
>> b/drivers/media/platform/vsp1/vsp1_rwpf.h index 28dd9e7..1c793bc 100644
>> --- a/drivers/media/platform/vsp1/vsp1_rwpf.h
>> +++ b/drivers/media/platform/vsp1/vsp1_rwpf.h
>> @@ -39,6 +39,8 @@ struct vsp1_rwpf {
>>  	struct v4l2_rect crop;
>>
>>  	unsigned int offsets[2];
>> +
>> +	dma_addr_t buf_addr[3];
>>  };
>>
>>  static inline struct vsp1_rwpf *to_rwpf(struct v4l2_subdev *subdev)
> 

Cheers,
Takanari Hayama, Ph.D. (taki@igel.co.jp)
IGEL Co.,Ltd.
http://www.igel.co.jp/

WARNING: multiple messages have this Message-ID (diff)
From: Takanari Hayama <taki@igel.co.jp>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: linux-media@vger.kernel.org, linux-sh@vger.kernel.org
Subject: Re: [PATCH v2 1/2] v4l: vsp1: Reset VSP1 RPF source address
Date: Fri, 28 Nov 2014 08:35:22 +0900	[thread overview]
Message-ID: <5477B53A.8050705@igel.co.jp> (raw)
In-Reply-To: <2583371.5EOVSDHmFc@avalon>

Hi Laurent,

Thank you for your comments.

On 11/28/14, 4:11 AM, Laurent Pinchart wrote:
> Hi Hayama-san,
> 
> Thank you for the patch.
> 
> On Thursday 27 November 2014 10:25:01 Takanari Hayama wrote:
>> Source address of VSP1 RPF needs to be reset whenever crop offsets are
>> recalculated.
>>
>> This correctly reflects a crop setting even VIDIOC_QBUF is called
>> before VIDIOIC_STREAMON is called.
>>
>> Signed-off-by: Takanari Hayama <taki@igel.co.jp>
>> ---
>>  drivers/media/platform/vsp1/vsp1_rpf.c  | 15 +++++++++++++++
>>  drivers/media/platform/vsp1/vsp1_rwpf.h |  2 ++
>>  2 files changed, 17 insertions(+)
>>
>> diff --git a/drivers/media/platform/vsp1/vsp1_rpf.c
>> b/drivers/media/platform/vsp1/vsp1_rpf.c index d14d26b..79c0db8 100644
>> --- a/drivers/media/platform/vsp1/vsp1_rpf.c
>> +++ b/drivers/media/platform/vsp1/vsp1_rpf.c
>> @@ -106,11 +106,22 @@ static int rpf_s_stream(struct v4l2_subdev *subdev,
>> int enable) + crop->left * fmtinfo->bpp[0] / 8;
>>  	pstride = format->plane_fmt[0].bytesperline
>>  		<< VI6_RPF_SRCM_PSTRIDE_Y_SHIFT;
>> +
>> +	vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_Y,
>> +		       rpf->buf_addr[0] + rpf->offsets[0]);
>> +
>>  	if (format->num_planes > 1) {
>>  		rpf->offsets[1] = crop->top * format->plane_fmt[1].bytesperline
>>  				+ crop->left * fmtinfo->bpp[1] / 8;
>>  		pstride |= format->plane_fmt[1].bytesperline
>>  			<< VI6_RPF_SRCM_PSTRIDE_C_SHIFT;
>> +
>> +		vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_C0,
>> +			       rpf->buf_addr[1] + rpf->offsets[1]);
>> +
>> +		if (format->num_planes > 2)
>> +			vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_C1,
>> +				       rpf->buf_addr[2] + rpf->offsets[1]);
>>  	}
>>
>>  	vsp1_rpf_write(rpf, VI6_RPF_SRCM_PSTRIDE, pstride);
>> @@ -179,6 +190,10 @@ static void rpf_vdev_queue(struct vsp1_video *video,
>>  			   struct vsp1_video_buffer *buf)
>>  {
>>  	struct vsp1_rwpf *rpf = container_of(video, struct vsp1_rwpf, video);
>> +	int i;
> 
> Nitpicking, i is always positive and should be unsigned int.

Ok.

>> +
>> +	for (i = 0; i < 3; i++)
>> +		rpf->buf_addr[i] = buf->addr[i];
> 
> How about adding
> 
>         if (!vsp1_entity_is_streaming(&rpf->entity))
>                 return;
> 
> here to avoid configuring the hardware with random offsets if s_stream hasn't 
> been called yet ?

Agreed. That's better.

> If you're fine with those changes I'll modify the patch when applying, there's 
> no need to resubmit.

Thank you. I'm all good with those changes.

>>  	vsp1_rpf_write(rpf, VI6_RPF_SRCM_ADDR_Y,
>>  		       buf->addr[0] + rpf->offsets[0]);
>> diff --git a/drivers/media/platform/vsp1/vsp1_rwpf.h
>> b/drivers/media/platform/vsp1/vsp1_rwpf.h index 28dd9e7..1c793bc 100644
>> --- a/drivers/media/platform/vsp1/vsp1_rwpf.h
>> +++ b/drivers/media/platform/vsp1/vsp1_rwpf.h
>> @@ -39,6 +39,8 @@ struct vsp1_rwpf {
>>  	struct v4l2_rect crop;
>>
>>  	unsigned int offsets[2];
>> +
>> +	dma_addr_t buf_addr[3];
>>  };
>>
>>  static inline struct vsp1_rwpf *to_rwpf(struct v4l2_subdev *subdev)
> 

Cheers,
Takanari Hayama, Ph.D. (taki@igel.co.jp)
IGEL Co.,Ltd.
http://www.igel.co.jp/

  reply	other threads:[~2014-11-27 23:35 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-27  1:25 [PATCH v2 0/2] v4l: vsp1: crop and a single input issues Takanari Hayama
2014-11-27  1:25 ` Takanari Hayama
2014-11-27  1:25 ` [PATCH v2 1/2] v4l: vsp1: Reset VSP1 RPF source address Takanari Hayama
2014-11-27  1:25   ` Takanari Hayama
2014-11-27 19:11   ` Laurent Pinchart
2014-11-27 19:11     ` Laurent Pinchart
2014-11-27 23:35     ` Takanari Hayama [this message]
2014-11-27 23:35       ` Takanari Hayama
2014-11-27  1:25 ` [PATCH v2 2/2] v4l: vsp1: Always enable virtual RPF when BRU is in use Takanari Hayama
2014-11-27  1:25   ` Takanari Hayama
2014-11-27 20:03   ` Laurent Pinchart
2014-11-27 20:03     ` Laurent Pinchart
2014-11-27 23:37     ` Takanari Hayama
2014-11-27 23:37       ` Takanari Hayama

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=5477B53A.8050705@igel.co.jp \
    --to=taki@igel.co.jp \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-sh@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.