From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Prabhakar Lad <prabhakar.csengg@gmail.com>
Cc: LMML <linux-media@vger.kernel.org>,
Mauro Carvalho Chehab <mchehab@redhat.com>,
DLOS <davinci-linux-open-source@linux.davincidsp.com>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] media: davinci: vpbe: fix layer availability for NV12 format
Date: Fri, 03 May 2013 17:47:43 +0400 [thread overview]
Message-ID: <5183BFFF.3020709@cogentembedded.com> (raw)
In-Reply-To: <1367574783-19090-1-git-send-email-prabhakar.csengg@gmail.com>
Hello.
On 03-05-2013 13:53, Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.csengg@gmail.com>
> For NV12 format, even if display data is single image,
> both VIDWIN0 and VIDWIN1 parameters must be used. The start
> address of Y data plane and C data plane is configured in
> VIDEOWIN0ADH/L and VIDEOWIN1ADH/L respectively.
> cuurently only one layer was requested, which is suffice
> for yuv422, but for yuv420(NV12) two layers are required and
> fix the same by requesting for other layer if pix fmt is NV12
> during set_fmt.
> Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
> ---
> drivers/media/platform/davinci/vpbe_display.c | 16 ++++++++++++++++
> 1 files changed, 16 insertions(+), 0 deletions(-)
> diff --git a/drivers/media/platform/davinci/vpbe_display.c b/drivers/media/platform/davinci/vpbe_display.c
> index 0341dcc..f2ee07b 100644
> --- a/drivers/media/platform/davinci/vpbe_display.c
> +++ b/drivers/media/platform/davinci/vpbe_display.c
> @@ -922,6 +922,22 @@ static int vpbe_display_s_fmt(struct file *file, void *priv,
> other video window */
>
> layer->pix_fmt = *pixfmt;
> + if (pixfmt->pixelformat == V4L2_PIX_FMT_NV12 &&
> + cpu_is_davinci_dm365()) {
cpu_is_*() shouldn't be used in the drivers.
> + struct vpbe_layer *otherlayer;
> +
> + otherlayer = _vpbe_display_get_other_win_layer(disp_dev, layer);
> + /* if other layer is available, only
> + * claim it, do not configure it
> + */
> + ret = osd_device->ops.request_layer(osd_device,
> + otherlayer->layer_info.id);
> + if (ret < 0) {
> + v4l2_err(&vpbe_dev->v4l2_dev,
> + "Display Manager failed to allocate layer\n");
> + return -EBUSY;
> + }
> + }
WBR, Sergei
prev parent reply other threads:[~2013-05-03 13:48 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-03 9:53 [PATCH] media: davinci: vpbe: fix layer availability for NV12 format Prabhakar Lad
2013-05-03 13:47 ` Sergei Shtylyov [this message]
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=5183BFFF.3020709@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=davinci-linux-open-source@linux.davincidsp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@redhat.com \
--cc=prabhakar.csengg@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox