Merge from vendor branch SENDMAIL:
[dragonfly.git] / sys / platform / pc32 / 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/platform/pc32/isa/clock.c,v 1.50 2006/12/23 00:27:03 swildner 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 "opt_clock.h"
54
55 #include <sys/param.h>
56 #include <sys/systm.h>
57 #include <sys/eventhandler.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 #include <sys/machintr.h>
71
72 #include <machine/clock.h>
73 #ifdef CLK_CALIBRATION_LOOP
74 #endif
75 #include <machine/cputypes.h>
76 #include <machine/frame.h>
77 #include <machine/ipl.h>
78 #include <machine/limits.h>
79 #include <machine/md_var.h>
80 #include <machine/psl.h>
81 #include <machine/segments.h>
82 #include <machine/smp.h>
83 #include <machine/specialreg.h>
84
85 #include <machine_base/icu/icu.h>
86 #include <bus/isa/i386/isa.h>
87 #include <bus/isa/rtc.h>
88 #include <machine_base/isa/timerreg.h>
89
90 #include <machine_base/isa/intr_machdep.h>
91
92 #ifdef APIC_IO
93 /* The interrupt triggered by the 8254 (timer) chip */
94 int apic_8254_intr;
95 static void setup_8254_mixed_mode (void);
96 #endif
97 static void i8254_restore(void);
98 static void resettodr_on_shutdown(void *arg __unused);
99
100 /*
101  * 32-bit time_t's can't reach leap years before 1904 or after 2036, so we
102  * can use a simple formula for leap years.
103  */
104 #define LEAPYEAR(y) ((u_int)(y) % 4 == 0)
105 #define DAYSPERYEAR   (31+28+31+30+31+30+31+31+30+31+30+31)
106
107 #ifndef TIMER_FREQ
108 #define TIMER_FREQ   1193182
109 #endif
110
111 static uint8_t i8254_walltimer_sel;
112 static uint16_t i8254_walltimer_cntr;
113
114 int     adjkerntz;              /* local offset from GMT in seconds */
115 int     disable_rtc_set;        /* disable resettodr() if != 0 */
116 int     statclock_disable = 1;  /* we don't use the statclock right now */
117 int     tsc_present;
118 u_int   tsc_freq;               /* XXX obsolete, convert users */
119 int64_t tsc_frequency;
120 int     tsc_is_broken;
121 int     wall_cmos_clock;        /* wall CMOS clock assumed if != 0 */
122 int     timer0_running;
123 enum tstate { RELEASED, ACQUIRED };
124 enum tstate timer0_state;
125 enum tstate timer1_state;
126 enum tstate timer2_state;
127
128 static  int     beeping = 0;
129 static  const u_char daysinmonth[] = {31,28,31,30,31,30,31,31,30,31,30,31};
130 static  u_char  rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF;
131 static  u_char  rtc_statusb = RTCSB_24HR | RTCSB_PINTR;
132 static  int     rtc_loaded;
133
134 static int i8254_cputimer_div;
135
136 static struct callout sysbeepstop_ch;
137
138 static sysclock_t i8254_cputimer_count(void);
139 static void i8254_cputimer_construct(struct cputimer *cputimer, sysclock_t last);
140 static void i8254_cputimer_destruct(struct cputimer *cputimer);
141
142 static struct cputimer  i8254_cputimer = {
143     SLIST_ENTRY_INITIALIZER,
144     "i8254",
145     CPUTIMER_PRI_8254,
146     0,
147     i8254_cputimer_count,
148     cputimer_default_fromhz,
149     cputimer_default_fromus,
150     i8254_cputimer_construct,
151     i8254_cputimer_destruct,
152     TIMER_FREQ,
153     0, 0, 0
154 };
155
156 /*
157  * timer0 clock interrupt.  Timer0 is in one-shot mode and has stopped
158  * counting as of this interrupt.  We use timer1 in free-running mode (not
159  * generating any interrupts) as our main counter.  Each cpu has timeouts
160  * pending.
161  *
162  * This code is INTR_MPSAFE and may be called without the BGL held.
163  */
164 static void
165 clkintr(void *dummy, void *frame_arg)
166 {
167         static sysclock_t sysclock_count;       /* NOTE! Must be static */
168         struct globaldata *gd = mycpu;
169 #ifdef SMP
170         struct globaldata *gscan;
171         int n;
172 #endif
173
174         /*
175          * SWSTROBE mode is a one-shot, the timer is no longer running
176          */
177         timer0_running = 0;
178
179         /*
180          * XXX the dispatcher needs work.  right now we call systimer_intr()
181          * directly or via IPI for any cpu with systimers queued, which is
182          * usually *ALL* of them.  We need to use the LAPIC timer for this.
183          */
184         sysclock_count = sys_cputimer->count();
185 #ifdef SMP
186         for (n = 0; n < ncpus; ++n) {
187             gscan = globaldata_find(n);
188             if (TAILQ_FIRST(&gscan->gd_systimerq) == NULL)
189                 continue;
190             if (gscan != gd) {
191                 lwkt_send_ipiq3(gscan, (ipifunc3_t)systimer_intr, 
192                                 &sysclock_count, 0);
193             } else {
194                 systimer_intr(&sysclock_count, 0, frame_arg);
195             }
196         }
197 #else
198         if (TAILQ_FIRST(&gd->gd_systimerq) != NULL)
199             systimer_intr(&sysclock_count, 0, frame_arg);
200 #endif
201 }
202
203
204 /*
205  * NOTE! not MP safe.
206  */
207 int
208 acquire_timer2(int mode)
209 {
210         if (timer2_state != RELEASED)
211                 return (-1);
212         timer2_state = ACQUIRED;
213
214         /*
215          * This access to the timer registers is as atomic as possible
216          * because it is a single instruction.  We could do better if we
217          * knew the rate.
218          */
219         outb(TIMER_MODE, TIMER_SEL2 | (mode & 0x3f));
220         return (0);
221 }
222
223 int
224 release_timer2(void)
225 {
226         if (timer2_state != ACQUIRED)
227                 return (-1);
228         outb(TIMER_MODE, TIMER_SEL2 | TIMER_SQWAVE | TIMER_16BIT);
229         timer2_state = RELEASED;
230         return (0);
231 }
232
233 /*
234  * This routine receives statistical clock interrupts from the RTC.
235  * As explained above, these occur at 128 interrupts per second.
236  * When profiling, we receive interrupts at a rate of 1024 Hz.
237  *
238  * This does not actually add as much overhead as it sounds, because
239  * when the statistical clock is active, the hardclock driver no longer
240  * needs to keep (inaccurate) statistics on its own.  This decouples
241  * statistics gathering from scheduling interrupts.
242  *
243  * The RTC chip requires that we read status register C (RTC_INTR)
244  * to acknowledge an interrupt, before it will generate the next one.
245  * Under high interrupt load, rtcintr() can be indefinitely delayed and
246  * the clock can tick immediately after the read from RTC_INTR.  In this
247  * case, the mc146818A interrupt signal will not drop for long enough
248  * to register with the 8259 PIC.  If an interrupt is missed, the stat
249  * clock will halt, considerably degrading system performance.  This is
250  * why we use 'while' rather than a more straightforward 'if' below.
251  * Stat clock ticks can still be lost, causing minor loss of accuracy
252  * in the statistics, but the stat clock will no longer stop.
253  */
254 static void
255 rtcintr(void *dummy, void *frame)
256 {
257         while (rtcin(RTC_INTR) & RTCIR_PERIOD)
258                 ;
259                 /* statclock(frame); no longer used */
260 }
261
262 #include "opt_ddb.h"
263 #ifdef DDB
264 #include <ddb/ddb.h>
265
266 DB_SHOW_COMMAND(rtc, rtc)
267 {
268         kprintf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
269                rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
270                rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
271                rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
272 }
273 #endif /* DDB */
274
275 /*
276  * Return the current cpu timer count as a 32 bit integer.
277  */
278 static
279 sysclock_t
280 i8254_cputimer_count(void)
281 {
282         static __uint16_t cputimer_last;
283         __uint16_t count;
284         sysclock_t ret;
285
286         clock_lock();
287         outb(TIMER_MODE, i8254_walltimer_sel | TIMER_LATCH);
288         count = (__uint8_t)inb(i8254_walltimer_cntr);           /* get countdown */
289         count |= ((__uint8_t)inb(i8254_walltimer_cntr) << 8);
290         count = -count;                                 /* -> countup */
291         if (count < cputimer_last)                      /* rollover */
292                 i8254_cputimer.base += 0x00010000;
293         ret = i8254_cputimer.base | count;
294         cputimer_last = count;
295         clock_unlock();
296         return(ret);
297 }
298
299 /*
300  * This function is called whenever the system timebase changes, allowing
301  * us to calculate what is needed to convert a system timebase tick 
302  * into an 8254 tick for the interrupt timer.  If we can convert to a
303  * simple shift, multiplication, or division, we do so.  Otherwise 64
304  * bit arithmatic is required every time the interrupt timer is reloaded.
305  */
306 void
307 cputimer_intr_config(struct cputimer *timer)
308 {
309     int freq;
310     int div;
311
312     /*
313      * Will a simple divide do the trick?
314      */
315     div = (timer->freq + (i8254_cputimer.freq / 2)) / i8254_cputimer.freq;
316     freq = i8254_cputimer.freq * div;
317
318     if (freq >= timer->freq - 1 && freq <= timer->freq + 1)
319         i8254_cputimer_div = div;
320     else
321         i8254_cputimer_div = 0;
322 }
323
324 /*
325  * Reload for the next timeout.  It is possible for the reload value
326  * to be 0 or negative, indicating that an immediate timer interrupt
327  * is desired.  For now make the minimum 2 ticks.
328  *
329  * We may have to convert from the system timebase to the 8254 timebase.
330  */
331 void
332 cputimer_intr_reload(sysclock_t reload)
333 {
334     __uint16_t count;
335
336     if (i8254_cputimer_div)
337         reload /= i8254_cputimer_div;
338     else
339         reload = (int64_t)reload * i8254_cputimer.freq / sys_cputimer->freq;
340
341     if ((int)reload < 2)
342         reload = 2;
343
344     clock_lock();
345     if (timer0_running) {
346         outb(TIMER_MODE, TIMER_SEL0 | TIMER_LATCH);     /* count-down timer */
347         count = (__uint8_t)inb(TIMER_CNTR0);            /* lsb */
348         count |= ((__uint8_t)inb(TIMER_CNTR0) << 8);    /* msb */
349         if (reload < count) {
350             outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT);
351             outb(TIMER_CNTR0, (__uint8_t)reload);       /* lsb */
352             outb(TIMER_CNTR0, (__uint8_t)(reload >> 8)); /* msb */
353         }
354     } else {
355         timer0_running = 1;
356         if (reload > 0xFFFF)
357             reload = 0;         /* full count */
358         outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT);
359         outb(TIMER_CNTR0, (__uint8_t)reload);           /* lsb */
360         outb(TIMER_CNTR0, (__uint8_t)(reload >> 8));    /* msb */
361     }
362     clock_unlock();
363 }
364
365 /*
366  * Wait "n" microseconds.
367  * Relies on timer 1 counting down from (cputimer_freq / hz)
368  * Note: timer had better have been programmed before this is first used!
369  */
370 void
371 DELAY(int n)
372 {
373         int delta, prev_tick, tick, ticks_left;
374
375 #ifdef DELAYDEBUG
376         int getit_calls = 1;
377         int n1;
378         static int state = 0;
379
380         if (state == 0) {
381                 state = 1;
382                 for (n1 = 1; n1 <= 10000000; n1 *= 10)
383                         DELAY(n1);
384                 state = 2;
385         }
386         if (state == 1)
387                 kprintf("DELAY(%d)...", n);
388 #endif
389         /*
390          * Guard against the timer being uninitialized if we are called
391          * early for console i/o.
392          */
393         if (timer0_state == RELEASED)
394                 i8254_restore();
395
396         /*
397          * Read the counter first, so that the rest of the setup overhead is
398          * counted.  Then calculate the number of hardware timer ticks
399          * required, rounding up to be sure we delay at least the requested
400          * number of microseconds.
401          */
402         prev_tick = sys_cputimer->count();
403         ticks_left = ((u_int)n * (int64_t)sys_cputimer->freq + 999999) /
404                      1000000;
405
406         /*
407          * Loop until done.
408          */
409         while (ticks_left > 0) {
410                 tick = sys_cputimer->count();
411 #ifdef DELAYDEBUG
412                 ++getit_calls;
413 #endif
414                 delta = tick - prev_tick;
415                 prev_tick = tick;
416                 if (delta < 0)
417                         delta = 0;
418                 ticks_left -= delta;
419         }
420 #ifdef DELAYDEBUG
421         if (state == 1)
422                 kprintf(" %d calls to getit() at %d usec each\n",
423                        getit_calls, (n + 5) / getit_calls);
424 #endif
425 }
426
427 static void
428 sysbeepstop(void *chan)
429 {
430         outb(IO_PPI, inb(IO_PPI)&0xFC); /* disable counter2 output to speaker */
431         beeping = 0;
432         release_timer2();
433 }
434
435 int
436 sysbeep(int pitch, int period)
437 {
438         if (acquire_timer2(TIMER_SQWAVE|TIMER_16BIT))
439                 return(-1);
440         /*
441          * Nobody else is using timer2, we do not need the clock lock
442          */
443         outb(TIMER_CNTR2, pitch);
444         outb(TIMER_CNTR2, (pitch>>8));
445         if (!beeping) {
446                 /* enable counter2 output to speaker */
447                 outb(IO_PPI, inb(IO_PPI) | 3);
448                 beeping = period;
449                 callout_reset(&sysbeepstop_ch, period, sysbeepstop, NULL);
450         }
451         return (0);
452 }
453
454 /*
455  * RTC support routines
456  */
457
458 int
459 rtcin(int reg)
460 {
461         u_char val;
462
463         crit_enter();
464         outb(IO_RTC, reg);
465         inb(0x84);
466         val = inb(IO_RTC + 1);
467         inb(0x84);
468         crit_exit();
469         return (val);
470 }
471
472 static __inline void
473 writertc(u_char reg, u_char val)
474 {
475         crit_enter();
476         inb(0x84);
477         outb(IO_RTC, reg);
478         inb(0x84);
479         outb(IO_RTC + 1, val);
480         inb(0x84);              /* XXX work around wrong order in rtcin() */
481         crit_exit();
482 }
483
484 static __inline int
485 readrtc(int port)
486 {
487         return(bcd2bin(rtcin(port)));
488 }
489
490 static u_int
491 calibrate_clocks(void)
492 {
493         u_int64_t old_tsc;
494         u_int count, prev_count, tot_count;
495         int sec, start_sec, timeout;
496
497         if (bootverbose)
498                 kprintf("Calibrating clock(s) ... ");
499         if (!(rtcin(RTC_STATUSD) & RTCSD_PWR))
500                 goto fail;
501         timeout = 100000000;
502
503         /* Read the mc146818A seconds counter. */
504         for (;;) {
505                 if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) {
506                         sec = rtcin(RTC_SEC);
507                         break;
508                 }
509                 if (--timeout == 0)
510                         goto fail;
511         }
512
513         /* Wait for the mC146818A seconds counter to change. */
514         start_sec = sec;
515         for (;;) {
516                 if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) {
517                         sec = rtcin(RTC_SEC);
518                         if (sec != start_sec)
519                                 break;
520                 }
521                 if (--timeout == 0)
522                         goto fail;
523         }
524
525         /* Start keeping track of the i8254 counter. */
526         prev_count = sys_cputimer->count();
527         tot_count = 0;
528
529         if (tsc_present) 
530                 old_tsc = rdtsc();
531         else
532                 old_tsc = 0;            /* shut up gcc */
533
534         /*
535          * Wait for the mc146818A seconds counter to change.  Read the i8254
536          * counter for each iteration since this is convenient and only
537          * costs a few usec of inaccuracy. The timing of the final reads
538          * of the counters almost matches the timing of the initial reads,
539          * so the main cause of inaccuracy is the varying latency from 
540          * inside getit() or rtcin(RTC_STATUSA) to the beginning of the
541          * rtcin(RTC_SEC) that returns a changed seconds count.  The
542          * maximum inaccuracy from this cause is < 10 usec on 486's.
543          */
544         start_sec = sec;
545         for (;;) {
546                 if (!(rtcin(RTC_STATUSA) & RTCSA_TUP))
547                         sec = rtcin(RTC_SEC);
548                 count = sys_cputimer->count();
549                 tot_count += (int)(count - prev_count);
550                 prev_count = count;
551                 if (sec != start_sec)
552                         break;
553                 if (--timeout == 0)
554                         goto fail;
555         }
556
557         /*
558          * Read the cpu cycle counter.  The timing considerations are
559          * similar to those for the i8254 clock.
560          */
561         if (tsc_present) {
562                 tsc_frequency = rdtsc() - old_tsc;
563                 tsc_freq = (u_int)tsc_frequency;        /* XXX */
564         }
565
566         if (tsc_present)
567                 kprintf("TSC clock: %u Hz, ", tsc_freq);
568         kprintf("i8254 clock: %u Hz\n", tot_count);
569         return (tot_count);
570
571 fail:
572         kprintf("failed, using default i8254 clock of %u Hz\n",
573                 i8254_cputimer.freq);
574         return (i8254_cputimer.freq);
575 }
576
577 static void
578 i8254_restore(void)
579 {
580         timer0_state = ACQUIRED;
581
582         clock_lock();
583
584         /*
585          * Timer0 is our fine-grained variable clock interrupt
586          */
587         outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT);
588         outb(TIMER_CNTR0, 2);   /* lsb */
589         outb(TIMER_CNTR0, 0);   /* msb */
590         clock_unlock();
591
592         /*
593          * Timer1 or timer2 is our free-running clock, but only if another
594          * has not been selected.
595          */
596         cputimer_register(&i8254_cputimer);
597         cputimer_select(&i8254_cputimer, 0);
598 }
599
600 static void
601 i8254_cputimer_construct(struct cputimer *timer, sysclock_t oldclock)
602 {
603         int which;
604
605         /*
606          * Should we use timer 1 or timer 2 ?
607          */
608         which = 0;
609         TUNABLE_INT_FETCH("hw.i8254.walltimer", &which);
610         if (which != 1 && which != 2)
611                 which = 2;
612
613         switch(which) {
614         case 1:
615                 timer->name = "i8254_timer1";
616                 timer->type = CPUTIMER_8254_SEL1;
617                 i8254_walltimer_sel = TIMER_SEL1;
618                 i8254_walltimer_cntr = TIMER_CNTR1;
619                 timer1_state = ACQUIRED;
620                 break;
621         case 2:
622                 timer->name = "i8254_timer2";
623                 timer->type = CPUTIMER_8254_SEL2;
624                 i8254_walltimer_sel = TIMER_SEL2;
625                 i8254_walltimer_cntr = TIMER_CNTR2;
626                 timer2_state = ACQUIRED;
627                 break;
628         }
629
630         timer->base = (oldclock + 0xFFFF) & ~0xFFFF;
631
632         clock_lock();
633         outb(TIMER_MODE, i8254_walltimer_sel | TIMER_RATEGEN | TIMER_16BIT);
634         outb(i8254_walltimer_cntr, 0);  /* lsb */
635         outb(i8254_walltimer_cntr, 0);  /* msb */
636         outb(IO_PPI, inb(IO_PPI) | 1);  /* bit 0: enable gate, bit 1: spkr */
637         clock_unlock();
638 }
639
640 static void
641 i8254_cputimer_destruct(struct cputimer *timer)
642 {
643         switch(timer->type) {
644         case CPUTIMER_8254_SEL1:
645             timer1_state = RELEASED;
646             break;
647         case CPUTIMER_8254_SEL2:
648             timer2_state = RELEASED;
649             break;
650         default:
651             break;
652         }
653         timer->type = 0;
654 }
655
656 static void
657 rtc_restore(void)
658 {
659         /* Restore all of the RTC's "status" (actually, control) registers. */
660         writertc(RTC_STATUSB, RTCSB_24HR);
661         writertc(RTC_STATUSA, rtc_statusa);
662         writertc(RTC_STATUSB, rtc_statusb);
663 }
664
665 /*
666  * Restore all the timers.
667  *
668  * This function is called to resynchronize our core timekeeping after a
669  * long halt, e.g. from apm_default_resume() and friends.  It is also 
670  * called if after a BIOS call we have detected munging of the 8254.
671  * It is necessary because cputimer_count() counter's delta may have grown
672  * too large for nanouptime() and friends to handle, or (in the case of 8254
673  * munging) might cause the SYSTIMER code to prematurely trigger.
674  */
675 void
676 timer_restore(void)
677 {
678         crit_enter();
679         i8254_restore();                /* restore timer_freq and hz */
680         rtc_restore();                  /* reenable RTC interrupts */
681         crit_exit();
682 }
683
684 /*
685  * Initialize 8254 timer 0 early so that it can be used in DELAY().
686  */
687 void
688 startrtclock(void)
689 {
690         u_int delta, freq;
691
692         /* 
693          * Can we use the TSC?
694          */
695         if (cpu_feature & CPUID_TSC)
696                 tsc_present = 1;
697         else
698                 tsc_present = 0;
699
700         /*
701          * Initial RTC state, don't do anything unexpected
702          */
703         writertc(RTC_STATUSA, rtc_statusa);
704         writertc(RTC_STATUSB, RTCSB_24HR);
705
706         /*
707          * Set the 8254 timer0 in TIMER_SWSTROBE mode and cause it to 
708          * generate an interrupt, which we will ignore for now.
709          *
710          * Set the 8254 timer1 in TIMER_RATEGEN mode and load 0x0000
711          * (so it counts a full 2^16 and repeats).  We will use this timer
712          * for our counting.
713          */
714         i8254_restore();
715         freq = calibrate_clocks();
716 #ifdef CLK_CALIBRATION_LOOP
717         if (bootverbose) {
718                 kprintf(
719                 "Press a key on the console to abort clock calibration\n");
720                 while (cncheckc() == -1)
721                         calibrate_clocks();
722         }
723 #endif
724
725         /*
726          * Use the calibrated i8254 frequency if it seems reasonable.
727          * Otherwise use the default, and don't use the calibrated i586
728          * frequency.
729          */
730         delta = freq > i8254_cputimer.freq ? 
731                         freq - i8254_cputimer.freq : i8254_cputimer.freq - freq;
732         if (delta < i8254_cputimer.freq / 100) {
733 #ifndef CLK_USE_I8254_CALIBRATION
734                 if (bootverbose)
735                         kprintf(
736 "CLK_USE_I8254_CALIBRATION not specified - using default frequency\n");
737                 freq = i8254_cputimer.freq;
738 #endif
739                 cputimer_set_frequency(&i8254_cputimer, freq);
740         } else {
741                 if (bootverbose)
742                         kprintf(
743                     "%d Hz differs from default of %d Hz by more than 1%%\n",
744                                freq, i8254_cputimer.freq);
745                 tsc_freq = 0;
746                 tsc_frequency = 0;
747         }
748
749 #ifndef CLK_USE_TSC_CALIBRATION
750         if (tsc_freq != 0) {
751                 if (bootverbose)
752                         kprintf(
753 "CLK_USE_TSC_CALIBRATION not specified - using old calibration method\n");
754                 tsc_freq = 0;
755                 tsc_frequency = 0;
756         }
757 #endif
758         if (tsc_present && tsc_frequency == 0) {
759                 /*
760                  * Calibration of the i586 clock relative to the mc146818A
761                  * clock failed.  Do a less accurate calibration relative
762                  * to the i8254 clock.
763                  */
764                 u_int64_t old_tsc = rdtsc();
765
766                 DELAY(1000000);
767                 tsc_frequency = rdtsc() - old_tsc;
768                 tsc_freq = (u_int)tsc_frequency;
769 #ifdef CLK_USE_TSC_CALIBRATION
770                 if (bootverbose)
771                         kprintf("TSC clock: %u Hz (Method B)\n", tsc_freq);
772 #endif
773         }
774
775         EVENTHANDLER_REGISTER(shutdown_final, resettodr_on_shutdown, NULL, SHUTDOWN_PRI_LAST);
776
777 #if !defined(SMP)
778         /*
779          * We can not use the TSC in SMP mode, until we figure out a
780          * cheap (impossible), reliable and precise (yeah right!)  way
781          * to synchronize the TSCs of all the CPUs.
782          * Curse Intel for leaving the counter out of the I/O APIC.
783          */
784
785 #if NAPM > 0
786         /*
787          * We can not use the TSC if we support APM. Precise timekeeping
788          * on an APM'ed machine is at best a fools pursuit, since 
789          * any and all of the time spent in various SMM code can't 
790          * be reliably accounted for.  Reading the RTC is your only
791          * source of reliable time info.  The i8254 looses too of course
792          * but we need to have some kind of time...
793          * We don't know at this point whether APM is going to be used
794          * or not, nor when it might be activated.  Play it safe.
795          */
796         return;
797 #endif /* NAPM > 0 */
798
799 #endif /* !defined(SMP) */
800 }
801
802 /*
803  * Sync the time of day back to the RTC on shutdown, but only if
804  * we have already loaded it and have not crashed.
805  */
806 static void
807 resettodr_on_shutdown(void *arg __unused)
808 {
809         if (rtc_loaded && panicstr == NULL) {
810                 resettodr();
811         }
812 }
813
814 /*
815  * Initialize the time of day register, based on the time base which is, e.g.
816  * from a filesystem.
817  */
818 void
819 inittodr(time_t base)
820 {
821         unsigned long   sec, days;
822         int             yd;
823         int             year, month;
824         int             y, m;
825         struct timespec ts;
826
827         if (base) {
828                 ts.tv_sec = base;
829                 ts.tv_nsec = 0;
830                 set_timeofday(&ts);
831         }
832
833         /* Look if we have a RTC present and the time is valid */
834         if (!(rtcin(RTC_STATUSD) & RTCSD_PWR))
835                 goto wrong_time;
836
837         /* wait for time update to complete */
838         /* If RTCSA_TUP is zero, we have at least 244us before next update */
839         crit_enter();
840         while (rtcin(RTC_STATUSA) & RTCSA_TUP) {
841                 crit_exit();
842                 crit_enter();
843         }
844
845         days = 0;
846 #ifdef USE_RTC_CENTURY
847         year = readrtc(RTC_YEAR) + readrtc(RTC_CENTURY) * 100;
848 #else
849         year = readrtc(RTC_YEAR) + 1900;
850         if (year < 1970)
851                 year += 100;
852 #endif
853         if (year < 1970) {
854                 crit_exit();
855                 goto wrong_time;
856         }
857         month = readrtc(RTC_MONTH);
858         for (m = 1; m < month; m++)
859                 days += daysinmonth[m-1];
860         if ((month > 2) && LEAPYEAR(year))
861                 days ++;
862         days += readrtc(RTC_DAY) - 1;
863         yd = days;
864         for (y = 1970; y < year; y++)
865                 days += DAYSPERYEAR + LEAPYEAR(y);
866         sec = ((( days * 24 +
867                   readrtc(RTC_HRS)) * 60 +
868                   readrtc(RTC_MIN)) * 60 +
869                   readrtc(RTC_SEC));
870         /* sec now contains the number of seconds, since Jan 1 1970,
871            in the local time zone */
872
873         sec += tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0);
874
875         y = time_second - sec;
876         if (y <= -2 || y >= 2) {
877                 /* badly off, adjust it */
878                 ts.tv_sec = sec;
879                 ts.tv_nsec = 0;
880                 set_timeofday(&ts);
881         }
882         rtc_loaded = 1;
883         crit_exit();
884         return;
885
886 wrong_time:
887         kprintf("Invalid time in real time clock.\n");
888         kprintf("Check and reset the date immediately!\n");
889 }
890
891 /*
892  * Write system time back to RTC
893  */
894 void
895 resettodr(void)
896 {
897         struct timeval tv;
898         unsigned long tm;
899         int m;
900         int y;
901
902         if (disable_rtc_set)
903                 return;
904
905         microtime(&tv);
906         tm = tv.tv_sec;
907
908         crit_enter();
909         /* Disable RTC updates and interrupts. */
910         writertc(RTC_STATUSB, RTCSB_HALT | RTCSB_24HR);
911
912         /* Calculate local time to put in RTC */
913
914         tm -= tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0);
915
916         writertc(RTC_SEC, bin2bcd(tm%60)); tm /= 60;    /* Write back Seconds */
917         writertc(RTC_MIN, bin2bcd(tm%60)); tm /= 60;    /* Write back Minutes */
918         writertc(RTC_HRS, bin2bcd(tm%24)); tm /= 24;    /* Write back Hours   */
919
920         /* We have now the days since 01-01-1970 in tm */
921         writertc(RTC_WDAY, (tm+4)%7);                   /* Write back Weekday */
922         for (y = 1970, m = DAYSPERYEAR + LEAPYEAR(y);
923              tm >= m;
924              y++,      m = DAYSPERYEAR + LEAPYEAR(y))
925              tm -= m;
926
927         /* Now we have the years in y and the day-of-the-year in tm */
928         writertc(RTC_YEAR, bin2bcd(y%100));             /* Write back Year    */
929 #ifdef USE_RTC_CENTURY
930         writertc(RTC_CENTURY, bin2bcd(y/100));          /* ... and Century    */
931 #endif
932         for (m = 0; ; m++) {
933                 int ml;
934
935                 ml = daysinmonth[m];
936                 if (m == 1 && LEAPYEAR(y))
937                         ml++;
938                 if (tm < ml)
939                         break;
940                 tm -= ml;
941         }
942
943         writertc(RTC_MONTH, bin2bcd(m + 1));            /* Write back Month   */
944         writertc(RTC_DAY, bin2bcd(tm + 1));             /* Write back Month Day */
945
946         /* Reenable RTC updates and interrupts. */
947         writertc(RTC_STATUSB, rtc_statusb);
948         crit_exit();
949 }
950
951
952 /*
953  * Start both clocks running.  DragonFly note: the stat clock is no longer
954  * used.  Instead, 8254 based systimers are used for all major clock
955  * interrupts.  statclock_disable is set by default.
956  */
957 void
958 cpu_initclocks(void)
959 {
960         int diag;
961 #ifdef APIC_IO
962         int apic_8254_trial;
963         void *clkdesc;
964 #endif /* APIC_IO */
965
966         if (statclock_disable) {
967                 /*
968                  * The stat interrupt mask is different without the
969                  * statistics clock.  Also, don't set the interrupt
970                  * flag which would normally cause the RTC to generate
971                  * interrupts.
972                  */
973                 rtc_statusb = RTCSB_24HR;
974         } else {
975                 /* Setting stathz to nonzero early helps avoid races. */
976                 stathz = RTC_NOPROFRATE;
977                 profhz = RTC_PROFRATE;
978         }
979
980         /* Finish initializing 8253 timer 0. */
981 #ifdef APIC_IO
982
983         apic_8254_intr = isa_apic_irq(0);
984         apic_8254_trial = 0;
985         if (apic_8254_intr >= 0 ) {
986                 if (apic_int_type(0, 0) == 3)
987                         apic_8254_trial = 1;
988         } else {
989                 /* look for ExtInt on pin 0 */
990                 if (apic_int_type(0, 0) == 3) {
991                         apic_8254_intr = apic_irq(0, 0);
992                         setup_8254_mixed_mode();
993                 } else 
994                         panic("APIC_IO: Cannot route 8254 interrupt to CPU");
995         }
996
997         clkdesc = register_int(apic_8254_intr, clkintr, NULL, "clk",
998                                NULL,
999                                INTR_EXCL | INTR_FAST | 
1000                                INTR_NOPOLL | INTR_MPSAFE | 
1001                                INTR_NOENTROPY);
1002         machintr_intren(apic_8254_intr);
1003         
1004 #else /* APIC_IO */
1005
1006         register_int(0, clkintr, NULL, "clk", NULL,
1007                      INTR_EXCL | INTR_FAST | 
1008                      INTR_NOPOLL | INTR_MPSAFE |
1009                      INTR_NOENTROPY);
1010         machintr_intren(ICU_IRQ0);
1011
1012 #endif /* APIC_IO */
1013
1014         /* Initialize RTC. */
1015         writertc(RTC_STATUSA, rtc_statusa);
1016         writertc(RTC_STATUSB, RTCSB_24HR);
1017
1018         if (statclock_disable == 0) {
1019                 diag = rtcin(RTC_DIAG);
1020                 if (diag != 0)
1021                         kprintf("RTC BIOS diagnostic error %b\n", diag, RTCDG_BITS);
1022
1023 #ifdef APIC_IO
1024                 if (isa_apic_irq(8) != 8)
1025                         panic("APIC RTC != 8");
1026 #endif /* APIC_IO */
1027
1028                 register_int(8, (inthand2_t *)rtcintr, NULL, "rtc", NULL,
1029                              INTR_EXCL | INTR_FAST | INTR_NOPOLL |
1030                              INTR_NOENTROPY);
1031                 machintr_intren(8);
1032
1033                 writertc(RTC_STATUSB, rtc_statusb);
1034         }
1035
1036 #ifdef APIC_IO
1037         if (apic_8254_trial) {
1038                 sysclock_t base;
1039                 long lastcnt;
1040
1041                 lastcnt = get_interrupt_counter(apic_8254_intr);
1042
1043                 /*
1044                  * XXX this assumes the 8254 is the cpu timer.  Force an
1045                  * 8254 Timer0 interrupt and wait 1/100s for it to happen,
1046                  * then see if we got it.
1047                  */
1048                 kprintf("APIC_IO: Testing 8254 interrupt delivery\n");
1049                 cputimer_intr_reload(2);        /* XXX assumes 8254 */
1050                 base = sys_cputimer->count();
1051                 while (sys_cputimer->count() - base < sys_cputimer->freq / 100)
1052                         ;       /* nothing */
1053                 if (get_interrupt_counter(apic_8254_intr) - lastcnt == 0) {
1054                         /* 
1055                          * The MP table is broken.
1056                          * The 8254 was not connected to the specified pin
1057                          * on the IO APIC.
1058                          * Workaround: Limited variant of mixed mode.
1059                          */
1060                         machintr_intrdis(apic_8254_intr);
1061                         unregister_int(clkdesc);
1062                         kprintf("APIC_IO: Broken MP table detected: "
1063                                "8254 is not connected to "
1064                                "IOAPIC #%d intpin %d\n",
1065                                int_to_apicintpin[apic_8254_intr].ioapic,
1066                                int_to_apicintpin[apic_8254_intr].int_pin);
1067                         /* 
1068                          * Revoke current ISA IRQ 0 assignment and 
1069                          * configure a fallback interrupt routing from
1070                          * the 8254 Timer via the 8259 PIC to the
1071                          * an ExtInt interrupt line on IOAPIC #0 intpin 0.
1072                          * We reuse the low level interrupt handler number.
1073                          */
1074                         if (apic_irq(0, 0) < 0) {
1075                                 revoke_apic_irq(apic_8254_intr);
1076                                 assign_apic_irq(0, 0, apic_8254_intr);
1077                         }
1078                         apic_8254_intr = apic_irq(0, 0);
1079                         setup_8254_mixed_mode();
1080                         register_int(apic_8254_intr, clkintr, NULL, "clk",
1081                                      NULL,
1082                                      INTR_EXCL | INTR_FAST | 
1083                                      INTR_NOPOLL | INTR_MPSAFE |
1084                                      INTR_NOENTROPY);
1085                         machintr_intren(apic_8254_intr);
1086                 }
1087                 
1088         }
1089         if (apic_int_type(0, 0) != 3 ||
1090             int_to_apicintpin[apic_8254_intr].ioapic != 0 ||
1091             int_to_apicintpin[apic_8254_intr].int_pin != 0) {
1092                 kprintf("APIC_IO: routing 8254 via IOAPIC #%d intpin %d\n",
1093                        int_to_apicintpin[apic_8254_intr].ioapic,
1094                        int_to_apicintpin[apic_8254_intr].int_pin);
1095         } else {
1096                 kprintf("APIC_IO: "
1097                        "routing 8254 via 8259 and IOAPIC #0 intpin 0\n");
1098         }
1099 #endif
1100         callout_init(&sysbeepstop_ch);
1101 }
1102
1103 #ifdef APIC_IO
1104
1105 static void 
1106 setup_8254_mixed_mode(void)
1107 {
1108         /*
1109          * Allow 8254 timer to INTerrupt 8259:
1110          *  re-initialize master 8259:
1111          *   reset; prog 4 bytes, single ICU, edge triggered
1112          */
1113         outb(IO_ICU1, 0x13);
1114         outb(IO_ICU1 + 1, IDT_OFFSET);  /* start vector (unused) */
1115         outb(IO_ICU1 + 1, 0x00);        /* ignore slave */
1116         outb(IO_ICU1 + 1, 0x03);        /* auto EOI, 8086 */
1117         outb(IO_ICU1 + 1, 0xfe);        /* unmask INT0 */
1118         
1119         /* program IO APIC for type 3 INT on INT0 */
1120         if (ext_int_setup(0, 0) < 0)
1121                 panic("8254 redirect via APIC pin0 impossible!");
1122 }
1123 #endif
1124
1125 void
1126 setstatclockrate(int newhz)
1127 {
1128         if (newhz == RTC_PROFRATE)
1129                 rtc_statusa = RTCSA_DIVIDER | RTCSA_PROF;
1130         else
1131                 rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF;
1132         writertc(RTC_STATUSA, rtc_statusa);
1133 }
1134
1135 #if 0
1136 static unsigned
1137 tsc_get_timecount(struct timecounter *tc)
1138 {
1139         return (rdtsc());
1140 }
1141 #endif
1142
1143 #ifdef KERN_TIMESTAMP
1144 #define KERN_TIMESTAMP_SIZE 16384
1145 static u_long tsc[KERN_TIMESTAMP_SIZE] ;
1146 SYSCTL_OPAQUE(_debug, OID_AUTO, timestamp, CTLFLAG_RD, tsc,
1147         sizeof(tsc), "LU", "Kernel timestamps");
1148 void  
1149 _TSTMP(u_int32_t x)
1150 {
1151         static int i;
1152
1153         tsc[i] = (u_int32_t)rdtsc();
1154         tsc[i+1] = x;
1155         i = i + 2;
1156         if (i >= KERN_TIMESTAMP_SIZE)
1157                 i = 0;
1158         tsc[i] = 0; /* mark last entry */
1159 }
1160 #endif /* KERN_TIMESTAMP */
1161
1162 /*
1163  *
1164  */
1165
1166 static int
1167 hw_i8254_timestamp(SYSCTL_HANDLER_ARGS)
1168 {
1169     sysclock_t count;
1170     __uint64_t tscval;
1171     char buf[32];
1172
1173     crit_enter();
1174     if (sys_cputimer == &i8254_cputimer)
1175         count = sys_cputimer->count();
1176     else
1177         count = 0;
1178     if (tsc_present)
1179         tscval = rdtsc();
1180     else
1181         tscval = 0;
1182     crit_exit();
1183     ksnprintf(buf, sizeof(buf), "%08x %016llx", count, (long long)tscval);
1184     return(SYSCTL_OUT(req, buf, strlen(buf) + 1));
1185 }
1186
1187 SYSCTL_NODE(_hw, OID_AUTO, i8254, CTLFLAG_RW, 0, "I8254");
1188 SYSCTL_UINT(_hw_i8254, OID_AUTO, freq, CTLFLAG_RD, &i8254_cputimer.freq, 0,
1189             "frequency");
1190 SYSCTL_PROC(_hw_i8254, OID_AUTO, timestamp, CTLTYPE_STRING|CTLFLAG_RD,
1191             0, 0, hw_i8254_timestamp, "A", "");
1192