1996-10-13 07:19:38 +04:00
|
|
|
/* $NetBSD: clock.c,v 1.41 1996/10/13 03:19:58 christos Exp $ */
|
1994-10-27 07:14:23 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1994-05-04 00:32:22 +04:00
|
|
|
* Copyright (c) 1993, 1994 Charles Hannum.
|
1993-03-21 12:45:37 +03:00
|
|
|
* 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. 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.
|
|
|
|
*
|
1994-10-27 07:14:23 +03:00
|
|
|
* @(#)clock.c 7.2 (Berkeley) 5/12/91
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-08-03 16:33:17 +04:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Primitive clock interrupt routines.
|
|
|
|
*/
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/kernel.h>
|
1994-04-07 10:48:19 +04:00
|
|
|
#include <sys/device.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
|
1994-02-01 05:02:54 +03:00
|
|
|
#include <machine/cpu.h>
|
1996-05-13 03:11:54 +04:00
|
|
|
#include <machine/intr.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <machine/pio.h>
|
1994-03-29 08:35:37 +04:00
|
|
|
#include <machine/cpufunc.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
|
1995-04-17 16:06:30 +04:00
|
|
|
#include <dev/isa/isareg.h>
|
|
|
|
#include <dev/isa/isavar.h>
|
1995-06-28 08:30:30 +04:00
|
|
|
#include <dev/ic/mc146818reg.h>
|
1995-05-04 23:39:08 +04:00
|
|
|
#include <i386/isa/nvram.h>
|
1993-12-20 12:05:17 +03:00
|
|
|
#include <i386/isa/timerreg.h>
|
1994-05-04 00:32:22 +04:00
|
|
|
#include <i386/isa/spkrreg.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-05-03 23:14:50 +04:00
|
|
|
void spinwait __P((int));
|
|
|
|
void findcpuspeed __P((void));
|
|
|
|
int clockintr __P((void *));
|
|
|
|
int gettick __P((void));
|
|
|
|
void sysbeepstop __P((void *));
|
|
|
|
void sysbeep __P((int, int));
|
|
|
|
void rtcinit __P((void));
|
|
|
|
int rtcget __P((mc_todregs *));
|
|
|
|
void rtcput __P((mc_todregs *));
|
|
|
|
static int yeartoday __P((int));
|
|
|
|
int hexdectodec __P((int));
|
|
|
|
int dectohexdec __P((int));
|
|
|
|
|
|
|
|
|
|
|
|
__inline u_int mc146818_read __P((void *, u_int));
|
|
|
|
__inline void mc146818_write __P((void *, u_int, u_int));
|
1993-07-06 10:06:26 +04:00
|
|
|
|
1995-06-26 14:14:05 +04:00
|
|
|
#define SECMIN ((unsigned)60) /* seconds per minute */
|
|
|
|
#define SECHOUR ((unsigned)(60*SECMIN)) /* seconds per hour */
|
|
|
|
#define SECDAY ((unsigned)(24*SECHOUR)) /* seconds per day */
|
|
|
|
#define SECYR ((unsigned)(365*SECDAY)) /* seconds per common year */
|
|
|
|
|
1995-05-04 23:39:08 +04:00
|
|
|
__inline u_int
|
|
|
|
mc146818_read(sc, reg)
|
|
|
|
void *sc; /* XXX use it? */
|
|
|
|
u_int reg;
|
|
|
|
{
|
|
|
|
|
|
|
|
outb(IO_RTC, reg);
|
|
|
|
return (inb(IO_RTC+1));
|
|
|
|
}
|
|
|
|
|
|
|
|
__inline void
|
|
|
|
mc146818_write(sc, reg, datum)
|
|
|
|
void *sc; /* XXX use it? */
|
|
|
|
u_int reg, datum;
|
|
|
|
{
|
|
|
|
|
|
|
|
outb(IO_RTC, reg);
|
|
|
|
outb(IO_RTC+1, datum);
|
|
|
|
}
|
|
|
|
|
1993-06-27 10:42:19 +04:00
|
|
|
void
|
1994-03-29 08:35:37 +04:00
|
|
|
startrtclock()
|
1993-08-03 16:33:17 +04:00
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
int s;
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
findcpuspeed(); /* use the clock (while it's free)
|
|
|
|
to find the cpu speed */
|
1993-03-21 12:45:37 +03:00
|
|
|
/* initialize 8253 clock */
|
1993-03-23 11:12:09 +03:00
|
|
|
outb(TIMER_MODE, TIMER_SEL0|TIMER_RATEGEN|TIMER_16BIT);
|
1993-05-07 09:22:14 +04:00
|
|
|
|
|
|
|
/* Correct rounding will buy us a better precision in timekeeping */
|
1995-05-04 23:39:08 +04:00
|
|
|
outb(IO_TIMER1, TIMER_DIV(hz) % 256);
|
|
|
|
outb(IO_TIMER1, TIMER_DIV(hz) / 256);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-06-26 14:14:05 +04:00
|
|
|
/* Check diagnostic status */
|
1996-05-03 23:14:50 +04:00
|
|
|
if ((s = mc146818_read(NULL, NVRAM_DIAG)) != 0) /* XXX softc */
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("RTC BIOS diagnostic error %b\n", (unsigned int) s,
|
1996-05-03 23:14:50 +04:00
|
|
|
NVRAM_DIAG_BITS);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-04-07 10:48:19 +04:00
|
|
|
int
|
1995-04-17 16:06:30 +04:00
|
|
|
clockintr(arg)
|
|
|
|
void *arg;
|
1994-02-01 05:02:54 +03:00
|
|
|
{
|
1995-04-17 16:06:30 +04:00
|
|
|
struct clockframe *frame = arg; /* not strictly necessary */
|
1994-03-29 08:35:37 +04:00
|
|
|
|
1994-04-07 10:48:19 +04:00
|
|
|
hardclock(frame);
|
|
|
|
return -1;
|
1994-02-01 05:02:54 +03:00
|
|
|
}
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
int
|
|
|
|
gettick()
|
|
|
|
{
|
|
|
|
u_char lo, hi;
|
|
|
|
|
|
|
|
/* Don't want someone screwing with the counter while we're here. */
|
|
|
|
disable_intr();
|
|
|
|
/* Select counter 0 and latch it. */
|
|
|
|
outb(TIMER_MODE, TIMER_SEL0 | TIMER_LATCH);
|
|
|
|
lo = inb(TIMER_CNTR0);
|
|
|
|
hi = inb(TIMER_CNTR0);
|
|
|
|
enable_intr();
|
|
|
|
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
|
|
|
|
delay(n)
|
|
|
|
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;
|
|
|
|
{register int m;
|
|
|
|
__asm __volatile("mul %3"
|
|
|
|
: "=a" (n), "=d" (m)
|
|
|
|
: "0" (n), "r" (TIMER_FREQ));
|
|
|
|
__asm __volatile("div %3"
|
|
|
|
: "=a" (n)
|
|
|
|
: "0" (n), "d" (m), "r" (1000000)
|
|
|
|
: "%edx");}
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-03 12:23:55 +04:00
|
|
|
static int beeping;
|
|
|
|
|
|
|
|
void
|
|
|
|
sysbeepstop(arg)
|
|
|
|
void *arg;
|
|
|
|
{
|
|
|
|
|
|
|
|
/* disable counter 2 */
|
|
|
|
disable_intr();
|
|
|
|
outb(PITAUX_PORT, inb(PITAUX_PORT) & ~PIT_SPKR);
|
|
|
|
enable_intr();
|
|
|
|
beeping = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sysbeep(pitch, period)
|
|
|
|
int pitch, period;
|
|
|
|
{
|
1995-08-13 08:06:29 +04:00
|
|
|
static int last_pitch;
|
1994-05-03 12:23:55 +04:00
|
|
|
|
|
|
|
if (beeping)
|
|
|
|
untimeout(sysbeepstop, 0);
|
1995-08-13 08:06:29 +04:00
|
|
|
if (pitch == 0 || period == 0) {
|
|
|
|
sysbeepstop(0);
|
|
|
|
last_pitch = 0;
|
|
|
|
return;
|
|
|
|
}
|
1994-05-03 12:23:55 +04:00
|
|
|
if (!beeping || last_pitch != pitch) {
|
|
|
|
disable_intr();
|
|
|
|
outb(TIMER_MODE, TIMER_SEL2 | TIMER_16BIT | TIMER_SQWAVE);
|
1995-05-04 23:39:08 +04:00
|
|
|
outb(TIMER_CNTR2, TIMER_DIV(pitch) % 256);
|
|
|
|
outb(TIMER_CNTR2, TIMER_DIV(pitch) / 256);
|
1994-05-03 12:23:55 +04:00
|
|
|
outb(PITAUX_PORT, inb(PITAUX_PORT) | PIT_SPKR); /* enable counter 2 */
|
|
|
|
enable_intr();
|
|
|
|
}
|
|
|
|
last_pitch = pitch;
|
1995-08-13 08:06:29 +04:00
|
|
|
beeping = 1;
|
1994-05-03 12:23:55 +04:00
|
|
|
timeout(sysbeepstop, 0, period);
|
|
|
|
}
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
unsigned int delaycount; /* calibrated loop variable (1 millisecond) */
|
|
|
|
|
1996-05-03 23:14:50 +04:00
|
|
|
#define FIRST_GUESS 0x2000
|
1996-04-03 12:55:20 +04:00
|
|
|
|
|
|
|
void
|
1994-03-29 08:35:37 +04:00
|
|
|
findcpuspeed()
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
int i;
|
|
|
|
int remainder;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
/* Put counter in count down mode */
|
1994-03-29 08:35:37 +04:00
|
|
|
outb(TIMER_MODE, TIMER_SEL0 | TIMER_16BIT | TIMER_RATEGEN);
|
|
|
|
outb(TIMER_CNTR0, 0xff);
|
|
|
|
outb(TIMER_CNTR0, 0xff);
|
|
|
|
for (i = FIRST_GUESS; i; i--)
|
|
|
|
;
|
1993-03-21 21:04:42 +03:00
|
|
|
/* Read the value left in the counter */
|
1994-03-29 08:35:37 +04:00
|
|
|
remainder = gettick();
|
1995-05-04 23:39:08 +04:00
|
|
|
/*
|
|
|
|
* Formula for delaycount is:
|
|
|
|
* (loopcount * timer clock speed) / (counter ticks * 1000)
|
1993-03-21 21:04:42 +03:00
|
|
|
*/
|
1993-06-16 01:37:14 +04:00
|
|
|
delaycount = (FIRST_GUESS * TIMER_DIV(1000)) / (0xffff-remainder);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
void
|
1994-05-05 09:35:42 +04:00
|
|
|
cpu_initclocks()
|
1994-03-29 08:35:37 +04:00
|
|
|
{
|
|
|
|
|
1995-04-17 16:06:30 +04:00
|
|
|
/*
|
|
|
|
* XXX If you're doing strange things with multiple clocks, you might
|
|
|
|
* want to keep track of clock handlers.
|
|
|
|
*/
|
1996-04-12 02:15:08 +04:00
|
|
|
(void)isa_intr_establish(NULL, 0, IST_PULSE, IPL_CLOCK, clockintr, 0);
|
1993-08-03 16:33:17 +04:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
void
|
1994-03-29 08:35:37 +04:00
|
|
|
rtcinit()
|
1993-08-03 16:33:17 +04:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
static int first_rtcopen_ever = 1;
|
1993-08-03 16:33:17 +04:00
|
|
|
|
1995-06-26 14:14:05 +04:00
|
|
|
if (!first_rtcopen_ever)
|
1994-03-29 08:35:37 +04:00
|
|
|
return;
|
|
|
|
first_rtcopen_ever = 0;
|
1993-08-03 16:33:17 +04:00
|
|
|
|
1995-05-04 23:39:08 +04:00
|
|
|
mc146818_write(NULL, MC_REGA, /* XXX softc */
|
|
|
|
MC_BASE_32_KHz | MC_RATE_1024_Hz);
|
|
|
|
mc146818_write(NULL, MC_REGB, MC_REGB_24HR); /* XXX softc */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
int
|
1995-05-04 23:39:08 +04:00
|
|
|
rtcget(regs)
|
|
|
|
mc_todregs *regs;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-06-26 14:14:05 +04:00
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
rtcinit();
|
1996-05-03 23:14:50 +04:00
|
|
|
if ((mc146818_read(NULL, MC_REGD) & MC_REGD_VRT) == 0) /* XXX softc */
|
1995-05-04 23:39:08 +04:00
|
|
|
return (-1);
|
|
|
|
MC146818_GETTOD(NULL, regs); /* XXX softc */
|
|
|
|
return (0);
|
1993-08-03 16:33:17 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
void
|
1995-05-04 23:39:08 +04:00
|
|
|
rtcput(regs)
|
|
|
|
mc_todregs *regs;
|
1993-08-03 16:33:17 +04:00
|
|
|
{
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
rtcinit();
|
1995-05-04 23:39:08 +04:00
|
|
|
MC146818_PUTTOD(NULL, regs); /* XXX softc */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
static int month[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
|
|
|
|
|
|
|
|
static int
|
1994-03-29 08:35:37 +04:00
|
|
|
yeartoday(year)
|
|
|
|
int year;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
|
1995-05-04 23:39:08 +04:00
|
|
|
return ((year % 4) ? 365 : 366);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-09-21 17:09:10 +04:00
|
|
|
int
|
1994-03-29 08:35:37 +04:00
|
|
|
hexdectodec(n)
|
1996-05-03 23:14:50 +04:00
|
|
|
int n;
|
1993-08-03 16:33:17 +04:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
|
1995-05-04 23:39:08 +04:00
|
|
|
return (((n >> 4) & 0x0f) * 10 + (n & 0x0f));
|
1993-08-03 16:33:17 +04:00
|
|
|
}
|
|
|
|
|
1996-05-03 23:14:50 +04:00
|
|
|
int
|
1994-03-29 08:35:37 +04:00
|
|
|
dectohexdec(n)
|
|
|
|
int n;
|
1993-08-03 16:33:17 +04:00
|
|
|
{
|
1994-03-29 08:35:37 +04:00
|
|
|
|
1996-05-03 23:14:50 +04:00
|
|
|
return ((u_char)(((n / 10) << 4) & 0xf0) | ((n % 10) & 0x0f));
|
1993-08-03 16:33:17 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-07-25 04:19:47 +04:00
|
|
|
static int timeset;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Initialize the time of day register, based on the time base which is, e.g.
|
|
|
|
* from a filesystem.
|
|
|
|
*/
|
1993-08-03 16:33:17 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
inittodr(base)
|
|
|
|
time_t base;
|
|
|
|
{
|
1995-05-04 23:39:08 +04:00
|
|
|
mc_todregs rtclk;
|
1993-08-03 16:33:17 +04:00
|
|
|
time_t n;
|
|
|
|
int sec, min, hr, dom, mon, yr;
|
|
|
|
int i, days = 0;
|
1994-03-29 08:35:37 +04:00
|
|
|
int s;
|
1993-08-03 16:33:17 +04:00
|
|
|
|
1995-06-26 14:14:05 +04:00
|
|
|
/*
|
|
|
|
* 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... */
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("WARNING: preposterous time in file system\n");
|
1995-06-26 14:14:05 +04:00
|
|
|
/* read the system clock anyway */
|
|
|
|
base = 17*SECYR + 186*SECDAY + SECDAY/2;
|
|
|
|
}
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
s = splclock();
|
1993-08-03 16:33:17 +04:00
|
|
|
if (rtcget(&rtclk)) {
|
1994-03-29 08:35:37 +04:00
|
|
|
splx(s);
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("WARNING: invalid time in clock chip\n");
|
1995-06-26 14:14:05 +04:00
|
|
|
goto fstime;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-03-29 08:35:37 +04:00
|
|
|
splx(s);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-05-04 23:39:08 +04:00
|
|
|
sec = hexdectodec(rtclk[MC_SEC]);
|
|
|
|
min = hexdectodec(rtclk[MC_MIN]);
|
|
|
|
hr = hexdectodec(rtclk[MC_HOUR]);
|
|
|
|
dom = hexdectodec(rtclk[MC_DOM]);
|
|
|
|
mon = hexdectodec(rtclk[MC_MONTH]);
|
|
|
|
yr = hexdectodec(rtclk[MC_YEAR]);
|
1993-08-03 16:33:17 +04:00
|
|
|
yr = (yr < 70) ? yr+100 : yr;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
n = sec + 60 * min + 3600 * hr;
|
|
|
|
n += (dom - 1) * 3600 * 24;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
if (yeartoday(yr) == 366)
|
|
|
|
month[1] = 29;
|
|
|
|
for (i = mon - 2; i >= 0; i--)
|
|
|
|
days += month[i];
|
|
|
|
month[1] = 28;
|
|
|
|
for (i = 70; i < yr; i++)
|
|
|
|
days += yeartoday(i);
|
|
|
|
n += days * 3600 * 24;
|
|
|
|
|
|
|
|
n += tz.tz_minuteswest * 60;
|
|
|
|
if (tz.tz_dsttime)
|
|
|
|
n -= 3600;
|
1995-06-26 14:14:05 +04:00
|
|
|
|
|
|
|
if (base < n - 5*SECYR)
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("WARNING: file system time much less than clock time\n");
|
1995-06-26 14:14:05 +04:00
|
|
|
else if (base > n + 5*SECYR) {
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("WARNING: clock time much less than file system time\n");
|
|
|
|
printf("WARNING: using file system time\n");
|
1995-06-26 14:14:05 +04:00
|
|
|
goto fstime;
|
|
|
|
}
|
|
|
|
|
|
|
|
timeset = 1;
|
1993-08-03 16:33:17 +04:00
|
|
|
time.tv_sec = n;
|
1995-06-26 14:14:05 +04:00
|
|
|
time.tv_usec = 0;
|
|
|
|
return;
|
|
|
|
|
|
|
|
fstime:
|
|
|
|
timeset = 1;
|
|
|
|
time.tv_sec = base;
|
|
|
|
time.tv_usec = 0;
|
1996-10-13 07:19:38 +04:00
|
|
|
printf("WARNING: CHECK AND RESET THE DATE!\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1993-08-03 16:33:17 +04:00
|
|
|
* Reset the clock.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1993-06-27 10:42:19 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
resettodr()
|
|
|
|
{
|
1995-05-04 23:39:08 +04:00
|
|
|
mc_todregs rtclk;
|
1993-08-03 16:33:17 +04:00
|
|
|
time_t n;
|
|
|
|
int diff, i, j;
|
1994-03-29 08:35:37 +04:00
|
|
|
int s;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-07-25 04:19:47 +04:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
s = splclock();
|
|
|
|
if (rtcget(&rtclk))
|
1995-06-26 14:14:05 +04:00
|
|
|
bzero(&rtclk, sizeof(rtclk));
|
1994-03-29 08:35:37 +04:00
|
|
|
splx(s);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-08-03 16:33:17 +04:00
|
|
|
diff = tz.tz_minuteswest * 60;
|
|
|
|
if (tz.tz_dsttime)
|
|
|
|
diff -= 3600;
|
|
|
|
n = (time.tv_sec - diff) % (3600 * 24); /* hrs+mins+secs */
|
1995-05-04 23:39:08 +04:00
|
|
|
rtclk[MC_SEC] = dectohexdec(n % 60);
|
1993-08-03 16:33:17 +04:00
|
|
|
n /= 60;
|
1995-05-04 23:39:08 +04:00
|
|
|
rtclk[MC_MIN] = dectohexdec(n % 60);
|
|
|
|
rtclk[MC_HOUR] = dectohexdec(n / 60);
|
1993-08-03 16:33:17 +04:00
|
|
|
|
|
|
|
n = (time.tv_sec - diff) / (3600 * 24); /* days */
|
1995-05-04 23:39:08 +04:00
|
|
|
rtclk[MC_DOW] = (n + 4) % 7; /* 1/1/70 is Thursday */
|
1993-08-03 16:33:17 +04:00
|
|
|
|
|
|
|
for (j = 1970, i = yeartoday(j); n >= i; j++, i = yeartoday(j))
|
|
|
|
n -= i;
|
|
|
|
|
1995-05-04 23:39:08 +04:00
|
|
|
rtclk[MC_YEAR] = dectohexdec(j - 1900);
|
1993-08-03 16:33:17 +04:00
|
|
|
|
|
|
|
if (i == 366)
|
|
|
|
month[1] = 29;
|
|
|
|
for (i = 0; n >= month[i]; i++)
|
|
|
|
n -= month[i];
|
|
|
|
month[1] = 28;
|
1995-05-04 23:39:08 +04:00
|
|
|
rtclk[MC_MONTH] = dectohexdec(++i);
|
1993-08-03 16:33:17 +04:00
|
|
|
|
1995-05-04 23:39:08 +04:00
|
|
|
rtclk[MC_DOM] = dectohexdec(++n);
|
1993-08-03 16:33:17 +04:00
|
|
|
|
1994-03-29 08:35:37 +04:00
|
|
|
s = splclock();
|
1993-08-03 16:33:17 +04:00
|
|
|
rtcput(&rtclk);
|
1994-03-29 08:35:37 +04:00
|
|
|
splx(s);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1994-05-05 09:35:42 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
setstatclockrate(arg)
|
|
|
|
int arg;
|
|
|
|
{
|
|
|
|
}
|