All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sowjanya Komatineni <skomatineni@nvidia.com>
To: Dmitry Osipenko <digetx@gmail.com>, <thierry.reding@gmail.com>,
	<jonathanh@nvidia.com>, <frankc@nvidia.com>, <hverkuil@xs4all.nl>,
	<sakari.ailus@iki.fi>, <helen.koike@collabora.com>
Cc: <sboyd@kernel.org>, <linux-media@vger.kernel.org>,
	<devicetree@vger.kernel.org>, <linux-clk@vger.kernel.org>,
	<linux-tegra@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [RFC PATCH v6 6/9] media: tegra: Add Tegra210 Video input driver
Date: Fri, 10 Apr 2020 11:59:09 -0700	[thread overview]
Message-ID: <ab010164-e8ea-89e9-a7e9-d7213841fa90@nvidia.com> (raw)
In-Reply-To: <00708f34-cf45-e248-c6b0-c3d2286671ca@gmail.com>


On 4/10/20 11:47 AM, Dmitry Osipenko wrote:
> External email: Use caution opening links or attachments
>
>
> 09.04.2020 21:28, Sowjanya Komatineni пишет:
>> On 4/9/20 7:50 AM, Dmitry Osipenko wrote:
>>> External email: Use caution opening links or attachments
>>>
>>>
>>> 09.04.2020 06:38, Sowjanya Komatineni пишет:
>>> ...
>>>> Tested with 3 buffers and by checking outstanding buffers in process by
>>>> VI hw and holding to start capture till one outstanding buffer in
>>>> process by HW.
>>>> Also tested with 2 buffers without checking for outstanding buffers.
>>>>
>>>> In both cases, I see same %CPU for the kthreads and is < 1%
>>>>
>>> I don't see where buffers queue max limit is set to 3 in the code, but
>>> should be okay if CPU isn't getting hogged. Looking forward to v7.
>> Sorry, correction I meant to say pre-queued buffers before streaming not
>> num_buffers.
>> vb2 queue min_buffers_needed was set to 3 as part of one of the issue
>> debug in earlier version which actually was irrelevant to that issue and
>> should have been removed. Will remove min_buffers_needed in v7.
>>
>> I added checking for outstanding requests by hardware just to be safer
>> although we may not hit this case of issuing more than 1 outstanding
>> frame capture to VI hardware as capture_frame() waits till it sees frame
>> start event through HW syncpt increment before proceeding for memory
>> write and issuing next frame capture.
>>
>> So issuing frame captures are synchronized with frame start and frame end.
>>
>> Will remove min_buffers_needed and also explicit check for outstanding
>> buffers in v7.
> It's still not clear to me how the "pre-queued buffers" will be limited.
> I'll take another look at the v7.

OK, but I don't understand what you mean by limit on pre-queued buffers.

I was saying vb2 queue has min_buffers_needed which was set to 3 where 
streaming will start only after 3 buffers got queued up.

Regarding outstanding condition check to make sure no more than 2 syncpt 
trigger requests are in FIFO I added it to be safe where mostly we may 
not hit and also I only see capture start thread holding for it during 
initial frame capture as it issues single shot for 1st 2 buffers capture 
and holds 3 buffers which is already queued till at least one of those 2 
issued capture is done to make sure of not triggering syncpt condition 
when fifo already has 2 pending.

In v7, will remove setting min_buffers_needed and also outstanding 
syncpt trigger check.

WARNING: multiple messages have this Message-ID (diff)
From: Sowjanya Komatineni <skomatineni-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
To: Dmitry Osipenko <digetx-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org,
	frankc-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org,
	hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org,
	sakari.ailus-X3B1VOXEql0@public.gmane.org,
	helen.koike-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org
Cc: sboyd-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	linux-media-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [RFC PATCH v6 6/9] media: tegra: Add Tegra210 Video input driver
Date: Fri, 10 Apr 2020 11:59:09 -0700	[thread overview]
Message-ID: <ab010164-e8ea-89e9-a7e9-d7213841fa90@nvidia.com> (raw)
In-Reply-To: <00708f34-cf45-e248-c6b0-c3d2286671ca-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>


On 4/10/20 11:47 AM, Dmitry Osipenko wrote:
> External email: Use caution opening links or attachments
>
>
> 09.04.2020 21:28, Sowjanya Komatineni пишет:
>> On 4/9/20 7:50 AM, Dmitry Osipenko wrote:
>>> External email: Use caution opening links or attachments
>>>
>>>
>>> 09.04.2020 06:38, Sowjanya Komatineni пишет:
>>> ...
>>>> Tested with 3 buffers and by checking outstanding buffers in process by
>>>> VI hw and holding to start capture till one outstanding buffer in
>>>> process by HW.
>>>> Also tested with 2 buffers without checking for outstanding buffers.
>>>>
>>>> In both cases, I see same %CPU for the kthreads and is < 1%
>>>>
>>> I don't see where buffers queue max limit is set to 3 in the code, but
>>> should be okay if CPU isn't getting hogged. Looking forward to v7.
>> Sorry, correction I meant to say pre-queued buffers before streaming not
>> num_buffers.
>> vb2 queue min_buffers_needed was set to 3 as part of one of the issue
>> debug in earlier version which actually was irrelevant to that issue and
>> should have been removed. Will remove min_buffers_needed in v7.
>>
>> I added checking for outstanding requests by hardware just to be safer
>> although we may not hit this case of issuing more than 1 outstanding
>> frame capture to VI hardware as capture_frame() waits till it sees frame
>> start event through HW syncpt increment before proceeding for memory
>> write and issuing next frame capture.
>>
>> So issuing frame captures are synchronized with frame start and frame end.
>>
>> Will remove min_buffers_needed and also explicit check for outstanding
>> buffers in v7.
> It's still not clear to me how the "pre-queued buffers" will be limited.
> I'll take another look at the v7.

OK, but I don't understand what you mean by limit on pre-queued buffers.

I was saying vb2 queue has min_buffers_needed which was set to 3 where 
streaming will start only after 3 buffers got queued up.

Regarding outstanding condition check to make sure no more than 2 syncpt 
trigger requests are in FIFO I added it to be safe where mostly we may 
not hit and also I only see capture start thread holding for it during 
initial frame capture as it issues single shot for 1st 2 buffers capture 
and holds 3 buffers which is already queued till at least one of those 2 
issued capture is done to make sure of not triggering syncpt condition 
when fifo already has 2 pending.

In v7, will remove setting min_buffers_needed and also outstanding 
syncpt trigger check.

  reply	other threads:[~2020-04-10 18:59 UTC|newest]

Thread overview: 148+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-04  1:24 [RFC PATCH v6 0/9] Add Tegra driver for video capture Sowjanya Komatineni
2020-04-04  1:24 ` Sowjanya Komatineni
2020-04-04  1:24 ` [RFC PATCH v6 1/9] arm64: tegra: Fix sor powergate clocks and reset Sowjanya Komatineni
2020-04-04  1:24   ` Sowjanya Komatineni
2020-04-04  1:25 ` [RFC PATCH v6 2/9] arm64: tegra: Add reset-cells to mc Sowjanya Komatineni
2020-04-04  1:25   ` Sowjanya Komatineni
2020-04-04  1:25 ` [RFC PATCH v6 3/9] dt-bindings: clock: tegra: Add clk id for CSI TPG clock Sowjanya Komatineni
2020-04-04  1:25   ` Sowjanya Komatineni
2020-04-14 18:12   ` Rob Herring
2020-04-14 18:12     ` Rob Herring
2020-04-04  1:25 ` [RFC PATCH v6 4/9] clk: tegra: Add Tegra210 CSI TPG clock gate Sowjanya Komatineni
2020-04-04  1:25   ` Sowjanya Komatineni
2020-04-04  1:25 ` [RFC PATCH v6 5/9] dt-binding: tegra: Add VI and CSI bindings Sowjanya Komatineni
2020-04-04  1:25   ` Sowjanya Komatineni
2020-04-14 18:14   ` Rob Herring
2020-04-14 18:14     ` Rob Herring
     [not found] ` <1585963507-12610-1-git-send-email-skomatineni-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-04-04  1:25   ` [RFC PATCH v6 6/9] media: tegra: Add Tegra210 Video input driver Sowjanya Komatineni
2020-04-04  1:25     ` Sowjanya Komatineni
2020-04-05 19:37     ` Dmitry Osipenko
2020-04-05 19:37       ` Dmitry Osipenko
2020-04-06 18:58       ` Sowjanya Komatineni
2020-04-06 18:58         ` Sowjanya Komatineni
2020-04-05 19:45     ` Dmitry Osipenko
2020-04-05 19:57       ` Dmitry Osipenko
2020-04-05 19:57         ` Dmitry Osipenko
2020-04-05 19:51     ` Dmitry Osipenko
2020-04-05 19:51       ` Dmitry Osipenko
2020-04-05 20:35     ` Dmitry Osipenko
2020-04-05 20:35       ` Dmitry Osipenko
2020-04-06 15:35       ` Sowjanya Komatineni
2020-04-06 15:35         ` Sowjanya Komatineni
2020-04-06 16:05         ` Dmitry Osipenko
2020-04-06 16:05           ` Dmitry Osipenko
2020-04-06 16:12           ` Sowjanya Komatineni
2020-04-06 16:12             ` Sowjanya Komatineni
2020-04-06 16:29             ` Dmitry Osipenko
2020-04-06 16:37               ` Sowjanya Komatineni
2020-04-06 16:37                 ` Sowjanya Komatineni
2020-04-06 17:02                 ` Sowjanya Komatineni
2020-04-06 17:02                   ` Sowjanya Komatineni
2020-04-06 19:53                   ` Dmitry Osipenko
2020-04-06 19:53                     ` Dmitry Osipenko
2020-04-06 20:05                     ` Sowjanya Komatineni
2020-04-06 20:05                       ` Sowjanya Komatineni
2020-04-06 20:28                       ` Dmitry Osipenko
2020-04-06 20:28                         ` Dmitry Osipenko
2020-04-06 20:30                         ` Sowjanya Komatineni
2020-04-06 20:30                           ` Sowjanya Komatineni
2020-04-05 20:54     ` Dmitry Osipenko
2020-04-05 20:54       ` Dmitry Osipenko
2020-04-05 21:11     ` Dmitry Osipenko
2020-04-06 15:41       ` Sowjanya Komatineni
2020-04-06 15:41         ` Sowjanya Komatineni
2020-04-06 16:11         ` Dmitry Osipenko
2020-04-06 16:11           ` Dmitry Osipenko
2020-04-07 19:05           ` Sowjanya Komatineni
2020-04-07 19:05             ` Sowjanya Komatineni
2020-04-06 19:48     ` Dmitry Osipenko
2020-04-06 20:00       ` Sowjanya Komatineni
2020-04-06 20:00         ` Sowjanya Komatineni
2020-04-06 20:02     ` Dmitry Osipenko
2020-04-06 20:20       ` Sowjanya Komatineni
2020-04-06 20:20         ` Sowjanya Komatineni
2020-04-06 20:37         ` Dmitry Osipenko
2020-04-06 20:37           ` Dmitry Osipenko
2020-04-06 20:38           ` Sowjanya Komatineni
2020-04-06 20:38             ` Sowjanya Komatineni
2020-04-06 20:43             ` Sowjanya Komatineni
2020-04-06 20:43               ` Sowjanya Komatineni
2020-04-06 20:54             ` Dmitry Osipenko
2020-04-06 21:18               ` Sowjanya Komatineni
2020-04-06 21:18                 ` Sowjanya Komatineni
2020-04-06 20:45     ` Dmitry Osipenko
2020-04-06 20:45       ` Dmitry Osipenko
2020-04-06 20:50       ` Sowjanya Komatineni
2020-04-06 20:50         ` Sowjanya Komatineni
2020-04-06 20:53         ` Dmitry Osipenko
2020-04-06 20:53           ` Dmitry Osipenko
2020-04-06 20:55           ` Sowjanya Komatineni
2020-04-06 20:55             ` Sowjanya Komatineni
2020-04-06 20:56             ` Dmitry Osipenko
2020-04-06 20:56               ` Dmitry Osipenko
2020-04-06 21:02               ` Sowjanya Komatineni
2020-04-06 21:02                 ` Sowjanya Komatineni
2020-04-06 21:11                 ` Dmitry Osipenko
2020-04-06 21:15                   ` Sowjanya Komatineni
2020-04-06 21:15                     ` Sowjanya Komatineni
2020-04-06 21:39                     ` Sowjanya Komatineni
2020-04-06 21:39                       ` Sowjanya Komatineni
2020-04-06 22:00                       ` Sowjanya Komatineni
2020-04-06 22:00                         ` Sowjanya Komatineni
2020-04-06 22:07                         ` Sowjanya Komatineni
2020-04-06 22:07                           ` Sowjanya Komatineni
2020-04-06 23:18                           ` Dmitry Osipenko
2020-04-06 23:18                             ` Dmitry Osipenko
2020-04-06 23:48                             ` Sowjanya Komatineni
2020-04-06 23:48                               ` Sowjanya Komatineni
2020-04-06 23:50                               ` Sowjanya Komatineni
2020-04-06 23:50                                 ` Sowjanya Komatineni
2020-04-07 21:08                               ` Sowjanya Komatineni
2020-04-07 21:08                                 ` Sowjanya Komatineni
2020-04-07 22:08                                 ` Dmitry Osipenko
2020-04-07 22:08                                   ` Dmitry Osipenko
2020-04-07 22:14                                   ` Dmitry Osipenko
2020-04-07 22:14                                     ` Dmitry Osipenko
2020-04-07 22:22                                   ` Sowjanya Komatineni
2020-04-07 22:22                                     ` Sowjanya Komatineni
2020-04-07 23:12                                     ` Dmitry Osipenko
2020-04-07 23:12                                       ` Dmitry Osipenko
     [not found]                                       ` <1a31cd60-739f-0660-1c45-31487d2f2128@nvidia.com>
2020-04-07 23:38                                         ` Sowjanya Komatineni
2020-04-07 23:38                                           ` Sowjanya Komatineni
2020-04-07 23:56                                           ` Sowjanya Komatineni
2020-04-07 23:56                                             ` Sowjanya Komatineni
2020-04-07 23:57                                           ` Sowjanya Komatineni
2020-04-07 23:57                                             ` Sowjanya Komatineni
2020-04-07 23:59                                           ` Sowjanya Komatineni
2020-04-07 23:59                                             ` Sowjanya Komatineni
2020-04-08  0:00                                             ` Sowjanya Komatineni
2020-04-08  0:00                                               ` Sowjanya Komatineni
2020-04-08 14:21                                               ` Dmitry Osipenko
2020-04-08 17:45                                                 ` Sowjanya Komatineni
2020-04-08 17:45                                                   ` Sowjanya Komatineni
2020-04-08 18:58                                                   ` Sowjanya Komatineni
2020-04-08 18:58                                                     ` Sowjanya Komatineni
2020-04-08 19:38                                                     ` Sowjanya Komatineni
2020-04-08 19:38                                                       ` Sowjanya Komatineni
2020-04-09  3:38                                                       ` Sowjanya Komatineni
2020-04-09  3:38                                                         ` Sowjanya Komatineni
2020-04-09 14:50                                                         ` Dmitry Osipenko
2020-04-09 18:28                                                           ` Sowjanya Komatineni
2020-04-09 18:28                                                             ` Sowjanya Komatineni
2020-04-10 18:47                                                             ` Dmitry Osipenko
2020-04-10 18:59                                                               ` Sowjanya Komatineni [this message]
2020-04-10 18:59                                                                 ` Sowjanya Komatineni
2020-04-10 19:45                                                                 ` Dmitry Osipenko
2020-04-07 19:39     ` Dmitry Osipenko
2020-04-07 19:39       ` Dmitry Osipenko
2020-04-07 19:42       ` Sowjanya Komatineni
2020-04-07 19:42         ` Sowjanya Komatineni
2020-04-10 19:47     ` Dmitry Osipenko
2020-04-04  1:25 ` [RFC PATCH v6 7/9] MAINTAINERS: Add Tegra Video driver section Sowjanya Komatineni
2020-04-04  1:25   ` Sowjanya Komatineni
2020-04-04  1:25 ` [RFC PATCH v6 8/9] dt-bindings: reset: Add ID for Tegra210 VI reset Sowjanya Komatineni
2020-04-04  1:25   ` Sowjanya Komatineni
2020-04-14 18:14   ` Rob Herring
2020-04-14 18:14     ` Rob Herring
2020-04-04  1:25 ` [RFC PATCH v6 9/9] arm64: tegra: Add Tegra VI CSI support in device tree Sowjanya Komatineni
2020-04-04  1:25   ` Sowjanya Komatineni

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=ab010164-e8ea-89e9-a7e9-d7213841fa90@nvidia.com \
    --to=skomatineni@nvidia.com \
    --cc=devicetree@vger.kernel.org \
    --cc=digetx@gmail.com \
    --cc=frankc@nvidia.com \
    --cc=helen.koike@collabora.com \
    --cc=hverkuil@xs4all.nl \
    --cc=jonathanh@nvidia.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=sakari.ailus@iki.fi \
    --cc=sboyd@kernel.org \
    --cc=thierry.reding@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 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.