pcrtc.c revision 88387
14Srgrimes/*-
24Srgrimes * Copyright (c) 1990 The Regents of the University of California.
34Srgrimes * All rights reserved.
44Srgrimes *
54Srgrimes * This code is derived from software contributed to Berkeley by
64Srgrimes * William Jolitz and Don Ahn.
74Srgrimes *
84Srgrimes * Redistribution and use in source and binary forms, with or without
94Srgrimes * modification, are permitted provided that the following conditions
104Srgrimes * are met:
114Srgrimes * 1. Redistributions of source code must retain the above copyright
124Srgrimes *    notice, this list of conditions and the following disclaimer.
134Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
144Srgrimes *    notice, this list of conditions and the following disclaimer in the
154Srgrimes *    documentation and/or other materials provided with the distribution.
164Srgrimes * 3. All advertising materials mentioning features or use of this software
174Srgrimes *    must display the following acknowledgement:
184Srgrimes *	This product includes software developed by the University of
194Srgrimes *	California, Berkeley and its contributors.
204Srgrimes * 4. Neither the name of the University nor the names of its contributors
214Srgrimes *    may be used to endorse or promote products derived from this software
224Srgrimes *    without specific prior written permission.
234Srgrimes *
244Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
254Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
264Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
274Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
284Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
294Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
304Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
314Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32619Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3350477Speter * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
344Srgrimes * SUCH DAMAGE.
354Srgrimes *
3616363Sasami *	from: @(#)clock.c	7.2 (Berkeley) 5/12/91
3716363Sasami * $FreeBSD: head/sys/pc98/cbus/pcrtc.c 88387 2001-12-22 00:38:32Z nyan $
3816363Sasami */
3916363Sasami
40204309Sattilio/*
41204309Sattilio * Routines to handle clock hardware.
42720Swollman */
434682Sphk
449223Sbde/*
454Srgrimes * inittodr, settodr and support routines written
464Srgrimes * by Christoph Robitschko <chmr@edvz.tu-graz.ac.at>
474Srgrimes *
484Srgrimes * reintroduced and updated by Chris Stenton <chris@gnome.co.uk> 8/10/94
494Srgrimes */
504Srgrimes
514Srgrimes/*
529223Sbde * modified for PC98 by Kakefuda
534Srgrimes */
544Srgrimes
554Srgrimes#include "opt_clock.h"
569223Sbde#include "opt_apm.h"
579223Sbde#include "opt_mca.h"
589223Sbde
599223Sbde#include <sys/param.h>
609223Sbde#include <sys/systm.h>
619223Sbde#include <sys/bus.h>
624Srgrimes#include <sys/lock.h>
634Srgrimes#include <sys/mutex.h>
649223Sbde#include <sys/proc.h>
659223Sbde#include <sys/time.h>
66131643Simp#include <sys/timetc.h>
674Srgrimes#include <sys/kernel.h>
689223Sbde#include <sys/sysctl.h>
6912366Sbde#include <sys/cons.h>
704Srgrimes
714Srgrimes#include <machine/clock.h>
724Srgrimes#ifdef CLK_CALIBRATION_LOOP
739223Sbde#endif
744Srgrimes#include <machine/cputypes.h>
754Srgrimes#include <machine/frame.h>
764Srgrimes#include <machine/limits.h>
774Srgrimes#include <machine/md_var.h>
7842332Syokota#include <machine/psl.h>
7942332Syokota#ifdef APIC_IO
804Srgrimes#include <machine/segments.h>
814Srgrimes#endif
8212366Sbde#if defined(SMP) || defined(APIC_IO)
834Srgrimes#include <machine/smp.h>
844Srgrimes#endif /* SMP || APIC_IO */
854Srgrimes#include <machine/specialreg.h>
864Srgrimes
874Srgrimes#include <i386/isa/icu.h>
889223Sbde#ifdef PC98
899223Sbde#include <pc98/pc98/pc98.h>
904Srgrimes#include <pc98/pc98/pc98_machdep.h>
9112366Sbde#include <i386/isa/isa_device.h>
924Srgrimes#else
934Srgrimes#include <i386/isa/isa.h>
944Srgrimes#include <isa/rtc.h>
954Srgrimes#endif
964Srgrimes#include <isa/isavar.h>
974Srgrimes#include <i386/isa/timerreg.h>
984Srgrimes
994Srgrimes#include <i386/isa/intr_machdep.h>
10012366Sbde
1014Srgrimes#ifdef DEV_MCA
102204309Sattilio#include <i386/isa/mca_machdep.h>
103#endif
104
105#ifdef APIC_IO
106#include <i386/isa/intr_machdep.h>
107/* The interrupt triggered by the 8254 (timer) chip */
108int apic_8254_intr;
109static u_long read_intr_count __P((int vec));
110static void setup_8254_mixed_mode __P((void));
111#endif
112
113/*
114 * 32-bit time_t's can't reach leap years before 1904 or after 2036, so we
115 * can use a simple formula for leap years.
116 */
117#define	LEAPYEAR(y) ((u_int)(y) % 4 == 0)
118#define DAYSPERYEAR   (31+28+31+30+31+30+31+31+30+31+30+31)
119
120#define	TIMER_DIV(x) ((timer_freq + (x) / 2) / (x))
121
122/*
123 * Time in timer cycles that it takes for microtime() to disable interrupts
124 * and latch the count.  microtime() currently uses "cli; outb ..." so it
125 * normally takes less than 2 timer cycles.  Add a few for cache misses.
126 * Add a few more to allow for latency in bogus calls to microtime() with
127 * interrupts already disabled.
128 */
129#define	TIMER0_LATCH_COUNT	20
130
131/*
132 * Maximum frequency that we are willing to allow for timer0.  Must be
133 * low enough to guarantee that the timer interrupt handler returns
134 * before the next timer interrupt.
135 */
136#define	TIMER0_MAX_FREQ		20000
137
138int	adjkerntz;		/* local offset from GMT in seconds */
139int	clkintr_pending;
140int	disable_rtc_set;	/* disable resettodr() if != 0 */
141int	statclock_disable;
142#ifndef TIMER_FREQ
143#ifdef PC98
144#define TIMER_FREQ   2457600
145#else /* IBM-PC */
146#define TIMER_FREQ   1193182
147#endif /* PC98 */
148#endif
149u_int	timer_freq = TIMER_FREQ;
150int	timer0_max_count;
151u_int	tsc_freq;
152int	tsc_is_broken;
153u_int	tsc_present;
154int	wall_cmos_clock;	/* wall CMOS clock assumed if != 0 */
155struct mtx clock_lock;
156
157static	int	beeping = 0;
158static	const u_char daysinmonth[] = {31,28,31,30,31,30,31,31,30,31,30,31};
159static	u_int	hardclock_max_count;
160static	u_int32_t i8254_lastcount;
161static	u_int32_t i8254_offset;
162static	int	i8254_ticked;
163/*
164 * XXX new_function and timer_func should not handle clockframes, but
165 * timer_func currently needs to hold hardclock to handle the
166 * timer0_state == 0 case.  We should use inthand_add()/inthand_remove()
167 * to switch between clkintr() and a slightly different timerintr().
168 */
169static	void	(*new_function) __P((struct clockframe *frame));
170static	u_int	new_rate;
171#ifndef PC98
172static	u_char	rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF;
173static	u_char	rtc_statusb = RTCSB_24HR | RTCSB_PINTR;
174#endif
175static	u_int	timer0_prescaler_count;
176
177/* Values for timerX_state: */
178#define	RELEASED	0
179#define	RELEASE_PENDING	1
180#define	ACQUIRED	2
181#define	ACQUIRE_PENDING	3
182
183static	u_char	timer0_state;
184#ifdef	PC98
185static 	u_char	timer1_state;
186#endif
187static	u_char	timer2_state;
188static	void	(*timer_func) __P((struct clockframe *frame)) = hardclock;
189#ifdef PC98
190static void rtc_serialcombit __P((int));
191static void rtc_serialcom __P((int));
192static int rtc_inb __P((void));
193static void rtc_outb __P((int));
194#endif
195
196static	unsigned i8254_get_timecount __P((struct timecounter *tc));
197static	unsigned tsc_get_timecount __P((struct timecounter *tc));
198static	void	set_timer_freq(u_int freq, int intr_freq);
199
200static struct timecounter tsc_timecounter = {
201	tsc_get_timecount,	/* get_timecount */
202	0,			/* no poll_pps */
203 	~0u,			/* counter_mask */
204	0,			/* frequency */
205	 "TSC"			/* name */
206};
207
208SYSCTL_OPAQUE(_debug, OID_AUTO, tsc_timecounter, CTLFLAG_RD,
209	&tsc_timecounter, sizeof(tsc_timecounter), "S,timecounter", "");
210
211static struct timecounter i8254_timecounter = {
212	i8254_get_timecount,	/* get_timecount */
213	0,			/* no poll_pps */
214	~0u,			/* counter_mask */
215	0,			/* frequency */
216	"i8254"			/* name */
217};
218
219SYSCTL_OPAQUE(_debug, OID_AUTO, i8254_timecounter, CTLFLAG_RD,
220	&i8254_timecounter, sizeof(i8254_timecounter), "S,timecounter", "");
221
222static void
223clkintr(struct clockframe frame)
224{
225
226	if (timecounter->tc_get_timecount == i8254_get_timecount) {
227		mtx_lock_spin(&clock_lock);
228		if (i8254_ticked)
229			i8254_ticked = 0;
230		else {
231			i8254_offset += timer0_max_count;
232			i8254_lastcount = 0;
233		}
234		clkintr_pending = 0;
235		mtx_unlock_spin(&clock_lock);
236	}
237	timer_func(&frame);
238#ifdef SMP
239	if (timer_func == hardclock)
240		forward_hardclock();
241#endif
242	switch (timer0_state) {
243
244	case RELEASED:
245		break;
246
247	case ACQUIRED:
248		if ((timer0_prescaler_count += timer0_max_count)
249		    >= hardclock_max_count) {
250			timer0_prescaler_count -= hardclock_max_count;
251			hardclock(&frame);
252#ifdef SMP
253			forward_hardclock();
254#endif
255		}
256		break;
257
258	case ACQUIRE_PENDING:
259		mtx_lock_spin(&clock_lock);
260		i8254_offset = i8254_get_timecount(NULL);
261		i8254_lastcount = 0;
262		timer0_max_count = TIMER_DIV(new_rate);
263		outb(TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT);
264		outb(TIMER_CNTR0, timer0_max_count & 0xff);
265		outb(TIMER_CNTR0, timer0_max_count >> 8);
266		mtx_unlock_spin(&clock_lock);
267		timer_func = new_function;
268		timer0_state = ACQUIRED;
269		break;
270
271	case RELEASE_PENDING:
272		if ((timer0_prescaler_count += timer0_max_count)
273		    >= hardclock_max_count) {
274			mtx_lock_spin(&clock_lock);
275			i8254_offset = i8254_get_timecount(NULL);
276			i8254_lastcount = 0;
277			timer0_max_count = hardclock_max_count;
278			outb(TIMER_MODE,
279			     TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT);
280			outb(TIMER_CNTR0, timer0_max_count & 0xff);
281			outb(TIMER_CNTR0, timer0_max_count >> 8);
282			mtx_unlock_spin(&clock_lock);
283			timer0_prescaler_count = 0;
284			timer_func = hardclock;
285			timer0_state = RELEASED;
286			hardclock(&frame);
287#ifdef SMP
288			forward_hardclock();
289#endif
290		}
291		break;
292	}
293#ifdef DEV_MCA
294	/* Reset clock interrupt by asserting bit 7 of port 0x61 */
295	if (MCA_system)
296		outb(0x61, inb(0x61) | 0x80);
297#endif
298}
299
300/*
301 * The acquire and release functions must be called at ipl >= splclock().
302 */
303int
304acquire_timer0(int rate, void (*function) __P((struct clockframe *frame)))
305{
306	static int old_rate;
307
308	if (rate <= 0 || rate > TIMER0_MAX_FREQ)
309		return (-1);
310	switch (timer0_state) {
311
312	case RELEASED:
313		timer0_state = ACQUIRE_PENDING;
314		break;
315
316	case RELEASE_PENDING:
317		if (rate != old_rate)
318			return (-1);
319		/*
320		 * The timer has been released recently, but is being
321		 * re-acquired before the release completed.  In this
322		 * case, we simply reclaim it as if it had not been
323		 * released at all.
324		 */
325		timer0_state = ACQUIRED;
326		break;
327
328	default:
329		return (-1);	/* busy */
330	}
331	new_function = function;
332	old_rate = new_rate = rate;
333	return (0);
334}
335
336#ifdef PC98
337int
338acquire_timer1(int mode)
339{
340
341	if (timer1_state != RELEASED)
342		return (-1);
343	timer1_state = ACQUIRED;
344
345	/*
346	 * This access to the timer registers is as atomic as possible
347	 * because it is a single instruction.  We could do better if we
348	 * knew the rate.  Use of splclock() limits glitches to 10-100us,
349	 * and this is probably good enough for timer2, so we aren't as
350	 * careful with it as with timer0.
351	 */
352	outb(TIMER_MODE, TIMER_SEL1 | (mode & 0x3f));
353
354	return (0);
355}
356#endif
357
358int
359acquire_timer2(int mode)
360{
361
362	if (timer2_state != RELEASED)
363		return (-1);
364	timer2_state = ACQUIRED;
365
366	/*
367	 * This access to the timer registers is as atomic as possible
368	 * because it is a single instruction.  We could do better if we
369	 * knew the rate.  Use of splclock() limits glitches to 10-100us,
370	 * and this is probably good enough for timer2, so we aren't as
371	 * careful with it as with timer0.
372	 */
373	outb(TIMER_MODE, TIMER_SEL2 | (mode & 0x3f));
374
375	return (0);
376}
377
378int
379release_timer0()
380{
381	switch (timer0_state) {
382
383	case ACQUIRED:
384		timer0_state = RELEASE_PENDING;
385		break;
386
387	case ACQUIRE_PENDING:
388		/* Nothing happened yet, release quickly. */
389		timer0_state = RELEASED;
390		break;
391
392	default:
393		return (-1);
394	}
395	return (0);
396}
397
398#ifdef PC98
399int
400release_timer1()
401{
402
403	if (timer1_state != ACQUIRED)
404		return (-1);
405	timer1_state = RELEASED;
406	outb(TIMER_MODE, TIMER_SEL1 | TIMER_SQWAVE | TIMER_16BIT);
407	return (0);
408}
409#endif
410
411int
412release_timer2()
413{
414
415	if (timer2_state != ACQUIRED)
416		return (-1);
417	timer2_state = RELEASED;
418	outb(TIMER_MODE, TIMER_SEL2 | TIMER_SQWAVE | TIMER_16BIT);
419	return (0);
420}
421
422#ifndef PC98
423/*
424 * This routine receives statistical clock interrupts from the RTC.
425 * As explained above, these occur at 128 interrupts per second.
426 * When profiling, we receive interrupts at a rate of 1024 Hz.
427 *
428 * This does not actually add as much overhead as it sounds, because
429 * when the statistical clock is active, the hardclock driver no longer
430 * needs to keep (inaccurate) statistics on its own.  This decouples
431 * statistics gathering from scheduling interrupts.
432 *
433 * The RTC chip requires that we read status register C (RTC_INTR)
434 * to acknowledge an interrupt, before it will generate the next one.
435 * Under high interrupt load, rtcintr() can be indefinitely delayed and
436 * the clock can tick immediately after the read from RTC_INTR.  In this
437 * case, the mc146818A interrupt signal will not drop for long enough
438 * to register with the 8259 PIC.  If an interrupt is missed, the stat
439 * clock will halt, considerably degrading system performance.  This is
440 * why we use 'while' rather than a more straightforward 'if' below.
441 * Stat clock ticks can still be lost, causing minor loss of accuracy
442 * in the statistics, but the stat clock will no longer stop.
443 */
444static void
445rtcintr(struct clockframe frame)
446{
447	while (rtcin(RTC_INTR) & RTCIR_PERIOD) {
448		statclock(&frame);
449#ifdef SMP
450		forward_statclock();
451#endif
452	}
453}
454
455#include "opt_ddb.h"
456#ifdef DDB
457#include <ddb/ddb.h>
458
459DB_SHOW_COMMAND(rtc, rtc)
460{
461	printf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
462	       rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
463	       rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
464	       rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
465}
466#endif /* DDB */
467#endif /* for PC98 */
468
469static int
470getit(void)
471{
472	int high, low;
473
474	mtx_lock_spin(&clock_lock);
475
476	/* Select timer0 and latch counter value. */
477	outb(TIMER_MODE, TIMER_SEL0 | TIMER_LATCH);
478
479	low = inb(TIMER_CNTR0);
480	high = inb(TIMER_CNTR0);
481
482	mtx_unlock_spin(&clock_lock);
483	return ((high << 8) | low);
484}
485
486/*
487 * Wait "n" microseconds.
488 * Relies on timer 1 counting down from (timer_freq / hz)
489 * Note: timer had better have been programmed before this is first used!
490 */
491void
492DELAY(int n)
493{
494	int delta, prev_tick, tick, ticks_left;
495
496#ifdef DELAYDEBUG
497	int getit_calls = 1;
498	int n1;
499	static int state = 0;
500
501	if (state == 0) {
502		state = 1;
503		for (n1 = 1; n1 <= 10000000; n1 *= 10)
504			DELAY(n1);
505		state = 2;
506	}
507	if (state == 1)
508		printf("DELAY(%d)...", n);
509#endif
510	/*
511	 * Guard against the timer being uninitialized if we are called
512	 * early for console i/o.
513	 */
514	if (timer0_max_count == 0)
515		set_timer_freq(timer_freq, hz);
516
517	/*
518	 * Read the counter first, so that the rest of the setup overhead is
519	 * counted.  Guess the initial overhead is 20 usec (on most systems it
520	 * takes about 1.5 usec for each of the i/o's in getit().  The loop
521	 * takes about 6 usec on a 486/33 and 13 usec on a 386/20.  The
522	 * multiplications and divisions to scale the count take a while).
523	 */
524	prev_tick = getit();
525	n -= 0;			/* XXX actually guess no initial overhead */
526	/*
527	 * Calculate (n * (timer_freq / 1e6)) without using floating point
528	 * and without any avoidable overflows.
529	 */
530	if (n <= 0)
531		ticks_left = 0;
532	else if (n < 256)
533		/*
534		 * Use fixed point to avoid a slow division by 1000000.
535		 * 39099 = 1193182 * 2^15 / 10^6 rounded to nearest.
536		 * 2^15 is the first power of 2 that gives exact results
537		 * for n between 0 and 256.
538		 */
539		ticks_left = ((u_int)n * 39099 + (1 << 15) - 1) >> 15;
540	else
541		/*
542		 * Don't bother using fixed point, although gcc-2.7.2
543		 * generates particularly poor code for the long long
544		 * division, since even the slow way will complete long
545		 * before the delay is up (unless we're interrupted).
546		 */
547		ticks_left = ((u_int)n * (long long)timer_freq + 999999)
548			     / 1000000;
549
550	while (ticks_left > 0) {
551		tick = getit();
552#ifdef DELAYDEBUG
553		++getit_calls;
554#endif
555		delta = prev_tick - tick;
556		prev_tick = tick;
557		if (delta < 0) {
558			delta += timer0_max_count;
559			/*
560			 * Guard against timer0_max_count being wrong.
561			 * This shouldn't happen in normal operation,
562			 * but it may happen if set_timer_freq() is
563			 * traced.
564			 */
565			if (delta < 0)
566				delta = 0;
567		}
568		ticks_left -= delta;
569	}
570#ifdef DELAYDEBUG
571	if (state == 1)
572		printf(" %d calls to getit() at %d usec each\n",
573		       getit_calls, (n + 5) / getit_calls);
574#endif
575}
576
577static void
578sysbeepstop(void *chan)
579{
580#ifdef PC98	/* PC98 */
581	outb(IO_PPI, inb(IO_PPI)|0x08);	/* disable counter1 output to speaker */
582	release_timer1();
583#else
584	outb(IO_PPI, inb(IO_PPI)&0xFC);	/* disable counter2 output to speaker */
585	release_timer2();
586#endif
587	beeping = 0;
588}
589
590int
591sysbeep(int pitch, int period)
592{
593	int x = splclock();
594
595#ifdef PC98
596	if (acquire_timer1(TIMER_SQWAVE|TIMER_16BIT))
597		if (!beeping) {
598			/* Something else owns it. */
599			splx(x);
600			return (-1); /* XXX Should be EBUSY, but nobody cares anyway. */
601		}
602	disable_intr();
603	outb(0x3fdb, pitch);
604	outb(0x3fdb, (pitch>>8));
605	enable_intr();
606	if (!beeping) {
607		/* enable counter1 output to speaker */
608		outb(IO_PPI, (inb(IO_PPI) & 0xf7));
609		beeping = period;
610		timeout(sysbeepstop, (void *)NULL, period);
611	}
612#else
613	if (acquire_timer2(TIMER_SQWAVE|TIMER_16BIT))
614		if (!beeping) {
615			/* Something else owns it. */
616			splx(x);
617			return (-1); /* XXX Should be EBUSY, but nobody cares anyway. */
618		}
619	mtx_lock_spin(&clock_lock);
620	outb(TIMER_CNTR2, pitch);
621	outb(TIMER_CNTR2, (pitch>>8));
622	mtx_unlock_spin(&clock_lock);
623	if (!beeping) {
624		/* enable counter2 output to speaker */
625		outb(IO_PPI, inb(IO_PPI) | 3);
626		beeping = period;
627		timeout(sysbeepstop, (void *)NULL, period);
628	}
629#endif
630	splx(x);
631	return (0);
632}
633
634#ifndef PC98
635/*
636 * RTC support routines
637 */
638
639int
640rtcin(reg)
641	int reg;
642{
643	int s;
644	u_char val;
645
646	s = splhigh();
647	outb(IO_RTC, reg);
648	inb(0x84);
649	val = inb(IO_RTC + 1);
650	inb(0x84);
651	splx(s);
652	return (val);
653}
654
655static __inline void
656writertc(u_char reg, u_char val)
657{
658	int s;
659
660	s = splhigh();
661	inb(0x84);
662	outb(IO_RTC, reg);
663	inb(0x84);
664	outb(IO_RTC + 1, val);
665	inb(0x84);		/* XXX work around wrong order in rtcin() */
666	splx(s);
667}
668
669static __inline int
670readrtc(int port)
671{
672	return(bcd2bin(rtcin(port)));
673}
674#endif
675
676#ifdef PC98
677unsigned int delaycount;
678#define FIRST_GUESS	0x2000
679static void findcpuspeed(void)
680{
681	int i;
682	int remainder;
683
684	/* Put counter in count down mode */
685	outb(TIMER_MODE, TIMER_SEL0 | TIMER_16BIT | TIMER_RATEGEN);
686	outb(TIMER_CNTR0, 0xff);
687	outb(TIMER_CNTR0, 0xff);
688	for (i = FIRST_GUESS; i; i--)
689		;
690	remainder = getit();
691	delaycount = (FIRST_GUESS * TIMER_DIV(1000)) / (0xffff - remainder);
692}
693#endif
694
695#ifdef PC98
696static u_int
697calibrate_clocks(void)
698{
699	int	timeout;
700	u_int	count, prev_count, tot_count;
701	u_short	sec, start_sec;
702
703	if (bootverbose)
704	        printf("Calibrating clock(s) ... ");
705	/* Check ARTIC. */
706	if (!(PC98_SYSTEM_PARAMETER(0x458) & 0x80) &&
707	    !(PC98_SYSTEM_PARAMETER(0x45b) & 0x04))
708		goto fail;
709	timeout = 100000000;
710
711	/* Read the ARTIC. */
712	sec = inw(0x5e);
713
714	/* Wait for the ARTIC to changes. */
715	start_sec = sec;
716	for (;;) {
717		sec = inw(0x5e);
718		if (sec != start_sec)
719			break;
720		if (--timeout == 0)
721			goto fail;
722	}
723	prev_count = getit();
724	if (prev_count == 0 || prev_count > timer0_max_count)
725		goto fail;
726	tot_count = 0;
727
728	if (tsc_present)
729		wrmsr(0x10, 0LL);	/* XXX 0x10 is the MSR for the TSC */
730	start_sec = sec;
731	for (;;) {
732		sec = inw(0x5e);
733		count = getit();
734		if (count == 0 || count > timer0_max_count)
735			goto fail;
736		if (count > prev_count)
737			tot_count += prev_count - (count - timer0_max_count);
738		else
739			tot_count += prev_count - count;
740		prev_count = count;
741		if ((sec == start_sec + 1200) ||
742		    (sec < start_sec &&
743		        (u_int)sec + 0x10000 == (u_int)start_sec + 1200))
744			break;
745		if (--timeout == 0)
746			goto fail;
747	}
748	/*
749	 * Read the cpu cycle counter.  The timing considerations are
750	 * similar to those for the i8254 clock.
751	 */
752	if (tsc_present)
753		tsc_freq = rdtsc();
754
755	if (bootverbose) {
756		if (tsc_present)
757		        printf("TSC clock: %u Hz, ", tsc_freq);
758	        printf("i8254 clock: %u Hz\n", tot_count);
759	}
760	return (tot_count);
761
762fail:
763	if (bootverbose)
764	        printf("failed, using default i8254 clock of %u Hz\n",
765		       timer_freq);
766	return (timer_freq);
767}
768#else
769static u_int
770calibrate_clocks(void)
771{
772	u_int64_t old_tsc;
773	u_int count, prev_count, tot_count;
774	int sec, start_sec, timeout;
775
776	if (bootverbose)
777	        printf("Calibrating clock(s) ... ");
778	if (!(rtcin(RTC_STATUSD) & RTCSD_PWR))
779		goto fail;
780	timeout = 100000000;
781
782	/* Read the mc146818A seconds counter. */
783	for (;;) {
784		if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) {
785			sec = rtcin(RTC_SEC);
786			break;
787		}
788		if (--timeout == 0)
789			goto fail;
790	}
791
792	/* Wait for the mC146818A seconds counter to change. */
793	start_sec = sec;
794	for (;;) {
795		if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) {
796			sec = rtcin(RTC_SEC);
797			if (sec != start_sec)
798				break;
799		}
800		if (--timeout == 0)
801			goto fail;
802	}
803
804	/* Start keeping track of the i8254 counter. */
805	prev_count = getit();
806	if (prev_count == 0 || prev_count > timer0_max_count)
807		goto fail;
808	tot_count = 0;
809
810	if (tsc_present)
811		old_tsc = rdtsc();
812	else
813		old_tsc = 0;		/* shut up gcc */
814
815	/*
816	 * Wait for the mc146818A seconds counter to change.  Read the i8254
817	 * counter for each iteration since this is convenient and only
818	 * costs a few usec of inaccuracy. The timing of the final reads
819	 * of the counters almost matches the timing of the initial reads,
820	 * so the main cause of inaccuracy is the varying latency from
821	 * inside getit() or rtcin(RTC_STATUSA) to the beginning of the
822	 * rtcin(RTC_SEC) that returns a changed seconds count.  The
823	 * maximum inaccuracy from this cause is < 10 usec on 486's.
824	 */
825	start_sec = sec;
826	for (;;) {
827		if (!(rtcin(RTC_STATUSA) & RTCSA_TUP))
828			sec = rtcin(RTC_SEC);
829		count = getit();
830		if (count == 0 || count > timer0_max_count)
831			goto fail;
832		if (count > prev_count)
833			tot_count += prev_count - (count - timer0_max_count);
834		else
835			tot_count += prev_count - count;
836		prev_count = count;
837		if (sec != start_sec)
838			break;
839		if (--timeout == 0)
840			goto fail;
841	}
842
843	/*
844	 * Read the cpu cycle counter.  The timing considerations are
845	 * similar to those for the i8254 clock.
846	 */
847	if (tsc_present)
848		tsc_freq = rdtsc() - old_tsc;
849
850	if (bootverbose) {
851		if (tsc_present)
852		        printf("TSC clock: %u Hz, ", tsc_freq);
853	        printf("i8254 clock: %u Hz\n", tot_count);
854	}
855	return (tot_count);
856
857fail:
858	if (bootverbose)
859	        printf("failed, using default i8254 clock of %u Hz\n",
860		       timer_freq);
861	return (timer_freq);
862}
863#endif	/* !PC98 */
864
865static void
866set_timer_freq(u_int freq, int intr_freq)
867{
868	int new_timer0_max_count;
869
870	mtx_lock_spin(&clock_lock);
871	timer_freq = freq;
872	new_timer0_max_count = hardclock_max_count = TIMER_DIV(intr_freq);
873	if (new_timer0_max_count != timer0_max_count) {
874		timer0_max_count = new_timer0_max_count;
875		outb(TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT);
876		outb(TIMER_CNTR0, timer0_max_count & 0xff);
877		outb(TIMER_CNTR0, timer0_max_count >> 8);
878	}
879	mtx_unlock_spin(&clock_lock);
880}
881
882/*
883 * i8254_restore is called from apm_default_resume() to reload
884 * the countdown register.
885 * this should not be necessary but there are broken laptops that
886 * do not restore the countdown register on resume.
887 * when it happnes, it messes up the hardclock interval and system clock,
888 * which leads to the infamous "calcru: negative time" problem.
889 */
890static void
891i8254_restore(void)
892{
893
894	mtx_lock_spin(&clock_lock);
895	outb(TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT);
896	outb(TIMER_CNTR0, timer0_max_count & 0xff);
897	outb(TIMER_CNTR0, timer0_max_count >> 8);
898	mtx_unlock_spin(&clock_lock);
899}
900
901#ifndef PC98
902static void
903rtc_restore(void)
904{
905
906	/* Reenable RTC updates and interrupts. */
907	/* XXX locking is needed for RTC access? */
908	writertc(RTC_STATUSB, RTCSB_HALT | RTCSB_24HR);
909	writertc(RTC_STATUSB, rtc_statusb);
910}
911#endif
912
913/*
914 * Restore all the timers atomically.
915 */
916void
917timer_restore(void)
918{
919
920	i8254_restore();		/* restore timer_freq and hz */
921#ifndef PC98
922	rtc_restore();			/* reenable RTC interrupts */
923#endif
924}
925
926/*
927 * Initialize 8254 timer 0 early so that it can be used in DELAY().
928 * XXX initialization of other timers is unintentionally left blank.
929 */
930void
931startrtclock()
932{
933	u_int delta, freq;
934
935#ifdef PC98
936	findcpuspeed();
937	if (pc98_machine_type & M_8M)
938		timer_freq = 1996800L; /* 1.9968 MHz */
939	else
940		timer_freq = 2457600L; /* 2.4576 MHz */
941#endif /* PC98 */
942
943	if (cpu_feature & CPUID_TSC)
944		tsc_present = 1;
945	else
946		tsc_present = 0;
947
948#ifndef PC98
949	writertc(RTC_STATUSA, rtc_statusa);
950	writertc(RTC_STATUSB, RTCSB_24HR);
951#endif
952
953	set_timer_freq(timer_freq, hz);
954	freq = calibrate_clocks();
955#ifdef CLK_CALIBRATION_LOOP
956	if (bootverbose) {
957		printf(
958		"Press a key on the console to abort clock calibration\n");
959		while (cncheckc() == -1)
960			calibrate_clocks();
961	}
962#endif
963
964	/*
965	 * Use the calibrated i8254 frequency if it seems reasonable.
966	 * Otherwise use the default, and don't use the calibrated i586
967	 * frequency.
968	 */
969	delta = freq > timer_freq ? freq - timer_freq : timer_freq - freq;
970	if (delta < timer_freq / 100) {
971#ifndef CLK_USE_I8254_CALIBRATION
972		if (bootverbose)
973			printf(
974"CLK_USE_I8254_CALIBRATION not specified - using default frequency\n");
975		freq = timer_freq;
976#endif
977		timer_freq = freq;
978	} else {
979		if (bootverbose)
980			printf(
981		    "%d Hz differs from default of %d Hz by more than 1%%\n",
982			       freq, timer_freq);
983		tsc_freq = 0;
984	}
985
986	set_timer_freq(timer_freq, hz);
987	i8254_timecounter.tc_frequency = timer_freq;
988	tc_init(&i8254_timecounter);
989
990#ifndef CLK_USE_TSC_CALIBRATION
991	if (tsc_freq != 0) {
992		if (bootverbose)
993			printf(
994"CLK_USE_TSC_CALIBRATION not specified - using old calibration method\n");
995		tsc_freq = 0;
996	}
997#endif
998	if (tsc_present && tsc_freq == 0) {
999		/*
1000		 * Calibration of the i586 clock relative to the mc146818A
1001		 * clock failed.  Do a less accurate calibration relative
1002		 * to the i8254 clock.
1003		 */
1004		u_int64_t old_tsc = rdtsc();
1005
1006		DELAY(1000000);
1007		tsc_freq = rdtsc() - old_tsc;
1008#ifdef CLK_USE_TSC_CALIBRATION
1009		if (bootverbose)
1010			printf("TSC clock: %u Hz (Method B)\n", tsc_freq);
1011#endif
1012	}
1013
1014#if !defined(SMP)
1015	/*
1016	 * We can not use the TSC in SMP mode, until we figure out a
1017	 * cheap (impossible), reliable and precise (yeah right!)  way
1018	 * to synchronize the TSCs of all the CPUs.
1019	 * Curse Intel for leaving the counter out of the I/O APIC.
1020	 */
1021
1022#ifdef DEV_APM
1023	/*
1024	 * We can not use the TSC if we support APM. Precise timekeeping
1025	 * on an APM'ed machine is at best a fools pursuit, since
1026	 * any and all of the time spent in various SMM code can't
1027	 * be reliably accounted for.  Reading the RTC is your only
1028	 * source of reliable time info.  The i8254 looses too of course
1029	 * but we need to have some kind of time...
1030	 * We don't know at this point whether APM is going to be used
1031	 * or not, nor when it might be activated.  Play it safe.
1032	 */
1033	{
1034	int disabled = 0;
1035	resource_int_value("apm", 0, "disabled", &disabled);
1036	if (disabled == 0)
1037		return;
1038	}
1039#endif /* DEV_APM */
1040
1041	if (tsc_present && tsc_freq != 0 && !tsc_is_broken) {
1042		tsc_timecounter.tc_frequency = tsc_freq;
1043		tc_init(&tsc_timecounter);
1044	}
1045
1046#endif /* !defined(SMP) */
1047}
1048
1049#ifdef PC98
1050static void
1051rtc_serialcombit(int i)
1052{
1053	outb(IO_RTC, ((i&0x01)<<5)|0x07);
1054	DELAY(1);
1055	outb(IO_RTC, ((i&0x01)<<5)|0x17);
1056	DELAY(1);
1057	outb(IO_RTC, ((i&0x01)<<5)|0x07);
1058	DELAY(1);
1059}
1060
1061static void
1062rtc_serialcom(int i)
1063{
1064	rtc_serialcombit(i&0x01);
1065	rtc_serialcombit((i&0x02)>>1);
1066	rtc_serialcombit((i&0x04)>>2);
1067	rtc_serialcombit((i&0x08)>>3);
1068	outb(IO_RTC, 0x07);
1069	DELAY(1);
1070	outb(IO_RTC, 0x0f);
1071	DELAY(1);
1072	outb(IO_RTC, 0x07);
1073 	DELAY(1);
1074}
1075
1076static void
1077rtc_outb(int val)
1078{
1079	int s;
1080	int sa = 0;
1081
1082	for (s=0;s<8;s++) {
1083	    sa = ((val >> s) & 0x01) ? 0x27 : 0x07;
1084	    outb(IO_RTC, sa);		/* set DI & CLK 0 */
1085	    DELAY(1);
1086	    outb(IO_RTC, sa | 0x10);	/* CLK 1 */
1087	    DELAY(1);
1088	}
1089	outb(IO_RTC, sa & 0xef);	/* CLK 0 */
1090}
1091
1092static int
1093rtc_inb(void)
1094{
1095	int s;
1096	int sa = 0;
1097
1098	for (s=0;s<8;s++) {
1099	    sa |= ((inb(0x33) & 0x01) << s);
1100	    outb(IO_RTC, 0x17);	/* CLK 1 */
1101	    DELAY(1);
1102	    outb(IO_RTC, 0x07);	/* CLK 0 */
1103	    DELAY(2);
1104	}
1105	return sa;
1106}
1107#endif /* PC-98 */
1108
1109/*
1110 * Initialize the time of day register, based on the time base which is, e.g.
1111 * from a filesystem.
1112 */
1113void
1114inittodr(time_t base)
1115{
1116	unsigned long	sec, days;
1117	int		year, month;
1118	int		y, m, s;
1119	struct timespec ts;
1120#ifdef PC98
1121	int		second, min, hour;
1122#endif
1123
1124	if (base) {
1125		s = splclock();
1126		ts.tv_sec = base;
1127		ts.tv_nsec = 0;
1128		tc_setclock(&ts);
1129		splx(s);
1130	}
1131
1132#ifdef PC98
1133	rtc_serialcom(0x03);	/* Time Read */
1134	rtc_serialcom(0x01);	/* Register shift command. */
1135	DELAY(20);
1136
1137	second = bcd2bin(rtc_inb() & 0xff);	/* sec */
1138	min = bcd2bin(rtc_inb() & 0xff);	/* min */
1139	hour = bcd2bin(rtc_inb() & 0xff);	/* hour */
1140	days = bcd2bin(rtc_inb() & 0xff) - 1;	/* date */
1141
1142	month = (rtc_inb() >> 4) & 0x0f;	/* month */
1143	for (m = 1; m <	month; m++)
1144		days +=	daysinmonth[m-1];
1145	year = bcd2bin(rtc_inb() & 0xff) + 1900;	/* year */
1146	/* 2000 year problem */
1147	if (year < 1995)
1148		year += 100;
1149	if (year < 1970)
1150		goto wrong_time;
1151	for (y = 1970; y < year; y++)
1152		days +=	DAYSPERYEAR + LEAPYEAR(y);
1153	if ((month > 2)	&& LEAPYEAR(year))
1154		days ++;
1155	sec = ((( days * 24 +
1156		  hour) * 60 +
1157		  min) * 60 +
1158		  second);
1159	/* sec now contains the	number of seconds, since Jan 1 1970,
1160	   in the local	time zone */
1161
1162	s = splhigh();
1163#else	/* IBM-PC */
1164	/* Look if we have a RTC present and the time is valid */
1165	if (!(rtcin(RTC_STATUSD) & RTCSD_PWR))
1166		goto wrong_time;
1167
1168	/* wait for time update to complete */
1169	/* If RTCSA_TUP is zero, we have at least 244us before next update */
1170	s = splhigh();
1171	while (rtcin(RTC_STATUSA) & RTCSA_TUP) {
1172		splx(s);
1173		s = splhigh();
1174	}
1175
1176	days = 0;
1177#ifdef USE_RTC_CENTURY
1178	year = readrtc(RTC_YEAR) + readrtc(RTC_CENTURY) * 100;
1179#else
1180	year = readrtc(RTC_YEAR) + 1900;
1181	if (year < 1970)
1182		year += 100;
1183#endif
1184	if (year < 1970) {
1185		splx(s);
1186		goto wrong_time;
1187	}
1188	month = readrtc(RTC_MONTH);
1189	for (m = 1; m < month; m++)
1190		days += daysinmonth[m-1];
1191	if ((month > 2) && LEAPYEAR(year))
1192		days ++;
1193	days += readrtc(RTC_DAY) - 1;
1194	for (y = 1970; y < year; y++)
1195		days += DAYSPERYEAR + LEAPYEAR(y);
1196	sec = ((( days * 24 +
1197		  readrtc(RTC_HRS)) * 60 +
1198		  readrtc(RTC_MIN)) * 60 +
1199		  readrtc(RTC_SEC));
1200	/* sec now contains the number of seconds, since Jan 1 1970,
1201	   in the local time zone */
1202#endif
1203
1204	sec += tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0);
1205
1206	y = time_second - sec;
1207	if (y <= -2 || y >= 2) {
1208		/* badly off, adjust it */
1209		ts.tv_sec = sec;
1210		ts.tv_nsec = 0;
1211		tc_setclock(&ts);
1212	}
1213	splx(s);
1214	return;
1215
1216wrong_time:
1217	printf("Invalid time in real time clock.\n");
1218	printf("Check and reset the date immediately!\n");
1219}
1220
1221/*
1222 * Write system time back to RTC
1223 */
1224void
1225resettodr()
1226{
1227	unsigned long	tm;
1228	int		y, m, s;
1229#ifdef PC98
1230	int		wd;
1231#endif
1232
1233	if (disable_rtc_set)
1234		return;
1235
1236	s = splclock();
1237	tm = time_second;
1238	splx(s);
1239
1240#ifdef PC98
1241	rtc_serialcom(0x01);	/* Register shift command. */
1242
1243	/* Calculate local time	to put in RTC */
1244
1245	tm -= tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0);
1246
1247	rtc_outb(bin2bcd(tm%60)); tm /= 60;	/* Write back Seconds */
1248	rtc_outb(bin2bcd(tm%60)); tm /= 60;	/* Write back Minutes */
1249	rtc_outb(bin2bcd(tm%24)); tm /= 24;	/* Write back Hours   */
1250
1251	/* We have now the days	since 01-01-1970 in tm */
1252	wd = (tm+4)%7;
1253	for (y = 1970, m = DAYSPERYEAR + LEAPYEAR(y);
1254	     tm >= m;
1255	     y++,      m = DAYSPERYEAR + LEAPYEAR(y))
1256	     tm -= m;
1257
1258	/* Now we have the years in y and the day-of-the-year in tm */
1259	for (m = 0; ; m++) {
1260		int ml;
1261
1262		ml = daysinmonth[m];
1263		if (m == 1 && LEAPYEAR(y))
1264			ml++;
1265		if (tm < ml)
1266			break;
1267		tm -= ml;
1268	}
1269
1270	m++;
1271	rtc_outb(bin2bcd(tm+1));		/* Write back Day     */
1272	rtc_outb((m << 4) | wd);		/* Write back Month & Weekday  */
1273	rtc_outb(bin2bcd(y%100));		/* Write back Year    */
1274
1275	rtc_serialcom(0x02);	/* Time set & Counter hold command. */
1276	rtc_serialcom(0x00);	/* Register hold command. */
1277#else
1278	/* Disable RTC updates and interrupts. */
1279	writertc(RTC_STATUSB, RTCSB_HALT | RTCSB_24HR);
1280
1281	/* Calculate local time to put in RTC */
1282
1283	tm -= tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0);
1284
1285	writertc(RTC_SEC, bin2bcd(tm%60)); tm /= 60;	/* Write back Seconds */
1286	writertc(RTC_MIN, bin2bcd(tm%60)); tm /= 60;	/* Write back Minutes */
1287	writertc(RTC_HRS, bin2bcd(tm%24)); tm /= 24;	/* Write back Hours   */
1288
1289	/* We have now the days since 01-01-1970 in tm */
1290	writertc(RTC_WDAY, (tm+4)%7);			/* Write back Weekday */
1291	for (y = 1970, m = DAYSPERYEAR + LEAPYEAR(y);
1292	     tm >= m;
1293	     y++,      m = DAYSPERYEAR + LEAPYEAR(y))
1294	     tm -= m;
1295
1296	/* Now we have the years in y and the day-of-the-year in tm */
1297	writertc(RTC_YEAR, bin2bcd(y%100));		/* Write back Year    */
1298#ifdef USE_RTC_CENTURY
1299	writertc(RTC_CENTURY, bin2bcd(y/100));		/* ... and Century    */
1300#endif
1301	for (m = 0; ; m++) {
1302		int ml;
1303
1304		ml = daysinmonth[m];
1305		if (m == 1 && LEAPYEAR(y))
1306			ml++;
1307		if (tm < ml)
1308			break;
1309		tm -= ml;
1310	}
1311
1312	writertc(RTC_MONTH, bin2bcd(m + 1));            /* Write back Month   */
1313	writertc(RTC_DAY, bin2bcd(tm + 1));             /* Write back Month Day */
1314
1315	/* Reenable RTC updates and interrupts. */
1316	writertc(RTC_STATUSB, rtc_statusb);
1317#endif /* PC98 */
1318}
1319
1320
1321/*
1322 * Start both clocks running.
1323 */
1324void
1325cpu_initclocks()
1326{
1327#ifndef PC98
1328	int diag;
1329#endif
1330#ifdef APIC_IO
1331	int apic_8254_trial;
1332	void *clkdesc;
1333#endif /* APIC_IO */
1334
1335#ifndef PC98
1336	if (statclock_disable) {
1337		/*
1338		 * The stat interrupt mask is different without the
1339		 * statistics clock.  Also, don't set the interrupt
1340		 * flag which would normally cause the RTC to generate
1341		 * interrupts.
1342		 */
1343		rtc_statusb = RTCSB_24HR;
1344	} else {
1345	        /* Setting stathz to nonzero early helps avoid races. */
1346		stathz = RTC_NOPROFRATE;
1347		profhz = RTC_PROFRATE;
1348        }
1349#endif
1350
1351	/* Finish initializing 8253 timer 0. */
1352#ifdef APIC_IO
1353
1354	apic_8254_intr = isa_apic_irq(0);
1355	apic_8254_trial = 0;
1356	if (apic_8254_intr >= 0 ) {
1357		if (apic_int_type(0, 0) == 3)
1358			apic_8254_trial = 1;
1359	} else {
1360		/* look for ExtInt on pin 0 */
1361		if (apic_int_type(0, 0) == 3) {
1362			apic_8254_intr = apic_irq(0, 0);
1363			setup_8254_mixed_mode();
1364		} else
1365			panic("APIC_IO: Cannot route 8254 interrupt to CPU");
1366	}
1367
1368	inthand_add("clk", apic_8254_intr, (driver_intr_t *)clkintr, NULL,
1369	    INTR_TYPE_CLK | INTR_FAST, &clkdesc);
1370	mtx_lock_spin(&icu_lock);
1371	INTREN(1 << apic_8254_intr);
1372	mtx_unlock_spin(&icu_lock);
1373
1374#else /* APIC_IO */
1375
1376	/*
1377	 * XXX Check the priority of this interrupt handler.  I
1378	 * couldn't find anything suitable in the BSD/OS code (grog,
1379	 * 19 July 2000).
1380	 */
1381	inthand_add("clk", 0, (driver_intr_t *)clkintr, NULL,
1382	    INTR_TYPE_CLK | INTR_FAST, NULL);
1383	mtx_lock_spin(&icu_lock);
1384	INTREN(IRQ0);
1385	mtx_unlock_spin(&icu_lock);
1386
1387#endif /* APIC_IO */
1388
1389#ifndef PC98
1390	/* Initialize RTC. */
1391	writertc(RTC_STATUSA, rtc_statusa);
1392	writertc(RTC_STATUSB, RTCSB_24HR);
1393
1394	/* Don't bother enabling the statistics clock. */
1395	if (statclock_disable)
1396		return;
1397	diag = rtcin(RTC_DIAG);
1398	if (diag != 0)
1399		printf("RTC BIOS diagnostic error %b\n", diag, RTCDG_BITS);
1400#endif /* !PC98 */
1401
1402#ifndef PC98
1403#ifdef APIC_IO
1404	if (isa_apic_irq(8) != 8)
1405		panic("APIC RTC != 8");
1406#endif /* APIC_IO */
1407
1408	inthand_add("rtc", 8, (driver_intr_t *)rtcintr, NULL,
1409	    INTR_TYPE_CLK | INTR_FAST, NULL);
1410
1411	mtx_lock_spin(&icu_lock);
1412#ifdef APIC_IO
1413	INTREN(APIC_IRQ8);
1414#else
1415	INTREN(IRQ8);
1416#endif /* APIC_IO */
1417	mtx_unlock_spin(&icu_lock);
1418
1419	writertc(RTC_STATUSB, rtc_statusb);
1420#endif /* PC98 */
1421
1422#ifdef APIC_IO
1423	if (apic_8254_trial) {
1424
1425		printf("APIC_IO: Testing 8254 interrupt delivery\n");
1426		while (read_intr_count(8) < 6)
1427			;	/* nothing */
1428		if (read_intr_count(apic_8254_intr) < 3) {
1429			/*
1430			 * The MP table is broken.
1431			 * The 8254 was not connected to the specified pin
1432			 * on the IO APIC.
1433			 * Workaround: Limited variant of mixed mode.
1434			 */
1435			mtx_lock_spin(&icu_lock);
1436			INTRDIS(1 << apic_8254_intr);
1437			mtx_unlock_spin(&icu_lock);
1438			inthand_remove(clkdesc);
1439			printf("APIC_IO: Broken MP table detected: "
1440			       "8254 is not connected to "
1441			       "IOAPIC #%d intpin %d\n",
1442			       int_to_apicintpin[apic_8254_intr].ioapic,
1443			       int_to_apicintpin[apic_8254_intr].int_pin);
1444			/*
1445			 * Revoke current ISA IRQ 0 assignment and
1446			 * configure a fallback interrupt routing from
1447			 * the 8254 Timer via the 8259 PIC to the
1448			 * an ExtInt interrupt line on IOAPIC #0 intpin 0.
1449			 * We reuse the low level interrupt handler number.
1450			 */
1451			if (apic_irq(0, 0) < 0) {
1452				revoke_apic_irq(apic_8254_intr);
1453				assign_apic_irq(0, 0, apic_8254_intr);
1454			}
1455			apic_8254_intr = apic_irq(0, 0);
1456			setup_8254_mixed_mode();
1457			inthand_add("clk", apic_8254_intr,
1458				    (driver_intr_t *)clkintr, NULL,
1459				    INTR_TYPE_CLK | INTR_FAST, NULL);
1460			mtx_lock_spin(&icu_lock);
1461			INTREN(1 << apic_8254_intr);
1462			mtx_unlock_spin(&icu_lock);
1463		}
1464
1465	}
1466	if (apic_int_type(0, 0) != 3 ||
1467	    int_to_apicintpin[apic_8254_intr].ioapic != 0 ||
1468	    int_to_apicintpin[apic_8254_intr].int_pin != 0)
1469		printf("APIC_IO: routing 8254 via IOAPIC #%d intpin %d\n",
1470		       int_to_apicintpin[apic_8254_intr].ioapic,
1471		       int_to_apicintpin[apic_8254_intr].int_pin);
1472	else
1473		printf("APIC_IO: "
1474		       "routing 8254 via 8259 and IOAPIC #0 intpin 0\n");
1475#endif
1476
1477}
1478
1479#ifdef APIC_IO
1480static u_long
1481read_intr_count(int vec)
1482{
1483	u_long *up;
1484	up = intr_countp[vec];
1485	if (up)
1486		return *up;
1487	return 0UL;
1488}
1489
1490static void
1491setup_8254_mixed_mode()
1492{
1493	/*
1494	 * Allow 8254 timer to INTerrupt 8259:
1495	 *  re-initialize master 8259:
1496	 *   reset; prog 4 bytes, single ICU, edge triggered
1497	 */
1498	outb(IO_ICU1, 0x13);
1499#ifdef PC98
1500	outb(IO_ICU1 + 2, NRSVIDT);	/* start vector (unused) */
1501	outb(IO_ICU1 + 2, 0x00);	/* ignore slave */
1502	outb(IO_ICU1 + 2, 0x03);	/* auto EOI, 8086 */
1503	outb(IO_ICU1 + 2, 0xfe);	/* unmask INT0 */
1504#else
1505	outb(IO_ICU1 + 1, NRSVIDT);	/* start vector (unused) */
1506	outb(IO_ICU1 + 1, 0x00);	/* ignore slave */
1507	outb(IO_ICU1 + 1, 0x03);	/* auto EOI, 8086 */
1508	outb(IO_ICU1 + 1, 0xfe);	/* unmask INT0 */
1509#endif
1510
1511	/* program IO APIC for type 3 INT on INT0 */
1512	if (ext_int_setup(0, 0) < 0)
1513		panic("8254 redirect via APIC pin0 impossible!");
1514}
1515#endif
1516
1517void
1518setstatclockrate(int newhz)
1519{
1520#ifndef PC98
1521	if (newhz == RTC_PROFRATE)
1522		rtc_statusa = RTCSA_DIVIDER | RTCSA_PROF;
1523	else
1524		rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF;
1525	writertc(RTC_STATUSA, rtc_statusa);
1526#endif
1527}
1528
1529static int
1530sysctl_machdep_i8254_freq(SYSCTL_HANDLER_ARGS)
1531{
1532	int error;
1533	u_int freq;
1534
1535	/*
1536	 * Use `i8254' instead of `timer' in external names because `timer'
1537	 * is is too generic.  Should use it everywhere.
1538	 */
1539	freq = timer_freq;
1540	error = sysctl_handle_int(oidp, &freq, sizeof(freq), req);
1541	if (error == 0 && req->newptr != NULL) {
1542		if (timer0_state != RELEASED)
1543			return (EBUSY);	/* too much trouble to handle */
1544		set_timer_freq(freq, hz);
1545		i8254_timecounter.tc_frequency = freq;
1546		tc_update(&i8254_timecounter);
1547	}
1548	return (error);
1549}
1550
1551SYSCTL_PROC(_machdep, OID_AUTO, i8254_freq, CTLTYPE_INT | CTLFLAG_RW,
1552    0, sizeof(u_int), sysctl_machdep_i8254_freq, "I", "");
1553
1554static int
1555sysctl_machdep_tsc_freq(SYSCTL_HANDLER_ARGS)
1556{
1557	int error;
1558	u_int freq;
1559
1560	if (tsc_timecounter.tc_frequency == 0)
1561		return (EOPNOTSUPP);
1562	freq = tsc_freq;
1563	error = sysctl_handle_int(oidp, &freq, sizeof(freq), req);
1564	if (error == 0 && req->newptr != NULL) {
1565		tsc_freq = freq;
1566		tsc_timecounter.tc_frequency = tsc_freq;
1567		tc_update(&tsc_timecounter);
1568	}
1569	return (error);
1570}
1571
1572SYSCTL_PROC(_machdep, OID_AUTO, tsc_freq, CTLTYPE_INT | CTLFLAG_RW,
1573    0, sizeof(u_int), sysctl_machdep_tsc_freq, "I", "");
1574
1575static unsigned
1576i8254_get_timecount(struct timecounter *tc)
1577{
1578	u_int count;
1579	u_int high, low;
1580	u_int eflags;
1581
1582	eflags = read_eflags();
1583	mtx_lock_spin(&clock_lock);
1584
1585	/* Select timer0 and latch counter value. */
1586	outb(TIMER_MODE, TIMER_SEL0 | TIMER_LATCH);
1587
1588	low = inb(TIMER_CNTR0);
1589	high = inb(TIMER_CNTR0);
1590	count = timer0_max_count - ((high << 8) | low);
1591	if (count < i8254_lastcount ||
1592	    (!i8254_ticked && (clkintr_pending ||
1593	    ((count < 20 || (!(eflags & PSL_I) && count < timer0_max_count / 2u)) &&
1594#ifdef APIC_IO
1595#define	lapic_irr1	((volatile u_int *)&lapic)[0x210 / 4]	/* XXX XXX */
1596	    /* XXX this assumes that apic_8254_intr is < 24. */
1597	    (lapic_irr1 & (1 << apic_8254_intr))))
1598#else
1599	    (inb(IO_ICU1) & 1)))
1600#endif
1601	    )) {
1602		i8254_ticked = 1;
1603		i8254_offset += timer0_max_count;
1604	}
1605	i8254_lastcount = count;
1606	count += i8254_offset;
1607	mtx_unlock_spin(&clock_lock);
1608	return (count);
1609}
1610
1611static unsigned
1612tsc_get_timecount(struct timecounter *tc)
1613{
1614	return (rdtsc());
1615}
1616
1617/*
1618 * Attach to the ISA PnP descriptors for the timer and realtime clock.
1619 */
1620static struct isa_pnp_id attimer_ids[] = {
1621	{ 0x0001d041 /* PNP0100 */, "AT timer" },
1622	{ 0x000bd041 /* PNP0B00 */, "AT realtime clock" },
1623	{ 0 }
1624};
1625
1626static int
1627attimer_probe(device_t dev)
1628{
1629	int result;
1630
1631	if ((result = ISA_PNP_PROBE(device_get_parent(dev), dev, attimer_ids)) <= 0)
1632		device_quiet(dev);
1633	return(result);
1634}
1635
1636static int
1637attimer_attach(device_t dev)
1638{
1639	return(0);
1640}
1641
1642static device_method_t attimer_methods[] = {
1643	/* Device interface */
1644	DEVMETHOD(device_probe,		attimer_probe),
1645	DEVMETHOD(device_attach,	attimer_attach),
1646	DEVMETHOD(device_detach,	bus_generic_detach),
1647	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
1648	DEVMETHOD(device_suspend,	bus_generic_suspend),	/* XXX stop statclock? */
1649	DEVMETHOD(device_resume,	bus_generic_resume),	/* XXX restart statclock? */
1650	{ 0, 0 }
1651};
1652
1653static driver_t attimer_driver = {
1654	"attimer",
1655	attimer_methods,
1656	1,		/* no softc */
1657};
1658
1659static devclass_t attimer_devclass;
1660
1661DRIVER_MODULE(attimer, isa, attimer_driver, attimer_devclass, 0, 0);
1662#ifndef PC98
1663DRIVER_MODULE(attimer, acpi, attimer_driver, attimer_devclass, 0, 0);
1664#endif
1665