2008-05-11 18:42:18 +04:00
|
|
|
/* $NetBSD: kern_tc.c,v 1.36 2008/05/11 14:42:18 ad Exp $ */
|
2008-04-21 16:56:30 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2008 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2006-06-08 02:33:33 +04:00
|
|
|
|
2006-02-04 11:06:23 +03: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
|
2006-06-08 02:33:33 +04:00
|
|
|
* ---------------------------------------------------------------------------
|
2006-02-04 11:06:23 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2006-06-08 02:33:33 +04:00
|
|
|
/* __FBSDID("$FreeBSD: src/sys/kern/kern_tc.c,v 1.166 2005/09/19 22:16:31 andre Exp $"); */
|
2008-05-11 18:42:18 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: kern_tc.c,v 1.36 2008/05/11 14:42:18 ad Exp $");
|
2006-02-04 11:06:23 +03:00
|
|
|
|
|
|
|
#include "opt_ntp.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
2006-06-08 02:33:33 +04:00
|
|
|
#include <sys/reboot.h> /* XXX just to get AB_VERBOSE */
|
2006-02-04 11:06:23 +03:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/timepps.h>
|
|
|
|
#include <sys/timetc.h>
|
|
|
|
#include <sys/timex.h>
|
2006-06-08 02:33:33 +04:00
|
|
|
#include <sys/evcnt.h>
|
|
|
|
#include <sys/kauth.h>
|
2007-11-16 04:21:24 +03:00
|
|
|
#include <sys/mutex.h>
|
2007-12-01 02:05:43 +03:00
|
|
|
#include <sys/atomic.h>
|
2006-06-08 02:33:33 +04:00
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
/*
|
|
|
|
* A large step happens on boot. This constant detects such steps.
|
|
|
|
* It is relatively small so that ntp_update_second gets called enough
|
|
|
|
* in the typical 'missed a couple of seconds' case, but doesn't loop
|
|
|
|
* forever when the time step is large.
|
|
|
|
*/
|
|
|
|
#define LARGE_STEP 200
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
* time services.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static u_int
|
2006-11-01 13:17:58 +03:00
|
|
|
dummy_get_timecount(struct timecounter *tc)
|
2006-02-04 11:06:23 +03:00
|
|
|
{
|
|
|
|
static u_int now;
|
|
|
|
|
|
|
|
return (++now);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct timecounter dummy_timecounter = {
|
2006-09-02 10:35:12 +04:00
|
|
|
dummy_get_timecount, 0, ~0u, 1000000, "dummy", -1000000, NULL, NULL,
|
2006-02-04 11:06:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct timehands {
|
|
|
|
/* These fields must be initialized by the driver. */
|
|
|
|
struct timecounter *th_counter;
|
|
|
|
int64_t th_adjustment;
|
|
|
|
u_int64_t th_scale;
|
|
|
|
u_int th_offset_count;
|
|
|
|
struct bintime th_offset;
|
|
|
|
struct timeval th_microtime;
|
|
|
|
struct timespec th_nanotime;
|
|
|
|
/* Fields not to be copied in tc_windup start with th_generation. */
|
|
|
|
volatile u_int th_generation;
|
|
|
|
struct timehands *th_next;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct timehands th0;
|
2006-09-03 10:40:39 +04:00
|
|
|
static struct timehands th9 = { .th_next = &th0, };
|
|
|
|
static struct timehands th8 = { .th_next = &th9, };
|
|
|
|
static struct timehands th7 = { .th_next = &th8, };
|
|
|
|
static struct timehands th6 = { .th_next = &th7, };
|
|
|
|
static struct timehands th5 = { .th_next = &th6, };
|
|
|
|
static struct timehands th4 = { .th_next = &th5, };
|
|
|
|
static struct timehands th3 = { .th_next = &th4, };
|
|
|
|
static struct timehands th2 = { .th_next = &th3, };
|
|
|
|
static struct timehands th1 = { .th_next = &th2, };
|
2006-02-04 11:06:23 +03:00
|
|
|
static struct timehands th0 = {
|
2006-09-03 10:40:39 +04:00
|
|
|
.th_counter = &dummy_timecounter,
|
|
|
|
.th_scale = (uint64_t)-1 / 1000000,
|
|
|
|
.th_offset = { .sec = 1, .frac = 0 },
|
|
|
|
.th_generation = 1,
|
|
|
|
.th_next = &th1,
|
2006-02-04 11:06:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct timehands *volatile timehands = &th0;
|
|
|
|
struct timecounter *timecounter = &dummy_timecounter;
|
|
|
|
static struct timecounter *timecounters = &dummy_timecounter;
|
|
|
|
|
|
|
|
time_t time_second = 1;
|
|
|
|
time_t time_uptime = 1;
|
|
|
|
|
2006-07-15 03:01:12 +04:00
|
|
|
static struct bintime timebasebin;
|
2006-02-04 11:06:23 +03:00
|
|
|
|
|
|
|
static int timestepwarnings;
|
2006-06-08 02:33:33 +04:00
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
kmutex_t timecounter_lock;
|
2008-05-08 22:56:58 +04:00
|
|
|
static u_int timecounter_mods;
|
|
|
|
static u_int timecounter_bad;
|
2007-11-16 04:21:24 +03:00
|
|
|
|
2006-06-08 02:33:33 +04:00
|
|
|
#ifdef __FreeBSD__
|
2006-02-04 11:06:23 +03:00
|
|
|
SYSCTL_INT(_kern_timecounter, OID_AUTO, stepwarnings, CTLFLAG_RW,
|
|
|
|
×tepwarnings, 0, "");
|
2006-06-08 02:33:33 +04:00
|
|
|
#endif /* __FreeBSD__ */
|
|
|
|
|
|
|
|
/*
|
2007-12-15 21:20:11 +03:00
|
|
|
* sysctl helper routine for kern.timercounter.hardware
|
2006-06-08 02:33:33 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_kern_timecounter_hardware(SYSCTLFN_ARGS)
|
|
|
|
{
|
|
|
|
struct sysctlnode node;
|
|
|
|
int error;
|
|
|
|
char newname[MAX_TCNAMELEN];
|
|
|
|
struct timecounter *newtc, *tc;
|
|
|
|
|
|
|
|
tc = timecounter;
|
|
|
|
|
|
|
|
strlcpy(newname, tc->tc_name, sizeof(newname));
|
|
|
|
|
|
|
|
node = *rnode;
|
|
|
|
node.sysctl_data = newname;
|
|
|
|
node.sysctl_size = sizeof(newname);
|
|
|
|
|
|
|
|
error = sysctl_lookup(SYSCTLFN_CALL(&node));
|
|
|
|
|
|
|
|
if (error ||
|
|
|
|
newp == NULL ||
|
|
|
|
strncmp(newname, tc->tc_name, sizeof(newname)) == 0)
|
|
|
|
return error;
|
|
|
|
|
2007-11-23 19:03:47 +03:00
|
|
|
if (l != NULL && (error = kauth_authorize_system(l->l_cred,
|
|
|
|
KAUTH_SYSTEM_TIME, KAUTH_REQ_SYSTEM_TIME_TIMECOUNTERS, newname,
|
|
|
|
NULL, NULL)) != 0)
|
2006-06-08 02:33:33 +04:00
|
|
|
return (error);
|
|
|
|
|
2007-11-15 23:12:04 +03:00
|
|
|
if (!cold)
|
2008-05-08 22:56:58 +04:00
|
|
|
mutex_spin_enter(&timecounter_lock);
|
2007-11-16 01:28:05 +03:00
|
|
|
error = EINVAL;
|
2006-06-08 02:33:33 +04:00
|
|
|
for (newtc = timecounters; newtc != NULL; newtc = newtc->tc_next) {
|
|
|
|
if (strcmp(newname, newtc->tc_name) != 0)
|
|
|
|
continue;
|
|
|
|
/* Warm up new timecounter. */
|
|
|
|
(void)newtc->tc_get_timecount(newtc);
|
|
|
|
(void)newtc->tc_get_timecount(newtc);
|
|
|
|
timecounter = newtc;
|
2007-11-15 23:12:04 +03:00
|
|
|
error = 0;
|
2007-11-16 01:28:05 +03:00
|
|
|
break;
|
|
|
|
}
|
2007-11-15 23:12:04 +03:00
|
|
|
if (!cold)
|
2008-05-08 22:56:58 +04:00
|
|
|
mutex_spin_exit(&timecounter_lock);
|
2007-11-15 23:12:04 +03:00
|
|
|
return error;
|
2006-06-08 02:33:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_kern_timecounter_choice(SYSCTLFN_ARGS)
|
|
|
|
{
|
2006-09-02 17:45:04 +04:00
|
|
|
char buf[MAX_TCNAMELEN+48];
|
2008-05-08 22:56:58 +04:00
|
|
|
char *where;
|
2006-06-08 02:33:33 +04:00
|
|
|
const char *spc;
|
|
|
|
struct timecounter *tc;
|
|
|
|
size_t needed, left, slen;
|
2008-05-08 22:56:58 +04:00
|
|
|
int error, mods;
|
2006-06-08 02:33:33 +04:00
|
|
|
|
|
|
|
if (newp != NULL)
|
|
|
|
return (EPERM);
|
|
|
|
if (namelen != 0)
|
|
|
|
return (EINVAL);
|
|
|
|
|
2008-05-08 22:56:58 +04:00
|
|
|
mutex_spin_enter(&timecounter_lock);
|
|
|
|
retry:
|
2006-06-08 02:33:33 +04:00
|
|
|
spc = "";
|
|
|
|
error = 0;
|
|
|
|
needed = 0;
|
|
|
|
left = *oldlenp;
|
2008-05-08 22:56:58 +04:00
|
|
|
where = oldp;
|
2006-06-08 02:33:33 +04:00
|
|
|
for (tc = timecounters; error == 0 && tc != NULL; tc = tc->tc_next) {
|
|
|
|
if (where == NULL) {
|
|
|
|
needed += sizeof(buf); /* be conservative */
|
|
|
|
} else {
|
|
|
|
slen = snprintf(buf, sizeof(buf), "%s%s(q=%d, f=%" PRId64
|
|
|
|
" Hz)", spc, tc->tc_name, tc->tc_quality,
|
|
|
|
tc->tc_frequency);
|
|
|
|
if (left < slen + 1)
|
|
|
|
break;
|
2008-05-08 22:56:58 +04:00
|
|
|
mods = timecounter_mods;
|
|
|
|
mutex_spin_exit(&timecounter_lock);
|
2006-06-08 02:33:33 +04:00
|
|
|
error = copyout(buf, where, slen + 1);
|
2008-05-08 22:56:58 +04:00
|
|
|
mutex_spin_enter(&timecounter_lock);
|
|
|
|
if (mods != timecounter_mods) {
|
|
|
|
goto retry;
|
|
|
|
}
|
2006-06-08 02:33:33 +04:00
|
|
|
spc = " ";
|
|
|
|
where += slen;
|
|
|
|
needed += slen;
|
|
|
|
left -= slen;
|
|
|
|
}
|
|
|
|
}
|
2008-05-08 22:56:58 +04:00
|
|
|
mutex_spin_exit(&timecounter_lock);
|
2006-06-08 02:33:33 +04:00
|
|
|
|
|
|
|
*oldlenp = needed;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_SETUP(sysctl_timecounter_setup, "sysctl timecounter setup")
|
|
|
|
{
|
|
|
|
const struct sysctlnode *node;
|
|
|
|
|
|
|
|
sysctl_createv(clog, 0, NULL, &node,
|
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_NODE, "timecounter",
|
|
|
|
SYSCTL_DESCR("time counter information"),
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_KERN, CTL_CREATE, CTL_EOL);
|
|
|
|
|
|
|
|
if (node != NULL) {
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT,
|
|
|
|
CTLTYPE_STRING, "choice",
|
|
|
|
SYSCTL_DESCR("available counters"),
|
|
|
|
sysctl_kern_timecounter_choice, 0, NULL, 0,
|
|
|
|
CTL_KERN, node->sysctl_num, CTL_CREATE, CTL_EOL);
|
|
|
|
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_STRING, "hardware",
|
|
|
|
SYSCTL_DESCR("currently active time counter"),
|
|
|
|
sysctl_kern_timecounter_hardware, 0, NULL, MAX_TCNAMELEN,
|
|
|
|
CTL_KERN, node->sysctl_num, CTL_CREATE, CTL_EOL);
|
|
|
|
|
|
|
|
sysctl_createv(clog, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
|
|
|
|
CTLTYPE_INT, "timestepwarnings",
|
|
|
|
SYSCTL_DESCR("log time steps"),
|
|
|
|
NULL, 0, ×tepwarnings, 0,
|
|
|
|
CTL_KERN, node->sysctl_num, CTL_CREATE, CTL_EOL);
|
|
|
|
}
|
|
|
|
}
|
2006-02-04 11:06:23 +03:00
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
#ifdef TC_COUNTERS
|
2006-06-08 02:33:33 +04:00
|
|
|
#define TC_STATS(name) \
|
|
|
|
static struct evcnt n##name = \
|
|
|
|
EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "timecounter", #name); \
|
|
|
|
EVCNT_ATTACH_STATIC(n##name)
|
|
|
|
TC_STATS(binuptime); TC_STATS(nanouptime); TC_STATS(microuptime);
|
|
|
|
TC_STATS(bintime); TC_STATS(nanotime); TC_STATS(microtime);
|
|
|
|
TC_STATS(getbinuptime); TC_STATS(getnanouptime); TC_STATS(getmicrouptime);
|
|
|
|
TC_STATS(getbintime); TC_STATS(getnanotime); TC_STATS(getmicrotime);
|
|
|
|
TC_STATS(setclock);
|
2008-02-10 16:56:17 +03:00
|
|
|
#define TC_COUNT(var) var.ev_count++
|
2006-02-04 11:06:23 +03:00
|
|
|
#undef TC_STATS
|
2008-02-10 16:56:17 +03:00
|
|
|
#else
|
|
|
|
#define TC_COUNT(var) /* nothing */
|
|
|
|
#endif /* TC_COUNTERS */
|
2006-02-04 11:06:23 +03:00
|
|
|
|
|
|
|
static void tc_windup(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the difference between the timehands' counter value now and what
|
|
|
|
* was when we copied it to the timehands' offset_count.
|
|
|
|
*/
|
|
|
|
static __inline u_int
|
|
|
|
tc_delta(struct timehands *th)
|
|
|
|
{
|
|
|
|
struct timecounter *tc;
|
|
|
|
|
|
|
|
tc = th->th_counter;
|
2006-06-08 02:33:33 +04:00
|
|
|
return ((tc->tc_get_timecount(tc) -
|
|
|
|
th->th_offset_count) & tc->tc_counter_mask);
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions for reading the time. We have to loop until we are sure that
|
|
|
|
* the timehands that we operated on was not updated under our feet. See
|
2007-10-21 18:55:09 +04:00
|
|
|
* the comment in <sys/timevar.h> for a description of these 12 functions.
|
2006-02-04 11:06:23 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
binuptime(struct bintime *bt)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
u_int gen;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(nbinuptime);
|
2006-02-04 11:06:23 +03:00
|
|
|
do {
|
|
|
|
th = timehands;
|
|
|
|
gen = th->th_generation;
|
|
|
|
*bt = th->th_offset;
|
|
|
|
bintime_addx(bt, th->th_scale * tc_delta(th));
|
|
|
|
} while (gen == 0 || gen != th->th_generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nanouptime(struct timespec *tsp)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(nnanouptime);
|
2006-02-04 11:06:23 +03:00
|
|
|
binuptime(&bt);
|
|
|
|
bintime2timespec(&bt, tsp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
microuptime(struct timeval *tvp)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(nmicrouptime);
|
2006-02-04 11:06:23 +03:00
|
|
|
binuptime(&bt);
|
|
|
|
bintime2timeval(&bt, tvp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bintime(struct bintime *bt)
|
|
|
|
{
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(nbintime);
|
2006-02-04 11:06:23 +03:00
|
|
|
binuptime(bt);
|
2006-07-15 03:01:12 +04:00
|
|
|
bintime_add(bt, &timebasebin);
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nanotime(struct timespec *tsp)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(nnanotime);
|
2006-02-04 11:06:23 +03:00
|
|
|
bintime(&bt);
|
|
|
|
bintime2timespec(&bt, tsp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
microtime(struct timeval *tvp)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(nmicrotime);
|
2006-02-04 11:06:23 +03:00
|
|
|
bintime(&bt);
|
|
|
|
bintime2timeval(&bt, tvp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getbinuptime(struct bintime *bt)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
u_int gen;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(ngetbinuptime);
|
2006-02-04 11:06:23 +03:00
|
|
|
do {
|
|
|
|
th = timehands;
|
|
|
|
gen = th->th_generation;
|
|
|
|
*bt = th->th_offset;
|
|
|
|
} while (gen == 0 || gen != th->th_generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getnanouptime(struct timespec *tsp)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
u_int gen;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(ngetnanouptime);
|
2006-02-04 11:06:23 +03:00
|
|
|
do {
|
|
|
|
th = timehands;
|
|
|
|
gen = th->th_generation;
|
|
|
|
bintime2timespec(&th->th_offset, tsp);
|
|
|
|
} while (gen == 0 || gen != th->th_generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getmicrouptime(struct timeval *tvp)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
u_int gen;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(ngetmicrouptime);
|
2006-02-04 11:06:23 +03:00
|
|
|
do {
|
|
|
|
th = timehands;
|
|
|
|
gen = th->th_generation;
|
|
|
|
bintime2timeval(&th->th_offset, tvp);
|
|
|
|
} while (gen == 0 || gen != th->th_generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getbintime(struct bintime *bt)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
u_int gen;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(ngetbintime);
|
2006-02-04 11:06:23 +03:00
|
|
|
do {
|
|
|
|
th = timehands;
|
|
|
|
gen = th->th_generation;
|
|
|
|
*bt = th->th_offset;
|
|
|
|
} while (gen == 0 || gen != th->th_generation);
|
2006-07-15 03:01:12 +04:00
|
|
|
bintime_add(bt, &timebasebin);
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getnanotime(struct timespec *tsp)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
u_int gen;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(ngetnanotime);
|
2006-02-04 11:06:23 +03:00
|
|
|
do {
|
|
|
|
th = timehands;
|
|
|
|
gen = th->th_generation;
|
|
|
|
*tsp = th->th_nanotime;
|
|
|
|
} while (gen == 0 || gen != th->th_generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
getmicrotime(struct timeval *tvp)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
u_int gen;
|
|
|
|
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(ngetmicrotime);
|
2006-02-04 11:06:23 +03:00
|
|
|
do {
|
|
|
|
th = timehands;
|
|
|
|
gen = th->th_generation;
|
|
|
|
*tvp = th->th_microtime;
|
|
|
|
} while (gen == 0 || gen != th->th_generation);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize a new timecounter and possibly use it.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
tc_init(struct timecounter *tc)
|
|
|
|
{
|
|
|
|
u_int u;
|
|
|
|
|
|
|
|
u = tc->tc_frequency / tc->tc_counter_mask;
|
|
|
|
/* XXX: We need some margin here, 10% is a guess */
|
|
|
|
u *= 11;
|
|
|
|
u /= 10;
|
|
|
|
if (u > hz && tc->tc_quality >= 0) {
|
|
|
|
tc->tc_quality = -2000;
|
2007-02-10 00:55:00 +03:00
|
|
|
aprint_verbose(
|
|
|
|
"timecounter: Timecounter \"%s\" frequency %ju Hz",
|
2006-08-06 17:29:42 +04:00
|
|
|
tc->tc_name, (uintmax_t)tc->tc_frequency);
|
2007-02-10 00:55:00 +03:00
|
|
|
aprint_verbose(" -- Insufficient hz, needs at least %u\n", u);
|
2006-02-04 11:06:23 +03:00
|
|
|
} else if (tc->tc_quality >= 0 || bootverbose) {
|
2007-02-10 00:55:00 +03:00
|
|
|
aprint_verbose(
|
|
|
|
"timecounter: Timecounter \"%s\" frequency %ju Hz "
|
|
|
|
"quality %d\n", tc->tc_name, (uintmax_t)tc->tc_frequency,
|
2006-08-06 17:29:42 +04:00
|
|
|
tc->tc_quality);
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_spin_enter(&timecounter_lock);
|
2006-02-04 11:06:23 +03:00
|
|
|
tc->tc_next = timecounters;
|
|
|
|
timecounters = tc;
|
2008-05-08 22:56:58 +04:00
|
|
|
timecounter_mods++;
|
2006-02-04 11:06:23 +03:00
|
|
|
/*
|
|
|
|
* Never automatically use a timecounter with negative quality.
|
|
|
|
* Even though we run on the dummy counter, switching here may be
|
|
|
|
* worse since this timecounter may not be monotonous.
|
|
|
|
*/
|
2007-11-15 23:12:04 +03:00
|
|
|
if (tc->tc_quality >= 0 && (tc->tc_quality > timecounter->tc_quality ||
|
2007-11-16 02:16:55 +03:00
|
|
|
(tc->tc_quality == timecounter->tc_quality &&
|
|
|
|
tc->tc_frequency > timecounter->tc_frequency))) {
|
2007-11-15 23:12:04 +03:00
|
|
|
(void)tc->tc_get_timecount(tc);
|
|
|
|
(void)tc->tc_get_timecount(tc);
|
|
|
|
timecounter = tc;
|
|
|
|
tc_windup();
|
|
|
|
}
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_spin_exit(&timecounter_lock);
|
2008-05-08 22:56:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pick a new timecounter due to the existing counter going bad.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
tc_pick(void)
|
|
|
|
{
|
|
|
|
struct timecounter *best, *tc;
|
|
|
|
|
|
|
|
KASSERT(mutex_owned(&timecounter_lock));
|
|
|
|
|
|
|
|
for (best = tc = timecounters; tc != NULL; tc = tc->tc_next) {
|
|
|
|
if (tc->tc_quality > best->tc_quality)
|
|
|
|
best = tc;
|
|
|
|
else if (tc->tc_quality < best->tc_quality)
|
|
|
|
continue;
|
|
|
|
else if (tc->tc_frequency > best->tc_frequency)
|
|
|
|
best = tc;
|
|
|
|
}
|
|
|
|
(void)best->tc_get_timecount(best);
|
|
|
|
(void)best->tc_get_timecount(best);
|
|
|
|
timecounter = best;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A timecounter has gone bad, arrange to pick a new one at the next
|
|
|
|
* clock tick.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
tc_gonebad(struct timecounter *tc)
|
|
|
|
{
|
|
|
|
|
|
|
|
tc->tc_quality = -100;
|
|
|
|
membar_producer();
|
|
|
|
atomic_inc_uint(&timecounter_bad);
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
2008-01-03 07:42:13 +03:00
|
|
|
/*
|
|
|
|
* Stop using a timecounter and remove it from the timecounters list.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
tc_detach(struct timecounter *target)
|
|
|
|
{
|
2008-05-08 22:56:58 +04:00
|
|
|
struct timecounter *tc;
|
2008-01-03 07:42:13 +03:00
|
|
|
struct timecounter **tcp = NULL;
|
2008-01-05 21:00:37 +03:00
|
|
|
int rc = 0;
|
2008-01-03 07:42:13 +03:00
|
|
|
|
2008-05-08 22:56:58 +04:00
|
|
|
mutex_spin_enter(&timecounter_lock);
|
2008-01-03 07:42:13 +03:00
|
|
|
for (tcp = &timecounters, tc = timecounters;
|
|
|
|
tc != NULL;
|
|
|
|
tcp = &tc->tc_next, tc = tc->tc_next) {
|
|
|
|
if (tc == target)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (tc == NULL) {
|
|
|
|
rc = ESRCH;
|
2008-05-08 22:56:58 +04:00
|
|
|
} else {
|
|
|
|
*tcp = tc->tc_next;
|
|
|
|
if (timecounter == target) {
|
|
|
|
tc_pick();
|
|
|
|
tc_windup();
|
|
|
|
}
|
|
|
|
timecounter_mods++;
|
2008-01-03 07:42:13 +03:00
|
|
|
}
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_spin_exit(&timecounter_lock);
|
2008-01-03 07:42:13 +03:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
/* Report the frequency of the current timecounter. */
|
|
|
|
u_int64_t
|
|
|
|
tc_getfrequency(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (timehands->th_counter->tc_frequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Step our concept of UTC. This is done by modifying our estimate of
|
|
|
|
* when we booted.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
tc_setclock(struct timespec *ts)
|
|
|
|
{
|
|
|
|
struct timespec ts2;
|
|
|
|
struct bintime bt, bt2;
|
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_spin_enter(&timecounter_lock);
|
2008-02-10 16:56:17 +03:00
|
|
|
TC_COUNT(nsetclock);
|
2006-02-04 11:06:23 +03:00
|
|
|
binuptime(&bt2);
|
|
|
|
timespec2bintime(ts, &bt);
|
|
|
|
bintime_sub(&bt, &bt2);
|
2006-07-15 03:01:12 +04:00
|
|
|
bintime_add(&bt2, &timebasebin);
|
|
|
|
timebasebin = bt;
|
2006-02-04 11:06:23 +03:00
|
|
|
tc_windup();
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_spin_exit(&timecounter_lock);
|
2008-01-05 21:00:37 +03:00
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
if (timestepwarnings) {
|
|
|
|
bintime2timespec(&bt2, &ts2);
|
|
|
|
log(LOG_INFO, "Time stepped from %jd.%09ld to %jd.%09ld\n",
|
|
|
|
(intmax_t)ts2.tv_sec, ts2.tv_nsec,
|
|
|
|
(intmax_t)ts->tv_sec, ts->tv_nsec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the next struct timehands in the ring and make
|
|
|
|
* it the active timehands. Along the way we might switch to a different
|
|
|
|
* timecounter and/or do seconds processing in NTP. Slightly magic.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
tc_windup(void)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
struct timehands *th, *tho;
|
|
|
|
u_int64_t scale;
|
|
|
|
u_int delta, ncount, ogen;
|
2006-09-24 10:39:28 +04:00
|
|
|
int i, s_update;
|
2006-02-04 11:06:23 +03:00
|
|
|
time_t t;
|
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
KASSERT(mutex_owned(&timecounter_lock));
|
2008-01-05 21:00:37 +03:00
|
|
|
|
2006-09-24 10:39:28 +04:00
|
|
|
s_update = 0;
|
2007-08-18 01:20:24 +04:00
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
/*
|
|
|
|
* Make the next timehands a copy of the current one, but do not
|
|
|
|
* overwrite the generation or next pointer. While we update
|
2007-08-18 01:20:24 +04:00
|
|
|
* the contents, the generation must be zero. Ensure global
|
|
|
|
* visibility of the generation before proceeding.
|
2006-02-04 11:06:23 +03:00
|
|
|
*/
|
|
|
|
tho = timehands;
|
|
|
|
th = tho->th_next;
|
|
|
|
ogen = th->th_generation;
|
|
|
|
th->th_generation = 0;
|
2007-12-01 02:05:43 +03:00
|
|
|
membar_producer();
|
2006-02-04 11:06:23 +03:00
|
|
|
bcopy(tho, th, offsetof(struct timehands, th_generation));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Capture a timecounter delta on the current timecounter and if
|
|
|
|
* changing timecounters, a counter value from the new timecounter.
|
|
|
|
* Update the offset fields accordingly.
|
|
|
|
*/
|
|
|
|
delta = tc_delta(th);
|
|
|
|
if (th->th_counter != timecounter)
|
|
|
|
ncount = timecounter->tc_get_timecount(timecounter);
|
|
|
|
else
|
|
|
|
ncount = 0;
|
|
|
|
th->th_offset_count += delta;
|
|
|
|
th->th_offset_count &= th->th_counter->tc_counter_mask;
|
|
|
|
bintime_addx(&th->th_offset, th->th_scale * delta);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hardware latching timecounters may not generate interrupts on
|
|
|
|
* PPS events, so instead we poll them. There is a finite risk that
|
|
|
|
* the hardware might capture a count which is later than the one we
|
|
|
|
* got above, and therefore possibly in the next NTP second which might
|
|
|
|
* have a different rate than the current NTP second. It doesn't
|
|
|
|
* matter in practice.
|
|
|
|
*/
|
|
|
|
if (tho->th_counter->tc_poll_pps)
|
|
|
|
tho->th_counter->tc_poll_pps(tho->th_counter);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deal with NTP second processing. The for loop normally
|
|
|
|
* iterates at most once, but in extreme situations it might
|
|
|
|
* keep NTP sane if timeouts are not run for several seconds.
|
|
|
|
* At boot, the time step can be large when the TOD hardware
|
|
|
|
* has been read, so on really large steps, we call
|
|
|
|
* ntp_update_second only twice. We need to call it twice in
|
|
|
|
* case we missed a leap second.
|
2006-06-08 02:33:33 +04:00
|
|
|
* If NTP is not compiled in ntp_update_second still calculates
|
|
|
|
* the adjustment resulting from adjtime() calls.
|
2006-02-04 11:06:23 +03:00
|
|
|
*/
|
|
|
|
bt = th->th_offset;
|
2006-07-15 03:01:12 +04:00
|
|
|
bintime_add(&bt, &timebasebin);
|
2006-02-04 11:06:23 +03:00
|
|
|
i = bt.sec - tho->th_microtime.tv_sec;
|
|
|
|
if (i > LARGE_STEP)
|
|
|
|
i = 2;
|
|
|
|
for (; i > 0; i--) {
|
|
|
|
t = bt.sec;
|
|
|
|
ntp_update_second(&th->th_adjustment, &bt.sec);
|
2006-09-24 10:39:28 +04:00
|
|
|
s_update = 1;
|
2006-02-04 11:06:23 +03:00
|
|
|
if (bt.sec != t)
|
2006-07-15 03:01:12 +04:00
|
|
|
timebasebin.sec += bt.sec - t;
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
2006-06-08 02:33:33 +04:00
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
/* Update the UTC timestamps used by the get*() functions. */
|
|
|
|
/* XXX shouldn't do this here. Should force non-`get' versions. */
|
|
|
|
bintime2timeval(&bt, &th->th_microtime);
|
|
|
|
bintime2timespec(&bt, &th->th_nanotime);
|
|
|
|
|
|
|
|
/* Now is a good time to change timecounters. */
|
|
|
|
if (th->th_counter != timecounter) {
|
|
|
|
th->th_counter = timecounter;
|
|
|
|
th->th_offset_count = ncount;
|
2006-09-24 10:39:28 +04:00
|
|
|
s_update = 1;
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* Recalculate the scaling factor. We want the number of 1/2^64
|
|
|
|
* fractions of a second per period of the hardware counter, taking
|
|
|
|
* into account the th_adjustment factor which the NTP PLL/adjtime(2)
|
|
|
|
* processing provides us with.
|
|
|
|
*
|
|
|
|
* The th_adjustment is nanoseconds per second with 32 bit binary
|
|
|
|
* fraction and we want 64 bit binary fraction of second:
|
|
|
|
*
|
|
|
|
* x = a * 2^32 / 10^9 = a * 4.294967296
|
|
|
|
*
|
|
|
|
* The range of th_adjustment is +/- 5000PPM so inside a 64bit int
|
|
|
|
* we can only multiply by about 850 without overflowing, but that
|
|
|
|
* leaves suitably precise fractions for multiply before divide.
|
|
|
|
*
|
|
|
|
* Divide before multiply with a fraction of 2199/512 results in a
|
|
|
|
* systematic undercompensation of 10PPM of th_adjustment. On a
|
|
|
|
* 5000PPM adjustment this is a 0.05PPM error. This is acceptable.
|
|
|
|
*
|
|
|
|
* We happily sacrifice the lowest of the 64 bits of our result
|
|
|
|
* to the goddess of code clarity.
|
|
|
|
*
|
|
|
|
*/
|
2006-09-24 10:39:28 +04:00
|
|
|
if (s_update) {
|
|
|
|
scale = (u_int64_t)1 << 63;
|
|
|
|
scale += (th->th_adjustment / 1024) * 2199;
|
|
|
|
scale /= th->th_counter->tc_frequency;
|
|
|
|
th->th_scale = scale * 2;
|
|
|
|
}
|
2006-02-04 11:06:23 +03:00
|
|
|
/*
|
|
|
|
* Now that the struct timehands is again consistent, set the new
|
2007-08-18 01:20:24 +04:00
|
|
|
* generation number, making sure to not make it zero. Ensure
|
|
|
|
* changes are globally visible before changing.
|
2006-02-04 11:06:23 +03:00
|
|
|
*/
|
|
|
|
if (++ogen == 0)
|
|
|
|
ogen = 1;
|
2007-12-01 02:05:43 +03:00
|
|
|
membar_producer();
|
2006-02-04 11:06:23 +03:00
|
|
|
th->th_generation = ogen;
|
|
|
|
|
2007-08-18 01:20:24 +04:00
|
|
|
/*
|
|
|
|
* Go live with the new struct timehands. Ensure changes are
|
|
|
|
* globally visible before changing.
|
|
|
|
*/
|
2006-02-04 11:06:23 +03:00
|
|
|
time_second = th->th_microtime.tv_sec;
|
|
|
|
time_uptime = th->th_offset.sec;
|
2007-12-01 02:05:43 +03:00
|
|
|
membar_producer();
|
2006-02-04 11:06:23 +03:00
|
|
|
timehands = th;
|
2007-11-16 02:16:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Force users of the old timehand to move on. This is
|
|
|
|
* necessary for MP systems; we need to ensure that the
|
|
|
|
* consumers will move away from the old timehand before
|
|
|
|
* we begin updating it again when we eventually wrap
|
|
|
|
* around.
|
|
|
|
*/
|
|
|
|
if (++tho->th_generation == 0)
|
|
|
|
tho->th_generation = 1;
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 2783 PPS-API implementation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2007-03-04 08:59:00 +03:00
|
|
|
pps_ioctl(u_long cmd, void *data, struct pps_state *pps)
|
2006-02-04 11:06:23 +03:00
|
|
|
{
|
|
|
|
pps_params_t *app;
|
2006-06-08 02:33:33 +04:00
|
|
|
pps_info_t *pipi;
|
2006-02-04 11:06:23 +03:00
|
|
|
#ifdef PPS_SYNC
|
2006-06-08 02:33:33 +04:00
|
|
|
int *epi;
|
2006-02-04 11:06:23 +03:00
|
|
|
#endif
|
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
KASSERT(mutex_owned(&timecounter_lock));
|
|
|
|
|
2006-06-08 02:33:33 +04:00
|
|
|
KASSERT(pps != NULL); /* XXX ("NULL pps pointer in pps_ioctl") */
|
2006-02-04 11:06:23 +03: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:
|
2006-06-08 02:33:33 +04:00
|
|
|
pipi = (pps_info_t *)data;
|
2006-02-04 11:06:23 +03:00
|
|
|
pps->ppsinfo.current_mode = pps->ppsparam.mode;
|
2006-06-08 02:33:33 +04:00
|
|
|
*pipi = pps->ppsinfo;
|
2006-02-04 11:06:23 +03:00
|
|
|
return (0);
|
|
|
|
case PPS_IOC_KCBIND:
|
|
|
|
#ifdef PPS_SYNC
|
2006-06-08 02:33:33 +04:00
|
|
|
epi = (int *)data;
|
2006-02-04 11:06:23 +03:00
|
|
|
/* XXX Only root should be able to do this */
|
2006-06-08 02:33:33 +04:00
|
|
|
if (*epi & ~pps->ppscap)
|
2006-02-04 11:06:23 +03:00
|
|
|
return (EINVAL);
|
2006-06-08 02:33:33 +04:00
|
|
|
pps->kcmode = *epi;
|
2006-02-04 11:06:23 +03:00
|
|
|
return (0);
|
|
|
|
#else
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
#endif
|
|
|
|
default:
|
2006-06-08 02:33:33 +04:00
|
|
|
return (EPASSTHROUGH);
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pps_init(struct pps_state *pps)
|
|
|
|
{
|
2008-04-21 16:56:30 +04:00
|
|
|
|
|
|
|
KASSERT(mutex_owned(&timecounter_lock));
|
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
pps->ppscap |= PPS_TSFMT_TSPEC;
|
|
|
|
if (pps->ppscap & PPS_CAPTUREASSERT)
|
|
|
|
pps->ppscap |= PPS_OFFSETASSERT;
|
|
|
|
if (pps->ppscap & PPS_CAPTURECLEAR)
|
|
|
|
pps->ppscap |= PPS_OFFSETCLEAR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pps_capture(struct pps_state *pps)
|
|
|
|
{
|
|
|
|
struct timehands *th;
|
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
KASSERT(mutex_owned(&timecounter_lock));
|
|
|
|
KASSERT(pps != NULL);
|
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
th = timehands;
|
|
|
|
pps->capgen = th->th_generation;
|
|
|
|
pps->capth = th;
|
|
|
|
pps->capcount = th->th_counter->tc_get_timecount(th->th_counter);
|
|
|
|
if (pps->capgen != th->th_generation)
|
|
|
|
pps->capgen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pps_event(struct pps_state *pps, int event)
|
|
|
|
{
|
|
|
|
struct bintime bt;
|
|
|
|
struct timespec ts, *tsp, *osp;
|
|
|
|
u_int tcount, *pcount;
|
|
|
|
int foff, fhard;
|
|
|
|
pps_seq_t *pseq;
|
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
KASSERT(mutex_owned(&timecounter_lock));
|
|
|
|
|
2006-06-08 02:33:33 +04:00
|
|
|
KASSERT(pps != NULL); /* XXX ("NULL pps pointer in pps_event") */
|
2006-02-04 11:06:23 +03:00
|
|
|
/* If the timecounter was wound up underneath us, bail out. */
|
|
|
|
if (pps->capgen == 0 || pps->capgen != pps->capth->th_generation)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
fhard = pps->kcmode & PPS_CAPTUREASSERT;
|
|
|
|
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;
|
|
|
|
fhard = pps->kcmode & PPS_CAPTURECLEAR;
|
|
|
|
pcount = &pps->ppscount[1];
|
|
|
|
pseq = &pps->ppsinfo.clear_sequence;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the timecounter changed, we cannot compare the count values, so
|
|
|
|
* we have to drop the rest of the PPS-stuff until the next event.
|
|
|
|
*/
|
|
|
|
if (pps->ppstc != pps->capth->th_counter) {
|
|
|
|
pps->ppstc = pps->capth->th_counter;
|
|
|
|
*pcount = pps->capcount;
|
|
|
|
pps->ppscount[2] = pps->capcount;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert the count to a timespec. */
|
|
|
|
tcount = pps->capcount - pps->capth->th_offset_count;
|
|
|
|
tcount &= pps->capth->th_counter->tc_counter_mask;
|
|
|
|
bt = pps->capth->th_offset;
|
|
|
|
bintime_addx(&bt, pps->capth->th_scale * tcount);
|
2006-07-15 03:01:12 +04:00
|
|
|
bintime_add(&bt, &timebasebin);
|
2006-02-04 11:06:23 +03:00
|
|
|
bintime2timespec(&bt, &ts);
|
|
|
|
|
|
|
|
/* If the timecounter was wound up underneath us, bail out. */
|
|
|
|
if (pps->capgen != pps->capth->th_generation)
|
|
|
|
return;
|
|
|
|
|
|
|
|
*pcount = pps->capcount;
|
|
|
|
(*pseq)++;
|
|
|
|
*tsp = ts;
|
|
|
|
|
|
|
|
if (foff) {
|
2006-06-08 02:33:33 +04:00
|
|
|
timespecadd(tsp, osp, tsp);
|
2006-02-04 11:06:23 +03:00
|
|
|
if (tsp->tv_nsec < 0) {
|
|
|
|
tsp->tv_nsec += 1000000000;
|
|
|
|
tsp->tv_sec -= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef PPS_SYNC
|
|
|
|
if (fhard) {
|
|
|
|
u_int64_t scale;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Feed the NTP PLL/FLL.
|
|
|
|
* The FLL wants to know how many (hardware) nanoseconds
|
|
|
|
* elapsed since the previous event.
|
|
|
|
*/
|
|
|
|
tcount = pps->capcount - pps->ppscount[2];
|
|
|
|
pps->ppscount[2] = pps->capcount;
|
|
|
|
tcount &= pps->capth->th_counter->tc_counter_mask;
|
|
|
|
scale = (u_int64_t)1 << 63;
|
|
|
|
scale /= pps->capth->th_counter->tc_frequency;
|
|
|
|
scale *= 2;
|
|
|
|
bt.sec = 0;
|
|
|
|
bt.frac = 0;
|
|
|
|
bintime_addx(&bt, scale * tcount);
|
|
|
|
bintime2timespec(&bt, &ts);
|
|
|
|
hardpps(tsp, ts.tv_nsec + 1000000000 * ts.tv_sec);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int tc_tick;
|
|
|
|
|
|
|
|
void
|
|
|
|
tc_ticktock(void)
|
|
|
|
{
|
|
|
|
static int count;
|
|
|
|
|
|
|
|
if (++count < tc_tick)
|
|
|
|
return;
|
|
|
|
count = 0;
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_spin_enter(&timecounter_lock);
|
2008-05-08 22:56:58 +04:00
|
|
|
if (timecounter_bad != 0) {
|
|
|
|
/* An existing timecounter has gone bad, pick a new one. */
|
|
|
|
(void)atomic_swap_uint(&timecounter_bad, 0);
|
|
|
|
if (timecounter->tc_quality < 0) {
|
|
|
|
tc_pick();
|
|
|
|
}
|
|
|
|
}
|
2006-02-04 11:06:23 +03:00
|
|
|
tc_windup();
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_spin_exit(&timecounter_lock);
|
2006-02-04 11:06:23 +03:00
|
|
|
}
|
|
|
|
|
2006-06-08 02:33:33 +04:00
|
|
|
void
|
|
|
|
inittimecounter(void)
|
2006-02-04 11:06:23 +03:00
|
|
|
{
|
|
|
|
u_int p;
|
|
|
|
|
2008-04-21 16:56:30 +04:00
|
|
|
mutex_init(&timecounter_lock, MUTEX_DEFAULT, IPL_SCHED);
|
2008-01-05 21:00:37 +03:00
|
|
|
|
2006-02-04 11:06:23 +03:00
|
|
|
/*
|
|
|
|
* Set the initial timeout to
|
|
|
|
* max(1, <approx. number of hardclock ticks in a millisecond>).
|
|
|
|
* People should probably not use the sysctl to set the timeout
|
|
|
|
* to smaller than its inital value, since that value is the
|
|
|
|
* smallest reasonable one. If they want better timestamps they
|
|
|
|
* should use the non-"get"* functions.
|
|
|
|
*/
|
|
|
|
if (hz > 1000)
|
|
|
|
tc_tick = (hz + 500) / 1000;
|
|
|
|
else
|
|
|
|
tc_tick = 1;
|
|
|
|
p = (tc_tick * 1000000) / hz;
|
2007-02-10 00:55:00 +03:00
|
|
|
aprint_verbose("timecounter: Timecounters tick every %d.%03u msec\n",
|
|
|
|
p / 1000, p % 1000);
|
2006-02-04 11:06:23 +03:00
|
|
|
|
|
|
|
/* warm up new timecounter (again) and get rolling. */
|
|
|
|
(void)timecounter->tc_get_timecount(timecounter);
|
|
|
|
(void)timecounter->tc_get_timecount(timecounter);
|
|
|
|
}
|