xref: /freebsd/sys/kern/kern_clock.c (revision cff2e749e23dc2fff20218ca74413a1ea7f46273)
1df8bae1dSRodney W. Grimes /*-
2df8bae1dSRodney W. Grimes  * Copyright (c) 1982, 1986, 1991, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  * (c) UNIX System Laboratories, Inc.
5df8bae1dSRodney W. Grimes  * All or some portions of this file are derived from material licensed
6df8bae1dSRodney W. Grimes  * to the University of California by American Telephone and Telegraph
7df8bae1dSRodney W. Grimes  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8df8bae1dSRodney W. Grimes  * the permission of UNIX System Laboratories, Inc.
9df8bae1dSRodney W. Grimes  *
10df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
11df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
12df8bae1dSRodney W. Grimes  * are met:
13df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
14df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
15df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
16df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
17df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
18df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
19df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
20df8bae1dSRodney W. Grimes  *    without specific prior written permission.
21df8bae1dSRodney W. Grimes  *
22df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
33df8bae1dSRodney W. Grimes  *
34df8bae1dSRodney W. Grimes  *	@(#)kern_clock.c	8.5 (Berkeley) 1/21/94
35df8bae1dSRodney W. Grimes  */
36df8bae1dSRodney W. Grimes 
37677b542eSDavid E. O'Brien #include <sys/cdefs.h>
38677b542eSDavid E. O'Brien __FBSDID("$FreeBSD$");
39677b542eSDavid E. O'Brien 
404da0d332SPeter Wemm #include "opt_hwpmc_hooks.h"
4132c20357SPoul-Henning Kamp #include "opt_ntp.h"
42370c3cb5SSean Kelly #include "opt_watchdog.h"
4332c20357SPoul-Henning Kamp 
44df8bae1dSRodney W. Grimes #include <sys/param.h>
45df8bae1dSRodney W. Grimes #include <sys/systm.h>
46df8bae1dSRodney W. Grimes #include <sys/callout.h>
472d50560aSMarcel Moolenaar #include <sys/kdb.h>
48df8bae1dSRodney W. Grimes #include <sys/kernel.h>
49f34fa851SJohn Baldwin #include <sys/lock.h>
5061d80e90SJohn Baldwin #include <sys/ktr.h>
5135e0e5b3SJohn Baldwin #include <sys/mutex.h>
52df8bae1dSRodney W. Grimes #include <sys/proc.h>
53e4625663SJeff Roberson #include <sys/resource.h>
54df8bae1dSRodney W. Grimes #include <sys/resourcevar.h>
55b43179fbSJeff Roberson #include <sys/sched.h>
56797f2d22SPoul-Henning Kamp #include <sys/signalvar.h>
576caa8a15SJohn Baldwin #include <sys/smp.h>
588a129caeSDavid Greenman #include <vm/vm.h>
59efeaf95aSDavid Greenman #include <vm/pmap.h>
60efeaf95aSDavid Greenman #include <vm/vm_map.h>
61797f2d22SPoul-Henning Kamp #include <sys/sysctl.h>
628088699fSJohn Baldwin #include <sys/bus.h>
638088699fSJohn Baldwin #include <sys/interrupt.h>
64104a9b7eSAlexander Kabaev #include <sys/limits.h>
65e7fa55afSPoul-Henning Kamp #include <sys/timetc.h>
66df8bae1dSRodney W. Grimes 
67df8bae1dSRodney W. Grimes #include <machine/cpu.h>
68df8bae1dSRodney W. Grimes 
69df8bae1dSRodney W. Grimes #ifdef GPROF
70df8bae1dSRodney W. Grimes #include <sys/gmon.h>
71df8bae1dSRodney W. Grimes #endif
72df8bae1dSRodney W. Grimes 
7336c0fd9dSJoseph Koshy #ifdef HWPMC_HOOKS
7436c0fd9dSJoseph Koshy #include <sys/pmckern.h>
7536c0fd9dSJoseph Koshy #endif
7636c0fd9dSJoseph Koshy 
77e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
78e4fc250cSLuigi Rizzo extern void hardclock_device_poll(void);
79e4fc250cSLuigi Rizzo #endif /* DEVICE_POLLING */
80eae8fc2cSSteve Passe 
814d77a549SAlfred Perlstein static void initclocks(void *dummy);
822b14f991SJulian Elischer SYSINIT(clocks, SI_SUB_CLOCKS, SI_ORDER_FIRST, initclocks, NULL)
832b14f991SJulian Elischer 
84f23b4c91SGarrett Wollman /* Some of these don't belong here, but it's easiest to concentrate them. */
85eae8fc2cSSteve Passe long cp_time[CPUSTATES];
86f23b4c91SGarrett Wollman 
8762919d78SPeter Wemm static int
8862919d78SPeter Wemm sysctl_kern_cp_time(SYSCTL_HANDLER_ARGS)
8962919d78SPeter Wemm {
9062919d78SPeter Wemm 	int error;
91cff2e749SPaul Saab #ifdef SCTL_MASK32
9262919d78SPeter Wemm 	int i;
9362919d78SPeter Wemm 	unsigned int cp_time32[CPUSTATES];
9462919d78SPeter Wemm 
95cff2e749SPaul Saab 	if (req->flags & SCTL_MASK32) {
9662919d78SPeter Wemm 		if (!req->oldptr)
9762919d78SPeter Wemm 			return SYSCTL_OUT(req, 0, sizeof(cp_time32));
9862919d78SPeter Wemm 		for (i = 0; i < CPUSTATES; i++)
9962919d78SPeter Wemm 			cp_time32[i] = (unsigned int)cp_time[i];
10062919d78SPeter Wemm 		error = SYSCTL_OUT(req, cp_time32, sizeof(cp_time32));
10162919d78SPeter Wemm 	} else
10262919d78SPeter Wemm #endif
10362919d78SPeter Wemm 	{
10462919d78SPeter Wemm 		if (!req->oldptr)
10562919d78SPeter Wemm 			return SYSCTL_OUT(req, 0, sizeof(cp_time));
10662919d78SPeter Wemm 		error = SYSCTL_OUT(req, cp_time, sizeof(cp_time));
10762919d78SPeter Wemm 	}
10862919d78SPeter Wemm 	return error;
10962919d78SPeter Wemm }
11062919d78SPeter Wemm 
11162919d78SPeter Wemm SYSCTL_PROC(_kern, OID_AUTO, cp_time, CTLTYPE_LONG|CTLFLAG_RD,
11262919d78SPeter Wemm     0,0, sysctl_kern_cp_time, "LU", "CPU time statistics");
1137f112b04SRobert Watson 
1144103b765SPoul-Henning Kamp #ifdef SW_WATCHDOG
1154103b765SPoul-Henning Kamp #include <sys/watchdog.h>
116370c3cb5SSean Kelly 
1174103b765SPoul-Henning Kamp static int watchdog_ticks;
118370c3cb5SSean Kelly static int watchdog_enabled;
1194103b765SPoul-Henning Kamp static void watchdog_fire(void);
1204103b765SPoul-Henning Kamp static void watchdog_config(void *, u_int, int *);
1214103b765SPoul-Henning Kamp #endif /* SW_WATCHDOG */
122370c3cb5SSean Kelly 
1233bac064fSPoul-Henning Kamp /*
124df8bae1dSRodney W. Grimes  * Clock handling routines.
125df8bae1dSRodney W. Grimes  *
126b05dcf3cSPoul-Henning Kamp  * This code is written to operate with two timers that run independently of
127b05dcf3cSPoul-Henning Kamp  * each other.
1287ec73f64SPoul-Henning Kamp  *
129b05dcf3cSPoul-Henning Kamp  * The main timer, running hz times per second, is used to trigger interval
130b05dcf3cSPoul-Henning Kamp  * timers, timeouts and rescheduling as needed.
1317ec73f64SPoul-Henning Kamp  *
132b05dcf3cSPoul-Henning Kamp  * The second timer handles kernel and user profiling,
133b05dcf3cSPoul-Henning Kamp  * and does resource use estimation.  If the second timer is programmable,
134b05dcf3cSPoul-Henning Kamp  * it is randomized to avoid aliasing between the two clocks.  For example,
135b05dcf3cSPoul-Henning Kamp  * the randomization prevents an adversary from always giving up the cpu
136df8bae1dSRodney W. Grimes  * just before its quantum expires.  Otherwise, it would never accumulate
137df8bae1dSRodney W. Grimes  * cpu ticks.  The mean frequency of the second timer is stathz.
138b05dcf3cSPoul-Henning Kamp  *
139b05dcf3cSPoul-Henning Kamp  * If no second timer exists, stathz will be zero; in this case we drive
140b05dcf3cSPoul-Henning Kamp  * profiling and statistics off the main clock.  This WILL NOT be accurate;
141b05dcf3cSPoul-Henning Kamp  * do not do it unless absolutely necessary.
142b05dcf3cSPoul-Henning Kamp  *
143df8bae1dSRodney W. Grimes  * The statistics clock may (or may not) be run at a higher rate while
144b05dcf3cSPoul-Henning Kamp  * profiling.  This profile clock runs at profhz.  We require that profhz
145b05dcf3cSPoul-Henning Kamp  * be an integral multiple of stathz.
146b05dcf3cSPoul-Henning Kamp  *
147b05dcf3cSPoul-Henning Kamp  * If the statistics clock is running fast, it must be divided by the ratio
148b05dcf3cSPoul-Henning Kamp  * profhz/stathz for statistics.  (For profiling, every tick counts.)
149df8bae1dSRodney W. Grimes  *
1507ec73f64SPoul-Henning Kamp  * Time-of-day is maintained using a "timecounter", which may or may
1517ec73f64SPoul-Henning Kamp  * not be related to the hardware generating the above mentioned
1527ec73f64SPoul-Henning Kamp  * interrupts.
153df8bae1dSRodney W. Grimes  */
154df8bae1dSRodney W. Grimes 
155df8bae1dSRodney W. Grimes int	stathz;
156df8bae1dSRodney W. Grimes int	profhz;
157238dd320SJake Burkholder int	profprocs;
158df8bae1dSRodney W. Grimes int	ticks;
159238dd320SJake Burkholder int	psratio;
160df8bae1dSRodney W. Grimes 
161df8bae1dSRodney W. Grimes /*
162df8bae1dSRodney W. Grimes  * Initialize clock frequencies and start both clocks running.
163df8bae1dSRodney W. Grimes  */
1642b14f991SJulian Elischer /* ARGSUSED*/
1652b14f991SJulian Elischer static void
166d841aaa7SBruce Evans initclocks(dummy)
167d841aaa7SBruce Evans 	void *dummy;
168df8bae1dSRodney W. Grimes {
169df8bae1dSRodney W. Grimes 	register int i;
170df8bae1dSRodney W. Grimes 
171df8bae1dSRodney W. Grimes 	/*
172df8bae1dSRodney W. Grimes 	 * Set divisors to 1 (normal case) and let the machine-specific
173df8bae1dSRodney W. Grimes 	 * code do its bit.
174df8bae1dSRodney W. Grimes 	 */
175df8bae1dSRodney W. Grimes 	cpu_initclocks();
176df8bae1dSRodney W. Grimes 
177df8bae1dSRodney W. Grimes 	/*
178df8bae1dSRodney W. Grimes 	 * Compute profhz/stathz, and fix profhz if needed.
179df8bae1dSRodney W. Grimes 	 */
180df8bae1dSRodney W. Grimes 	i = stathz ? stathz : hz;
181df8bae1dSRodney W. Grimes 	if (profhz == 0)
182df8bae1dSRodney W. Grimes 		profhz = i;
183df8bae1dSRodney W. Grimes 	psratio = profhz / i;
1844103b765SPoul-Henning Kamp #ifdef SW_WATCHDOG
1854103b765SPoul-Henning Kamp 	EVENTHANDLER_REGISTER(watchdog_list, watchdog_config, NULL, 0);
1864103b765SPoul-Henning Kamp #endif
187df8bae1dSRodney W. Grimes }
188df8bae1dSRodney W. Grimes 
189df8bae1dSRodney W. Grimes /*
190238dd320SJake Burkholder  * Each time the real-time timer fires, this function is called on all CPUs.
191238dd320SJake Burkholder  * Note that hardclock() calls hardclock_process() for the boot CPU, so only
192238dd320SJake Burkholder  * the other CPUs in the system need to call this function.
1936caa8a15SJohn Baldwin  */
1946caa8a15SJohn Baldwin void
195238dd320SJake Burkholder hardclock_process(frame)
196238dd320SJake Burkholder 	register struct clockframe *frame;
1976caa8a15SJohn Baldwin {
1986caa8a15SJohn Baldwin 	struct pstats *pstats;
199238dd320SJake Burkholder 	struct thread *td = curthread;
200b40ce416SJulian Elischer 	struct proc *p = td->td_proc;
2016caa8a15SJohn Baldwin 
2026caa8a15SJohn Baldwin 	/*
2036caa8a15SJohn Baldwin 	 * Run current process's virtual and profile time, as needed.
2046caa8a15SJohn Baldwin 	 */
205238dd320SJake Burkholder 	mtx_lock_spin_flags(&sched_lock, MTX_QUIET);
2060e2a4d3aSDavid Xu 	if (p->p_flag & P_SA) {
207b40ce416SJulian Elischer 		/* XXXKSE What to do? */
208b40ce416SJulian Elischer 	} else {
2096caa8a15SJohn Baldwin 		pstats = p->p_stats;
210238dd320SJake Burkholder 		if (CLKF_USERMODE(frame) &&
2116caa8a15SJohn Baldwin 		    timevalisset(&pstats->p_timer[ITIMER_VIRTUAL].it_value) &&
212b40ce416SJulian Elischer 		    itimerdecr(&pstats->p_timer[ITIMER_VIRTUAL], tick) == 0) {
213b40ce416SJulian Elischer 			p->p_sflag |= PS_ALRMPEND;
2144a338afdSJulian Elischer 			td->td_flags |= TDF_ASTPENDING;
215b40ce416SJulian Elischer 		}
2166caa8a15SJohn Baldwin 		if (timevalisset(&pstats->p_timer[ITIMER_PROF].it_value) &&
217b40ce416SJulian Elischer 		    itimerdecr(&pstats->p_timer[ITIMER_PROF], tick) == 0) {
218b40ce416SJulian Elischer 			p->p_sflag |= PS_PROFPEND;
2194a338afdSJulian Elischer 			td->td_flags |= TDF_ASTPENDING;
220b40ce416SJulian Elischer 		}
221b40ce416SJulian Elischer 	}
222238dd320SJake Burkholder 	mtx_unlock_spin_flags(&sched_lock, MTX_QUIET);
22336c0fd9dSJoseph Koshy 
22436c0fd9dSJoseph Koshy #ifdef	HWPMC_HOOKS
22536c0fd9dSJoseph Koshy 	if (PMC_CPU_HAS_SAMPLES(PCPU_GET(cpuid)))
22636c0fd9dSJoseph Koshy 		PMC_CALL_HOOK_UNLOCKED(curthread, PMC_FN_DO_SAMPLES, NULL);
22736c0fd9dSJoseph Koshy #endif
2286caa8a15SJohn Baldwin }
2296caa8a15SJohn Baldwin 
2306caa8a15SJohn Baldwin /*
231df8bae1dSRodney W. Grimes  * The real-time timer, interrupting hz times per second.
232df8bae1dSRodney W. Grimes  */
233df8bae1dSRodney W. Grimes void
234df8bae1dSRodney W. Grimes hardclock(frame)
235df8bae1dSRodney W. Grimes 	register struct clockframe *frame;
236df8bae1dSRodney W. Grimes {
237fa2fbc3dSJake Burkholder 	int need_softclock = 0;
238df8bae1dSRodney W. Grimes 
239c9f4877dSJake Burkholder 	CTR0(KTR_CLK, "hardclock fired");
240238dd320SJake Burkholder 	hardclock_process(frame);
241b05dcf3cSPoul-Henning Kamp 
242e7fa55afSPoul-Henning Kamp 	tc_ticktock();
243df8bae1dSRodney W. Grimes 	/*
244df8bae1dSRodney W. Grimes 	 * If no separate statistics clock is available, run it from here.
2456caa8a15SJohn Baldwin 	 *
2466caa8a15SJohn Baldwin 	 * XXX: this only works for UP
247df8bae1dSRodney W. Grimes 	 */
248238dd320SJake Burkholder 	if (stathz == 0) {
249238dd320SJake Burkholder 		profclock(frame);
250df8bae1dSRodney W. Grimes 		statclock(frame);
251238dd320SJake Burkholder 	}
252df8bae1dSRodney W. Grimes 
253e4fc250cSLuigi Rizzo #ifdef DEVICE_POLLING
254daccb638SLuigi Rizzo 	hardclock_device_poll();	/* this is very short and quick */
255e4fc250cSLuigi Rizzo #endif /* DEVICE_POLLING */
2563f31c649SGarrett Wollman 
257b05dcf3cSPoul-Henning Kamp 	/*
258b05dcf3cSPoul-Henning Kamp 	 * Process callouts at a very low cpu priority, so we don't keep the
259b05dcf3cSPoul-Henning Kamp 	 * relatively high clock interrupt priority any longer than necessary.
260b05dcf3cSPoul-Henning Kamp 	 */
26121a7a9aeSJohn Baldwin 	mtx_lock_spin_flags(&callout_lock, MTX_QUIET);
262fa2fbc3dSJake Burkholder 	ticks++;
263b05dcf3cSPoul-Henning Kamp 	if (TAILQ_FIRST(&callwheel[ticks & callwheelmask]) != NULL) {
264fa2fbc3dSJake Burkholder 		need_softclock = 1;
265b05dcf3cSPoul-Henning Kamp 	} else if (softticks + 1 == ticks)
266b05dcf3cSPoul-Henning Kamp 		++softticks;
26721a7a9aeSJohn Baldwin 	mtx_unlock_spin_flags(&callout_lock, MTX_QUIET);
268fa2fbc3dSJake Burkholder 
269fa2fbc3dSJake Burkholder 	/*
270062d8ff5SJohn Baldwin 	 * swi_sched acquires sched_lock, so we don't want to call it with
271fa2fbc3dSJake Burkholder 	 * callout_lock held; incorrect locking order.
272fa2fbc3dSJake Burkholder 	 */
273fa2fbc3dSJake Burkholder 	if (need_softclock)
274c86b6ff5SJohn Baldwin 		swi_sched(softclock_ih, 0);
275370c3cb5SSean Kelly 
2764103b765SPoul-Henning Kamp #ifdef SW_WATCHDOG
2774103b765SPoul-Henning Kamp 	if (watchdog_enabled > 0 && --watchdog_ticks <= 0)
278370c3cb5SSean Kelly 		watchdog_fire();
2794103b765SPoul-Henning Kamp #endif /* SW_WATCHDOG */
280ab36c067SJustin T. Gibbs }
281ab36c067SJustin T. Gibbs 
282df8bae1dSRodney W. Grimes /*
283227ee8a1SPoul-Henning Kamp  * Compute number of ticks in the specified amount of time.
284df8bae1dSRodney W. Grimes  */
285df8bae1dSRodney W. Grimes int
286227ee8a1SPoul-Henning Kamp tvtohz(tv)
287df8bae1dSRodney W. Grimes 	struct timeval *tv;
288df8bae1dSRodney W. Grimes {
2896976af69SBruce Evans 	register unsigned long ticks;
2906976af69SBruce Evans 	register long sec, usec;
291df8bae1dSRodney W. Grimes 
292df8bae1dSRodney W. Grimes 	/*
2936976af69SBruce Evans 	 * If the number of usecs in the whole seconds part of the time
2946976af69SBruce Evans 	 * difference fits in a long, then the total number of usecs will
2956976af69SBruce Evans 	 * fit in an unsigned long.  Compute the total and convert it to
2966976af69SBruce Evans 	 * ticks, rounding up and adding 1 to allow for the current tick
2976976af69SBruce Evans 	 * to expire.  Rounding also depends on unsigned long arithmetic
2986976af69SBruce Evans 	 * to avoid overflow.
299df8bae1dSRodney W. Grimes 	 *
3006976af69SBruce Evans 	 * Otherwise, if the number of ticks in the whole seconds part of
3016976af69SBruce Evans 	 * the time difference fits in a long, then convert the parts to
3026976af69SBruce Evans 	 * ticks separately and add, using similar rounding methods and
3036976af69SBruce Evans 	 * overflow avoidance.  This method would work in the previous
3046976af69SBruce Evans 	 * case but it is slightly slower and assumes that hz is integral.
3056976af69SBruce Evans 	 *
3066976af69SBruce Evans 	 * Otherwise, round the time difference down to the maximum
3076976af69SBruce Evans 	 * representable value.
3086976af69SBruce Evans 	 *
3096976af69SBruce Evans 	 * If ints have 32 bits, then the maximum value for any timeout in
3106976af69SBruce Evans 	 * 10ms ticks is 248 days.
311df8bae1dSRodney W. Grimes 	 */
312227ee8a1SPoul-Henning Kamp 	sec = tv->tv_sec;
313227ee8a1SPoul-Henning Kamp 	usec = tv->tv_usec;
3146976af69SBruce Evans 	if (usec < 0) {
3156976af69SBruce Evans 		sec--;
3166976af69SBruce Evans 		usec += 1000000;
3176976af69SBruce Evans 	}
3186976af69SBruce Evans 	if (sec < 0) {
3196976af69SBruce Evans #ifdef DIAGNOSTIC
320b05dcf3cSPoul-Henning Kamp 		if (usec > 0) {
3217ec73f64SPoul-Henning Kamp 			sec++;
3227ec73f64SPoul-Henning Kamp 			usec -= 1000000;
3237ec73f64SPoul-Henning Kamp 		}
324227ee8a1SPoul-Henning Kamp 		printf("tvotohz: negative time difference %ld sec %ld usec\n",
3256976af69SBruce Evans 		       sec, usec);
3266976af69SBruce Evans #endif
3276976af69SBruce Evans 		ticks = 1;
3286976af69SBruce Evans 	} else if (sec <= LONG_MAX / 1000000)
3296976af69SBruce Evans 		ticks = (sec * 1000000 + (unsigned long)usec + (tick - 1))
3306976af69SBruce Evans 			/ tick + 1;
3316976af69SBruce Evans 	else if (sec <= LONG_MAX / hz)
3326976af69SBruce Evans 		ticks = sec * hz
3336976af69SBruce Evans 			+ ((unsigned long)usec + (tick - 1)) / tick + 1;
3346976af69SBruce Evans 	else
3356976af69SBruce Evans 		ticks = LONG_MAX;
3366976af69SBruce Evans 	if (ticks > INT_MAX)
3376976af69SBruce Evans 		ticks = INT_MAX;
338d6116663SAlexander Langer 	return ((int)ticks);
339df8bae1dSRodney W. Grimes }
340df8bae1dSRodney W. Grimes 
341df8bae1dSRodney W. Grimes /*
342df8bae1dSRodney W. Grimes  * Start profiling on a process.
343df8bae1dSRodney W. Grimes  *
344df8bae1dSRodney W. Grimes  * Kernel profiling passes proc0 which never exits and hence
345df8bae1dSRodney W. Grimes  * keeps the profile clock running constantly.
346df8bae1dSRodney W. Grimes  */
347df8bae1dSRodney W. Grimes void
348df8bae1dSRodney W. Grimes startprofclock(p)
349df8bae1dSRodney W. Grimes 	register struct proc *p;
350df8bae1dSRodney W. Grimes {
351df8bae1dSRodney W. Grimes 
35201cd094cSJohn Baldwin 	/*
35301cd094cSJohn Baldwin 	 * XXX; Right now sched_lock protects statclock(), but perhaps
35401cd094cSJohn Baldwin 	 * it should be protected later on by a time_lock, which would
35501cd094cSJohn Baldwin 	 * cover psdiv, etc. as well.
35601cd094cSJohn Baldwin 	 */
3579752f794SJohn Baldwin 	PROC_LOCK_ASSERT(p, MA_OWNED);
3589752f794SJohn Baldwin 	if (p->p_flag & P_STOPPROF)
359a282253aSJulian Elischer 		return;
3609752f794SJohn Baldwin 	if ((p->p_flag & P_PROFIL) == 0) {
3619752f794SJohn Baldwin 		mtx_lock_spin(&sched_lock);
3629752f794SJohn Baldwin 		p->p_flag |= P_PROFIL;
363238dd320SJake Burkholder 		if (++profprocs == 1)
364238dd320SJake Burkholder 			cpu_startprofclock();
3659ed346baSBosko Milekic 		mtx_unlock_spin(&sched_lock);
366df8bae1dSRodney W. Grimes 	}
3679752f794SJohn Baldwin }
368df8bae1dSRodney W. Grimes 
369df8bae1dSRodney W. Grimes /*
370df8bae1dSRodney W. Grimes  * Stop profiling on a process.
371df8bae1dSRodney W. Grimes  */
372df8bae1dSRodney W. Grimes void
373df8bae1dSRodney W. Grimes stopprofclock(p)
374df8bae1dSRodney W. Grimes 	register struct proc *p;
375df8bae1dSRodney W. Grimes {
376df8bae1dSRodney W. Grimes 
377a282253aSJulian Elischer 	PROC_LOCK_ASSERT(p, MA_OWNED);
3789752f794SJohn Baldwin 	if (p->p_flag & P_PROFIL) {
3799752f794SJohn Baldwin 		if (p->p_profthreads != 0) {
3809752f794SJohn Baldwin 			p->p_flag |= P_STOPPROF;
3819752f794SJohn Baldwin 			while (p->p_profthreads != 0)
382a282253aSJulian Elischer 				msleep(&p->p_profthreads, &p->p_mtx, PPAUSE,
383a89ec05eSPeter Wemm 				    "stopprof", 0);
3849752f794SJohn Baldwin 			p->p_flag &= ~P_STOPPROF;
385a282253aSJulian Elischer 		}
386b62b2304SColin Percival 		if ((p->p_flag & P_PROFIL) == 0)
387b62b2304SColin Percival 			return;
3889752f794SJohn Baldwin 		mtx_lock_spin(&sched_lock);
3899752f794SJohn Baldwin 		p->p_flag &= ~P_PROFIL;
390238dd320SJake Burkholder 		if (--profprocs == 0)
391238dd320SJake Burkholder 			cpu_stopprofclock();
3929ed346baSBosko Milekic 		mtx_unlock_spin(&sched_lock);
393df8bae1dSRodney W. Grimes 	}
3949752f794SJohn Baldwin }
395df8bae1dSRodney W. Grimes 
396df8bae1dSRodney W. Grimes /*
397238dd320SJake Burkholder  * Statistics clock.  Grab profile sample, and if divider reaches 0,
398238dd320SJake Burkholder  * do process and kernel statistics.  Most of the statistics are only
39971a62f8aSBruce Evans  * used by user-level statistics programs.  The main exceptions are
40078c85e8dSJohn Baldwin  * ke->ke_uticks, p->p_rux.rux_sticks, p->p_rux.rux_iticks, and p->p_estcpu.
401238dd320SJake Burkholder  * This should be called by all active processors.
402df8bae1dSRodney W. Grimes  */
403df8bae1dSRodney W. Grimes void
404238dd320SJake Burkholder statclock(frame)
405238dd320SJake Burkholder 	register struct clockframe *frame;
406df8bae1dSRodney W. Grimes {
4078a129caeSDavid Greenman 	struct rusage *ru;
4088a129caeSDavid Greenman 	struct vmspace *vm;
409238dd320SJake Burkholder 	struct thread *td;
410238dd320SJake Burkholder 	struct proc *p;
411238dd320SJake Burkholder 	long rss;
4128a129caeSDavid Greenman 
413238dd320SJake Burkholder 	td = curthread;
414238dd320SJake Burkholder 	p = td->td_proc;
415238dd320SJake Burkholder 
416238dd320SJake Burkholder 	mtx_lock_spin_flags(&sched_lock, MTX_QUIET);
417238dd320SJake Burkholder 	if (CLKF_USERMODE(frame)) {
418df8bae1dSRodney W. Grimes 		/*
41971a62f8aSBruce Evans 		 * Charge the time as appropriate.
420df8bae1dSRodney W. Grimes 		 */
4210e2a4d3aSDavid Xu 		if (p->p_flag & P_SA)
4225215b187SJeff Roberson 			thread_statclock(1);
42378c85e8dSJohn Baldwin 		p->p_rux.rux_uticks++;
424fa885116SJulian Elischer 		if (p->p_nice > NZERO)
425df8bae1dSRodney W. Grimes 			cp_time[CP_NICE]++;
426df8bae1dSRodney W. Grimes 		else
427df8bae1dSRodney W. Grimes 			cp_time[CP_USER]++;
428df8bae1dSRodney W. Grimes 	} else {
429df8bae1dSRodney W. Grimes 		/*
430df8bae1dSRodney W. Grimes 		 * Came from kernel mode, so we were:
431df8bae1dSRodney W. Grimes 		 * - handling an interrupt,
432df8bae1dSRodney W. Grimes 		 * - doing syscall or trap work on behalf of the current
433df8bae1dSRodney W. Grimes 		 *   user process, or
434df8bae1dSRodney W. Grimes 		 * - spinning in the idle loop.
435df8bae1dSRodney W. Grimes 		 * Whichever it is, charge the time as appropriate.
436df8bae1dSRodney W. Grimes 		 * Note that we charge interrupts to the current process,
437df8bae1dSRodney W. Grimes 		 * regardless of whether they are ``for'' that process,
438df8bae1dSRodney W. Grimes 		 * so that we know how much of its real time was spent
439df8bae1dSRodney W. Grimes 		 * in ``non-process'' (i.e., interrupt) work.
440df8bae1dSRodney W. Grimes 		 */
441b40ce416SJulian Elischer 		if ((td->td_ithd != NULL) || td->td_intr_nesting_level >= 2) {
44278c85e8dSJohn Baldwin 			p->p_rux.rux_iticks++;
443df8bae1dSRodney W. Grimes 			cp_time[CP_INTR]++;
4440384fff8SJason Evans 		} else {
4450e2a4d3aSDavid Xu 			if (p->p_flag & P_SA)
4465215b187SJeff Roberson 				thread_statclock(0);
447e4625663SJeff Roberson 			td->td_sticks++;
44878c85e8dSJohn Baldwin 			p->p_rux.rux_sticks++;
449b40ce416SJulian Elischer 			if (p != PCPU_GET(idlethread)->td_proc)
450df8bae1dSRodney W. Grimes 				cp_time[CP_SYS]++;
4510384fff8SJason Evans 			else
452df8bae1dSRodney W. Grimes 				cp_time[CP_IDLE]++;
453df8bae1dSRodney W. Grimes 		}
4540384fff8SJason Evans 	}
45585da7a56SJeff Roberson 	CTR4(KTR_SCHED, "statclock: %p(%s) prio %d stathz %d",
45685da7a56SJeff Roberson 	    td, td->td_proc->p_comm, td->td_priority, (stathz)?stathz:hz);
457df8bae1dSRodney W. Grimes 
4587cf90fb3SJeff Roberson 	sched_clock(td);
459f5e9e8ecSBruce Evans 
460f5e9e8ecSBruce Evans 	/* Update resource usage integrals and maximums. */
46116f9f205SJohn Baldwin 	MPASS(p->p_stats != NULL);
46216f9f205SJohn Baldwin 	MPASS(p->p_vmspace != NULL);
46316f9f205SJohn Baldwin 	vm = p->p_vmspace;
46416f9f205SJohn Baldwin 	ru = &p->p_stats->p_ru;
4651c6d46f9SLuoqi Chen 	ru->ru_ixrss += pgtok(vm->vm_tsize);
4661c6d46f9SLuoqi Chen 	ru->ru_idrss += pgtok(vm->vm_dsize);
4671c6d46f9SLuoqi Chen 	ru->ru_isrss += pgtok(vm->vm_ssize);
4681c6d46f9SLuoqi Chen 	rss = pgtok(vmspace_resident_count(vm));
469f5e9e8ecSBruce Evans 	if (ru->ru_maxrss < rss)
470f5e9e8ecSBruce Evans 		ru->ru_maxrss = rss;
471238dd320SJake Burkholder 	mtx_unlock_spin_flags(&sched_lock, MTX_QUIET);
4726caa8a15SJohn Baldwin }
4736c567274SJohn Baldwin 
4746caa8a15SJohn Baldwin void
475238dd320SJake Burkholder profclock(frame)
4766caa8a15SJohn Baldwin 	register struct clockframe *frame;
4776caa8a15SJohn Baldwin {
478238dd320SJake Burkholder 	struct thread *td;
479238dd320SJake Burkholder #ifdef GPROF
480238dd320SJake Burkholder 	struct gmonparam *g;
481238dd320SJake Burkholder 	int i;
482238dd320SJake Burkholder #endif
4836caa8a15SJohn Baldwin 
4844a338afdSJulian Elischer 	td = curthread;
485238dd320SJake Burkholder 	if (CLKF_USERMODE(frame)) {
486238dd320SJake Burkholder 		/*
487238dd320SJake Burkholder 		 * Came from user mode; CPU was in user state.
488238dd320SJake Burkholder 		 * If this process is being profiled, record the tick.
489a282253aSJulian Elischer 		 * if there is no related user location yet, don't
490a282253aSJulian Elischer 		 * bother trying to count it.
491238dd320SJake Burkholder 		 */
4929752f794SJohn Baldwin 		if (td->td_proc->p_flag & P_PROFIL)
4934a338afdSJulian Elischer 			addupc_intr(td, CLKF_PC(frame), 1);
494238dd320SJake Burkholder 	}
495238dd320SJake Burkholder #ifdef GPROF
496238dd320SJake Burkholder 	else {
497238dd320SJake Burkholder 		/*
498238dd320SJake Burkholder 		 * Kernel statistics are just like addupc_intr, only easier.
499238dd320SJake Burkholder 		 */
500238dd320SJake Burkholder 		g = &_gmonparam;
501238dd320SJake Burkholder 		if (g->state == GMON_PROF_ON) {
502238dd320SJake Burkholder 			i = CLKF_PC(frame) - g->lowpc;
503238dd320SJake Burkholder 			if (i < g->textsize) {
504238dd320SJake Burkholder 				i /= HISTFRACTION * sizeof(*g->kcount);
505238dd320SJake Burkholder 				g->kcount[i]++;
506238dd320SJake Burkholder 			}
507238dd320SJake Burkholder 		}
508238dd320SJake Burkholder 	}
509238dd320SJake Burkholder #endif
510df8bae1dSRodney W. Grimes }
511df8bae1dSRodney W. Grimes 
512df8bae1dSRodney W. Grimes /*
513df8bae1dSRodney W. Grimes  * Return information about system clocks.
514df8bae1dSRodney W. Grimes  */
515787d58f2SPoul-Henning Kamp static int
51682d9ae4eSPoul-Henning Kamp sysctl_kern_clockrate(SYSCTL_HANDLER_ARGS)
517df8bae1dSRodney W. Grimes {
518df8bae1dSRodney W. Grimes 	struct clockinfo clkinfo;
519df8bae1dSRodney W. Grimes 	/*
520df8bae1dSRodney W. Grimes 	 * Construct clockinfo structure.
521df8bae1dSRodney W. Grimes 	 */
522a9a0f15aSBruce Evans 	bzero(&clkinfo, sizeof(clkinfo));
523df8bae1dSRodney W. Grimes 	clkinfo.hz = hz;
524df8bae1dSRodney W. Grimes 	clkinfo.tick = tick;
525df8bae1dSRodney W. Grimes 	clkinfo.profhz = profhz;
526df8bae1dSRodney W. Grimes 	clkinfo.stathz = stathz ? stathz : hz;
527ae0eb976SPoul-Henning Kamp 	return (sysctl_handle_opaque(oidp, &clkinfo, sizeof clkinfo, req));
528df8bae1dSRodney W. Grimes }
5293f31c649SGarrett Wollman 
530946bb7a2SPoul-Henning Kamp SYSCTL_PROC(_kern, KERN_CLOCKRATE, clockrate, CTLTYPE_STRUCT|CTLFLAG_RD,
531af1408e3SLuigi Rizzo 	0, 0, sysctl_kern_clockrate, "S,clockinfo",
532af1408e3SLuigi Rizzo 	"Rate and period of various kernel clocks");
533370c3cb5SSean Kelly 
5344103b765SPoul-Henning Kamp #ifdef SW_WATCHDOG
5354103b765SPoul-Henning Kamp 
5364103b765SPoul-Henning Kamp static void
5374103b765SPoul-Henning Kamp watchdog_config(void *unused __unused, u_int cmd, int *err)
538370c3cb5SSean Kelly {
5394103b765SPoul-Henning Kamp 	u_int u;
540370c3cb5SSean Kelly 
5414103b765SPoul-Henning Kamp 	u = cmd & WD_INTERVAL;
5423d6e5ccbSPoul-Henning Kamp 	if (cmd && u >= WD_TO_1SEC) {
5433d6e5ccbSPoul-Henning Kamp 		u = cmd & WD_INTERVAL;
5444103b765SPoul-Henning Kamp 		watchdog_ticks = (1 << (u - WD_TO_1SEC)) * hz;
5454103b765SPoul-Henning Kamp 		watchdog_enabled = 1;
5464103b765SPoul-Henning Kamp 		*err = 0;
5474103b765SPoul-Henning Kamp 	} else {
5484103b765SPoul-Henning Kamp 		watchdog_enabled = 0;
549370c3cb5SSean Kelly 	}
5504103b765SPoul-Henning Kamp }
551370c3cb5SSean Kelly 
552370c3cb5SSean Kelly /*
553370c3cb5SSean Kelly  * Handle a watchdog timeout by dumping interrupt information and
554370c3cb5SSean Kelly  * then either dropping to DDB or panicing.
555370c3cb5SSean Kelly  */
556370c3cb5SSean Kelly static void
557370c3cb5SSean Kelly watchdog_fire(void)
558370c3cb5SSean Kelly {
559370c3cb5SSean Kelly 	int nintr;
560370c3cb5SSean Kelly 	u_int64_t inttotal;
561370c3cb5SSean Kelly 	u_long *curintr;
562370c3cb5SSean Kelly 	char *curname;
563370c3cb5SSean Kelly 
564370c3cb5SSean Kelly 	curintr = intrcnt;
565370c3cb5SSean Kelly 	curname = intrnames;
566370c3cb5SSean Kelly 	inttotal = 0;
567370c3cb5SSean Kelly 	nintr = eintrcnt - intrcnt;
568370c3cb5SSean Kelly 
569370c3cb5SSean Kelly 	printf("interrupt                   total\n");
570370c3cb5SSean Kelly 	while (--nintr >= 0) {
571370c3cb5SSean Kelly 		if (*curintr)
572370c3cb5SSean Kelly 			printf("%-12s %20lu\n", curname, *curintr);
573370c3cb5SSean Kelly 		curname += strlen(curname) + 1;
574370c3cb5SSean Kelly 		inttotal += *curintr++;
575370c3cb5SSean Kelly 	}
5766cda4155SSean Kelly 	printf("Total        %20ju\n", (uintmax_t)inttotal);
577370c3cb5SSean Kelly 
5782d50560aSMarcel Moolenaar #ifdef KDB
5792d50560aSMarcel Moolenaar 	kdb_backtrace();
5802d50560aSMarcel Moolenaar 	kdb_enter("watchdog timeout");
5812d50560aSMarcel Moolenaar #else
582370c3cb5SSean Kelly 	panic("watchdog timeout");
5832d50560aSMarcel Moolenaar #endif /* KDB */
584370c3cb5SSean Kelly }
585370c3cb5SSean Kelly 
5864103b765SPoul-Henning Kamp #endif /* SW_WATCHDOG */
587