2000-03-20 14:09:06 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
1994-05-24 10:09:53 +00:00
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
#include "opt_ntp.h"
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
2000-03-20 14:09:06 +00:00
|
|
|
#include <sys/timetc.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/systm.h>
|
1994-09-18 20:40:01 +00:00
|
|
|
#include <sys/timex.h>
|
1999-03-11 15:09:51 +00:00
|
|
|
#include <sys/timepps.h>
|
1997-12-08 23:00:24 +00:00
|
|
|
|
1998-10-23 10:44:52 +00:00
|
|
|
/*
|
2002-04-26 21:51:08 +00:00
|
|
|
* Implement a dummy timecounter which we can use until we get a real one
|
|
|
|
* in the air. This allows the console and other early stuff to use
|
|
|
|
* timeservices.
|
1998-10-23 10:44:52 +00:00
|
|
|
*/
|
|
|
|
|
2002-04-26 21:51:08 +00:00
|
|
|
static unsigned
|
|
|
|
dummy_get_timecount(struct timecounter *tc)
|
|
|
|
{
|
|
|
|
static unsigned now;
|
|
|
|
|
|
|
|
return (++now);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct timecounter dummy_timecounter = {
|
|
|
|
dummy_get_timecount,
|
|
|
|
0,
|
|
|
|
~0u,
|
|
|
|
1000000,
|
|
|
|
"dummy"
|
|
|
|
};
|
|
|
|
|
|
|
|
struct timehands {
|
|
|
|
/* These fields must be initialized by the driver. */
|
|
|
|
struct timecounter *tc_counter;
|
|
|
|
int64_t tc_adjustment;
|
|
|
|
u_int64_t tc_scale;
|
|
|
|
unsigned tc_offset_count;
|
|
|
|
struct bintime tc_offset;
|
|
|
|
struct timeval tc_microtime;
|
|
|
|
struct timespec tc_nanotime;
|
|
|
|
/* Fields not to be copied in tc_windup start with tc_generation */
|
|
|
|
volatile unsigned tc_generation;
|
|
|
|
struct timehands *tc_next;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern struct timehands th0;
|
|
|
|
static struct timehands th9 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th0};
|
|
|
|
static struct timehands th8 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th9};
|
|
|
|
static struct timehands th7 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th8};
|
|
|
|
static struct timehands th6 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th7};
|
|
|
|
static struct timehands th5 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th6};
|
|
|
|
static struct timehands th4 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th5};
|
|
|
|
static struct timehands th3 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th4};
|
|
|
|
static struct timehands th2 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th3};
|
|
|
|
static struct timehands th1 = { NULL, 0, 0, 0, {0, 0}, {0, 0}, {0, 0}, 1, &th2};
|
2002-04-27 07:28:54 +00:00
|
|
|
static struct timehands th0 = {
|
|
|
|
&dummy_timecounter,
|
|
|
|
0,
|
|
|
|
18446744073709ULL, /* 2^64/1000000 */
|
|
|
|
0,
|
2002-04-28 16:51:36 +00:00
|
|
|
{1, 0},
|
2002-04-27 07:28:54 +00:00
|
|
|
{0, 0},
|
|
|
|
{0, 0},
|
|
|
|
1,
|
|
|
|
&th1
|
|
|
|
};
|
2002-04-26 21:51:08 +00:00
|
|
|
|
|
|
|
static struct timehands *volatile timehands = &th0;
|
|
|
|
struct timecounter *timecounter = &dummy_timecounter;
|
|
|
|
static struct timecounter *timecounters = &dummy_timecounter;
|
1998-10-23 10:44:52 +00:00
|
|
|
|
1998-03-30 09:56:58 +00:00
|
|
|
time_t time_second;
|
|
|
|
|
2002-02-07 21:21:55 +00:00
|
|
|
struct bintime boottimebin;
|
1999-09-13 14:22:27 +00:00
|
|
|
struct timeval boottime;
|
|
|
|
SYSCTL_STRUCT(_kern, KERN_BOOTTIME, boottime, CTLFLAG_RD,
|
|
|
|
&boottime, timeval, "System boottime");
|
|
|
|
|
2000-03-20 14:09:06 +00:00
|
|
|
SYSCTL_NODE(_kern, OID_AUTO, timecounter, CTLFLAG_RW, 0, "");
|
|
|
|
|
2002-04-26 10:19:29 +00:00
|
|
|
#define TC_STATS(foo) \
|
|
|
|
static unsigned foo; \
|
|
|
|
SYSCTL_INT(_kern_timecounter, OID_AUTO, foo, CTLFLAG_RD, & foo, 0, "")
|
|
|
|
|
|
|
|
TC_STATS(nbinuptime); TC_STATS(nnanouptime); TC_STATS(nmicrouptime);
|
|
|
|
TC_STATS(nbintime); TC_STATS(nnanotime); TC_STATS(nmicrotime);
|
|
|
|
TC_STATS(ngetbinuptime); TC_STATS(ngetnanouptime); TC_STATS(ngetmicrouptime);
|
|
|
|
TC_STATS(ngetbintime); TC_STATS(ngetnanotime); TC_STATS(ngetmicrotime);
|
|
|
|
|
|
|
|
#undef TC_STATS
|
1998-11-29 20:31:02 +00:00
|
|
|
|
2002-04-26 12:37:36 +00:00
|
|
|
static void tc_windup(void);
|
|
|
|
|
1998-10-23 10:44:52 +00:00
|
|
|
|
1998-05-28 09:30:28 +00:00
|
|
|
static __inline unsigned
|
2002-04-26 21:51:08 +00:00
|
|
|
tc_delta(struct timehands *tc)
|
1998-05-28 09:30:28 +00:00
|
|
|
{
|
|
|
|
|
2002-04-26 21:51:08 +00:00
|
|
|
return ((tc->tc_counter->tc_get_timecount(tc->tc_counter) -
|
|
|
|
tc->tc_offset_count) & tc->tc_counter->tc_counter_mask);
|
1998-05-28 09:30:28 +00:00
|
|
|
}
|
1998-03-26 20:54:05 +00:00
|
|
|
|
2002-02-07 21:21:55 +00:00
|
|
|
void
|
|
|
|
binuptime(struct bintime *bt)
|
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-02-24 20:04:07 +00:00
|
|
|
unsigned gen;
|
|
|
|
|
|
|
|
nbinuptime++;
|
|
|
|
do {
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-02-24 20:04:07 +00:00
|
|
|
gen = tc->tc_generation;
|
|
|
|
*bt = tc->tc_offset;
|
2002-04-26 10:11:02 +00:00
|
|
|
bintime_addx(bt, tc->tc_scale * tc_delta(tc));
|
2002-02-24 20:04:07 +00:00
|
|
|
} while (gen == 0 || gen != tc->tc_generation);
|
2002-02-07 21:21:55 +00:00
|
|
|
}
|
|
|
|
|
2002-04-26 10:19:29 +00:00
|
|
|
void
|
|
|
|
nanouptime(struct timespec *ts)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
|
|
|
nnanouptime++;
|
|
|
|
binuptime(&bt);
|
|
|
|
bintime2timespec(&bt, ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
microuptime(struct timeval *tv)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
|
|
|
nmicrouptime++;
|
|
|
|
binuptime(&bt);
|
|
|
|
bintime2timeval(&bt, tv);
|
|
|
|
}
|
|
|
|
|
2002-02-07 21:21:55 +00:00
|
|
|
void
|
|
|
|
bintime(struct bintime *bt)
|
|
|
|
{
|
|
|
|
|
2002-02-24 20:04:07 +00:00
|
|
|
nbintime++;
|
2002-02-07 21:21:55 +00:00
|
|
|
binuptime(bt);
|
|
|
|
bintime_add(bt, &boottimebin);
|
|
|
|
}
|
|
|
|
|
1998-03-26 20:54:05 +00:00
|
|
|
void
|
2002-04-26 10:19:29 +00:00
|
|
|
nanotime(struct timespec *ts)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
|
|
|
nnanotime++;
|
|
|
|
bintime(&bt);
|
|
|
|
bintime2timespec(&bt, ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
microtime(struct timeval *tv)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
|
|
|
nmicrotime++;
|
|
|
|
bintime(&bt);
|
|
|
|
bintime2timeval(&bt, tv);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getbinuptime(struct bintime *bt)
|
1998-03-26 20:54:05 +00:00
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-02-24 20:04:07 +00:00
|
|
|
unsigned gen;
|
1998-03-26 20:54:05 +00:00
|
|
|
|
2002-04-26 10:19:29 +00:00
|
|
|
ngetbinuptime++;
|
2002-02-24 20:04:07 +00:00
|
|
|
do {
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-02-24 20:04:07 +00:00
|
|
|
gen = tc->tc_generation;
|
2002-04-26 10:19:29 +00:00
|
|
|
*bt = tc->tc_offset;
|
2002-02-24 20:04:07 +00:00
|
|
|
} while (gen == 0 || gen != tc->tc_generation);
|
1998-04-04 13:26:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-04-26 10:19:29 +00:00
|
|
|
getnanouptime(struct timespec *tsp)
|
1998-04-04 13:26:20 +00:00
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-02-24 20:04:07 +00:00
|
|
|
unsigned gen;
|
1998-04-04 13:26:20 +00:00
|
|
|
|
2002-04-26 10:19:29 +00:00
|
|
|
ngetnanouptime++;
|
2002-02-24 20:04:07 +00:00
|
|
|
do {
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-02-24 20:04:07 +00:00
|
|
|
gen = tc->tc_generation;
|
2002-04-26 10:19:29 +00:00
|
|
|
bintime2timespec(&tc->tc_offset, tsp);
|
2002-02-24 20:04:07 +00:00
|
|
|
} while (gen == 0 || gen != tc->tc_generation);
|
1998-04-04 13:26:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-05-17 11:53:46 +00:00
|
|
|
getmicrouptime(struct timeval *tvp)
|
1998-04-04 13:26:20 +00:00
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-02-24 20:04:07 +00:00
|
|
|
unsigned gen;
|
1998-04-04 13:26:20 +00:00
|
|
|
|
2000-03-20 14:09:06 +00:00
|
|
|
ngetmicrouptime++;
|
2002-02-24 20:04:07 +00:00
|
|
|
do {
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-02-24 20:04:07 +00:00
|
|
|
gen = tc->tc_generation;
|
|
|
|
bintime2timeval(&tc->tc_offset, tvp);
|
|
|
|
} while (gen == 0 || gen != tc->tc_generation);
|
1998-03-26 20:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-04-26 10:19:29 +00:00
|
|
|
getbintime(struct bintime *bt)
|
1998-03-26 20:54:05 +00:00
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-02-24 20:04:07 +00:00
|
|
|
unsigned gen;
|
1998-03-26 20:54:05 +00:00
|
|
|
|
2002-04-26 10:19:29 +00:00
|
|
|
ngetbintime++;
|
2002-02-24 20:04:07 +00:00
|
|
|
do {
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-02-24 20:04:07 +00:00
|
|
|
gen = tc->tc_generation;
|
2002-04-26 10:19:29 +00:00
|
|
|
*bt = tc->tc_offset;
|
2002-02-24 20:04:07 +00:00
|
|
|
} while (gen == 0 || gen != tc->tc_generation);
|
2002-04-26 10:19:29 +00:00
|
|
|
bintime_add(bt, &boottimebin);
|
1998-03-26 20:54:05 +00:00
|
|
|
}
|
|
|
|
|
1998-02-15 13:55:06 +00:00
|
|
|
void
|
2002-04-26 10:19:29 +00:00
|
|
|
getnanotime(struct timespec *tsp)
|
1998-02-20 16:36:17 +00:00
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-04-26 10:19:29 +00:00
|
|
|
unsigned gen;
|
1998-02-20 16:36:17 +00:00
|
|
|
|
2002-04-26 10:19:29 +00:00
|
|
|
ngetnanotime++;
|
|
|
|
do {
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-04-26 10:19:29 +00:00
|
|
|
gen = tc->tc_generation;
|
|
|
|
*tsp = tc->tc_nanotime;
|
|
|
|
} while (gen == 0 || gen != tc->tc_generation);
|
1998-02-20 16:36:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-04-26 10:19:29 +00:00
|
|
|
getmicrotime(struct timeval *tvp)
|
1998-02-20 16:36:17 +00:00
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-04-26 10:19:29 +00:00
|
|
|
unsigned gen;
|
1998-02-20 16:36:17 +00:00
|
|
|
|
2002-04-26 10:19:29 +00:00
|
|
|
ngetmicrotime++;
|
|
|
|
do {
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-04-26 10:19:29 +00:00
|
|
|
gen = tc->tc_generation;
|
|
|
|
*tvp = tc->tc_microtime;
|
|
|
|
} while (gen == 0 || gen != tc->tc_generation);
|
1998-02-20 16:36:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-04-26 21:51:08 +00:00
|
|
|
tc_setscales(struct timehands *tc)
|
1998-02-20 16:36:17 +00:00
|
|
|
{
|
|
|
|
u_int64_t scale;
|
|
|
|
|
2002-02-07 21:21:55 +00:00
|
|
|
/* Sacrifice the lower bit to the deity for code clarity */
|
|
|
|
scale = 1ULL << 63;
|
2002-02-22 12:59:20 +00:00
|
|
|
/*
|
|
|
|
* We get nanoseconds with 32 bit binary fraction and want
|
|
|
|
* 64 bit binary fraction: x = a * 2^32 / 10^9 = a * 4.294967296
|
2002-04-15 12:23:11 +00:00
|
|
|
* The range is +/- 5000PPM so we can only multiply by about 850
|
|
|
|
* without overflowing. The best suitable fraction is 2199/512.
|
|
|
|
* Divide by 2 times 512 to match the temporary lower precision.
|
2002-02-22 12:59:20 +00:00
|
|
|
*/
|
2002-04-15 12:23:11 +00:00
|
|
|
scale += (tc->tc_adjustment / 1024) * 2199;
|
2002-04-26 21:51:08 +00:00
|
|
|
scale /= tc->tc_counter->tc_frequency;
|
2002-02-07 21:21:55 +00:00
|
|
|
tc->tc_scale = scale * 2;
|
1998-02-20 16:36:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-03-20 14:09:06 +00:00
|
|
|
tc_init(struct timecounter *tc)
|
1998-02-20 16:36:17 +00:00
|
|
|
{
|
1998-10-23 10:44:52 +00:00
|
|
|
|
2002-04-26 21:51:08 +00:00
|
|
|
tc->tc_next = timecounters;
|
|
|
|
timecounters = tc;
|
1998-10-23 10:44:52 +00:00
|
|
|
printf("Timecounter \"%s\" frequency %lu Hz\n",
|
|
|
|
tc->tc_name, (u_long)tc->tc_frequency);
|
1998-02-20 16:36:17 +00:00
|
|
|
timecounter = tc;
|
2002-04-26 21:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u_int32_t
|
|
|
|
tc_getfrequency(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (timehands->tc_counter->tc_frequency);
|
1998-02-20 16:36:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-03-20 14:09:06 +00:00
|
|
|
tc_setclock(struct timespec *ts)
|
1998-02-15 13:55:06 +00:00
|
|
|
{
|
1998-04-04 13:26:20 +00:00
|
|
|
struct timespec ts2;
|
|
|
|
|
1998-05-17 11:53:46 +00:00
|
|
|
nanouptime(&ts2);
|
1998-04-04 13:26:20 +00:00
|
|
|
boottime.tv_sec = ts->tv_sec - ts2.tv_sec;
|
|
|
|
boottime.tv_usec = (ts->tv_nsec - ts2.tv_nsec) / 1000;
|
|
|
|
if (boottime.tv_usec < 0) {
|
|
|
|
boottime.tv_usec += 1000000;
|
|
|
|
boottime.tv_sec--;
|
|
|
|
}
|
2002-02-07 21:21:55 +00:00
|
|
|
timeval2bintime(&boottime, &boottimebin);
|
1998-04-04 13:26:20 +00:00
|
|
|
/* fiddle all the little crinkly bits around the fiords... */
|
2000-03-20 14:09:06 +00:00
|
|
|
tc_windup();
|
1998-02-15 13:55:06 +00:00
|
|
|
}
|
1998-02-20 16:36:17 +00:00
|
|
|
|
2002-04-26 12:37:36 +00:00
|
|
|
static void
|
2000-03-20 14:09:06 +00:00
|
|
|
tc_windup(void)
|
1998-02-20 16:36:17 +00:00
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc, *tco;
|
2002-02-07 21:21:55 +00:00
|
|
|
struct bintime bt;
|
2002-04-26 21:51:08 +00:00
|
|
|
unsigned ogen, delta, ncount;
|
2002-02-07 21:21:55 +00:00
|
|
|
int i;
|
1998-02-20 16:36:17 +00:00
|
|
|
|
2002-04-26 21:51:08 +00:00
|
|
|
ncount = 0; /* GCC is lame */
|
|
|
|
tco = timehands;
|
2002-02-24 20:04:07 +00:00
|
|
|
tc = tco->tc_next;
|
|
|
|
ogen = tc->tc_generation;
|
|
|
|
tc->tc_generation = 0;
|
2002-04-26 21:51:08 +00:00
|
|
|
bcopy(tco, tc, __offsetof(struct timehands, tc_generation));
|
2002-04-26 10:11:02 +00:00
|
|
|
delta = tc_delta(tc);
|
2002-04-26 21:51:08 +00:00
|
|
|
if (tc->tc_counter != timecounter)
|
|
|
|
ncount = timecounter->tc_get_timecount(timecounter);
|
2002-02-24 20:04:07 +00:00
|
|
|
tc->tc_offset_count += delta;
|
2002-04-26 21:51:08 +00:00
|
|
|
tc->tc_offset_count &= tc->tc_counter->tc_counter_mask;
|
2002-02-24 20:04:07 +00:00
|
|
|
bintime_addx(&tc->tc_offset, tc->tc_scale * delta);
|
1998-07-04 19:12:21 +00:00
|
|
|
/*
|
|
|
|
* We may be inducing a tiny error here, the tc_poll_pps() may
|
2002-04-26 10:11:02 +00:00
|
|
|
* process a latched count which happens after the tc_delta()
|
1998-07-04 19:12:21 +00:00
|
|
|
* in sync_other_counter(), which would extend the previous
|
|
|
|
* counters parameters into the domain of this new one.
|
|
|
|
* Since the timewindow is very small for this, the error is
|
|
|
|
* going to be only a few weenieseconds (as Dave Mills would
|
|
|
|
* say), so lets just not talk more about it, OK ?
|
|
|
|
*/
|
2002-04-26 21:51:08 +00:00
|
|
|
if (tco->tc_counter->tc_poll_pps)
|
|
|
|
tco->tc_counter->tc_poll_pps(tco->tc_counter);
|
2002-04-26 21:31:44 +00:00
|
|
|
for (i = tc->tc_offset.sec - tco->tc_offset.sec; i > 0; i--)
|
|
|
|
ntp_update_second(&tc->tc_adjustment, &tc->tc_offset.sec);
|
2002-04-27 07:28:54 +00:00
|
|
|
if (tc->tc_counter != timecounter) {
|
|
|
|
tc->tc_counter = timecounter;
|
|
|
|
tc->tc_offset_count = ncount;
|
|
|
|
}
|
2002-04-26 21:31:44 +00:00
|
|
|
tc_setscales(tc);
|
1998-03-16 10:19:12 +00:00
|
|
|
|
2002-02-07 21:21:55 +00:00
|
|
|
bt = tc->tc_offset;
|
|
|
|
bintime_add(&bt, &boottimebin);
|
|
|
|
bintime2timeval(&bt, &tc->tc_microtime);
|
|
|
|
bintime2timespec(&bt, &tc->tc_nanotime);
|
2002-02-24 20:04:07 +00:00
|
|
|
ogen++;
|
|
|
|
if (ogen == 0)
|
|
|
|
ogen++;
|
|
|
|
tc->tc_generation = ogen;
|
2002-02-07 21:21:55 +00:00
|
|
|
time_second = tc->tc_microtime.tv_sec;
|
2002-04-26 21:51:08 +00:00
|
|
|
timehands = tc;
|
1998-02-20 16:36:17 +00:00
|
|
|
}
|
|
|
|
|
1999-07-18 15:07:20 +00:00
|
|
|
static int
|
2000-07-04 11:25:35 +00:00
|
|
|
sysctl_kern_timecounter_hardware(SYSCTL_HANDLER_ARGS)
|
1999-07-18 15:07:20 +00:00
|
|
|
{
|
|
|
|
char newname[32];
|
|
|
|
struct timecounter *newtc, *tc;
|
|
|
|
int error;
|
|
|
|
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timecounter;
|
1999-07-18 15:07:20 +00:00
|
|
|
strncpy(newname, tc->tc_name, sizeof(newname));
|
|
|
|
error = sysctl_handle_string(oidp, &newname[0], sizeof(newname), req);
|
2002-04-26 21:51:08 +00:00
|
|
|
if (error != 0 && req->newptr == NULL && !strcmp(newname, tc->tc_name))
|
|
|
|
return(error);
|
|
|
|
for (newtc = timecounters; newtc != NULL; newtc = newtc->tc_next) {
|
|
|
|
if (strcmp(newname, newtc->tc_name))
|
|
|
|
continue;
|
|
|
|
/* Warm up new timecounter. */
|
|
|
|
(void)newtc->tc_get_timecount(newtc);
|
|
|
|
(void)newtc->tc_get_timecount(newtc);
|
|
|
|
timecounter = newtc;
|
|
|
|
return (0);
|
1999-07-18 15:07:20 +00:00
|
|
|
}
|
2002-04-26 21:51:08 +00:00
|
|
|
return (EINVAL);
|
1999-07-18 15:07:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_PROC(_kern_timecounter, OID_AUTO, hardware, CTLTYPE_STRING | CTLFLAG_RW,
|
|
|
|
0, 0, sysctl_kern_timecounter_hardware, "A", "");
|
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
pps_ioctl(u_long cmd, caddr_t data, struct pps_state *pps)
|
1998-02-20 16:36:17 +00:00
|
|
|
{
|
1999-10-09 14:49:56 +00:00
|
|
|
pps_params_t *app;
|
|
|
|
struct pps_fetch_args *fapi;
|
1999-10-10 16:18:36 +00:00
|
|
|
#ifdef PPS_SYNC
|
1999-10-09 14:49:56 +00:00
|
|
|
struct pps_kcbind_args *kapi;
|
1999-10-10 16:18:36 +00:00
|
|
|
#endif
|
1999-10-09 14:49:56 +00:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case PPS_IOC_CREATE:
|
|
|
|
return (0);
|
|
|
|
case PPS_IOC_DESTROY:
|
|
|
|
return (0);
|
|
|
|
case PPS_IOC_SETPARAMS:
|
|
|
|
app = (pps_params_t *)data;
|
|
|
|
if (app->mode & ~pps->ppscap)
|
|
|
|
return (EINVAL);
|
|
|
|
pps->ppsparam = *app;
|
|
|
|
return (0);
|
|
|
|
case PPS_IOC_GETPARAMS:
|
|
|
|
app = (pps_params_t *)data;
|
|
|
|
*app = pps->ppsparam;
|
|
|
|
app->api_version = PPS_API_VERS_1;
|
|
|
|
return (0);
|
|
|
|
case PPS_IOC_GETCAP:
|
|
|
|
*(int*)data = pps->ppscap;
|
|
|
|
return (0);
|
|
|
|
case PPS_IOC_FETCH:
|
|
|
|
fapi = (struct pps_fetch_args *)data;
|
|
|
|
if (fapi->tsformat && fapi->tsformat != PPS_TSFMT_TSPEC)
|
|
|
|
return (EINVAL);
|
|
|
|
if (fapi->timeout.tv_sec || fapi->timeout.tv_nsec)
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
pps->ppsinfo.current_mode = pps->ppsparam.mode;
|
|
|
|
fapi->pps_info_buf = pps->ppsinfo;
|
|
|
|
return (0);
|
|
|
|
case PPS_IOC_KCBIND:
|
|
|
|
#ifdef PPS_SYNC
|
|
|
|
kapi = (struct pps_kcbind_args *)data;
|
|
|
|
/* XXX Only root should be able to do this */
|
|
|
|
if (kapi->tsformat && kapi->tsformat != PPS_TSFMT_TSPEC)
|
|
|
|
return (EINVAL);
|
|
|
|
if (kapi->kernel_consumer != PPS_KC_HARDPPS)
|
|
|
|
return (EINVAL);
|
|
|
|
if (kapi->edge & ~pps->ppscap)
|
|
|
|
return (EINVAL);
|
|
|
|
pps->kcmode = kapi->edge;
|
|
|
|
return (0);
|
|
|
|
#else
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return (ENOTTY);
|
|
|
|
}
|
1999-03-11 15:09:51 +00:00
|
|
|
}
|
1998-03-16 10:19:12 +00:00
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
void
|
|
|
|
pps_init(struct pps_state *pps)
|
|
|
|
{
|
|
|
|
pps->ppscap |= PPS_TSFMT_TSPEC;
|
|
|
|
if (pps->ppscap & PPS_CAPTUREASSERT)
|
|
|
|
pps->ppscap |= PPS_OFFSETASSERT;
|
|
|
|
if (pps->ppscap & PPS_CAPTURECLEAR)
|
|
|
|
pps->ppscap |= PPS_OFFSETCLEAR;
|
1998-02-20 16:36:17 +00:00
|
|
|
}
|
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
void
|
2002-04-26 20:24:28 +00:00
|
|
|
pps_capture(struct pps_state *pps)
|
|
|
|
{
|
2002-04-26 21:51:08 +00:00
|
|
|
struct timehands *tc;
|
2002-04-26 20:24:28 +00:00
|
|
|
|
2002-04-26 21:51:08 +00:00
|
|
|
tc = timehands;
|
2002-04-26 20:24:28 +00:00
|
|
|
pps->captc = tc;
|
|
|
|
pps->capgen = tc->tc_generation;
|
2002-04-26 21:51:08 +00:00
|
|
|
pps->capcount = tc->tc_counter->tc_get_timecount(tc->tc_counter);
|
2002-04-26 20:24:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pps_event(struct pps_state *pps, int event)
|
1998-02-20 16:36:17 +00:00
|
|
|
{
|
1999-03-11 15:09:51 +00:00
|
|
|
struct timespec ts, *tsp, *osp;
|
|
|
|
unsigned tcount, *pcount;
|
2002-02-07 21:21:55 +00:00
|
|
|
struct bintime bt;
|
1999-03-11 15:09:51 +00:00
|
|
|
int foff, fhard;
|
|
|
|
pps_seq_t *pseq;
|
|
|
|
|
2002-04-26 20:24:28 +00:00
|
|
|
/* If the timecounter were wound up, bail. */
|
|
|
|
if (pps->capgen != pps->capgen)
|
|
|
|
return;
|
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
/* Things would be easier with arrays... */
|
|
|
|
if (event == PPS_CAPTUREASSERT) {
|
|
|
|
tsp = &pps->ppsinfo.assert_timestamp;
|
|
|
|
osp = &pps->ppsparam.assert_offset;
|
|
|
|
foff = pps->ppsparam.mode & PPS_OFFSETASSERT;
|
1999-10-09 14:49:56 +00:00
|
|
|
fhard = pps->kcmode & PPS_CAPTUREASSERT;
|
1999-03-11 15:09:51 +00:00
|
|
|
pcount = &pps->ppscount[0];
|
|
|
|
pseq = &pps->ppsinfo.assert_sequence;
|
|
|
|
} else {
|
|
|
|
tsp = &pps->ppsinfo.clear_timestamp;
|
|
|
|
osp = &pps->ppsparam.clear_offset;
|
|
|
|
foff = pps->ppsparam.mode & PPS_OFFSETCLEAR;
|
1999-10-09 14:49:56 +00:00
|
|
|
fhard = pps->kcmode & PPS_CAPTURECLEAR;
|
1999-03-11 15:09:51 +00:00
|
|
|
pcount = &pps->ppscount[1];
|
|
|
|
pseq = &pps->ppsinfo.clear_sequence;
|
|
|
|
}
|
1998-03-16 10:19:12 +00:00
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
/* The timecounter changed: bail */
|
|
|
|
if (!pps->ppstc ||
|
2002-04-26 21:51:08 +00:00
|
|
|
pps->ppstc != pps->captc->tc_counter ||
|
|
|
|
pps->captc->tc_counter != timehands->tc_counter) {
|
|
|
|
pps->ppstc = pps->captc->tc_counter;
|
2002-04-26 20:24:28 +00:00
|
|
|
*pcount = pps->capcount;
|
|
|
|
#ifdef PPS_SYNC
|
|
|
|
pps->ppscount[2] = pps->capcount;
|
|
|
|
#endif
|
1999-03-11 15:09:51 +00:00
|
|
|
return;
|
|
|
|
}
|
1998-02-20 16:36:17 +00:00
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
/* Nothing really happened */
|
2002-04-26 20:24:28 +00:00
|
|
|
if (*pcount == pps->capcount)
|
1999-03-11 15:09:51 +00:00
|
|
|
return;
|
1998-11-29 20:31:02 +00:00
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
/* Convert the count to timespec */
|
2002-04-26 20:24:28 +00:00
|
|
|
tcount = pps->capcount - pps->captc->tc_offset_count;
|
2002-04-26 21:51:08 +00:00
|
|
|
tcount &= pps->captc->tc_counter->tc_counter_mask;
|
2002-04-26 20:24:28 +00:00
|
|
|
bt = pps->captc->tc_offset;
|
|
|
|
bintime_addx(&bt, pps->captc->tc_scale * tcount);
|
2002-02-07 21:21:55 +00:00
|
|
|
bintime2timespec(&bt, &ts);
|
1999-03-11 15:09:51 +00:00
|
|
|
|
2002-04-26 20:24:28 +00:00
|
|
|
/* If the timecounter were wound up, bail. */
|
|
|
|
if (pps->capgen != pps->capgen)
|
|
|
|
return;
|
|
|
|
|
|
|
|
*pcount = pps->capcount;
|
1999-03-11 15:09:51 +00:00
|
|
|
(*pseq)++;
|
|
|
|
*tsp = ts;
|
1999-10-09 14:49:56 +00:00
|
|
|
|
1999-03-11 15:09:51 +00:00
|
|
|
if (foff) {
|
|
|
|
timespecadd(tsp, osp);
|
|
|
|
if (tsp->tv_nsec < 0) {
|
|
|
|
tsp->tv_nsec += 1000000000;
|
|
|
|
tsp->tv_sec -= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef PPS_SYNC
|
|
|
|
if (fhard) {
|
|
|
|
/* magic, at its best... */
|
2002-04-26 20:24:28 +00:00
|
|
|
tcount = pps->capcount - pps->ppscount[2];
|
|
|
|
pps->ppscount[2] = pps->capcount;
|
2002-04-26 21:51:08 +00:00
|
|
|
tcount &= pps->captc->tc_counter->tc_counter_mask;
|
2002-02-07 21:21:55 +00:00
|
|
|
bt.sec = 0;
|
|
|
|
bt.frac = 0;
|
2002-04-26 20:24:28 +00:00
|
|
|
bintime_addx(&bt, pps->captc->tc_scale * tcount);
|
2002-02-07 21:21:55 +00:00
|
|
|
bintime2timespec(&bt, &ts);
|
|
|
|
hardpps(tsp, ts.tv_nsec + 1000000000 * ts.tv_sec);
|
1999-03-11 15:09:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2002-04-26 12:37:36 +00:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Timecounters need to be updated every so often to prevent the hardware
|
|
|
|
* counter from overflowing. Updating also recalculates the cached values
|
|
|
|
* used by the get*() family of functions, so their precision depends on
|
|
|
|
* the update frequency.
|
|
|
|
* Don't update faster than approx once per millisecond, if people want
|
|
|
|
* better timestamps they should use the non-"get" functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int tc_tick;
|
|
|
|
SYSCTL_INT(_kern_timecounter, OID_AUTO, tick, CTLFLAG_RD, &tick, 0, "");
|
|
|
|
|
|
|
|
static void
|
|
|
|
tc_ticktock(void *dummy)
|
|
|
|
{
|
|
|
|
|
|
|
|
tc_windup();
|
|
|
|
timeout(tc_ticktock, NULL, tc_tick);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
inittimecounter(void *dummy)
|
|
|
|
{
|
|
|
|
u_int p;
|
|
|
|
|
|
|
|
if (hz > 1000)
|
|
|
|
tc_tick = (hz + 500) / 1000;
|
|
|
|
else
|
|
|
|
tc_tick = 1;
|
|
|
|
p = (tc_tick * 1000000) / hz;
|
|
|
|
printf("Timecounters tick every %d.%03u msec\n", p / 1000, p % 1000);
|
|
|
|
tc_ticktock(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSINIT(timecounter, SI_SUB_CLOCKS, SI_ORDER_FIRST, inittimecounter, NULL)
|