Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1211386 > unrolled thread
| Started by | "Christopher S. Hall" <christopher.s.hall@intel.com> |
|---|---|
| First post | 2015-08-22 04:00 +0200 |
| Last post | 2015-09-05 00:00 +0200 |
| Articles | 16 — 7 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource "Christopher S. Hall" <christopher.s.hall@intel.com> - 2015-08-22 04:00 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Thomas Gleixner <tglx@linutronix.de> - 2015-08-22 22:20 +0200
RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource "Hall, Christopher S" <christopher.s.hall@intel.com> - 2015-09-04 01:30 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Richard Cochran <richardcochran@gmail.com> - 2015-09-04 10:20 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Peter Zijlstra <peterz@infradead.org> - 2015-09-04 16:30 +0200
RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource "Hall, Christopher S" <christopher.s.hall@intel.com> - 2015-09-04 23:20 +0200
RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Thomas Gleixner <tglx@linutronix.de> - 2015-09-04 15:10 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Peter Zijlstra <peterz@infradead.org> - 2015-09-04 17:20 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Richard Cochran <richardcochran@gmail.com> - 2015-09-04 17:20 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Peter Zijlstra <peterz@infradead.org> - 2015-09-04 17:50 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Thomas Gleixner <tglx@linutronix.de> - 2015-09-04 18:40 +0200
RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource "Hall, Christopher S" <christopher.s.hall@intel.com> - 2015-09-04 23:10 +0200
RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Thomas Gleixner <tglx@linutronix.de> - 2015-09-05 10:50 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Ingo Molnar <mingo@kernel.org> - 2015-09-05 12:10 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource Richard Cochran <richardcochran@gmail.com> - 2015-09-04 17:40 +0200
Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource John Stultz <john.stultz@linaro.org> - 2015-09-05 00:00 +0200
| From | "Christopher S. Hall" <christopher.s.hall@intel.com> |
|---|---|
| Date | 2015-08-22 04:00 +0200 |
| Subject | [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q06ga-4Gw-5@gated-at.bofh.it> |
Add struct correlated_cs with pointer to original clocksource and
function pointer to convert correlated clocksource to the original
Add get_correlated_timestamp() function which given specific correlated_cs
and correlated_ts convert correlated counter value to system time
Signed-off-by: Christopher S. Hall <christopher.s.hall@intel.com>
---
include/linux/clocksource.h | 33 +++++++++++++++++++++++
include/linux/timekeeping.h | 4 +++
kernel/time/timekeeping.c | 65 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 102 insertions(+)
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h
index 278dd27..4bedadb 100644
--- a/include/linux/clocksource.h
+++ b/include/linux/clocksource.h
@@ -258,4 +258,37 @@ void acpi_generic_timer_init(void);
static inline void acpi_generic_timer_init(void) { }
#endif
+/*
+ * struct correlated_cs - Descriptor for a clocksource correlated to another
+ * clocksource
+ * @related_cs: Pointer to the related timekeeping clocksource
+ * @convert: Conversion function to convert a timestamp from
+ * the correlated clocksource to cycles of the related
+ * timekeeping clocksource
+ */
+struct correlated_cs {
+ struct clocksource *related_cs;
+ u64 (*convert)(struct correlated_cs *cs,
+ u64 cycles);
+};
+
+struct correlated_ts;
+
+/**
+ * struct correlated_ts - Descriptor for taking a correlated time stamp
+ * @get_ts: Function to read out a synced system and device
+ * timestamp
+ * @system_ts: The raw system clock timestamp
+ * @device_ts: The raw device timestamp
+ * @system_real: @system_ts converted to CLOCK_REALTIME
+ * @system_raw: @system_ts converted to CLOCK_MONOTONIC_RAW
+ */
+struct correlated_ts {
+ int (*get_ts)(struct correlated_ts *ts);
+ u64 system_ts;
+ u64 device_ts;
+ ktime_t system_real;
+ ktime_t system_raw;
+ void *private;
+};
#endif /* _LINUX_CLOCKSOURCE_H */
diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h
index 6e191e4..a9e1a2d 100644
--- a/include/linux/timekeeping.h
+++ b/include/linux/timekeeping.h
@@ -258,6 +258,10 @@ extern void timekeeping_inject_sleeptime64(struct timespec64 *delta);
*/
extern void getnstime_raw_and_real(struct timespec *ts_raw,
struct timespec *ts_real);
+struct correlated_ts;
+struct correlated_cs;
+extern int get_correlated_timestamp(struct correlated_ts *crt,
+ struct correlated_cs *crs);
/*
* Persistent clock related interfaces
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index bca3667..90a7c6f 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -312,6 +312,19 @@ static inline s64 timekeeping_get_ns(struct tk_read_base *tkr)
return nsec + arch_gettimeoffset();
}
+static inline s64 timekeeping_convert_to_ns(struct tk_read_base *tkr,
+ cycle_t cycles)
+{
+ cycle_t delta;
+ s64 nsec;
+
+ /* calculate the delta since the last update_wall_time */
+ delta = clocksource_delta(cycles, tkr->cycle_last, tkr->mask);
+
+ nsec = delta * tkr->mult + tkr->xtime_nsec;
+ return nsec >> tkr->shift;
+}
+
/**
* update_fast_timekeeper - Update the fast and NMI safe monotonic timekeeper.
* @tkr: Timekeeping readout base from which we take the update
@@ -885,6 +898,58 @@ EXPORT_SYMBOL(getnstime_raw_and_real);
#endif /* CONFIG_NTP_PPS */
/**
+ * get_correlated_timestamp - Get a correlated timestamp
+ *
+ * Reads a timestamp from a device and correlates it to system time
+ */
+int get_correlated_timestamp(struct correlated_ts *crt,
+ struct correlated_cs *crs)
+{
+ struct timekeeper *tk = &tk_core.timekeeper;
+ unsigned long seq;
+ cycles_t cycles;
+ ktime_t base;
+ s64 nsecs;
+ int ret;
+
+ do {
+ seq = read_seqcount_begin(&tk_core.seq);
+ /*
+ * Verify that the correlated clocksoure is related to
+ * the currently installed timekeeper clocksoure
+ */
+ if (tk->tkr_mono.clock != crs->related_cs)
+ return -ENODEV;
+
+ /*
+ * Try to get a timestamp from the device.
+ */
+ ret = crt->get_ts(crt);
+ if (ret)
+ return ret;
+
+ /*
+ * Convert the timestamp to timekeeper clock cycles
+ */
+ cycles = crs->convert(crs, crt->system_ts);
+
+ /* Convert to clock realtime */
+ base = ktime_add(tk->tkr_mono.base,
+ tk_core.timekeeper.offs_real);
+ nsecs = timekeeping_convert_to_ns(&tk->tkr_mono, cycles);
+ crt->system_real = ktime_add_ns(base, nsecs);
+
+ /* Convert to clock raw monotonic */
+ base = tk->tkr_raw.base;
+ nsecs = timekeeping_convert_to_ns(&tk->tkr_raw, cycles);
+ crt->system_raw = ktime_add_ns(base, nsecs);
+
+ } while (read_seqcount_retry(&tk_core.seq, seq));
+ return 0;
+}
+EXPORT_SYMBOL(get_correlated_timestamp);
+
+/**
* do_gettimeofday - Returns the time of day in a timeval
* @tv: pointer to the timeval to be set
*
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2015-08-22 22:20 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q0nqG-4dc-11@gated-at.bofh.it> |
| In reply to | #1211386 |
On Fri, 21 Aug 2015, Christopher S. Hall wrote:
> Add struct correlated_cs with pointer to original clocksource and
> function pointer to convert correlated clocksource to the original
>
> Add get_correlated_timestamp() function which given specific correlated_cs
> and correlated_ts convert correlated counter value to system time
This is not a proper changelog.
1) The subject line lacks a subsystem prefix
timekeeping:
Is the proper choice here
2) The subject line should be short and precise
timekeeping: Add mechanism to gather correlated timestamps
Might be an informative one.
3) The changelog itself should describe the reason why we want this
change, the purpose of the change etc.
Add foo
Add bar
Is pointless because we can see that from the patch itself.
What the patch cannot not explain is the WHY. That's what the
changelog is for.
4) You dropped the authorship
The proper way to do this is to add a 'FROM: author' at the top of
the changelog body.
As I wrote the patch, so I give you a changelog along with it:
<---
Subject: timekeeping: Add mechanism to gather correlated timestamps
From: Thomas Gleixner <tglx@linutronix.de>
Modern Intel hardware provides the so called Always Running Timer
(ART). The TSC which is usually used for timekeeping is derived from
ART and runs with a fixed frequency ratio to it. ART is routed to
devices and allows to take atomic timestamp samples from the device
clock and the ART. One use case is PTP timestamps on network cards. We
want to utilize this feature as it allows us to better correlate the
PTP timestamp to the system time.
In order to gather precise timestamps we need to make sure that the
conversion from ART to TSC and the following conversion from TSC to
clock realtime happens synchronized with the ongoing timekeeping
updates. Otherwise we might convert an ART timestamp from point A in
time with the conversion factors of point B in time. These conversion
factors can differ due to NTP/PTP frequency adjustments and therefor
the resulting clock realtime timestamp would be slightly off, which is
contrary to the whole purpose of synchronized hardware timestamps.
Provide data structures which describe the correlation between two
clocksources and a function to gather correlated and convert
timestamps from a device. The function is as any other timekeeping
function protected against current timekeeper updates via the
timekeeper sequence lock. It calls the device function to gather the
hardware timestamps and converts them to clock real time and clock
monotonic raw.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---->
Can you see the difference?
> Signed-off-by: Christopher S. Hall <christopher.s.hall@intel.com>
> ---
> include/linux/clocksource.h | 33 +++++++++++++++++++++++
> include/linux/timekeeping.h | 4 +++
> kernel/time/timekeeping.c | 65 +++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 102 insertions(+)
>
> diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h
> index 278dd27..4bedadb 100644
> --- a/include/linux/clocksource.h
> +++ b/include/linux/clocksource.h
> @@ -258,4 +258,37 @@ void acpi_generic_timer_init(void);
> static inline void acpi_generic_timer_init(void) { }
> #endif
>
> +/*
> + * struct correlated_cs - Descriptor for a clocksource correlated to another
> + * clocksource
Don't believe checkpatch here. KernelDoc requires that this is one
line, 80 char limit or not.
> /**
> + * get_correlated_timestamp - Get a correlated timestamp
> + *
Lacks the parameter documentation:
* @crt: Pointer to a correlated timestamp structure which provides
* the device specific timestamp function and is used to store
* the raw and the correlated timestamps.
* @crs: Pointer to a correlated clocksource structure which describes
* the correlated clocksource and provides a conversion function
* to the timekeeping clocksource
> + return 0;
> +}
> +EXPORT_SYMBOL(get_correlated_timestamp);
EXPORT_SYMBOL_GPL please.
Thanks,
tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Hall, Christopher S" <christopher.s.hall@intel.com> |
|---|---|
| Date | 2015-09-04 01:30 +0200 |
| Subject | RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q4M77-1l0-3@gated-at.bofh.it> |
| In reply to | #1211502 |
> -----Original Message-----
> From: Thomas Gleixner [mailto:tglx@linutronix.de]
> Sent: Saturday, August 22, 2015 1:17 PM
> To: Hall, Christopher S
> Cc: Kirsher, Jeffrey T; hpa@zytor.com; mingo@redhat.com;
> john.stultz@linaro.org; richardcochran@gmail.com; x86@kernel.org; linux-
> kernel@vger.kernel.org; netdev@vger.kernel.org; intel-wired-
> lan@lists.osuosl.org; peterz@infradead.org
> Subject: Re: [PATCH v3 1/4] Add correlated clocksource deriving system time
> from an auxiliary clocksource
>
> > +/**
> > + * get_correlated_timestamp - Get a correlated timestamp
> > + *
> > + * Reads a timestamp from a device and correlates it to system time
> > + */
> > +int get_correlated_timestamp(struct correlated_ts *crt,
> > + struct correlated_cs *crs)
> > +{
> > + struct timekeeper *tk = &tk_core.timekeeper;
> > + unsigned long seq;
> > + cycles_t cycles;
> > + ktime_t base;
> > + s64 nsecs;
> > + int ret;
> > +
> > + do {
> > + seq = read_seqcount_begin(&tk_core.seq);
> > + /*
> > + * Verify that the correlated clocksoure is related to
> > + * the currently installed timekeeper clocksoure
> > + */
> > + if (tk->tkr_mono.clock != crs->related_cs)
> > + return -ENODEV;
> > +
> > + /*
> > + * Try to get a timestamp from the device.
> > + */
> > + ret = crt->get_ts(crt);
> > + if (ret)
> > + return ret;
> > +
[Re-added code for context]
In addition to the network interface, ART will be used in the audio interface as well.
We need to support the case where an audio co-processor will control the audio device.
In this case, the get_ts() function supplied by the audio driver will be very slow
(several milliseconds) and the result will be out of date by some fraction of that
amount.
This loop makes strict requirements on the latency and recency. Is it possible to relax
that requirement in some way?
For example, supply the ART value as an argument and, in the case of the realtime
clock, keep a short history of clock changes. It would fail in cases where there
are a lot of calls to adjtimex(), but it will would work most of the time.
What can you suggest? Thanks
Chris
> > + } while (read_seqcount_retry(&tk_core.seq, seq));
> > + return 0;
> > +}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Richard Cochran <richardcochran@gmail.com> |
|---|---|
| Date | 2015-09-04 10:20 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q4Uo2-4Qb-13@gated-at.bofh.it> |
| In reply to | #1218606 |
On Thu, Sep 03, 2015 at 11:20:37PM +0000, Hall, Christopher S wrote: > In addition to the network interface, ART will be used in the audio interface as well. > We need to support the case where an audio co-processor will control the audio device. > In this case, the get_ts() function supplied by the audio driver will be very slow > (several milliseconds) and the result will be out of date by some fraction of that > amount. Why does it take milliseconds to read one audio time stamp? Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2015-09-04 16:30 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q50a6-4GT-19@gated-at.bofh.it> |
| In reply to | #1218730 |
On Fri, Sep 04, 2015 at 10:11:22AM +0200, Richard Cochran wrote: > On Thu, Sep 03, 2015 at 11:20:37PM +0000, Hall, Christopher S wrote: > > In addition to the network interface, ART will be used in the audio interface as well. > > We need to support the case where an audio co-processor will control the audio device. > > In this case, the get_ts() function supplied by the audio driver will be very slow > > (several milliseconds) and the result will be out of date by some fraction of that > > amount. > > Why does it take milliseconds to read one audio time stamp? So what I suspect, but please correct me if I'm wrong Chris, is that a DSP will buffer and process audio signals, and only later wake up the main CPU. So by the time the CPU is made aware of the data, it's 'old'. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Hall, Christopher S" <christopher.s.hall@intel.com> |
|---|---|
| Date | 2015-09-04 23:20 +0200 |
| Subject | RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q56yS-5q4-3@gated-at.bofh.it> |
| In reply to | #1219091 |
> -----Original Message----- > From: Peter Zijlstra [mailto:peterz@infradead.org] > Sent: Friday, September 04, 2015 7:28 AM > To: Richard Cochran > Cc: Hall, Christopher S; Thomas Gleixner; Kirsher, Jeffrey T; > hpa@zytor.com; mingo@redhat.com; john.stultz@linaro.org; x86@kernel.org; > linux-kernel@vger.kernel.org; netdev@vger.kernel.org; intel-wired- > lan@lists.osuosl.org > Subject: Re: [PATCH v3 1/4] Add correlated clocksource deriving system time > from an auxiliary clocksource > > > > (several milliseconds) and the result will be out of date by some > fraction of that > > > amount. > > > > Why does it take milliseconds to read one audio time stamp? > > So what I suspect, but please correct me if I'm wrong Chris, is that a > DSP will buffer and process audio signals, and only later wake up the > main CPU. > > So by the time the CPU is made aware of the data, it's 'old'. That's about right. The DSP runs on a 1 ms cadence. Any access to registers controlled by the DSP will take 1-2 DSP ticks to access. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2015-09-04 15:10 +0200 |
| Subject | RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q4YUG-2WE-9@gated-at.bofh.it> |
| In reply to | #1218606 |
On Thu, 3 Sep 2015, Hall, Christopher S wrote: Can you please teach your mail client to add proper line breaks around 80? Your mail renders horrible in a text based mail client. > In addition to the network interface, ART will be used in the audio > interface as well. We need to support the case where an audio > co-processor will control the audio device. In this case, the > get_ts() function supplied by the audio driver will be very slow > (several milliseconds) and the result will be out of date by some > fraction of that amount. You are not telling at all, what this driver is supposed to do, what this get_ts() function is for and how that co-processor thing works. You just make claims, that you need this without explaining WHY. And that WHY is the most interesting part. > This loop makes strict requirements on the latency and recency. Is > it possible to relax that requirement in some way? No. This function is explicitely for the precise timestamp usecase, which is required by PTP and other sane use cases. > For example, supply the ART value as an argument and, in the case of > the realtime clock, keep a short history of clock changes. It would It's not only clock realtime which is affected by those. > fail in cases where there are a lot of calls to adjtimex(), That has nothing to do with lots of adjtimex calls. The kernel does a slow correction of the conversion values itself to avoid time jumping around. > but it will would work most of the time. Will, would, most? - Could, perhaps, sometimes? Looks like a design from the trainwreck engineering departement. We want to have it very precise, but we don't care if it behaves like a random number generator. Can you folks please get your act together and provide coherent explanations about the usecase and the constraints instead of proposing random functions with obscure semantics? Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2015-09-04 17:20 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q50Wt-5QK-3@gated-at.bofh.it> |
| In reply to | #1218909 |
On Fri, Sep 04, 2015 at 03:02:19PM +0200, Thomas Gleixner wrote: > > For example, supply the ART value as an argument and, in the case of > > the realtime clock, keep a short history of clock changes. It would > > It's not only clock realtime which is affected by those. > > > fail in cases where there are a lot of calls to adjtimex(), > > That has nothing to do with lots of adjtimex calls. The kernel does a > slow correction of the conversion values itself to avoid time jumping > around. I think what they're getting at is asking if there's a rate limit to time adjustments, without that, saving the last n transition points will still not cover any given length of history. So what I think they're looking for; is given an upper bound on the DSP delaying its data, come up with a fixed minimal amount of transitions points we must store to cover the history. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Richard Cochran <richardcochran@gmail.com> |
|---|---|
| Date | 2015-09-04 17:20 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q50Wu-5QK-21@gated-at.bofh.it> |
| In reply to | #1219106 |
On Fri, Sep 04, 2015 at 05:10:21PM +0200, Peter Zijlstra wrote: > I think what they're getting at is asking if there's a rate limit to > time adjustments, without that, saving the last n transition points will > still not cover any given length of history. As if the ntp code isn't complex enough already - now we're adding sample histories and adjustment rating limiting? And all for some unknown DSP in a mythical sound card?? Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2015-09-04 17:50 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q51px-6oq-25@gated-at.bofh.it> |
| In reply to | #1219112 |
On Fri, Sep 04, 2015 at 05:17:43PM +0200, Richard Cochran wrote: > On Fri, Sep 04, 2015 at 05:10:21PM +0200, Peter Zijlstra wrote: > > I think what they're getting at is asking if there's a rate limit to > > time adjustments, without that, saving the last n transition points will > > still not cover any given length of history. > > As if the ntp code isn't complex enough already - now we're adding > sample histories and adjustment rating limiting? > > And all for some unknown DSP in a mythical sound card?? Hehe, I'm just a 'translator' here. But going by you answer I'm taking it there isn't in fact a rate-limit to adjustments. Which, even if you were not opposed to that direction, makes it an unfeasible proposition. Also, I'm not thinking its too mythical, sound/soc/intel/ is full of audio DSP stuff, I think a newer version will just gain ART support. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2015-09-04 18:40 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q52bT-7y1-1@gated-at.bofh.it> |
| In reply to | #1219132 |
On Fri, 4 Sep 2015, Peter Zijlstra wrote: > On Fri, Sep 04, 2015 at 05:17:43PM +0200, Richard Cochran wrote: > > On Fri, Sep 04, 2015 at 05:10:21PM +0200, Peter Zijlstra wrote: > > > I think what they're getting at is asking if there's a rate limit to > > > time adjustments, without that, saving the last n transition points will > > > still not cover any given length of history. > > > > As if the ntp code isn't complex enough already - now we're adding > > sample histories and adjustment rating limiting? > > > > And all for some unknown DSP in a mythical sound card?? > > Hehe, I'm just a 'translator' here. But going by you answer I'm taking > it there isn't in fact a rate-limit to adjustments. Which, even if you > were not opposed to that direction, makes it an unfeasible proposition. > > Also, I'm not thinking its too mythical, sound/soc/intel/ is full of > audio DSP stuff, I think a newer version will just gain ART support. Right, but we still do not know how that is going to be used. And that's the key question. As long as that is not answered all can do is wild guessing. Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Hall, Christopher S" <christopher.s.hall@intel.com> |
|---|---|
| Date | 2015-09-04 23:10 +0200 |
| Subject | RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q56pb-5eU-11@gated-at.bofh.it> |
| In reply to | #1219153 |
> -----Original Message----- > From: Thomas Gleixner [mailto:tglx@linutronix.de] > Sent: Friday, September 04, 2015 9:35 AM > To: Peter Zijlstra > Cc: Richard Cochran; Hall, Christopher S; Kirsher, Jeffrey T; > hpa@zytor.com; mingo@redhat.com; john.stultz@linaro.org; x86@kernel.org; > linux-kernel@vger.kernel.org; netdev@vger.kernel.org; intel-wired- > lan@lists.osuosl.org > Subject: Re: [PATCH v3 1/4] Add correlated clocksource deriving system time > from an auxiliary clocksource > > On Fri, 4 Sep 2015, Peter Zijlstra wrote: > > On Fri, Sep 04, 2015 at 05:17:43PM +0200, Richard Cochran wrote: > > > On Fri, Sep 04, 2015 at 05:10:21PM +0200, Peter Zijlstra wrote: > > > > I think what they're getting at is asking if there's a rate limit to > > > > time adjustments, without that, saving the last n transition points > will > > > > still not cover any given length of history. > > > > > > As if the ntp code isn't complex enough already - now we're adding > > > sample histories and adjustment rating limiting? > > > > > > And all for some unknown DSP in a mythical sound card?? > > > > Hehe, I'm just a 'translator' here. But going by you answer I'm taking > > it there isn't in fact a rate-limit to adjustments. Which, even if you > > were not opposed to that direction, makes it an unfeasible proposition. > > > > Also, I'm not thinking its too mythical, sound/soc/intel/ is full of > > audio DSP stuff, I think a newer version will just gain ART support. > > Right, but we still do not know how that is going to be used. And > that's the key question. As long as that is not answered all can do is > wild guessing. It's not wild guessing. We do have it working on other OSs and have a pretty good idea of how it will work. The DSP firmware will be largely identical for Linux. I think now, we have a chicken and egg problem. We can't post audio drivers that break, or are broken by, the current ART interface. How do I move this forward? Should I minimally (I don't know exactly what that means just yet) rewrite the ART interface so that the audio driver is mostly not broken and post that along with the audio driver code? Is this an acceptable approach? > > Thanks, > > tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2015-09-05 10:50 +0200 |
| Subject | RE: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q5hkB-3NW-13@gated-at.bofh.it> |
| In reply to | #1219317 |
On Fri, 4 Sep 2015, Hall, Christopher S wrote: > > Right, but we still do not know how that is going to be used. And > > that's the key question. As long as that is not answered all can do is > > wild guessing. > > It's not wild guessing. We do have it working on other OSs and have > a pretty good idea of how it will work. The DSP firmware will be > largely identical for Linux. I think now, we have a chicken and egg > problem. You have a totally different problem. You are just refusing to explain how all that stuff is supposed to work and what kind of functionality you need exactly. Is it that hard to describe the technical requirements and the presumably assbackwards restrictions of the firmware? Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Date | 2015-09-05 12:10 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q5iA2-5LK-11@gated-at.bofh.it> |
| In reply to | #1219464 |
* Thomas Gleixner <tglx@linutronix.de> wrote: > On Fri, 4 Sep 2015, Hall, Christopher S wrote: > > > Right, but we still do not know how that is going to be used. And > > > that's the key question. As long as that is not answered all can do is > > > wild guessing. > > > > It's not wild guessing. We do have it working on other OSs and have a pretty > > good idea of how it will work. The DSP firmware will be largely identical for > > Linux. I think now, we have a chicken and egg problem. > > You have a totally different problem. You are just refusing to explain how all > that stuff is supposed to work and what kind of functionality you need exactly. Yeah, so I'm just going to NAK this until things are improved: NAKed-by: Ingo Molnar <mingo@kernel.org> it's not like we are overly bored in timekeeping and need the extra complexity as much as possible. Proper, comprehensive, proactive technical description is needed, with proper changelogs, not just half-baked notes. If all that is fixed I'll lift my NAK. Thanks, Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Richard Cochran <richardcochran@gmail.com> |
|---|---|
| Date | 2015-09-04 17:40 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q51fQ-6d7-27@gated-at.bofh.it> |
| In reply to | #1218909 |
On Fri, Sep 04, 2015 at 03:02:19PM +0200, Thomas Gleixner wrote: > No. This function is explicitely for the precise timestamp usecase, > which is required by PTP and other sane use cases. Right. The audio department only needs to know the (ART, ptp) offset. The kernel and user space never need the (ART, mediaclock) offset. That is private information for the DSP. As long as user space reads (ART, ptp) and provides this regulary to the audio DSP, then the DSP will have all the information it needs to figure out (ptp, mediaclock). Thanks, Richard -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | John Stultz <john.stultz@linaro.org> |
|---|---|
| Date | 2015-09-05 00:00 +0200 |
| Subject | Re: [PATCH v3 1/4] Add correlated clocksource deriving system time from an auxiliary clocksource |
| Message-ID | <q57bA-68F-7@gated-at.bofh.it> |
| In reply to | #1218606 |
On Thu, Sep 3, 2015 at 4:20 PM, Hall, Christopher S <christopher.s.hall@intel.com> wrote: > For example, supply the ART value as an argument and, in the case of the realtime > clock, keep a short history of clock changes. It would fail in cases where there > are a lot of calls to adjtimex(), but it will would work most of the time. So, I really don't think something like this would be reasonable. For one, keeping track of the adjtimex adjustments would be difficult enough to do sanely, but the real issue is that the clock has its own long-term error correction adjustments that it does in order to keep long term frequency accuracy with coarsely adjusted clocksources. Trying to track those small oscillation intervals would be even more complicated. I still think that being able to calculate the CLOCK_MONOTONIC_RAW value for a given ART counter value is reasonable, and then one can use the getnstime_raw_and_real() to get a current raw/real sync point, which you can then calculate the raw delta, and subtract that from the sycned real timestamp. You're error there would be bound by the maxium clocksource adjustment rate * the raw-delta interval length. To clarify on the need to understand if this error would be reasonable, can you provide a sense of what the delay from an ART read to trying to calculate a REALTIME value might be? thanks -john -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web