* [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers
@ 2012-09-14 21:57 Laurent Pinchart
2012-09-15 6:32 ` Sakari Ailus
[not found] ` <20120927135233.3acd00a5@redhat.com>
0 siblings, 2 replies; 5+ messages in thread
From: Laurent Pinchart @ 2012-09-14 21:57 UTC (permalink / raw)
To: linux-media; +Cc: Antoine Reversat, sakari.ailus
V4L2 buffers use the monotonic clock, while statistics buffers use wall
time. This makes it difficult to correlate video frames and statistics.
Switch statistics buffers to the monotonic clock to fix this, and
replace struct timeval with struct timespec.
Reported-by: Antoine Reversat <a.reversat@gmail.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
drivers/media/platform/omap3isp/ispstat.c | 2 +-
drivers/media/platform/omap3isp/ispstat.h | 2 +-
include/linux/omap3isp.h | 7 ++++++-
3 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/drivers/media/platform/omap3isp/ispstat.c b/drivers/media/platform/omap3isp/ispstat.c
index b8640be..bb21c4e 100644
--- a/drivers/media/platform/omap3isp/ispstat.c
+++ b/drivers/media/platform/omap3isp/ispstat.c
@@ -256,7 +256,7 @@ static int isp_stat_buf_queue(struct ispstat *stat)
if (!stat->active_buf)
return STAT_NO_BUF;
- do_gettimeofday(&stat->active_buf->ts);
+ ktime_get_ts(&stat->active_buf->ts);
stat->active_buf->buf_size = stat->buf_size;
if (isp_stat_buf_check_magic(stat, stat->active_buf)) {
diff --git a/drivers/media/platform/omap3isp/ispstat.h b/drivers/media/platform/omap3isp/ispstat.h
index 9b7c865..8221d0c 100644
--- a/drivers/media/platform/omap3isp/ispstat.h
+++ b/drivers/media/platform/omap3isp/ispstat.h
@@ -50,7 +50,7 @@ struct ispstat_buffer {
struct iovm_struct *iovm;
void *virt_addr;
dma_addr_t dma_addr;
- struct timeval ts;
+ struct timespec ts;
u32 buf_size;
u32 frame_number;
u16 config_counter;
diff --git a/include/linux/omap3isp.h b/include/linux/omap3isp.h
index c090cf9..263a0c0 100644
--- a/include/linux/omap3isp.h
+++ b/include/linux/omap3isp.h
@@ -27,6 +27,11 @@
#ifndef OMAP3_ISP_USER_H
#define OMAP3_ISP_USER_H
+#ifdef __KERNEL__
+#include <linux/time.h> /* need struct timespec */
+#else
+#include <sys/time.h>
+#endif
#include <linux/types.h>
#include <linux/videodev2.h>
@@ -164,7 +169,7 @@ struct omap3isp_h3a_aewb_config {
* @config_counter: Number of the configuration associated with the data.
*/
struct omap3isp_stat_data {
- struct timeval ts;
+ struct timespec ts;
void __user *buf;
__u32 buf_size;
__u16 frame_number;
--
Regards,
Laurent Pinchart
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers
2012-09-14 21:57 [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers Laurent Pinchart
@ 2012-09-15 6:32 ` Sakari Ailus
[not found] ` <20120927135233.3acd00a5@redhat.com>
1 sibling, 0 replies; 5+ messages in thread
From: Sakari Ailus @ 2012-09-15 6:32 UTC (permalink / raw)
To: Laurent Pinchart; +Cc: linux-media, Antoine Reversat
Thanks, Laurent!
On Fri, Sep 14, 2012 at 11:57:48PM +0200, Laurent Pinchart wrote:
> V4L2 buffers use the monotonic clock, while statistics buffers use wall
> time. This makes it difficult to correlate video frames and statistics.
>
> Switch statistics buffers to the monotonic clock to fix this, and
> replace struct timeval with struct timespec.
>
> Reported-by: Antoine Reversat <a.reversat@gmail.com>
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> drivers/media/platform/omap3isp/ispstat.c | 2 +-
> drivers/media/platform/omap3isp/ispstat.h | 2 +-
> include/linux/omap3isp.h | 7 ++++++-
> 3 files changed, 8 insertions(+), 3 deletions(-)
Acked-by: Sakari Ailus <sakari.ailu@iki.fi>
--
Sakari Ailus
e-mail: sakari.ailus@iki.fi XMPP: sailus@retiisi.org.uk
^ permalink raw reply [flat|nested] 5+ messages in thread[parent not found: <20120927135233.3acd00a5@redhat.com>]
* Re: [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers
[not found] ` <20120927135233.3acd00a5@redhat.com>
@ 2012-09-27 19:49 ` Sakari Ailus
2012-09-27 23:26 ` Laurent Pinchart
2012-10-01 12:00 ` Mauro Carvalho Chehab
0 siblings, 2 replies; 5+ messages in thread
From: Sakari Ailus @ 2012-09-27 19:49 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: Laurent Pinchart, linux-media, Antoine Reversat
Hi Mauro,
Mauro Carvalho Chehab wrote:
> Em Fri, 14 Sep 2012 23:57:48 +0200
> Laurent Pinchart <laurent.pinchart@ideasonboard.com> escreveu:
>
>> V4L2 buffers use the monotonic clock, while statistics buffers use wall
>> time. This makes it difficult to correlate video frames and statistics.
>>
>> Switch statistics buffers to the monotonic clock to fix this, and
>> replace struct timeval with struct timespec.
>>
>> Reported-by: Antoine Reversat <a.reversat@gmail.com>
>> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>> ---
>> drivers/media/platform/omap3isp/ispstat.c | 2 +-
>> drivers/media/platform/omap3isp/ispstat.h | 2 +-
>> include/linux/omap3isp.h | 7 ++++++-
>> 3 files changed, 8 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/media/platform/omap3isp/ispstat.c b/drivers/media/platform/omap3isp/ispstat.c
>> index b8640be..bb21c4e 100644
>> --- a/drivers/media/platform/omap3isp/ispstat.c
>> +++ b/drivers/media/platform/omap3isp/ispstat.c
>> @@ -256,7 +256,7 @@ static int isp_stat_buf_queue(struct ispstat *stat)
>> if (!stat->active_buf)
>> return STAT_NO_BUF;
>>
>> - do_gettimeofday(&stat->active_buf->ts);
>> + ktime_get_ts(&stat->active_buf->ts);
>>
>> stat->active_buf->buf_size = stat->buf_size;
>> if (isp_stat_buf_check_magic(stat, stat->active_buf)) {
>> diff --git a/drivers/media/platform/omap3isp/ispstat.h b/drivers/media/platform/omap3isp/ispstat.h
>> index 9b7c865..8221d0c 100644
>> --- a/drivers/media/platform/omap3isp/ispstat.h
>> +++ b/drivers/media/platform/omap3isp/ispstat.h
>> @@ -50,7 +50,7 @@ struct ispstat_buffer {
>> struct iovm_struct *iovm;
>> void *virt_addr;
>> dma_addr_t dma_addr;
>> - struct timeval ts;
>> + struct timespec ts;
>> u32 buf_size;
>> u32 frame_number;
>> u16 config_counter;
>> diff --git a/include/linux/omap3isp.h b/include/linux/omap3isp.h
>> index c090cf9..263a0c0 100644
>> --- a/include/linux/omap3isp.h
>> +++ b/include/linux/omap3isp.h
>> @@ -27,6 +27,11 @@
>> #ifndef OMAP3_ISP_USER_H
>> #define OMAP3_ISP_USER_H
>>
>> +#ifdef __KERNEL__
>> +#include <linux/time.h> /* need struct timespec */
>> +#else
>> +#include <sys/time.h>
>> +#endif
>> #include <linux/types.h>
>> #include <linux/videodev2.h>
>>
>> @@ -164,7 +169,7 @@ struct omap3isp_h3a_aewb_config {
>> * @config_counter: Number of the configuration associated with the data.
>> */
>> struct omap3isp_stat_data {
>> - struct timeval ts;
>> + struct timespec ts;
>
> NACK. That breaks userspace API, as this structure is part of an ioctl.
>
> It is too late to touch here. Please keep timeval. It is ok to fill it with
> a mononotic time, but replacing it is an API breakage.
I beg to present a differing opinion.
The timestamp that has been taken from a realtime clock has NOT been
useful to begin with in this context: the OMAP3ISP driver has used
monotonic time on video buffers since the very beginning of its
existence in mainline kernel. As no-one has complained about this ---
except Antoine very recently --- I'm pretty certain we wouldn't be
breaking any application by changing this. The statistics timestamp is
only useful when it's comparable to other timestamps (from video buffers
and events), which this patch achieves.
Kind regards,
--
Sakari Ailus
sakari.ailus@iki.fi
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers
2012-09-27 19:49 ` Sakari Ailus
@ 2012-09-27 23:26 ` Laurent Pinchart
2012-10-01 12:00 ` Mauro Carvalho Chehab
1 sibling, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2012-09-27 23:26 UTC (permalink / raw)
To: Sakari Ailus; +Cc: Mauro Carvalho Chehab, linux-media, Antoine Reversat
Hi Mauro,
On Thursday 27 September 2012 22:49:34 Sakari Ailus wrote:
> Mauro Carvalho Chehab wrote:
> > Laurent Pinchart <laurent.pinchart@ideasonboard.com> escreveu:
> >> V4L2 buffers use the monotonic clock, while statistics buffers use wall
> >> time. This makes it difficult to correlate video frames and statistics.
> >>
> >> Switch statistics buffers to the monotonic clock to fix this, and
> >> replace struct timeval with struct timespec.
> >>
> >> Reported-by: Antoine Reversat <a.reversat@gmail.com>
> >> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> >> ---
> >>
> >> drivers/media/platform/omap3isp/ispstat.c | 2 +-
> >> drivers/media/platform/omap3isp/ispstat.h | 2 +-
> >> include/linux/omap3isp.h | 7 ++++++-
> >> 3 files changed, 8 insertions(+), 3 deletions(-)
> >>
> >> diff --git a/drivers/media/platform/omap3isp/ispstat.c
> >> b/drivers/media/platform/omap3isp/ispstat.c index b8640be..bb21c4e
> >> 100644
> >> --- a/drivers/media/platform/omap3isp/ispstat.c
> >> +++ b/drivers/media/platform/omap3isp/ispstat.c
> >> @@ -256,7 +256,7 @@ static int isp_stat_buf_queue(struct ispstat *stat)
> >>
> >> if (!stat->active_buf)
> >>
> >> return STAT_NO_BUF;
> >>
> >> - do_gettimeofday(&stat->active_buf->ts);
> >> + ktime_get_ts(&stat->active_buf->ts);
> >>
> >> stat->active_buf->buf_size = stat->buf_size;
> >> if (isp_stat_buf_check_magic(stat, stat->active_buf)) {
> >>
> >> diff --git a/drivers/media/platform/omap3isp/ispstat.h
> >> b/drivers/media/platform/omap3isp/ispstat.h index 9b7c865..8221d0c
> >> 100644
> >> --- a/drivers/media/platform/omap3isp/ispstat.h
> >> +++ b/drivers/media/platform/omap3isp/ispstat.h
> >> @@ -50,7 +50,7 @@ struct ispstat_buffer {
> >>
> >> struct iovm_struct *iovm;
> >> void *virt_addr;
> >> dma_addr_t dma_addr;
> >>
> >> - struct timeval ts;
> >> + struct timespec ts;
> >>
> >> u32 buf_size;
> >> u32 frame_number;
> >> u16 config_counter;
> >>
> >> diff --git a/include/linux/omap3isp.h b/include/linux/omap3isp.h
> >> index c090cf9..263a0c0 100644
> >> --- a/include/linux/omap3isp.h
> >> +++ b/include/linux/omap3isp.h
> >> @@ -27,6 +27,11 @@
> >>
> >> #ifndef OMAP3_ISP_USER_H
> >> #define OMAP3_ISP_USER_H
> >>
> >> +#ifdef __KERNEL__
> >> +#include <linux/time.h> /* need struct timespec */
> >> +#else
> >> +#include <sys/time.h>
> >> +#endif
> >>
> >> #include <linux/types.h>
> >> #include <linux/videodev2.h>
> >>
> >> @@ -164,7 +169,7 @@ struct omap3isp_h3a_aewb_config {
> >>
> >> * @config_counter: Number of the configuration associated with the
> >> data.
> >> */
> >>
> >> struct omap3isp_stat_data {
> >>
> >> - struct timeval ts;
> >> + struct timespec ts;
> >
> > NACK. That breaks userspace API, as this structure is part of an ioctl.
> >
> > It is too late to touch here. Please keep timeval. It is ok to fill it
> > with a mononotic time, but replacing it is an API breakage.
>
> I beg to present a differing opinion.
>
> The timestamp that has been taken from a realtime clock has NOT been
> useful to begin with in this context: the OMAP3ISP driver has used
> monotonic time on video buffers since the very beginning of its
> existence in mainline kernel. As no-one has complained about this ---
> except Antoine very recently --- I'm pretty certain we wouldn't be
> breaking any application by changing this. The statistics timestamp is
> only useful when it's comparable to other timestamps (from video buffers
> and events), which this patch achieves.
I second this opinion. We're not chaging the size of the omap3isp_stat_data
structure here, and I'm very confident that there's currently no user of the
ts field.
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers
2012-09-27 19:49 ` Sakari Ailus
2012-09-27 23:26 ` Laurent Pinchart
@ 2012-10-01 12:00 ` Mauro Carvalho Chehab
1 sibling, 0 replies; 5+ messages in thread
From: Mauro Carvalho Chehab @ 2012-10-01 12:00 UTC (permalink / raw)
To: Sakari Ailus; +Cc: Laurent Pinchart, linux-media, Antoine Reversat
Em 27-09-2012 16:49, Sakari Ailus escreveu:
> Hi Mauro,
>
> Mauro Carvalho Chehab wrote:
>> Em Fri, 14 Sep 2012 23:57:48 +0200
>> Laurent Pinchart <laurent.pinchart@ideasonboard.com> escreveu:
...
>>> struct omap3isp_stat_data {
>>> - struct timeval ts;
>>> + struct timespec ts;
>>
>> NACK. That breaks userspace API, as this structure is part of an ioctl.
>>
>> It is too late to touch here. Please keep timeval. It is ok to fill it with
>> a mononotic time, but replacing it is an API breakage.
>
> I beg to present a differing opinion.
>
> The timestamp that has been taken from a realtime clock has NOT been useful to begin with in this context: the OMAP3ISP driver has used monotonic time on video buffers since the very beginning of its existence in mainline kernel. As no-one has complained about this --- except Antoine very recently --- I'm pretty certain we wouldn't be breaking any application by changing this. The statistics timestamp is only useful when it's comparable to other timestamps (from video buffers and events), which this patch achieves.
Technically, the only gain here would be to improve the precision from microsseconds
to nanosseconds.
Breaking the API due to that could only be justified if you have really fast
sensors that would be able to take more than one picture at the 1 microssecond
period of time.
Regards,
Mauro
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-10-01 12:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-14 21:57 [PATCH v2] omap3isp: Use monotonic timestamps for statistics buffers Laurent Pinchart
2012-09-15 6:32 ` Sakari Ailus
[not found] ` <20120927135233.3acd00a5@redhat.com>
2012-09-27 19:49 ` Sakari Ailus
2012-09-27 23:26 ` Laurent Pinchart
2012-10-01 12:00 ` Mauro Carvalho Chehab
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).