Merge from vendor branch OPENSSH:
[dragonfly.git] / sys / i386 / isa / clock.c
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * William Jolitz and Don Ahn.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      from: @(#)clock.c       7.2 (Berkeley) 5/12/91
37  * $FreeBSD: src/sys/i386/isa/clock.c,v 1.149.2.6 2002/11/02 04:41:50 iwasaki Exp $
38  * $DragonFly: src/sys/i386/isa/Attic/clock.c,v 1.15 2004/07/20 04:12:08 dillon Exp $
39  */
40
41 /*
42  * Routines to handle clock hardware.
43  */
44
45 /*
46  * inittodr, settodr and support routines written
47  * by Christoph Robitschko <chmr@edvz.tu-graz.ac.at>
48  *
49  * reintroduced and updated by Chris Stenton <chris@gnome.co.uk> 8/10/94
50  */
51
52 #include "use_apm.h"
53 #include "use_mca.h"
54 #include "opt_clock.h"
55
56 #include <sys/param.h>
57 #include <sys/systm.h>
58 #include <sys/time.h>
59 #include <sys/kernel.h>
60 #include <sys/bus.h>
61 #ifndef SMP
62 #include <sys/lock.h>
63 #endif
64 #include <sys/sysctl.h>
65 #include <sys/cons.h>
66 #include <sys/systimer.h>
67 #include <sys/globaldata.h>
68 #include <sys/thread2.h>
69 #include <sys/systimer.h>
70
71 #include <machine/clock.h>
72 #ifdef CLK_CALIBRATION_LOOP
73 #endif
74 #include <machine/cputypes.h>
75 #include <machine/frame.h>
76 #include <machine/ipl.h>
77 #include <machine/limits.h>
78 #include <machine/md_var.h>
79 #include <machine/psl.h>
80 #ifdef APIC_IO
81 #include <machine/segments.h>
82 #endif
83 #if defined(SMP) || defined(APIC_IO)
84 #include <machine/smp.h>
85 #endif /* SMP || APIC_IO */
86 #include <machine/specialreg.h>
87
88 #include <i386/isa/icu.h>
89 #include <bus/isa/i386/isa.h>
90 #include <bus/isa/rtc.h>
91 #include <i386/isa/timerreg.h>
92
93 #include <i386/isa/intr_machdep.h>
94
95 #if NMCA > 0
96 #include <bus/mca/i386/mca_machdep.h>
97 #endif
98
99 #ifdef APIC_IO
100 #include <i386/isa/intr_machdep.h>
101 /* The interrupt triggered by the 8254 (timer) chip */
102 int apic_8254_intr;
103 static u_long read_intr_count (int vec);
104 static void setup_8254_mixed_mode (void);
105 #endif
106 static void i8254_restore(void);
107
108 /*
109  * 32-bit time_t's can't reach leap years before 1904 or after 2036, so we
110  * can use a simple formula for leap years.
111  */
112 #define LEAPYEAR(y) ((u_int)(y) % 4 == 0)
113 #define DAYSPERYEAR   (31+28+31+30+31+30+31+31+30+31+30+31)
114
115 #ifndef TIMER_FREQ
116 #define TIMER_FREQ   1193182
117 #endif
118
119 #define TIMER_SELX      TIMER_SEL2
120 #define TIMER_CNTRX     TIMER_CNTR2
121
122 int     adjkerntz;              /* local offset from GMT in seconds */
123 int     disable_rtc_set;        /* disable resettodr() if != 0 */
124 volatile u_int  idelayed;
125 int     statclock_disable = 1;  /* we don't use the statclock right now */
126 u_int   stat_imask = SWI_CLOCK_MASK;
127 u_int   cputimer_freq = TIMER_FREQ;
128 #if 0
129 int64_t cputimer_freq64_usec = ((int64_t)TIMER_FREQ << 32) / 1000000;
130 int64_t cputimer_freq64_nsec = ((int64_t)TIMER_FREQ << 32) / 1000000000LL;
131 #endif
132 int64_t cputimer_freq64_usec = (1000000LL << 32) / TIMER_FREQ;
133 int64_t cputimer_freq64_nsec = (1000000000LL << 32) / TIMER_FREQ;
134 u_int   tsc_freq;
135 int     tsc_is_broken;
136 int     wall_cmos_clock;        /* wall CMOS clock assumed if != 0 */
137 int     timer0_running;
138 enum tstate { RELEASED, ACQUIRED };
139 enum tstate timer0_state;
140 enum tstate timer1_state;
141 enum tstate timer2_state;
142
143 static  int     beeping = 0;
144 static  u_int   clk_imask = HWI_MASK | SWI_MASK;
145 static  const u_char daysinmonth[] = {31,28,31,30,31,30,31,31,30,31,30,31};
146 static  u_char  rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF;
147 static  u_char  rtc_statusb = RTCSB_24HR | RTCSB_PINTR;
148 static  u_int   tsc_present;
149
150 /*
151  * timer0 clock interrupt.  Timer0 is in one-shot mode and has stopped
152  * counting as of this interrupt.  We use timer1 in free-running mode (not
153  * generating any interrupts) as our main counter.  Each cpu has timeouts
154  * pending.
155  */
156 static void
157 clkintr(struct intrframe frame)
158 {
159         static sysclock_t timer1_count;
160         struct globaldata *gd = mycpu;
161         struct globaldata *gscan;
162         int n;
163
164         /*
165          * SWSTROBE mode is a one-shot, the timer is no longer running
166          */
167         timer0_running = 0;
168
169         /*
170          * XXX this could be done more efficiently by using a bitmask?
171          */
172         timer1_count = cputimer_count();
173         for (n = 0; n < ncpus; ++n) {
174             gscan = globaldata_find(n);
175             if (gscan->gd_nextclock == 0)
176                 continue;
177             if (gscan != gd) {
178                 lwkt_send_ipiq(gscan, (ipifunc_t)systimer_intr, &timer1_count);
179             } else {
180                 systimer_intr(&timer1_count, &frame);
181             }
182         }
183 #if NMCA > 0
184         /* Reset clock interrupt by asserting bit 7 of port 0x61 */
185         if (MCA_system)
186                 outb(0x61, inb(0x61) | 0x80);
187 #endif
188 }
189
190
191 /*
192  * NOTE! not MP safe.
193  */
194 int
195 acquire_timer2(int mode)
196 {
197         /* Timer2 is being used for time count operation */
198         return(-1);
199 #if 0
200         if (timer2_state != RELEASED)
201                 return (-1);
202         timer2_state = ACQUIRED;
203
204         /*
205          * This access to the timer registers is as atomic as possible
206          * because it is a single instruction.  We could do better if we
207          * knew the rate.
208          */
209         outb(TIMER_MODE, TIMER_SEL2 | (mode & 0x3f));
210         return (0);
211 #endif
212 }
213
214 int
215 release_timer2()
216 {
217         if (timer2_state != ACQUIRED)
218                 return (-1);
219         outb(TIMER_MODE, TIMER_SEL2 | TIMER_SQWAVE | TIMER_16BIT);
220         timer2_state = RELEASED;
221         return (0);
222 }
223
224 /*
225  * This routine receives statistical clock interrupts from the RTC.
226  * As explained above, these occur at 128 interrupts per second.
227  * When profiling, we receive interrupts at a rate of 1024 Hz.
228  *
229  * This does not actually add as much overhead as it sounds, because
230  * when the statistical clock is active, the hardclock driver no longer
231  * needs to keep (inaccurate) statistics on its own.  This decouples
232  * statistics gathering from scheduling interrupts.
233  *
234  * The RTC chip requires that we read status register C (RTC_INTR)
235  * to acknowledge an interrupt, before it will generate the next one.
236  * Under high interrupt load, rtcintr() can be indefinitely delayed and
237  * the clock can tick immediately after the read from RTC_INTR.  In this
238  * case, the mc146818A interrupt signal will not drop for long enough
239  * to register with the 8259 PIC.  If an interrupt is missed, the stat
240  * clock will halt, considerably degrading system performance.  This is
241  * why we use 'while' rather than a more straightforward 'if' below.
242  * Stat clock ticks can still be lost, causing minor loss of accuracy
243  * in the statistics, but the stat clock will no longer stop.
244  */
245 static void
246 rtcintr(struct intrframe frame)
247 {
248         while (rtcin(RTC_INTR) & RTCIR_PERIOD)
249                 ;
250                 /* statclock(&frame); no longer used */
251 }
252
253 #include "opt_ddb.h"
254 #ifdef DDB
255 #include <ddb/ddb.h>
256
257 DB_SHOW_COMMAND(rtc, rtc)
258 {
259         printf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
260                rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
261                rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
262                rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
263 }
264 #endif /* DDB */
265
266 /*
267  * Convert a frequency to a cpu timer count.
268  */
269 sysclock_t
270 cputimer_fromhz(int freq)
271 {
272         return(cputimer_freq / freq + 1);
273 }
274
275 sysclock_t
276 cputimer_fromus(int us)
277 {
278         return((int64_t)cputimer_freq * us / 1000000);
279 }
280
281 /*
282  * Return the current cpu timer count as a 32 bit integer.
283  */
284 sysclock_t
285 cputimer_count(void)
286 {
287         static sysclock_t cputimer_base;
288         static __uint16_t cputimer_last;
289         __uint16_t count;
290         sysclock_t ret;
291
292         clock_lock();
293         outb(TIMER_MODE, TIMER_SELX | TIMER_LATCH);
294         count = (__uint8_t)inb(TIMER_CNTRX);            /* get countdown */
295         count |= ((__uint8_t)inb(TIMER_CNTRX) << 8);
296         count = -count;                                 /* -> countup */
297         if (count < cputimer_last)                      /* rollover */
298                 cputimer_base += 0x00010000;
299         ret = cputimer_base | count;
300         cputimer_last = count;
301         clock_unlock();
302         return(ret);
303 }
304
305 /*
306  * Reload for the next timeout.  It is possible for the reload value
307  * to be 0 or negative, indicating that an immediate timer interrupt
308  * is desired.  For now make the minimum 2 ticks.
309  */
310 void
311 cputimer_intr_reload(sysclock_t reload)
312 {
313     __uint16_t count;
314
315     if ((int)reload < 2)
316         reload = 2;
317
318     clock_lock();
319     if (timer0_running) {
320         outb(TIMER_MODE, TIMER_SEL0 | TIMER_LATCH);     /* count-down timer */
321         count = (__uint8_t)inb(TIMER_CNTR0);            /* lsb */
322         count |= ((__uint8_t)inb(TIMER_CNTR0) << 8);    /* msb */
323         if (reload < count) {
324             outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT);
325             outb(TIMER_CNTR0, (__uint8_t)reload);       /* lsb */
326             outb(TIMER_CNTR0, (__uint8_t)(reload >> 8)); /* msb */
327         }
328     } else {
329         timer0_running = 1;
330         if (reload > 0xFFFF)
331             reload = 0;         /* full count */
332         outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT);
333         outb(TIMER_CNTR0, (__uint8_t)reload);           /* lsb */
334         outb(TIMER_CNTR0, (__uint8_t)(reload >> 8));    /* msb */
335     }
336     clock_unlock();
337 }
338
339 /*
340  * Wait "n" microseconds.
341  * Relies on timer 1 counting down from (cputimer_freq / hz)
342  * Note: timer had better have been programmed before this is first used!
343  */
344 void
345 DELAY(int n)
346 {
347         int delta, prev_tick, tick, ticks_left;
348
349 #ifdef DELAYDEBUG
350         int getit_calls = 1;
351         int n1;
352         static int state = 0;
353
354         if (state == 0) {
355                 state = 1;
356                 for (n1 = 1; n1 <= 10000000; n1 *= 10)
357                         DELAY(n1);
358                 state = 2;
359         }
360         if (state == 1)
361                 printf("DELAY(%d)...", n);
362 #endif
363         /*
364          * Guard against the timer being uninitialized if we are called
365          * early for console i/o.
366          */
367         if (timer0_state == RELEASED)
368                 i8254_restore();
369
370         /*
371          * Read the counter first, so that the rest of the setup overhead is
372          * counted.  Guess the initial overhead is 20 usec (on most systems it
373          * takes about 1.5 usec for each of the i/o's in getit().  The loop
374          * takes about 6 usec on a 486/33 and 13 usec on a 386/20.  The
375          * multiplications and divisions to scale the count take a while).
376          */
377         prev_tick = cputimer_count();
378         n -= 0;                 /* XXX actually guess no initial overhead */
379         /*
380          * Calculate (n * (cputimer_freq / 1e6)) without using floating point
381          * and without any avoidable overflows.
382          */
383         if (n <= 0) {
384                 ticks_left = 0;
385         } else if (n < 256) {
386                 /*
387                  * Use fixed point to avoid a slow division by 1000000.
388                  * 39099 = 1193182 * 2^15 / 10^6 rounded to nearest.
389                  * 2^15 is the first power of 2 that gives exact results
390                  * for n between 0 and 256.
391                  */
392                 ticks_left = ((u_int)n * 39099 + (1 << 15) - 1) >> 15;
393         } else {
394                 /*
395                  * Don't bother using fixed point, although gcc-2.7.2
396                  * generates particularly poor code for the long long
397                  * division, since even the slow way will complete long
398                  * before the delay is up (unless we're interrupted).
399                  */
400                 ticks_left = ((u_int)n * (long long)cputimer_freq + 999999)
401                              / 1000000;
402         }
403
404         while (ticks_left > 0) {
405                 tick = cputimer_count();
406 #ifdef DELAYDEBUG
407                 ++getit_calls;
408 #endif
409                 delta = tick - prev_tick;
410                 prev_tick = tick;
411                 if (delta < 0)
412                         delta = 0;
413                 ticks_left -= delta;
414         }
415 #ifdef DELAYDEBUG
416         if (state == 1)
417                 printf(" %d calls to getit() at %d usec each\n",
418                        getit_calls, (n + 5) / getit_calls);
419 #endif
420 }
421
422 static void
423 sysbeepstop(void *chan)
424 {
425         outb(IO_PPI, inb(IO_PPI)&0xFC); /* disable counter2 output to speaker */
426         beeping = 0;
427         release_timer2();
428 }
429
430 int
431 sysbeep(int pitch, int period)
432 {
433         if (acquire_timer2(TIMER_SQWAVE|TIMER_16BIT))
434                 return(-1);
435         /*
436          * Nobody else is using timer2, we do not need the clock lock
437          */
438         outb(TIMER_CNTR2, pitch);
439         outb(TIMER_CNTR2, (pitch>>8));
440         if (!beeping) {
441                 /* enable counter2 output to speaker */
442                 outb(IO_PPI, inb(IO_PPI) | 3);
443                 beeping = period;
444                 timeout(sysbeepstop, (void *)NULL, period);
445         }
446         return (0);
447 }
448
449 /*
450  * RTC support routines
451  */
452
453 int
454 rtcin(reg)
455         int reg;
456 {
457         int s;
458         u_char val;
459
460         s = splhigh();
461         outb(IO_RTC, reg);
462         inb(0x84);
463         val = inb(IO_RTC + 1);
464         inb(0x84);
465         splx(s);
466         return (val);
467 }
468
469 static __inline void
470 writertc(u_char reg, u_char val)
471 {
472         int s;
473
474         s = splhigh();
475         inb(0x84);
476         outb(IO_RTC, reg);
477         inb(0x84);
478         outb(IO_RTC + 1, val);
479         inb(0x84);              /* XXX work around wrong order in rtcin() */
480         splx(s);
481 }
482
483 static __inline int
484 readrtc(int port)
485 {
486         return(bcd2bin(rtcin(port)));
487 }
488
489 static u_int
490 calibrate_clocks(void)
491 {
492         u_int64_t old_tsc;
493         u_int count, prev_count, tot_count;
494         int sec, start_sec, timeout;
495
496         if (bootverbose)
497                 printf("Calibrating clock(s) ... ");
498         if (!(rtcin(RTC_STATUSD) & RTCSD_PWR))
499                 goto fail;
500         timeout = 100000000;
501
502         /* Read the mc146818A seconds counter. */
503         for (;;) {
504                 if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) {
505                         sec = rtcin(RTC_SEC);
506                         break;
507                 }
508                 if (--timeout == 0)
509                         goto fail;
510         }
511
512         /* Wait for the mC146818A seconds counter to change. */
513         start_sec = sec;
514         for (;;) {
515                 if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) {
516                         sec = rtcin(RTC_SEC);
517                         if (sec != start_sec)
518                                 break;
519                 }
520                 if (--timeout == 0)
521                         goto fail;
522         }
523
524         /* Start keeping track of the i8254 counter. */
525         prev_count = cputimer_count();
526         tot_count = 0;
527
528         if (tsc_present) 
529                 old_tsc = rdtsc();
530         else
531                 old_tsc = 0;            /* shut up gcc */
532
533         /*
534          * Wait for the mc146818A seconds counter to change.  Read the i8254
535          * counter for each iteration since this is convenient and only
536          * costs a few usec of inaccuracy. The timing of the final reads
537          * of the counters almost matches the timing of the initial reads,
538          * so the main cause of inaccuracy is the varying latency from 
539          * inside getit() or rtcin(RTC_STATUSA) to the beginning of the
540          * rtcin(RTC_SEC) that returns a changed seconds count.  The
541          * maximum inaccuracy from this cause is < 10 usec on 486's.
542          */
543         start_sec = sec;
544         for (;;) {
545                 if (!(rtcin(RTC_STATUSA) & RTCSA_TUP))
546                         sec = rtcin(RTC_SEC);
547                 count = cputimer_count();
548                 tot_count += (int)(count - prev_count);
549                 prev_count = count;
550                 if (sec != start_sec)
551                         break;
552                 if (--timeout == 0)
553                         goto fail;
554         }
555
556         /*
557          * Read the cpu cycle counter.  The timing considerations are
558          * similar to those for the i8254 clock.
559          */
560         if (tsc_present) 
561                 tsc_freq = rdtsc() - old_tsc;
562
563         if (tsc_present)
564                 printf("TSC clock: %u Hz, ", tsc_freq);
565         printf("i8254 clock: %u Hz\n", tot_count);
566         return (tot_count);
567
568 fail:
569         printf("failed, using default i8254 clock of %u Hz\n", cputimer_freq);
570         return (cputimer_freq);
571 }
572
573 static void
574 i8254_restore(void)
575 {
576         timer0_state = ACQUIRED;
577         timer1_state = ACQUIRED;
578         clock_lock();
579         outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT);
580         outb(TIMER_CNTR0, 2);   /* lsb */
581         outb(TIMER_CNTR0, 0);   /* msb */
582         outb(TIMER_MODE, TIMER_SELX | TIMER_RATEGEN | TIMER_16BIT);
583         outb(TIMER_CNTRX, 0);   /* lsb */
584         outb(TIMER_CNTRX, 0);   /* msb */
585         outb(IO_PPI, inb(IO_PPI) | 1);  /* bit 0: enable gate, bit 1: spkr */
586         clock_unlock();
587 }
588
589 static void
590 rtc_restore(void)
591 {
592         /* Restore all of the RTC's "status" (actually, control) registers. */
593         writertc(RTC_STATUSB, RTCSB_24HR);
594         writertc(RTC_STATUSA, rtc_statusa);
595         writertc(RTC_STATUSB, rtc_statusb);
596 }
597
598 /*
599  * Restore all the timers non-atomically (XXX: should be atomically).
600  *
601  * This function is called from apm_default_resume() to restore all the timers.
602  * This should not be necessary, but there are broken laptops that do not
603  * restore all the timers on resume.
604  */
605 void
606 timer_restore(void)
607 {
608         i8254_restore();                /* restore timer_freq and hz */
609         rtc_restore();                  /* reenable RTC interrupts */
610 }
611
612 /*
613  * Initialize 8254 timer 0 early so that it can be used in DELAY().
614  */
615 void
616 startrtclock()
617 {
618         u_int delta, freq;
619
620         /* 
621          * Can we use the TSC?
622          */
623         if (cpu_feature & CPUID_TSC)
624                 tsc_present = 1;
625         else
626                 tsc_present = 0;
627
628         /*
629          * Initial RTC state, don't do anything unexpected
630          */
631         writertc(RTC_STATUSA, rtc_statusa);
632         writertc(RTC_STATUSB, RTCSB_24HR);
633
634         /*
635          * Set the 8254 timer0 in TIMER_SWSTROBE mode and cause it to 
636          * generate an interrupt, which we will ignore for now.
637          *
638          * Set the 8254 timer1 in TIMER_RATEGEN mode and load 0x0000
639          * (so it counts a full 2^16 and repeats).  We will use this timer
640          * for our counting.
641          */
642         i8254_restore();
643         freq = calibrate_clocks();
644 #ifdef CLK_CALIBRATION_LOOP
645         if (bootverbose) {
646                 printf(
647                 "Press a key on the console to abort clock calibration\n");
648                 while (cncheckc() == -1)
649                         calibrate_clocks();
650         }
651 #endif
652
653         /*
654          * Use the calibrated i8254 frequency if it seems reasonable.
655          * Otherwise use the default, and don't use the calibrated i586
656          * frequency.
657          */
658         delta = freq > cputimer_freq ? 
659                         freq - cputimer_freq : cputimer_freq - freq;
660         if (delta < cputimer_freq / 100) {
661 #ifndef CLK_USE_I8254_CALIBRATION
662                 if (bootverbose)
663                         printf(
664 "CLK_USE_I8254_CALIBRATION not specified - using default frequency\n");
665                 freq = cputimer_freq;
666 #endif
667                 cputimer_freq = freq;
668                 cputimer_freq64_usec = (1000000LL << 32) / freq;
669                 cputimer_freq64_nsec = (1000000000LL << 32) / freq;
670         } else {
671                 if (bootverbose)
672                         printf(
673                     "%d Hz differs from default of %d Hz by more than 1%%\n",
674                                freq, cputimer_freq);
675                 tsc_freq = 0;
676         }
677
678 #ifndef CLK_USE_TSC_CALIBRATION
679         if (tsc_freq != 0) {
680                 if (bootverbose)
681                         printf(
682 "CLK_USE_TSC_CALIBRATION not specified - using old calibration method\n");
683                 tsc_freq = 0;
684         }
685 #endif
686         if (tsc_present && tsc_freq == 0) {
687                 /*
688                  * Calibration of the i586 clock relative to the mc146818A
689                  * clock failed.  Do a less accurate calibration relative
690                  * to the i8254 clock.
691                  */
692                 u_int64_t old_tsc = rdtsc();
693
694                 DELAY(1000000);
695                 tsc_freq = rdtsc() - old_tsc;
696 #ifdef CLK_USE_TSC_CALIBRATION
697                 if (bootverbose)
698                         printf("TSC clock: %u Hz (Method B)\n", tsc_freq);
699 #endif
700         }
701
702 #if !defined(SMP)
703         /*
704          * We can not use the TSC in SMP mode, until we figure out a
705          * cheap (impossible), reliable and precise (yeah right!)  way
706          * to synchronize the TSCs of all the CPUs.
707          * Curse Intel for leaving the counter out of the I/O APIC.
708          */
709
710 #if NAPM > 0
711         /*
712          * We can not use the TSC if we support APM. Precise timekeeping
713          * on an APM'ed machine is at best a fools pursuit, since 
714          * any and all of the time spent in various SMM code can't 
715          * be reliably accounted for.  Reading the RTC is your only
716          * source of reliable time info.  The i8254 looses too of course
717          * but we need to have some kind of time...
718          * We don't know at this point whether APM is going to be used
719          * or not, nor when it might be activated.  Play it safe.
720          */
721         return;
722 #endif /* NAPM > 0 */
723
724 #endif /* !defined(SMP) */
725 }
726
727 /*
728  * Initialize the time of day register, based on the time base which is, e.g.
729  * from a filesystem.
730  */
731 void
732 inittodr(time_t base)
733 {
734         unsigned long   sec, days;
735         int             yd;
736         int             year, month;
737         int             y, m;
738         struct timespec ts;
739
740         if (base) {
741                 ts.tv_sec = base;
742                 ts.tv_nsec = 0;
743                 set_timeofday(&ts);
744         }
745
746         /* Look if we have a RTC present and the time is valid */
747         if (!(rtcin(RTC_STATUSD) & RTCSD_PWR))
748                 goto wrong_time;
749
750         /* wait for time update to complete */
751         /* If RTCSA_TUP is zero, we have at least 244us before next update */
752         crit_enter();
753         while (rtcin(RTC_STATUSA) & RTCSA_TUP) {
754                 crit_exit();
755                 crit_enter();
756         }
757
758         days = 0;
759 #ifdef USE_RTC_CENTURY
760         year = readrtc(RTC_YEAR) + readrtc(RTC_CENTURY) * 100;
761 #else
762         year = readrtc(RTC_YEAR) + 1900;
763         if (year < 1970)
764                 year += 100;
765 #endif
766         if (year < 1970) {
767                 crit_exit();
768                 goto wrong_time;
769         }
770         month = readrtc(RTC_MONTH);
771         for (m = 1; m < month; m++)
772                 days += daysinmonth[m-1];
773         if ((month > 2) && LEAPYEAR(year))
774                 days ++;
775         days += readrtc(RTC_DAY) - 1;
776         yd = days;
777         for (y = 1970; y < year; y++)
778                 days += DAYSPERYEAR + LEAPYEAR(y);
779         sec = ((( days * 24 +
780                   readrtc(RTC_HRS)) * 60 +
781                   readrtc(RTC_MIN)) * 60 +
782                   readrtc(RTC_SEC));
783         /* sec now contains the number of seconds, since Jan 1 1970,
784            in the local time zone */
785
786         sec += tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0);
787
788         y = time_second - sec;
789         if (y <= -2 || y >= 2) {
790                 /* badly off, adjust it */
791                 ts.tv_sec = sec;
792                 ts.tv_nsec = 0;
793                 set_timeofday(&ts);
794         }
795         crit_exit();
796         return;
797
798 wrong_time:
799         printf("Invalid time in real time clock.\n");
800         printf("Check and reset the date immediately!\n");
801 }
802
803 /*
804  * Write system time back to RTC
805  */
806 void
807 resettodr()
808 {
809         struct timeval tv;
810         unsigned long tm;
811         int m;
812         int y;
813
814         if (disable_rtc_set)
815                 return;
816
817         microtime(&tv);
818         tm = tv.tv_sec;
819
820         crit_enter();
821         /* Disable RTC updates and interrupts. */
822         writertc(RTC_STATUSB, RTCSB_HALT | RTCSB_24HR);
823
824         /* Calculate local time to put in RTC */
825
826         tm -= tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0);
827
828         writertc(RTC_SEC, bin2bcd(tm%60)); tm /= 60;    /* Write back Seconds */
829         writertc(RTC_MIN, bin2bcd(tm%60)); tm /= 60;    /* Write back Minutes */
830         writertc(RTC_HRS, bin2bcd(tm%24)); tm /= 24;    /* Write back Hours   */
831
832         /* We have now the days since 01-01-1970 in tm */
833         writertc(RTC_WDAY, (tm+4)%7);                   /* Write back Weekday */
834         for (y = 1970, m = DAYSPERYEAR + LEAPYEAR(y);
835              tm >= m;
836              y++,      m = DAYSPERYEAR + LEAPYEAR(y))
837              tm -= m;
838
839         /* Now we have the years in y and the day-of-the-year in tm */
840         writertc(RTC_YEAR, bin2bcd(y%100));             /* Write back Year    */
841 #ifdef USE_RTC_CENTURY
842         writertc(RTC_CENTURY, bin2bcd(y/100));          /* ... and Century    */
843 #endif
844         for (m = 0; ; m++) {
845                 int ml;
846
847                 ml = daysinmonth[m];
848                 if (m == 1 && LEAPYEAR(y))
849                         ml++;
850                 if (tm < ml)
851                         break;
852                 tm -= ml;
853         }
854
855         writertc(RTC_MONTH, bin2bcd(m + 1));            /* Write back Month   */
856         writertc(RTC_DAY, bin2bcd(tm + 1));             /* Write back Month Day */
857
858         /* Reenable RTC updates and interrupts. */
859         writertc(RTC_STATUSB, rtc_statusb);
860         crit_exit();
861 }
862
863
864 /*
865  * Start both clocks running.  DragonFly note: the stat clock is no longer
866  * used.  Instead, 8254 based systimers are used for all major clock
867  * interrupts.  statclock_disable is set by default.
868  */
869 void
870 cpu_initclocks()
871 {
872         int diag;
873 #ifdef APIC_IO
874         int apic_8254_trial;
875         struct intrec *clkdesc;
876 #endif /* APIC_IO */
877
878         if (statclock_disable) {
879                 /*
880                  * The stat interrupt mask is different without the
881                  * statistics clock.  Also, don't set the interrupt
882                  * flag which would normally cause the RTC to generate
883                  * interrupts.
884                  */
885                 stat_imask = HWI_MASK | SWI_MASK;
886                 rtc_statusb = RTCSB_24HR;
887         } else {
888                 /* Setting stathz to nonzero early helps avoid races. */
889                 stathz = RTC_NOPROFRATE;
890                 profhz = RTC_PROFRATE;
891         }
892
893         /* Finish initializing 8253 timer 0. */
894 #ifdef APIC_IO
895
896         apic_8254_intr = isa_apic_irq(0);
897         apic_8254_trial = 0;
898         if (apic_8254_intr >= 0 ) {
899                 if (apic_int_type(0, 0) == 3)
900                         apic_8254_trial = 1;
901         } else {
902                 /* look for ExtInt on pin 0 */
903                 if (apic_int_type(0, 0) == 3) {
904                         apic_8254_intr = apic_irq(0, 0);
905                         setup_8254_mixed_mode();
906                 } else 
907                         panic("APIC_IO: Cannot route 8254 interrupt to CPU");
908         }
909
910         clkdesc = inthand_add("clk", apic_8254_intr, (inthand2_t *)clkintr,
911                               NULL, &clk_imask, INTR_EXCL | INTR_FAST);
912         INTREN(1 << apic_8254_intr);
913         
914 #else /* APIC_IO */
915
916         inthand_add("clk", 0, (inthand2_t *)clkintr, NULL, &clk_imask,
917                     INTR_EXCL | INTR_FAST);
918         INTREN(IRQ0);
919
920 #endif /* APIC_IO */
921
922         /* Initialize RTC. */
923         writertc(RTC_STATUSA, rtc_statusa);
924         writertc(RTC_STATUSB, RTCSB_24HR);
925
926         if (statclock_disable == 0) {
927                 diag = rtcin(RTC_DIAG);
928                 if (diag != 0)
929                         printf("RTC BIOS diagnostic error %b\n", diag, RTCDG_BITS);
930
931 #ifdef APIC_IO
932                 if (isa_apic_irq(8) != 8)
933                         panic("APIC RTC != 8");
934 #endif /* APIC_IO */
935
936                 inthand_add("rtc", 8, (inthand2_t *)rtcintr, NULL, &stat_imask,
937                             INTR_EXCL | INTR_FAST);
938
939 #ifdef APIC_IO
940                 INTREN(APIC_IRQ8);
941 #else
942                 INTREN(IRQ8);
943 #endif /* APIC_IO */
944
945                 writertc(RTC_STATUSB, rtc_statusb);
946         }
947
948 #ifdef APIC_IO
949         if (apic_8254_trial) {
950                 sysclock_t base;
951                 int lastcnt = read_intr_count(apic_8254_intr);
952
953                 /*
954                  * XXX this assumes the 8254 is the cpu timer.  Force an
955                  * 8254 Timer0 interrupt and wait 1/100s for it to happen,
956                  * then see if we got it.
957                  */
958                 printf("APIC_IO: Testing 8254 interrupt delivery\n");
959                 cputimer_intr_reload(2);        /* XXX assumes 8254 */
960                 base = cputimer_count();
961                 while (cputimer_count() - base < cputimer_freq / 100)
962                         ;       /* nothing */
963                 if (read_intr_count(apic_8254_intr) - lastcnt == 0) {
964                         /* 
965                          * The MP table is broken.
966                          * The 8254 was not connected to the specified pin
967                          * on the IO APIC.
968                          * Workaround: Limited variant of mixed mode.
969                          */
970                         INTRDIS(1 << apic_8254_intr);
971                         inthand_remove(clkdesc);
972                         printf("APIC_IO: Broken MP table detected: "
973                                "8254 is not connected to "
974                                "IOAPIC #%d intpin %d\n",
975                                int_to_apicintpin[apic_8254_intr].ioapic,
976                                int_to_apicintpin[apic_8254_intr].int_pin);
977                         /* 
978                          * Revoke current ISA IRQ 0 assignment and 
979                          * configure a fallback interrupt routing from
980                          * the 8254 Timer via the 8259 PIC to the
981                          * an ExtInt interrupt line on IOAPIC #0 intpin 0.
982                          * We reuse the low level interrupt handler number.
983                          */
984                         if (apic_irq(0, 0) < 0) {
985                                 revoke_apic_irq(apic_8254_intr);
986                                 assign_apic_irq(0, 0, apic_8254_intr);
987                         }
988                         apic_8254_intr = apic_irq(0, 0);
989                         setup_8254_mixed_mode();
990                         inthand_add("clk", apic_8254_intr,
991                                     (inthand2_t *)clkintr,
992                                     NULL, &clk_imask, INTR_EXCL | INTR_FAST);
993                         INTREN(1 << apic_8254_intr);
994                 }
995                 
996         }
997         if (apic_int_type(0, 0) != 3 ||
998             int_to_apicintpin[apic_8254_intr].ioapic != 0 ||
999             int_to_apicintpin[apic_8254_intr].int_pin != 0) {
1000                 printf("APIC_IO: routing 8254 via IOAPIC #%d intpin %d\n",
1001                        int_to_apicintpin[apic_8254_intr].ioapic,
1002                        int_to_apicintpin[apic_8254_intr].int_pin);
1003         } else {
1004                 printf("APIC_IO: "
1005                        "routing 8254 via 8259 and IOAPIC #0 intpin 0\n");
1006         }
1007 #endif
1008         
1009 }
1010
1011 #ifdef APIC_IO
1012 static u_long
1013 read_intr_count(int vec)
1014 {
1015         u_long *up;
1016         up = intr_countp[vec];
1017         if (up)
1018                 return *up;
1019         return 0UL;
1020 }
1021
1022 static void 
1023 setup_8254_mixed_mode()
1024 {
1025         /*
1026          * Allow 8254 timer to INTerrupt 8259:
1027          *  re-initialize master 8259:
1028          *   reset; prog 4 bytes, single ICU, edge triggered
1029          */
1030         outb(IO_ICU1, 0x13);
1031         outb(IO_ICU1 + 1, NRSVIDT);     /* start vector (unused) */
1032         outb(IO_ICU1 + 1, 0x00);        /* ignore slave */
1033         outb(IO_ICU1 + 1, 0x03);        /* auto EOI, 8086 */
1034         outb(IO_ICU1 + 1, 0xfe);        /* unmask INT0 */
1035         
1036         /* program IO APIC for type 3 INT on INT0 */
1037         if (ext_int_setup(0, 0) < 0)
1038                 panic("8254 redirect via APIC pin0 impossible!");
1039 }
1040 #endif
1041
1042 void
1043 setstatclockrate(int newhz)
1044 {
1045         if (newhz == RTC_PROFRATE)
1046                 rtc_statusa = RTCSA_DIVIDER | RTCSA_PROF;
1047         else
1048                 rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF;
1049         writertc(RTC_STATUSA, rtc_statusa);
1050 }
1051
1052 #if 0
1053 static unsigned
1054 tsc_get_timecount(struct timecounter *tc)
1055 {
1056         return (rdtsc());
1057 }
1058 #endif
1059
1060 #ifdef KERN_TIMESTAMP
1061 #define KERN_TIMESTAMP_SIZE 16384
1062 static u_long tsc[KERN_TIMESTAMP_SIZE] ;
1063 SYSCTL_OPAQUE(_debug, OID_AUTO, timestamp, CTLFLAG_RD, tsc,
1064         sizeof(tsc), "LU", "Kernel timestamps");
1065 void  
1066 _TSTMP(u_int32_t x)
1067 {
1068         static int i;
1069
1070         tsc[i] = (u_int32_t)rdtsc();
1071         tsc[i+1] = x;
1072         i = i + 2;
1073         if (i >= KERN_TIMESTAMP_SIZE)
1074                 i = 0;
1075         tsc[i] = 0; /* mark last entry */
1076 }
1077 #endif /* KERN_TIMESTAMP */
1078
1079 /*
1080  *
1081  */
1082
1083 static int
1084 hw_i8254_timestamp(SYSCTL_HANDLER_ARGS)
1085 {
1086     sysclock_t count;
1087     __uint64_t tscval;
1088     char buf[32];
1089
1090     crit_enter();
1091     count = cputimer_count();
1092     if (tsc_present)
1093         tscval = rdtsc();
1094     else
1095         tscval = 0;
1096     crit_exit();
1097     snprintf(buf, sizeof(buf), "%08x %016llx", count, (long long)tscval);
1098     return(SYSCTL_OUT(req, buf, strlen(buf) + 1));
1099 }
1100
1101 SYSCTL_NODE(_hw, OID_AUTO, i8254, CTLFLAG_RW, 0, "I8254");
1102 SYSCTL_UINT(_hw_i8254, OID_AUTO, freq, CTLFLAG_RD, &cputimer_freq, 0, "");
1103 SYSCTL_PROC(_hw_i8254, OID_AUTO, timestamp, CTLTYPE_STRING|CTLFLAG_RD,
1104                 0, 0, hw_i8254_timestamp, "A", "");
1105