xref: /onnv-gate/usr/src/uts/i86pc/os/timestamp.c (revision 7905:d05e7a0e095b)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
53446Smrj  * Common Development and Distribution License (the "License").
63446Smrj  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
215084Sjohnlev 
220Sstevel@tonic-gate /*
236336Sbholler  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #include <sys/types.h>
280Sstevel@tonic-gate #include <sys/param.h>
290Sstevel@tonic-gate #include <sys/systm.h>
300Sstevel@tonic-gate #include <sys/disp.h>
310Sstevel@tonic-gate #include <sys/var.h>
320Sstevel@tonic-gate #include <sys/cmn_err.h>
330Sstevel@tonic-gate #include <sys/debug.h>
340Sstevel@tonic-gate #include <sys/x86_archext.h>
350Sstevel@tonic-gate #include <sys/archsystm.h>
360Sstevel@tonic-gate #include <sys/cpuvar.h>
370Sstevel@tonic-gate #include <sys/psm_defs.h>
380Sstevel@tonic-gate #include <sys/clock.h>
390Sstevel@tonic-gate #include <sys/atomic.h>
400Sstevel@tonic-gate #include <sys/lockstat.h>
410Sstevel@tonic-gate #include <sys/smp_impldefs.h>
420Sstevel@tonic-gate #include <sys/dtrace.h>
430Sstevel@tonic-gate #include <sys/time.h>
445084Sjohnlev #include <sys/panic.h>
45*7905SSudheer.Abdul-Salam@Sun.COM #include <sys/cpu.h>
460Sstevel@tonic-gate 
470Sstevel@tonic-gate /*
480Sstevel@tonic-gate  * Using the Pentium's TSC register for gethrtime()
490Sstevel@tonic-gate  * ------------------------------------------------
500Sstevel@tonic-gate  *
510Sstevel@tonic-gate  * The Pentium family, like many chip architectures, has a high-resolution
520Sstevel@tonic-gate  * timestamp counter ("TSC") which increments once per CPU cycle.  The contents
530Sstevel@tonic-gate  * of the timestamp counter are read with the RDTSC instruction.
540Sstevel@tonic-gate  *
550Sstevel@tonic-gate  * As with its UltraSPARC equivalent (the %tick register), TSC's cycle count
560Sstevel@tonic-gate  * must be translated into nanoseconds in order to implement gethrtime().
570Sstevel@tonic-gate  * We avoid inducing floating point operations in this conversion by
580Sstevel@tonic-gate  * implementing the same nsec_scale algorithm as that found in the sun4u
590Sstevel@tonic-gate  * platform code.  The sun4u NATIVE_TIME_TO_NSEC_SCALE block comment contains
600Sstevel@tonic-gate  * a detailed description of the algorithm; the comment is not reproduced
610Sstevel@tonic-gate  * here.  This implementation differs only in its value for NSEC_SHIFT:
620Sstevel@tonic-gate  * we implement an NSEC_SHIFT of 5 (instead of sun4u's 4) to allow for
630Sstevel@tonic-gate  * 60 MHz Pentiums.
640Sstevel@tonic-gate  *
650Sstevel@tonic-gate  * While TSC and %tick are both cycle counting registers, TSC's functionality
660Sstevel@tonic-gate  * falls short in several critical ways:
670Sstevel@tonic-gate  *
680Sstevel@tonic-gate  *  (a)	TSCs on different CPUs are not guaranteed to be in sync.  While in
690Sstevel@tonic-gate  *	practice they often _are_ in sync, this isn't guaranteed by the
700Sstevel@tonic-gate  *	architecture.
710Sstevel@tonic-gate  *
720Sstevel@tonic-gate  *  (b)	The TSC cannot be reliably set to an arbitrary value.  The architecture
730Sstevel@tonic-gate  *	only supports writing the low 32-bits of TSC, making it impractical
740Sstevel@tonic-gate  *	to rewrite.
750Sstevel@tonic-gate  *
760Sstevel@tonic-gate  *  (c)	The architecture doesn't have the capacity to interrupt based on
770Sstevel@tonic-gate  *	arbitrary values of TSC; there is no TICK_CMPR equivalent.
780Sstevel@tonic-gate  *
790Sstevel@tonic-gate  * Together, (a) and (b) imply that software must track the skew between
800Sstevel@tonic-gate  * TSCs and account for it (it is assumed that while there may exist skew,
810Sstevel@tonic-gate  * there does not exist drift).  To determine the skew between CPUs, we
820Sstevel@tonic-gate  * have newly onlined CPUs call tsc_sync_slave(), while the CPU performing
83*7905SSudheer.Abdul-Salam@Sun.COM  * the online operation calls tsc_sync_master().
840Sstevel@tonic-gate  *
850Sstevel@tonic-gate  * In the absence of time-of-day clock adjustments, gethrtime() must stay in
860Sstevel@tonic-gate  * sync with gettimeofday().  This is problematic; given (c), the software
870Sstevel@tonic-gate  * cannot drive its time-of-day source from TSC, and yet they must somehow be
880Sstevel@tonic-gate  * kept in sync.  We implement this by having a routine, tsc_tick(), which
890Sstevel@tonic-gate  * is called once per second from the interrupt which drives time-of-day.
900Sstevel@tonic-gate  *
910Sstevel@tonic-gate  * Note that the hrtime base for gethrtime, tsc_hrtime_base, is modified
920Sstevel@tonic-gate  * atomically with nsec_scale under CLOCK_LOCK.  This assures that time
930Sstevel@tonic-gate  * monotonically increases.
940Sstevel@tonic-gate  */
950Sstevel@tonic-gate 
960Sstevel@tonic-gate #define	NSEC_SHIFT 5
970Sstevel@tonic-gate 
980Sstevel@tonic-gate static uint_t nsec_scale;
990Sstevel@tonic-gate 
1000Sstevel@tonic-gate /*
1010Sstevel@tonic-gate  * These two variables used to be grouped together inside of a structure that
1020Sstevel@tonic-gate  * lived on a single cache line. A regression (bug ID 4623398) caused the
1030Sstevel@tonic-gate  * compiler to emit code that "optimized" away the while-loops below. The
1040Sstevel@tonic-gate  * result was that no synchronization between the onlining and onlined CPUs
1050Sstevel@tonic-gate  * took place.
1060Sstevel@tonic-gate  */
1070Sstevel@tonic-gate static volatile int tsc_ready;
1080Sstevel@tonic-gate static volatile int tsc_sync_go;
1090Sstevel@tonic-gate 
1100Sstevel@tonic-gate /*
1110Sstevel@tonic-gate  * Used as indices into the tsc_sync_snaps[] array.
1120Sstevel@tonic-gate  */
1130Sstevel@tonic-gate #define	TSC_MASTER		0
1140Sstevel@tonic-gate #define	TSC_SLAVE		1
1150Sstevel@tonic-gate 
1160Sstevel@tonic-gate /*
1170Sstevel@tonic-gate  * Used in the tsc_master_sync()/tsc_slave_sync() rendezvous.
1180Sstevel@tonic-gate  */
1190Sstevel@tonic-gate #define	TSC_SYNC_STOP		1
1200Sstevel@tonic-gate #define	TSC_SYNC_GO		2
121*7905SSudheer.Abdul-Salam@Sun.COM #define	TSC_SYNC_DONE		3
122*7905SSudheer.Abdul-Salam@Sun.COM #define	SYNC_ITERATIONS		10
1230Sstevel@tonic-gate 
1245084Sjohnlev #define	TSC_CONVERT_AND_ADD(tsc, hrt, scale) {	 	\
1253446Smrj 	unsigned int *_l = (unsigned int *)&(tsc); 	\
1263446Smrj 	(hrt) += mul32(_l[1], scale) << NSEC_SHIFT; 	\
1270Sstevel@tonic-gate 	(hrt) += mul32(_l[0], scale) >> (32 - NSEC_SHIFT); \
1280Sstevel@tonic-gate }
1290Sstevel@tonic-gate 
1303446Smrj #define	TSC_CONVERT(tsc, hrt, scale) { 			\
1313446Smrj 	unsigned int *_l = (unsigned int *)&(tsc); 	\
1323446Smrj 	(hrt) = mul32(_l[1], scale) << NSEC_SHIFT; 	\
1330Sstevel@tonic-gate 	(hrt) += mul32(_l[0], scale) >> (32 - NSEC_SHIFT); \
1340Sstevel@tonic-gate }
1350Sstevel@tonic-gate 
1363446Smrj int tsc_master_slave_sync_needed = 1;
1370Sstevel@tonic-gate 
1380Sstevel@tonic-gate static int	tsc_max_delta;
1390Sstevel@tonic-gate static hrtime_t tsc_sync_tick_delta[NCPU];
140*7905SSudheer.Abdul-Salam@Sun.COM typedef struct tsc_sync {
141*7905SSudheer.Abdul-Salam@Sun.COM 	volatile hrtime_t master_tsc, slave_tsc;
142*7905SSudheer.Abdul-Salam@Sun.COM } tsc_sync_t;
143*7905SSudheer.Abdul-Salam@Sun.COM static tsc_sync_t *tscp;
144*7905SSudheer.Abdul-Salam@Sun.COM static hrtime_t largest_tsc_delta = 0;
145*7905SSudheer.Abdul-Salam@Sun.COM static ulong_t shortest_write_time = ~0UL;
146*7905SSudheer.Abdul-Salam@Sun.COM 
1470Sstevel@tonic-gate static hrtime_t	tsc_last = 0;
1480Sstevel@tonic-gate static hrtime_t	tsc_last_jumped = 0;
1490Sstevel@tonic-gate static hrtime_t	tsc_hrtime_base = 0;
1500Sstevel@tonic-gate static int	tsc_jumped = 0;
1510Sstevel@tonic-gate 
1520Sstevel@tonic-gate static hrtime_t	shadow_tsc_hrtime_base;
1530Sstevel@tonic-gate static hrtime_t	shadow_tsc_last;
1540Sstevel@tonic-gate static uint_t	shadow_nsec_scale;
1550Sstevel@tonic-gate static uint32_t	shadow_hres_lock;
1565295Srandyf int get_tsc_ready();
1570Sstevel@tonic-gate 
1585084Sjohnlev hrtime_t
1595084Sjohnlev tsc_gethrtime(void)
1605084Sjohnlev {
1615084Sjohnlev 	uint32_t old_hres_lock;
1625084Sjohnlev 	hrtime_t tsc, hrt;
1635084Sjohnlev 
1645084Sjohnlev 	do {
1655084Sjohnlev 		old_hres_lock = hres_lock;
1665084Sjohnlev 
1675084Sjohnlev 		if ((tsc = tsc_read()) >= tsc_last) {
1685084Sjohnlev 			/*
1695084Sjohnlev 			 * It would seem to be obvious that this is true
1705084Sjohnlev 			 * (that is, the past is less than the present),
1715084Sjohnlev 			 * but it isn't true in the presence of suspend/resume
1725084Sjohnlev 			 * cycles.  If we manage to call gethrtime()
1735084Sjohnlev 			 * after a resume, but before the first call to
1745084Sjohnlev 			 * tsc_tick(), we will see the jump.  In this case,
1755084Sjohnlev 			 * we will simply use the value in TSC as the delta.
1765084Sjohnlev 			 */
1775084Sjohnlev 			tsc -= tsc_last;
1785084Sjohnlev 		} else if (tsc >= tsc_last - 2*tsc_max_delta) {
1795084Sjohnlev 			/*
1805084Sjohnlev 			 * There is a chance that tsc_tick() has just run on
1815084Sjohnlev 			 * another CPU, and we have drifted just enough so that
1825084Sjohnlev 			 * we appear behind tsc_last.  In this case, force the
1835084Sjohnlev 			 * delta to be zero.
1845084Sjohnlev 			 */
1855084Sjohnlev 			tsc = 0;
1865084Sjohnlev 		}
1875084Sjohnlev 
1885084Sjohnlev 		hrt = tsc_hrtime_base;
1895084Sjohnlev 
1905084Sjohnlev 		TSC_CONVERT_AND_ADD(tsc, hrt, nsec_scale);
1915084Sjohnlev 	} while ((old_hres_lock & ~1) != hres_lock);
1925084Sjohnlev 
1935084Sjohnlev 	return (hrt);
1945084Sjohnlev }
1955084Sjohnlev 
1965084Sjohnlev hrtime_t
1975084Sjohnlev tsc_gethrtime_delta(void)
1985084Sjohnlev {
1995084Sjohnlev 	uint32_t old_hres_lock;
2005084Sjohnlev 	hrtime_t tsc, hrt;
2016336Sbholler 	ulong_t flags;
2025084Sjohnlev 
2035084Sjohnlev 	do {
2045084Sjohnlev 		old_hres_lock = hres_lock;
2055084Sjohnlev 
2065084Sjohnlev 		/*
2075084Sjohnlev 		 * We need to disable interrupts here to assure that we
2085084Sjohnlev 		 * don't migrate between the call to tsc_read() and
2095084Sjohnlev 		 * adding the CPU's TSC tick delta. Note that disabling
2105084Sjohnlev 		 * and reenabling preemption is forbidden here because
2115084Sjohnlev 		 * we may be in the middle of a fast trap. In the amd64
2125084Sjohnlev 		 * kernel we cannot tolerate preemption during a fast
2135084Sjohnlev 		 * trap. See _update_sregs().
2145084Sjohnlev 		 */
2155084Sjohnlev 
2165084Sjohnlev 		flags = clear_int_flag();
2175084Sjohnlev 		tsc = tsc_read() + tsc_sync_tick_delta[CPU->cpu_id];
2185084Sjohnlev 		restore_int_flag(flags);
2195084Sjohnlev 
2205084Sjohnlev 		/* See comments in tsc_gethrtime() above */
2215084Sjohnlev 
2225084Sjohnlev 		if (tsc >= tsc_last) {
2235084Sjohnlev 			tsc -= tsc_last;
2245084Sjohnlev 		} else if (tsc >= tsc_last - 2 * tsc_max_delta) {
2255084Sjohnlev 			tsc = 0;
2265084Sjohnlev 		}
2275084Sjohnlev 
2285084Sjohnlev 		hrt = tsc_hrtime_base;
2295084Sjohnlev 
2305084Sjohnlev 		TSC_CONVERT_AND_ADD(tsc, hrt, nsec_scale);
2315084Sjohnlev 	} while ((old_hres_lock & ~1) != hres_lock);
2325084Sjohnlev 
2335084Sjohnlev 	return (hrt);
2345084Sjohnlev }
2355084Sjohnlev 
2365084Sjohnlev /*
2375084Sjohnlev  * This is similar to the above, but it cannot actually spin on hres_lock.
2385084Sjohnlev  * As a result, it caches all of the variables it needs; if the variables
2395084Sjohnlev  * don't change, it's done.
2405084Sjohnlev  */
2415084Sjohnlev hrtime_t
2425084Sjohnlev dtrace_gethrtime(void)
2435084Sjohnlev {
2445084Sjohnlev 	uint32_t old_hres_lock;
2455084Sjohnlev 	hrtime_t tsc, hrt;
2466336Sbholler 	ulong_t flags;
2475084Sjohnlev 
2485084Sjohnlev 	do {
2495084Sjohnlev 		old_hres_lock = hres_lock;
2505084Sjohnlev 
2515084Sjohnlev 		/*
2525084Sjohnlev 		 * Interrupts are disabled to ensure that the thread isn't
2535084Sjohnlev 		 * migrated between the tsc_read() and adding the CPU's
2545084Sjohnlev 		 * TSC tick delta.
2555084Sjohnlev 		 */
2565084Sjohnlev 		flags = clear_int_flag();
2575084Sjohnlev 
2585084Sjohnlev 		tsc = tsc_read();
2595084Sjohnlev 
2605084Sjohnlev 		if (gethrtimef == tsc_gethrtime_delta)
2615084Sjohnlev 			tsc += tsc_sync_tick_delta[CPU->cpu_id];
2625084Sjohnlev 
2635084Sjohnlev 		restore_int_flag(flags);
2645084Sjohnlev 
2655084Sjohnlev 		/*
2665084Sjohnlev 		 * See the comments in tsc_gethrtime(), above.
2675084Sjohnlev 		 */
2685084Sjohnlev 		if (tsc >= tsc_last)
2695084Sjohnlev 			tsc -= tsc_last;
2705084Sjohnlev 		else if (tsc >= tsc_last - 2*tsc_max_delta)
2715084Sjohnlev 			tsc = 0;
2725084Sjohnlev 
2735084Sjohnlev 		hrt = tsc_hrtime_base;
2745084Sjohnlev 
2755084Sjohnlev 		TSC_CONVERT_AND_ADD(tsc, hrt, nsec_scale);
2765084Sjohnlev 
2775084Sjohnlev 		if ((old_hres_lock & ~1) == hres_lock)
2785084Sjohnlev 			break;
2795084Sjohnlev 
2805084Sjohnlev 		/*
2815084Sjohnlev 		 * If we're here, the clock lock is locked -- or it has been
2825084Sjohnlev 		 * unlocked and locked since we looked.  This may be due to
2835084Sjohnlev 		 * tsc_tick() running on another CPU -- or it may be because
2845084Sjohnlev 		 * some code path has ended up in dtrace_probe() with
2855084Sjohnlev 		 * CLOCK_LOCK held.  We'll try to determine that we're in
2865084Sjohnlev 		 * the former case by taking another lap if the lock has
2875084Sjohnlev 		 * changed since when we first looked at it.
2885084Sjohnlev 		 */
2895084Sjohnlev 		if (old_hres_lock != hres_lock)
2905084Sjohnlev 			continue;
2915084Sjohnlev 
2925084Sjohnlev 		/*
2935084Sjohnlev 		 * So the lock was and is locked.  We'll use the old data
2945084Sjohnlev 		 * instead.
2955084Sjohnlev 		 */
2965084Sjohnlev 		old_hres_lock = shadow_hres_lock;
2975084Sjohnlev 
2985084Sjohnlev 		/*
2995084Sjohnlev 		 * Again, disable interrupts to ensure that the thread
3005084Sjohnlev 		 * isn't migrated between the tsc_read() and adding
3015084Sjohnlev 		 * the CPU's TSC tick delta.
3025084Sjohnlev 		 */
3035084Sjohnlev 		flags = clear_int_flag();
3045084Sjohnlev 
3055084Sjohnlev 		tsc = tsc_read();
3065084Sjohnlev 
3075084Sjohnlev 		if (gethrtimef == tsc_gethrtime_delta)
3085084Sjohnlev 			tsc += tsc_sync_tick_delta[CPU->cpu_id];
3095084Sjohnlev 
3105084Sjohnlev 		restore_int_flag(flags);
3115084Sjohnlev 
3125084Sjohnlev 		/*
3135084Sjohnlev 		 * See the comments in tsc_gethrtime(), above.
3145084Sjohnlev 		 */
3155084Sjohnlev 		if (tsc >= shadow_tsc_last)
3165084Sjohnlev 			tsc -= shadow_tsc_last;
3175084Sjohnlev 		else if (tsc >= shadow_tsc_last - 2 * tsc_max_delta)
3185084Sjohnlev 			tsc = 0;
3195084Sjohnlev 
3205084Sjohnlev 		hrt = shadow_tsc_hrtime_base;
3215084Sjohnlev 
3225084Sjohnlev 		TSC_CONVERT_AND_ADD(tsc, hrt, shadow_nsec_scale);
3235084Sjohnlev 	} while ((old_hres_lock & ~1) != shadow_hres_lock);
3245084Sjohnlev 
3255084Sjohnlev 	return (hrt);
3265084Sjohnlev }
3275084Sjohnlev 
3285084Sjohnlev hrtime_t
3295084Sjohnlev tsc_gethrtimeunscaled(void)
3305084Sjohnlev {
3315084Sjohnlev 	uint32_t old_hres_lock;
3325084Sjohnlev 	hrtime_t tsc;
3335084Sjohnlev 
3345084Sjohnlev 	do {
3355084Sjohnlev 		old_hres_lock = hres_lock;
3365084Sjohnlev 
3375084Sjohnlev 		/* See tsc_tick(). */
3385084Sjohnlev 		tsc = tsc_read() + tsc_last_jumped;
3395084Sjohnlev 	} while ((old_hres_lock & ~1) != hres_lock);
3405084Sjohnlev 
3415084Sjohnlev 	return (tsc);
3425084Sjohnlev }
3435084Sjohnlev 
3445084Sjohnlev 
3455084Sjohnlev /* Convert a tsc timestamp to nanoseconds */
3465084Sjohnlev void
3475084Sjohnlev tsc_scalehrtime(hrtime_t *tsc)
3485084Sjohnlev {
3495084Sjohnlev 	hrtime_t hrt;
3505084Sjohnlev 	hrtime_t mytsc;
3515084Sjohnlev 
3525084Sjohnlev 	if (tsc == NULL)
3535084Sjohnlev 		return;
3545084Sjohnlev 	mytsc = *tsc;
3555084Sjohnlev 
3565084Sjohnlev 	TSC_CONVERT(mytsc, hrt, nsec_scale);
3575084Sjohnlev 	*tsc  = hrt;
3585084Sjohnlev }
3595084Sjohnlev 
3605084Sjohnlev hrtime_t
3615084Sjohnlev tsc_gethrtimeunscaled_delta(void)
3625084Sjohnlev {
3635084Sjohnlev 	hrtime_t hrt;
3646336Sbholler 	ulong_t flags;
3655084Sjohnlev 
3665084Sjohnlev 	/*
3675084Sjohnlev 	 * Similarly to tsc_gethrtime_delta, we need to disable preemption
3685084Sjohnlev 	 * to prevent migration between the call to tsc_gethrtimeunscaled
3695084Sjohnlev 	 * and adding the CPU's hrtime delta. Note that disabling and
3705084Sjohnlev 	 * reenabling preemption is forbidden here because we may be in the
3715084Sjohnlev 	 * middle of a fast trap. In the amd64 kernel we cannot tolerate
3725084Sjohnlev 	 * preemption during a fast trap. See _update_sregs().
3735084Sjohnlev 	 */
3745084Sjohnlev 
3755084Sjohnlev 	flags = clear_int_flag();
3765084Sjohnlev 	hrt = tsc_gethrtimeunscaled() + tsc_sync_tick_delta[CPU->cpu_id];
3775084Sjohnlev 	restore_int_flag(flags);
3785084Sjohnlev 
3795084Sjohnlev 	return (hrt);
3805084Sjohnlev }
3815084Sjohnlev 
3820Sstevel@tonic-gate /*
383*7905SSudheer.Abdul-Salam@Sun.COM  * Called by the master in the TSC sync operation (usually the boot CPU).
384*7905SSudheer.Abdul-Salam@Sun.COM  * If the slave is discovered to have a skew, gethrtimef will be changed to
385*7905SSudheer.Abdul-Salam@Sun.COM  * point to tsc_gethrtime_delta(). Calculating skews is precise only when
386*7905SSudheer.Abdul-Salam@Sun.COM  * the master and slave TSCs are read simultaneously; however, there is no
387*7905SSudheer.Abdul-Salam@Sun.COM  * algorithm that can read both CPUs in perfect simultaneity. The proposed
388*7905SSudheer.Abdul-Salam@Sun.COM  * algorithm is an approximate method based on the behaviour of cache
389*7905SSudheer.Abdul-Salam@Sun.COM  * management. The slave CPU continuously reads TSC and then reads a global
390*7905SSudheer.Abdul-Salam@Sun.COM  * variable which the master CPU updates. The moment the master's update reaches
391*7905SSudheer.Abdul-Salam@Sun.COM  * the slave's visibility (being forced by an mfence operation) we use the TSC
392*7905SSudheer.Abdul-Salam@Sun.COM  * reading taken on the slave. A corresponding TSC read will be taken on the
393*7905SSudheer.Abdul-Salam@Sun.COM  * master as soon as possible after finishing the mfence operation. But the
394*7905SSudheer.Abdul-Salam@Sun.COM  * delay between causing the slave to notice the invalid cache line and the
395*7905SSudheer.Abdul-Salam@Sun.COM  * competion of mfence is not repeatable. This error is heuristically assumed
396*7905SSudheer.Abdul-Salam@Sun.COM  * to be 1/4th of the total write time as being measured by the two TSC reads
397*7905SSudheer.Abdul-Salam@Sun.COM  * on the master sandwiching the mfence. Furthermore, due to the nature of
398*7905SSudheer.Abdul-Salam@Sun.COM  * bus arbitration, contention on memory bus, etc., the time taken for the write
399*7905SSudheer.Abdul-Salam@Sun.COM  * to reflect globally can vary a lot. So instead of taking a single reading,
400*7905SSudheer.Abdul-Salam@Sun.COM  * a set of readings are taken and the one with least write time is chosen
401*7905SSudheer.Abdul-Salam@Sun.COM  * to calculate the final skew.
4020Sstevel@tonic-gate  */
4030Sstevel@tonic-gate void
4040Sstevel@tonic-gate tsc_sync_master(processorid_t slave)
4050Sstevel@tonic-gate {
406*7905SSudheer.Abdul-Salam@Sun.COM 	ulong_t flags, source, min_write_time = ~0UL;
407*7905SSudheer.Abdul-Salam@Sun.COM 	hrtime_t write_time, x, mtsc_after, tdelta;
408*7905SSudheer.Abdul-Salam@Sun.COM 	tsc_sync_t *tsc = tscp;
409*7905SSudheer.Abdul-Salam@Sun.COM 	int cnt;
4100Sstevel@tonic-gate 
4113446Smrj 	if (!tsc_master_slave_sync_needed)
4123446Smrj 		return;
4133446Smrj 
4140Sstevel@tonic-gate 	flags = clear_int_flag();
415*7905SSudheer.Abdul-Salam@Sun.COM 	source = CPU->cpu_id;
4160Sstevel@tonic-gate 
417*7905SSudheer.Abdul-Salam@Sun.COM 	for (cnt = 0; cnt < SYNC_ITERATIONS; cnt++) {
418*7905SSudheer.Abdul-Salam@Sun.COM 		while (tsc_sync_go != TSC_SYNC_GO)
419*7905SSudheer.Abdul-Salam@Sun.COM 			SMT_PAUSE();
4200Sstevel@tonic-gate 
421*7905SSudheer.Abdul-Salam@Sun.COM 		tsc->master_tsc = tsc_read();
422*7905SSudheer.Abdul-Salam@Sun.COM 		membar_enter();
423*7905SSudheer.Abdul-Salam@Sun.COM 		mtsc_after = tsc_read();
424*7905SSudheer.Abdul-Salam@Sun.COM 		while (tsc_sync_go != TSC_SYNC_DONE)
425*7905SSudheer.Abdul-Salam@Sun.COM 			SMT_PAUSE();
426*7905SSudheer.Abdul-Salam@Sun.COM 		write_time =  mtsc_after - tsc->master_tsc;
427*7905SSudheer.Abdul-Salam@Sun.COM 		if (write_time <= min_write_time) {
428*7905SSudheer.Abdul-Salam@Sun.COM 			min_write_time = write_time;
429*7905SSudheer.Abdul-Salam@Sun.COM 			/*
430*7905SSudheer.Abdul-Salam@Sun.COM 			 * Apply heuristic adjustment only if the calculated
431*7905SSudheer.Abdul-Salam@Sun.COM 			 * delta is > 1/4th of the write time.
432*7905SSudheer.Abdul-Salam@Sun.COM 			 */
433*7905SSudheer.Abdul-Salam@Sun.COM 			x = tsc->slave_tsc - mtsc_after;
434*7905SSudheer.Abdul-Salam@Sun.COM 			if (x < 0)
435*7905SSudheer.Abdul-Salam@Sun.COM 				x = -x;
436*7905SSudheer.Abdul-Salam@Sun.COM 			if (x > (min_write_time/4))
437*7905SSudheer.Abdul-Salam@Sun.COM 				/*
438*7905SSudheer.Abdul-Salam@Sun.COM 				 * Subtract 1/4th of the measured write time
439*7905SSudheer.Abdul-Salam@Sun.COM 				 * from the master's TSC value, as an estimate
440*7905SSudheer.Abdul-Salam@Sun.COM 				 * of how late the mfence completion came
441*7905SSudheer.Abdul-Salam@Sun.COM 				 * after the slave noticed the cache line
442*7905SSudheer.Abdul-Salam@Sun.COM 				 * change.
443*7905SSudheer.Abdul-Salam@Sun.COM 				 */
444*7905SSudheer.Abdul-Salam@Sun.COM 				tdelta = tsc->slave_tsc -
445*7905SSudheer.Abdul-Salam@Sun.COM 				    (mtsc_after - (min_write_time/4));
446*7905SSudheer.Abdul-Salam@Sun.COM 			else
447*7905SSudheer.Abdul-Salam@Sun.COM 				tdelta = tsc->slave_tsc - mtsc_after;
448*7905SSudheer.Abdul-Salam@Sun.COM 			tsc_sync_tick_delta[slave] =
449*7905SSudheer.Abdul-Salam@Sun.COM 			    tsc_sync_tick_delta[source] - tdelta;
450*7905SSudheer.Abdul-Salam@Sun.COM 		}
451*7905SSudheer.Abdul-Salam@Sun.COM 
452*7905SSudheer.Abdul-Salam@Sun.COM 		tsc->master_tsc = tsc->slave_tsc = write_time = 0;
453*7905SSudheer.Abdul-Salam@Sun.COM 		membar_enter();
454*7905SSudheer.Abdul-Salam@Sun.COM 		tsc_sync_go = TSC_SYNC_STOP;
455*7905SSudheer.Abdul-Salam@Sun.COM 	}
456*7905SSudheer.Abdul-Salam@Sun.COM 	if (tdelta < 0)
457*7905SSudheer.Abdul-Salam@Sun.COM 		tdelta = -tdelta;
458*7905SSudheer.Abdul-Salam@Sun.COM 	if (tdelta > largest_tsc_delta)
459*7905SSudheer.Abdul-Salam@Sun.COM 		largest_tsc_delta = tdelta;
460*7905SSudheer.Abdul-Salam@Sun.COM 	if (min_write_time < shortest_write_time)
461*7905SSudheer.Abdul-Salam@Sun.COM 		shortest_write_time = min_write_time;
4620Sstevel@tonic-gate 	/*
463*7905SSudheer.Abdul-Salam@Sun.COM 	 * Enable delta variants of tsc functions if the largest of all chosen
464*7905SSudheer.Abdul-Salam@Sun.COM 	 * deltas is > smallest of the write time.
4650Sstevel@tonic-gate 	 */
466*7905SSudheer.Abdul-Salam@Sun.COM 	if (largest_tsc_delta > shortest_write_time) {
467*7905SSudheer.Abdul-Salam@Sun.COM 		gethrtimef = tsc_gethrtime_delta;
468*7905SSudheer.Abdul-Salam@Sun.COM 		gethrtimeunscaledf = tsc_gethrtimeunscaled_delta;
469*7905SSudheer.Abdul-Salam@Sun.COM 	}
4700Sstevel@tonic-gate 	restore_int_flag(flags);
4710Sstevel@tonic-gate }
4720Sstevel@tonic-gate 
4730Sstevel@tonic-gate void
4740Sstevel@tonic-gate tsc_sync_slave(void)
4750Sstevel@tonic-gate {
4763446Smrj 	ulong_t flags;
477*7905SSudheer.Abdul-Salam@Sun.COM 	hrtime_t s1;
478*7905SSudheer.Abdul-Salam@Sun.COM 	tsc_sync_t *tsc = tscp;
479*7905SSudheer.Abdul-Salam@Sun.COM 	int cnt;
4800Sstevel@tonic-gate 
4813446Smrj 	if (!tsc_master_slave_sync_needed)
4823446Smrj 		return;
4833446Smrj 
4840Sstevel@tonic-gate 	flags = clear_int_flag();
4850Sstevel@tonic-gate 
486*7905SSudheer.Abdul-Salam@Sun.COM 	for (cnt = 0; cnt < SYNC_ITERATIONS; cnt++) {
487*7905SSudheer.Abdul-Salam@Sun.COM 		/* Re-fill the cache line */
488*7905SSudheer.Abdul-Salam@Sun.COM 		s1 = tsc->master_tsc;
489*7905SSudheer.Abdul-Salam@Sun.COM 		membar_enter();
490*7905SSudheer.Abdul-Salam@Sun.COM 		tsc_sync_go = TSC_SYNC_GO;
491*7905SSudheer.Abdul-Salam@Sun.COM 		do {
492*7905SSudheer.Abdul-Salam@Sun.COM 			/*
493*7905SSudheer.Abdul-Salam@Sun.COM 			 * Do not put an SMT_PAUSE here. For instance,
494*7905SSudheer.Abdul-Salam@Sun.COM 			 * if the master and slave are really the same
495*7905SSudheer.Abdul-Salam@Sun.COM 			 * hyper-threaded CPU, then you want the master
496*7905SSudheer.Abdul-Salam@Sun.COM 			 * to yield to the slave as quickly as possible here,
497*7905SSudheer.Abdul-Salam@Sun.COM 			 * but not the other way.
498*7905SSudheer.Abdul-Salam@Sun.COM 			 */
499*7905SSudheer.Abdul-Salam@Sun.COM 			s1 = tsc_read();
500*7905SSudheer.Abdul-Salam@Sun.COM 		} while (tsc->master_tsc == 0);
501*7905SSudheer.Abdul-Salam@Sun.COM 		tsc->slave_tsc = s1;
502*7905SSudheer.Abdul-Salam@Sun.COM 		membar_enter();
503*7905SSudheer.Abdul-Salam@Sun.COM 		tsc_sync_go = TSC_SYNC_DONE;
5040Sstevel@tonic-gate 
505*7905SSudheer.Abdul-Salam@Sun.COM 		while (tsc_sync_go != TSC_SYNC_STOP)
506*7905SSudheer.Abdul-Salam@Sun.COM 			SMT_PAUSE();
507*7905SSudheer.Abdul-Salam@Sun.COM 	}
5080Sstevel@tonic-gate 
5090Sstevel@tonic-gate 	restore_int_flag(flags);
5100Sstevel@tonic-gate }
5110Sstevel@tonic-gate 
5120Sstevel@tonic-gate /*
5133446Smrj  * Called once per second on a CPU from the cyclic subsystem's
5143446Smrj  * CY_HIGH_LEVEL interrupt.  (No longer just cpu0-only)
5150Sstevel@tonic-gate  */
5160Sstevel@tonic-gate void
5170Sstevel@tonic-gate tsc_tick(void)
5180Sstevel@tonic-gate {
5190Sstevel@tonic-gate 	hrtime_t now, delta;
5200Sstevel@tonic-gate 	ushort_t spl;
5210Sstevel@tonic-gate 
5220Sstevel@tonic-gate 	/*
5230Sstevel@tonic-gate 	 * Before we set the new variables, we set the shadow values.  This
5240Sstevel@tonic-gate 	 * allows for lock free operation in dtrace_gethrtime().
5250Sstevel@tonic-gate 	 */
5260Sstevel@tonic-gate 	lock_set_spl((lock_t *)&shadow_hres_lock + HRES_LOCK_OFFSET,
5270Sstevel@tonic-gate 	    ipltospl(CBE_HIGH_PIL), &spl);
5280Sstevel@tonic-gate 
5290Sstevel@tonic-gate 	shadow_tsc_hrtime_base = tsc_hrtime_base;
5300Sstevel@tonic-gate 	shadow_tsc_last = tsc_last;
5310Sstevel@tonic-gate 	shadow_nsec_scale = nsec_scale;
5320Sstevel@tonic-gate 
5330Sstevel@tonic-gate 	shadow_hres_lock++;
5340Sstevel@tonic-gate 	splx(spl);
5350Sstevel@tonic-gate 
5360Sstevel@tonic-gate 	CLOCK_LOCK(&spl);
5370Sstevel@tonic-gate 
5380Sstevel@tonic-gate 	now = tsc_read();
5390Sstevel@tonic-gate 
5401389Sdmick 	if (gethrtimef == tsc_gethrtime_delta)
5411389Sdmick 		now += tsc_sync_tick_delta[CPU->cpu_id];
5421389Sdmick 
5430Sstevel@tonic-gate 	if (now < tsc_last) {
5440Sstevel@tonic-gate 		/*
5450Sstevel@tonic-gate 		 * The TSC has just jumped into the past.  We assume that
5460Sstevel@tonic-gate 		 * this is due to a suspend/resume cycle, and we're going
5470Sstevel@tonic-gate 		 * to use the _current_ value of TSC as the delta.  This
5480Sstevel@tonic-gate 		 * will keep tsc_hrtime_base correct.  We're also going to
5490Sstevel@tonic-gate 		 * assume that rate of tsc does not change after a suspend
5500Sstevel@tonic-gate 		 * resume (i.e nsec_scale remains the same).
5510Sstevel@tonic-gate 		 */
5520Sstevel@tonic-gate 		delta = now;
5530Sstevel@tonic-gate 		tsc_last_jumped += tsc_last;
5540Sstevel@tonic-gate 		tsc_jumped = 1;
5550Sstevel@tonic-gate 	} else {
5560Sstevel@tonic-gate 		/*
5570Sstevel@tonic-gate 		 * Determine the number of TSC ticks since the last clock
5580Sstevel@tonic-gate 		 * tick, and add that to the hrtime base.
5590Sstevel@tonic-gate 		 */
5600Sstevel@tonic-gate 		delta = now - tsc_last;
5610Sstevel@tonic-gate 	}
5620Sstevel@tonic-gate 
5630Sstevel@tonic-gate 	TSC_CONVERT_AND_ADD(delta, tsc_hrtime_base, nsec_scale);
5640Sstevel@tonic-gate 	tsc_last = now;
5650Sstevel@tonic-gate 
5660Sstevel@tonic-gate 	CLOCK_UNLOCK(spl);
5670Sstevel@tonic-gate }
5680Sstevel@tonic-gate 
5695084Sjohnlev void
5705084Sjohnlev tsc_hrtimeinit(uint64_t cpu_freq_hz)
5710Sstevel@tonic-gate {
5725084Sjohnlev 	extern int gethrtime_hires;
5735084Sjohnlev 	longlong_t tsc;
5745084Sjohnlev 	ulong_t flags;
5750Sstevel@tonic-gate 
5765084Sjohnlev 	/*
5775084Sjohnlev 	 * cpu_freq_hz is the measured cpu frequency in hertz
5785084Sjohnlev 	 */
5790Sstevel@tonic-gate 
5800Sstevel@tonic-gate 	/*
5815084Sjohnlev 	 * We can't accommodate CPUs slower than 31.25 MHz.
5820Sstevel@tonic-gate 	 */
5835084Sjohnlev 	ASSERT(cpu_freq_hz > NANOSEC / (1 << NSEC_SHIFT));
5845084Sjohnlev 	nsec_scale =
5855084Sjohnlev 	    (uint_t)(((uint64_t)NANOSEC << (32 - NSEC_SHIFT)) / cpu_freq_hz);
5860Sstevel@tonic-gate 
5870Sstevel@tonic-gate 	flags = clear_int_flag();
5885084Sjohnlev 	tsc = tsc_read();
5895084Sjohnlev 	(void) tsc_gethrtime();
5905084Sjohnlev 	tsc_max_delta = tsc_read() - tsc;
5910Sstevel@tonic-gate 	restore_int_flag(flags);
5925084Sjohnlev 	gethrtimef = tsc_gethrtime;
5935084Sjohnlev 	gethrtimeunscaledf = tsc_gethrtimeunscaled;
5945084Sjohnlev 	scalehrtimef = tsc_scalehrtime;
5955084Sjohnlev 	hrtime_tick = tsc_tick;
5965084Sjohnlev 	gethrtime_hires = 1;
597*7905SSudheer.Abdul-Salam@Sun.COM 	/*
598*7905SSudheer.Abdul-Salam@Sun.COM 	 * Allocate memory for the structure used in the tsc sync logic.
599*7905SSudheer.Abdul-Salam@Sun.COM 	 * This structure should be aligned on a multiple of cache line size.
600*7905SSudheer.Abdul-Salam@Sun.COM 	 */
601*7905SSudheer.Abdul-Salam@Sun.COM 	tscp = kmem_zalloc(PAGESIZE, KM_SLEEP);
6020Sstevel@tonic-gate }
6035295Srandyf 
6045295Srandyf int
6055295Srandyf get_tsc_ready()
6065295Srandyf {
6075295Srandyf 	return (tsc_ready);
6085295Srandyf }
6095295Srandyf 
6105295Srandyf /*
6115295Srandyf  * Adjust all the deltas by adding the passed value to the array.
6125295Srandyf  * Then use the "delt" versions of the the gethrtime functions.
6135295Srandyf  * Note that 'tdelta' _could_ be a negative number, which should
6145295Srandyf  * reduce the values in the array (used, for example, if the Solaris
6155295Srandyf  * instance was moved by a virtual manager to a machine with a higher
6165295Srandyf  * value of tsc).
6175295Srandyf  */
6185295Srandyf void
6195295Srandyf tsc_adjust_delta(hrtime_t tdelta)
6205295Srandyf {
6215295Srandyf 	int		i;
6225295Srandyf 
6235295Srandyf 	for (i = 0; i < NCPU; i++) {
6245295Srandyf 		tsc_sync_tick_delta[i] += tdelta;
6255295Srandyf 	}
6265295Srandyf 
6275295Srandyf 	gethrtimef = tsc_gethrtime_delta;
6285295Srandyf 	gethrtimeunscaledf = tsc_gethrtimeunscaled_delta;
6295295Srandyf }
6305295Srandyf 
6315295Srandyf /*
6325295Srandyf  * Functions to manage TSC and high-res time on suspend and resume.
6335295Srandyf  */
6345295Srandyf 
6355295Srandyf /*
6365295Srandyf  * declarations needed for time adjustment
6375295Srandyf  */
6385295Srandyf extern void	rtcsync(void);
6395295Srandyf extern tod_ops_t *tod_ops;
6405295Srandyf /* There must be a better way than exposing nsec_scale! */
6415295Srandyf extern uint_t	nsec_scale;
6425295Srandyf static uint64_t tsc_saved_tsc = 0; /* 1 in 2^64 chance this'll screw up! */
6435295Srandyf static timestruc_t tsc_saved_ts;
6445295Srandyf static int	tsc_needs_resume = 0;	/* We only want to do this once. */
6455295Srandyf int		tsc_delta_onsuspend = 0;
6465295Srandyf int		tsc_adjust_seconds = 1;
6475295Srandyf int		tsc_suspend_count = 0;
6485295Srandyf int		tsc_resume_in_cyclic = 0;
6495295Srandyf 
6505295Srandyf /*
6515295Srandyf  * Let timestamp.c know that we are suspending.  It needs to take
6525295Srandyf  * snapshots of the current time, and do any pre-suspend work.
6535295Srandyf  */
6545295Srandyf void
6555295Srandyf tsc_suspend(void)
6565295Srandyf {
6575295Srandyf /*
6585295Srandyf  * What we need to do here, is to get the time we suspended, so that we
6595295Srandyf  * know how much we should add to the resume.
6605295Srandyf  * This routine is called by each CPU, so we need to handle reentry.
6615295Srandyf  */
6625295Srandyf 	if (tsc_gethrtime_enable) {
6635295Srandyf 		/*
6645295Srandyf 		 * We put the tsc_read() inside the lock as it
6655295Srandyf 		 * as no locking constraints, and it puts the
6665295Srandyf 		 * aquired value closer to the time stamp (in
6675295Srandyf 		 * case we delay getting the lock).
6685295Srandyf 		 */
6695295Srandyf 		mutex_enter(&tod_lock);
6705295Srandyf 		tsc_saved_tsc = tsc_read();
6715295Srandyf 		tsc_saved_ts = TODOP_GET(tod_ops);
6725295Srandyf 		mutex_exit(&tod_lock);
6735295Srandyf 		/* We only want to do this once. */
6745295Srandyf 		if (tsc_needs_resume == 0) {
6755295Srandyf 			if (tsc_delta_onsuspend) {
6765295Srandyf 				tsc_adjust_delta(tsc_saved_tsc);
6775295Srandyf 			} else {
6785295Srandyf 				tsc_adjust_delta(nsec_scale);
6795295Srandyf 			}
6805295Srandyf 			tsc_suspend_count++;
6815295Srandyf 		}
6825295Srandyf 	}
6835295Srandyf 
6845295Srandyf 	invalidate_cache();
6855295Srandyf 	tsc_needs_resume = 1;
6865295Srandyf }
6875295Srandyf 
6885295Srandyf /*
6895295Srandyf  * Restore all timestamp state based on the snapshots taken at
6905295Srandyf  * suspend time.
6915295Srandyf  */
6925295Srandyf void
6935295Srandyf tsc_resume(void)
6945295Srandyf {
6955295Srandyf 	/*
6965295Srandyf 	 * We only need to (and want to) do this once.  So let the first
6975295Srandyf 	 * caller handle this (we are locked by the cpu lock), as it
6985295Srandyf 	 * is preferential that we get the earliest sync.
6995295Srandyf 	 */
7005295Srandyf 	if (tsc_needs_resume) {
7015295Srandyf 		/*
7025295Srandyf 		 * If using the TSC, adjust the delta based on how long
7035295Srandyf 		 * we were sleeping (or away).  We also adjust for
7045295Srandyf 		 * migration and a grown TSC.
7055295Srandyf 		 */
7065295Srandyf 		if (tsc_saved_tsc != 0) {
7075295Srandyf 			timestruc_t	ts;
7085295Srandyf 			hrtime_t	now, sleep_tsc = 0;
7095295Srandyf 			int		sleep_sec;
7105295Srandyf 			extern void	tsc_tick(void);
7115295Srandyf 			extern uint64_t cpu_freq_hz;
7125295Srandyf 
7135295Srandyf 			/* tsc_read() MUST be before TODOP_GET() */
7145295Srandyf 			mutex_enter(&tod_lock);
7155295Srandyf 			now = tsc_read();
7165295Srandyf 			ts = TODOP_GET(tod_ops);
7175295Srandyf 			mutex_exit(&tod_lock);
7185295Srandyf 
7195295Srandyf 			/* Compute seconds of sleep time */
7205295Srandyf 			sleep_sec = ts.tv_sec - tsc_saved_ts.tv_sec;
7215295Srandyf 
7225295Srandyf 			/*
7235295Srandyf 			 * If the saved sec is less that or equal to
7245295Srandyf 			 * the current ts, then there is likely a
7255295Srandyf 			 * problem with the clock.  Assume at least
7265295Srandyf 			 * one second has passed, so that time goes forward.
7275295Srandyf 			 */
7285295Srandyf 			if (sleep_sec <= 0) {
7295295Srandyf 				sleep_sec = 1;
7305295Srandyf 			}
7315295Srandyf 
7325295Srandyf 			/* How many TSC's should have occured while sleeping */
7335295Srandyf 			if (tsc_adjust_seconds)
7345295Srandyf 				sleep_tsc = sleep_sec * cpu_freq_hz;
7355295Srandyf 
7365295Srandyf 			/*
7375295Srandyf 			 * We also want to subtract from the "sleep_tsc"
7385295Srandyf 			 * the current value of tsc_read(), so that our
7395295Srandyf 			 * adjustment accounts for the amount of time we
7405295Srandyf 			 * have been resumed _or_ an adjustment based on
7415295Srandyf 			 * the fact that we didn't actually power off the
7425295Srandyf 			 * CPU (migration is another issue, but _should_
7435295Srandyf 			 * also comply with this calculation).  If the CPU
7445295Srandyf 			 * never powered off, then:
7455295Srandyf 			 *    'now == sleep_tsc + saved_tsc'
7465295Srandyf 			 * and the delta will effectively be "0".
7475295Srandyf 			 */
7485295Srandyf 			sleep_tsc -= now;
7495295Srandyf 			if (tsc_delta_onsuspend) {
7505295Srandyf 				tsc_adjust_delta(sleep_tsc);
7515295Srandyf 			} else {
7525295Srandyf 				tsc_adjust_delta(tsc_saved_tsc + sleep_tsc);
7535295Srandyf 			}
7545295Srandyf 			tsc_saved_tsc = 0;
7555295Srandyf 
7565295Srandyf 			tsc_tick();
7575295Srandyf 		}
7585295Srandyf 		tsc_needs_resume = 0;
7595295Srandyf 	}
7605295Srandyf 
7615295Srandyf }
762