/* $OpenBSD: clock.c,v 1.41 2007/11/28 17:05:09 tedu Exp $ */ /* $NetBSD: clock.c,v 1.39 1996/05/12 23:11:54 mycroft Exp $ */ /*- * Copyright (c) 1993, 1994 Charles Hannum. * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * William Jolitz and Don Ahn. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)clock.c 7.2 (Berkeley) 5/12/91 */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* Copyright 1988, 1989 by Intel Corporation, Santa Clara, California. All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both the copyright notice and this permission notice appear in supporting documentation, and that the name of Intel not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. INTEL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL INTEL BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * Primitive clock interrupt routines. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include void spinwait(int); int clockintr(void *); int gettick(void); int rtcget(mc_todregs *); void rtcput(mc_todregs *); int hexdectodec(int); int dectohexdec(int); int rtcintr(void *); void rtcdrain(void *); u_int mc146818_read(void *, u_int); void mc146818_write(void *, u_int, u_int); int cpuspeed; int clock_broken_latch; /* Timecounter on the i8254 */ uint32_t i8254_lastcount; uint32_t i8254_offset; int i8254_ticked; u_int i8254_get_timecount(struct timecounter *tc); u_int i8254_simple_get_timecount(struct timecounter *tc); static struct timecounter i8254_timecounter = { i8254_get_timecount, NULL, ~0u, TIMER_FREQ, "i8254", 0, NULL }; struct mutex timer_mutex = MUTEX_INITIALIZER(IPL_HIGH); u_long rtclock_tval; #define SECMIN ((unsigned)60) /* seconds per minute */ #define SECHOUR ((unsigned)(60*SECMIN)) /* seconds per hour */ u_int mc146818_read(void *sc, u_int reg) { int s; u_char v; s = splhigh(); outb(IO_RTC, reg); DELAY(1); v = inb(IO_RTC+1); DELAY(1); splx(s); return (v); } void mc146818_write(void *sc, u_int reg, u_int datum) { int s; s = splhigh(); outb(IO_RTC, reg); DELAY(1); outb(IO_RTC+1, datum); DELAY(1); splx(s); } void startrtclock(void) { int s; initrtclock(); /* Check diagnostic status */ if ((s = mc146818_read(NULL, NVRAM_DIAG)) != 0) /* XXX softc */ printf("RTC BIOS diagnostic error %b\n", (unsigned int) s, NVRAM_DIAG_BITS); } void rtcdrain(void *v) { struct timeout *to = (struct timeout *)v; if (to != NULL) timeout_del(to); /* * Drain any un-acknowledged RTC interrupts. * See comment in cpu_initclocks(). */ while (mc146818_read(NULL, MC_REGC) & MC_REGC_PF) ; /* Nothing. */ } void initrtclock(void) { mtx_enter(&timer_mutex); /* initialize 8253 clock */ outb(IO_TIMER1 + TIMER_MODE, TIMER_SEL0|TIMER_RATEGEN|TIMER_16BIT); /* Correct rounding will buy us a better precision in timekeeping */ outb(IO_TIMER1, TIMER_DIV(hz) % 256); outb(IO_TIMER1, TIMER_DIV(hz) / 256); rtclock_tval = TIMER_DIV(hz); mtx_leave(&timer_mutex); } int clockintr(void *arg) { struct clockframe *frame = arg; /* not strictly necessary */ if (timecounter->tc_get_timecount == i8254_get_timecount) { if (i8254_ticked) { i8254_ticked = 0; } else { i8254_offset += rtclock_tval; i8254_lastcount = 0; } } hardclock(frame); return (1); } int rtcintr(void *arg) { struct clockframe *frame = arg; /* not strictly necessary */ u_int stat = 0; /* * If rtcintr is 'late', next intr may happen immediately. * Get them all. (Also, see comment in cpu_initclocks().) */ while (mc146818_read(NULL, MC_REGC) & MC_REGC_PF) { statclock(frame); stat = 1; } return (stat); } int gettick(void) { if (clock_broken_latch) { int v1, v2, v3; int w1, w2, w3; /* * Don't lock the mutex in this case, clock_broken_latch * CPUs don't do MP anyway. */ disable_intr(); v1 = inb(IO_TIMER1 + TIMER_CNTR0); v1 |= inb(IO_TIMER1 + TIMER_CNTR0) << 8; v2 = inb(IO_TIMER1 + TIMER_CNTR0); v2 |= inb(IO_TIMER1 + TIMER_CNTR0) << 8; v3 = inb(IO_TIMER1 + TIMER_CNTR0); v3 |= inb(IO_TIMER1 + TIMER_CNTR0) << 8; enable_intr(); if (v1 >= v2 && v2 >= v3 && v1 - v3 < 0x200) return (v2); #define _swap_val(a, b) do { \ int c = a; \ a = b; \ b = c; \ } while (0) /* sort v1 v2 v3 */ if (v1 < v2) _swap_val(v1, v2); if (v2 < v3) _swap_val(v2, v3); if (v1 < v2) _swap_val(v1, v2); /* compute the middle value */ if (v1 - v3 < 0x200) return (v2); w1 = v2 - v3; w2 = v3 - v1 + TIMER_DIV(hz); w3 = v1 - v2; if (w1 >= w2) { if (w1 >= w3) return (v1); } else { if (w2 >= w3) return (v2); } return (v3); } else { u_char lo, hi; u_long ef; mtx_enter(&timer_mutex); ef = read_eflags(); disable_intr(); /* Select counter 0 and latch it. */ outb(IO_TIMER1 + TIMER_MODE, TIMER_SEL0 | TIMER_LATCH); lo = inb(IO_TIMER1 + TIMER_CNTR0); hi = inb(IO_TIMER1 + TIMER_CNTR0); write_eflags(ef); mtx_leave(&timer_mutex); return ((hi << 8) | lo); } } /* * Wait "n" microseconds. * Relies on timer 1 counting down from (TIMER_FREQ / hz) at TIMER_FREQ Hz. * Note: timer had better have been programmed before this is first used! * (Note that we use `rate generator' mode, which counts at 1:1; `square * wave' mode counts at 2:1). */ void i8254_delay(int n) { int limit, tick, otick; /* * Read the counter first, so that the rest of the setup overhead is * counted. */ otick = gettick(); #ifdef __GNUC__ /* * Calculate ((n * TIMER_FREQ) / 1e6) using explicit assembler code so * we can take advantage of the intermediate 64-bit quantity to prevent * loss of significance. */ n -= 5; if (n < 0) return; __asm __volatile("mul %2\n\tdiv %3" : "=a" (n) : "0" (n), "r" (TIMER_FREQ), "r" (1000000) : "%edx", "cc"); #else /* * Calculate ((n * TIMER_FREQ) / 1e6) without using floating point and * without any avoidable overflows. */ n -= 20; { int sec = n / 1000000, usec = n % 1000000; n = sec * TIMER_FREQ + usec * (TIMER_FREQ / 1000000) + usec * ((TIMER_FREQ % 1000000) / 1000) / 1000 + usec * (TIMER_FREQ % 1000) / 1000000; } #endif limit = TIMER_FREQ / hz; while (n > 0) { tick = gettick(); if (tick > otick) n -= limit - (tick - otick); else n -= otick - tick; otick = tick; } } void calibrate_cyclecounter(void) { unsigned long long count, last_count; __asm __volatile("rdtsc" : "=A" (last_count)); delay(1000000); __asm __volatile("rdtsc" : "=A" (count)); cpuspeed = ((count - last_count) + 999999) / 1000000; } void i8254_initclocks(void) { static struct timeout rtcdrain_timeout; stathz = 128; profhz = 1024; /* * XXX If you're doing strange things with multiple clocks, you might * want to keep track of clock handlers. */ (void)isa_intr_establish(NULL, 0, IST_PULSE, IPL_CLOCK, clockintr, 0, "clock"); (void)isa_intr_establish(NULL, 8, IST_PULSE, IPL_CLOCK, rtcintr, 0, "rtc"); mc146818_write(NULL, MC_REGA, MC_BASE_32_KHz | MC_RATE_128_Hz); mc146818_write(NULL, MC_REGB, MC_REGB_24HR | MC_REGB_PIE); /* * On a number of i386 systems, the rtc will fail to start when booting * the system. This is due to us missing to acknowledge an interrupt * during early stages of the boot process. If we do not acknowledge * the interrupt, the rtc clock will not generate further interrupts. * To solve this, once interrupts are enabled, use a timeout (once) * to drain any un-acknowledged rtc interrupt(s). */ timeout_set(&rtcdrain_timeout, rtcdrain, (void *)&rtcdrain_timeout); timeout_add(&rtcdrain_timeout, 1); } int rtcget(mc_todregs *regs) { if ((mc146818_read(NULL, MC_REGD) & MC_REGD_VRT) == 0) /* XXX softc */ return (-1); MC146818_GETTOD(NULL, regs); /* XXX softc */ return (0); } void rtcput(mc_todregs *regs) { MC146818_PUTTOD(NULL, regs); /* XXX softc */ } int hexdectodec(int n) { return (((n >> 4) & 0x0f) * 10 + (n & 0x0f)); } int dectohexdec(int n) { return ((u_char)(((n / 10) << 4) & 0xf0) | ((n % 10) & 0x0f)); } static int timeset; /* * check whether the CMOS layout is "standard"-like (ie, not PS/2-like), * to be called at splclock() */ int cmoscheck(void); int cmoscheck(void) { int i; unsigned short cksum = 0; for (i = 0x10; i <= 0x2d; i++) cksum += mc146818_read(NULL, i); /* XXX softc */ return (cksum == (mc146818_read(NULL, 0x2e) << 8) + mc146818_read(NULL, 0x2f)); } /* * patchable to control century byte handling: * 1: always update * -1: never touch * 0: try to figure out itself */ int rtc_update_century = 0; /* * Expand a two-digit year as read from the clock chip * into full width. * Being here, deal with the CMOS century byte. */ int clock_expandyear(int); int clock_expandyear(int clockyear) { int s, clockcentury, cmoscentury; clockcentury = (clockyear < 70) ? 20 : 19; clockyear += 100 * clockcentury; if (rtc_update_century < 0) return (clockyear); s = splclock(); if (cmoscheck()) cmoscentury = mc146818_read(NULL, NVRAM_CENTURY); else cmoscentury = 0; splx(s); if (!cmoscentury) { #ifdef DIAGNOSTIC printf("clock: unknown CMOS layout\n"); #endif return (clockyear); } cmoscentury = hexdectodec(cmoscentury); if (cmoscentury != clockcentury) { /* XXX note: saying "century is 20" might confuse the naive. */ printf("WARNING: NVRAM century is %d but RTC year is %d\n", cmoscentury, clockyear); /* Kludge to roll over century. */ if ((rtc_update_century > 0) || ((cmoscentury == 19) && (clockcentury == 20) && (clockyear == 2000))) { printf("WARNING: Setting NVRAM century to %d\n", clockcentury); s = splclock(); mc146818_write(NULL, NVRAM_CENTURY, dectohexdec(clockcentury)); splx(s); } } else if (cmoscentury == 19 && rtc_update_century == 0) rtc_update_century = 1; /* will update later in resettodr() */ return (clockyear); } /* * Initialize the time of day register, based on the time base which is, e.g. * from a filesystem. */ void inittodr(time_t base) { struct timespec ts; mc_todregs rtclk; struct clock_ymdhms dt; int s; ts.tv_nsec = 0; /* * We mostly ignore the suggested time and go for the RTC clock time * stored in the CMOS RAM. If the time can't be obtained from the * CMOS, or if the time obtained from the CMOS is 5 or more years * less than the suggested time, we used the suggested time. (In * the latter case, it's likely that the CMOS battery has died.) */ if (base < 15*SECYR) { /* if before 1985, something's odd... */ printf("WARNING: preposterous time in file system\n"); /* read the system clock anyway */ base = 17*SECYR + 186*SECDAY + SECDAY/2; } s = splclock(); if (rtcget(&rtclk)) { splx(s); printf("WARNING: invalid time in clock chip\n"); goto fstime; } splx(s); dt.dt_sec = hexdectodec(rtclk[MC_SEC]); dt.dt_min = hexdectodec(rtclk[MC_MIN]); dt.dt_hour = hexdectodec(rtclk[MC_HOUR]); dt.dt_day = hexdectodec(rtclk[MC_DOM]); dt.dt_mon = hexdectodec(rtclk[MC_MONTH]); dt.dt_year = clock_expandyear(hexdectodec(rtclk[MC_YEAR])); /* * If time_t is 32 bits, then the "End of Time" is * Mon Jan 18 22:14:07 2038 (US/Eastern) * This code copes with RTC's past the end of time if time_t * is an int32 or less. Needed because sometimes RTCs screw * up or are badly set, and that would cause the time to go * negative in the calculation below, which causes Very Bad * Mojo. This at least lets the user boot and fix the problem. * Note the code is self eliminating once time_t goes to 64 bits. */ if (sizeof(time_t) <= sizeof(int32_t)) { if (dt.dt_year >= 2038) { printf("WARNING: RTC time at or beyond 2038.\n"); dt.dt_year = 2037; printf("WARNING: year set back to 2037.\n"); printf("WARNING: CHECK AND RESET THE DATE!\n"); } } ts.tv_sec = clock_ymdhms_to_secs(&dt) + tz.tz_minuteswest * 60; if (tz.tz_dsttime) ts.tv_sec -= 3600; if (base < ts.tv_sec - 5*SECYR) printf("WARNING: file system time much less than clock time\n"); else if (base > ts.tv_sec + 5*SECYR) { printf("WARNING: clock time much less than file system time\n"); printf("WARNING: using file system time\n"); goto fstime; } tc_setclock(&ts); timeset = 1; return; fstime: ts.tv_sec = base; tc_setclock(&ts); timeset = 1; printf("WARNING: CHECK AND RESET THE DATE!\n"); } /* * Reset the clock. */ void resettodr(void) { mc_todregs rtclk; struct clock_ymdhms dt; int diff; int century; int s; /* * We might have been called by boot() due to a crash early * on. Don't reset the clock chip in this case. */ if (!timeset) return; s = splclock(); if (rtcget(&rtclk)) bzero(&rtclk, sizeof(rtclk)); splx(s); diff = tz.tz_minuteswest * 60; if (tz.tz_dsttime) diff -= 3600; clock_secs_to_ymdhms(time_second - diff, &dt); rtclk[MC_SEC] = dectohexdec(dt.dt_sec); rtclk[MC_MIN] = dectohexdec(dt.dt_min); rtclk[MC_HOUR] = dectohexdec(dt.dt_hour); rtclk[MC_DOW] = dt.dt_wday; rtclk[MC_YEAR] = dectohexdec(dt.dt_year % 100); rtclk[MC_MONTH] = dectohexdec(dt.dt_mon); rtclk[MC_DOM] = dectohexdec(dt.dt_day); s = splclock(); rtcput(&rtclk); if (rtc_update_century > 0) { century = dectohexdec(dt.dt_year / 100); mc146818_write(NULL, NVRAM_CENTURY, century); /* XXX softc */ } splx(s); } void setstatclockrate(int arg) { if (arg == stathz) mc146818_write(NULL, MC_REGA, MC_BASE_32_KHz | MC_RATE_128_Hz); else mc146818_write(NULL, MC_REGA, MC_BASE_32_KHz | MC_RATE_1024_Hz); } void i8254_inittimecounter(void) { tc_init(&i8254_timecounter); } /* * If we're using lapic to drive hardclock, we can use a simpler * algorithm for the i8254 timecounters. */ void i8254_inittimecounter_simple(void) { u_long tval = 0x8000; i8254_timecounter.tc_get_timecount = i8254_simple_get_timecount; i8254_timecounter.tc_counter_mask = 0x7fff; i8254_timecounter.tc_frequency = TIMER_FREQ; mtx_enter(&timer_mutex); outb(IO_TIMER1 + TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT); outb(IO_TIMER1, tval & 0xff); outb(IO_TIMER1, tval >> 8); rtclock_tval = tval; mtx_leave(&timer_mutex); tc_init(&i8254_timecounter); } u_int i8254_simple_get_timecount(struct timecounter *tc) { return (rtclock_tval - gettick()); } u_int i8254_get_timecount(struct timecounter *tc) { u_char hi, lo; u_int count; u_long ef; ef = read_eflags(); disable_intr(); outb(IO_TIMER1 + TIMER_MODE, TIMER_SEL0 | TIMER_LATCH); lo = inb(IO_TIMER1 + TIMER_CNTR0); hi = inb(IO_TIMER1 + TIMER_CNTR0); count = rtclock_tval - ((hi << 8) | lo); if (count < i8254_lastcount) { i8254_ticked = 1; i8254_offset += rtclock_tval; } i8254_lastcount = count; count += i8254_offset; write_eflags(ef); return (count); }