From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Takanari Hayama <taki@igel.co.jp>, linux-media@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Subject: Re: [PATCH 2/2] v4l: vsp1: Always enable virtual RPF when BRU is in use
Date: Wed, 26 Nov 2014 12:55:46 +0000 [thread overview]
Message-ID: <5475CDD2.1010104@cogentembedded.com> (raw)
In-Reply-To: <1416982792-11917-3-git-send-email-taki@igel.co.jp>
Hello.
On 11/26/2014 9:19 AM, Takanari Hayama wrote:
> Regardless of a number of inputs, we should always enable virtual RPF
> when BRU is used. This allows the case when there's only one input to
> BRU, and a size of the input is smaller than a size of an output of BRU.
> Signed-off-by: Takanari Hayama <taki@igel.co.jp>
> ---
> drivers/media/platform/vsp1/vsp1_wpf.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
> diff --git a/drivers/media/platform/vsp1/vsp1_wpf.c b/drivers/media/platform/vsp1/vsp1_wpf.c
> index 6e05776..29ea28b 100644
> --- a/drivers/media/platform/vsp1/vsp1_wpf.c
> +++ b/drivers/media/platform/vsp1/vsp1_wpf.c
> @@ -92,19 +92,20 @@ static int wpf_s_stream(struct v4l2_subdev *subdev, int enable)
> return 0;
> }
>
> - /* Sources. If the pipeline has a single input configure it as the
> - * master layer. Otherwise configure all inputs as sub-layers and
> - * select the virtual RPF as the master layer.
> + /* Sources. If the pipeline has a single input and BRU is not used,
> + * configure it as the master layer. Otherwise configure all
> + * inputs as sub-layers and select the virtual RPF as the master
> + * layer.
> */
> for (i = 0; i < pipe->num_inputs; ++i) {
> struct vsp1_rwpf *input = pipe->inputs[i];
>
> - srcrpf |= pipe->num_inputs = 1
> + srcrpf |= ((!pipe->bru) && (pipe->num_inputs = 1))
Inner parens not needed, especially in the first case.
> ? VI6_WPF_SRCRPF_RPF_ACT_MST(input->entity.index)
> : VI6_WPF_SRCRPF_RPF_ACT_SUB(input->entity.index);
> }
>
> - if (pipe->num_inputs > 1)
> + if ((pipe->bru) || (pipe->num_inputs > 1))
Likewise.
[...]
WBR, Sergei
WARNING: multiple messages have this Message-ID (diff)
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Takanari Hayama <taki@igel.co.jp>, linux-media@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Subject: Re: [PATCH 2/2] v4l: vsp1: Always enable virtual RPF when BRU is in use
Date: Wed, 26 Nov 2014 15:55:46 +0300 [thread overview]
Message-ID: <5475CDD2.1010104@cogentembedded.com> (raw)
In-Reply-To: <1416982792-11917-3-git-send-email-taki@igel.co.jp>
Hello.
On 11/26/2014 9:19 AM, Takanari Hayama wrote:
> Regardless of a number of inputs, we should always enable virtual RPF
> when BRU is used. This allows the case when there's only one input to
> BRU, and a size of the input is smaller than a size of an output of BRU.
> Signed-off-by: Takanari Hayama <taki@igel.co.jp>
> ---
> drivers/media/platform/vsp1/vsp1_wpf.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
> diff --git a/drivers/media/platform/vsp1/vsp1_wpf.c b/drivers/media/platform/vsp1/vsp1_wpf.c
> index 6e05776..29ea28b 100644
> --- a/drivers/media/platform/vsp1/vsp1_wpf.c
> +++ b/drivers/media/platform/vsp1/vsp1_wpf.c
> @@ -92,19 +92,20 @@ static int wpf_s_stream(struct v4l2_subdev *subdev, int enable)
> return 0;
> }
>
> - /* Sources. If the pipeline has a single input configure it as the
> - * master layer. Otherwise configure all inputs as sub-layers and
> - * select the virtual RPF as the master layer.
> + /* Sources. If the pipeline has a single input and BRU is not used,
> + * configure it as the master layer. Otherwise configure all
> + * inputs as sub-layers and select the virtual RPF as the master
> + * layer.
> */
> for (i = 0; i < pipe->num_inputs; ++i) {
> struct vsp1_rwpf *input = pipe->inputs[i];
>
> - srcrpf |= pipe->num_inputs == 1
> + srcrpf |= ((!pipe->bru) && (pipe->num_inputs == 1))
Inner parens not needed, especially in the first case.
> ? VI6_WPF_SRCRPF_RPF_ACT_MST(input->entity.index)
> : VI6_WPF_SRCRPF_RPF_ACT_SUB(input->entity.index);
> }
>
> - if (pipe->num_inputs > 1)
> + if ((pipe->bru) || (pipe->num_inputs > 1))
Likewise.
[...]
WBR, Sergei
next prev parent reply other threads:[~2014-11-26 12:55 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-26 6:19 [PATCH 0/2] v4l: vsp1: crop and a single input issues Takanari Hayama
2014-11-26 6:19 ` Takanari Hayama
2014-11-26 6:19 ` [PATCH 1/2] v4l: vsp1: Reset VSP1 RPF source address Takanari Hayama
2014-11-26 6:19 ` Takanari Hayama
2014-11-26 8:59 ` Geert Uytterhoeven
2014-11-26 8:59 ` Geert Uytterhoeven
2014-11-27 0:57 ` Takanari Hayama
2014-11-27 0:57 ` Takanari Hayama
2014-11-26 6:19 ` [PATCH 2/2] v4l: vsp1: Always enable virtual RPF when BRU is in use Takanari Hayama
2014-11-26 6:19 ` Takanari Hayama
2014-11-26 12:55 ` Sergei Shtylyov [this message]
2014-11-26 12:55 ` Sergei Shtylyov
2014-11-27 1:01 ` Takanari Hayama
2014-11-27 1:01 ` 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=5475CDD2.1010104@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=linux-media@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=taki@igel.co.jp \
/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.