Home | History | Annotate | Line # | Download | only in kern
kern_todr.c revision 1.27.10.2
      1  1.27.10.2     yamt /*	$NetBSD: kern_todr.c,v 1.27.10.2 2010/03/11 15:04:18 yamt Exp $	*/
      2        1.1  gdamore 
      3        1.1  gdamore /*
      4        1.1  gdamore  * Copyright (c) 1992, 1993
      5        1.1  gdamore  *	The Regents of the University of California.  All rights reserved.
      6        1.1  gdamore  *
      7        1.1  gdamore  * This code is derived from software contributed to Berkeley by
      8        1.1  gdamore  * the Systems Programming Group of the University of Utah Computer
      9        1.1  gdamore  * Science Department and Ralph Campbell.
     10        1.1  gdamore  *
     11        1.1  gdamore  * Redistribution and use in source and binary forms, with or without
     12        1.1  gdamore  * modification, are permitted provided that the following conditions
     13        1.1  gdamore  * are met:
     14        1.1  gdamore  * 1. Redistributions of source code must retain the above copyright
     15        1.1  gdamore  *    notice, this list of conditions and the following disclaimer.
     16        1.1  gdamore  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.1  gdamore  *    notice, this list of conditions and the following disclaimer in the
     18        1.1  gdamore  *    documentation and/or other materials provided with the distribution.
     19        1.1  gdamore  * 3. Neither the name of the University nor the names of its contributors
     20        1.1  gdamore  *    may be used to endorse or promote products derived from this software
     21        1.1  gdamore  *    without specific prior written permission.
     22        1.1  gdamore  *
     23        1.1  gdamore  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24        1.1  gdamore  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25        1.1  gdamore  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26        1.1  gdamore  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27        1.1  gdamore  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28        1.1  gdamore  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29        1.1  gdamore  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30        1.1  gdamore  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31        1.1  gdamore  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32        1.1  gdamore  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33        1.1  gdamore  * SUCH DAMAGE.
     34        1.1  gdamore  *
     35        1.1  gdamore  * from: Utah Hdr: clock.c 1.18 91/01/21
     36        1.1  gdamore  *
     37        1.1  gdamore  *	@(#)clock.c	8.1 (Berkeley) 6/10/93
     38        1.1  gdamore  */
     39        1.1  gdamore /*
     40        1.1  gdamore  * Copyright (c) 1988 University of Utah.
     41        1.1  gdamore  *
     42        1.1  gdamore  * This code is derived from software contributed to Berkeley by
     43        1.1  gdamore  * the Systems Programming Group of the University of Utah Computer
     44        1.1  gdamore  * Science Department and Ralph Campbell.
     45        1.1  gdamore  *
     46        1.1  gdamore  * Redistribution and use in source and binary forms, with or without
     47        1.1  gdamore  * modification, are permitted provided that the following conditions
     48        1.1  gdamore  * are met:
     49        1.1  gdamore  * 1. Redistributions of source code must retain the above copyright
     50        1.1  gdamore  *    notice, this list of conditions and the following disclaimer.
     51        1.1  gdamore  * 2. Redistributions in binary form must reproduce the above copyright
     52        1.1  gdamore  *    notice, this list of conditions and the following disclaimer in the
     53        1.1  gdamore  *    documentation and/or other materials provided with the distribution.
     54        1.1  gdamore  * 3. All advertising materials mentioning features or use of this software
     55        1.1  gdamore  *    must display the following acknowledgement:
     56        1.1  gdamore  *	This product includes software developed by the University of
     57        1.1  gdamore  *	California, Berkeley and its contributors.
     58        1.1  gdamore  * 4. Neither the name of the University nor the names of its contributors
     59        1.1  gdamore  *    may be used to endorse or promote products derived from this software
     60        1.1  gdamore  *    without specific prior written permission.
     61        1.1  gdamore  *
     62        1.1  gdamore  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     63        1.1  gdamore  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     64        1.1  gdamore  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     65        1.1  gdamore  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     66        1.1  gdamore  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     67        1.1  gdamore  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     68        1.1  gdamore  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     69        1.1  gdamore  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     70        1.1  gdamore  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     71        1.1  gdamore  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     72        1.1  gdamore  * SUCH DAMAGE.
     73        1.1  gdamore  *
     74        1.1  gdamore  * from: Utah Hdr: clock.c 1.18 91/01/21
     75        1.1  gdamore  *
     76        1.1  gdamore  *	@(#)clock.c	8.1 (Berkeley) 6/10/93
     77        1.1  gdamore  */
     78        1.1  gdamore #include <sys/cdefs.h>
     79  1.27.10.2     yamt __KERNEL_RCSID(0, "$NetBSD: kern_todr.c,v 1.27.10.2 2010/03/11 15:04:18 yamt Exp $");
     80        1.1  gdamore 
     81        1.1  gdamore #include <sys/param.h>
     82        1.1  gdamore #include <sys/kernel.h>
     83        1.1  gdamore #include <sys/systm.h>
     84        1.1  gdamore #include <sys/device.h>
     85        1.1  gdamore #include <sys/timetc.h>
     86       1.25       ad #include <sys/intr.h>
     87       1.25       ad 
     88        1.1  gdamore #include <dev/clock_subr.h>	/* hmm.. this should probably move to sys */
     89        1.1  gdamore 
     90        1.1  gdamore static todr_chip_handle_t todr_handle = NULL;
     91        1.1  gdamore 
     92        1.1  gdamore /*
     93        1.1  gdamore  * Attach the clock device to todr_handle.
     94        1.1  gdamore  */
     95        1.1  gdamore void
     96        1.1  gdamore todr_attach(todr_chip_handle_t todr)
     97        1.1  gdamore {
     98        1.1  gdamore 
     99       1.24    peter 	if (todr_handle) {
    100       1.24    peter 		printf("todr_attach: TOD already configured\n");
    101        1.1  gdamore 		return;
    102        1.1  gdamore 	}
    103       1.24    peter 	todr_handle = todr;
    104        1.1  gdamore }
    105        1.1  gdamore 
    106  1.27.10.2     yamt static bool timeset = false;
    107        1.2  gdamore 
    108        1.1  gdamore /*
    109        1.1  gdamore  * Set up the system's time, given a `reasonable' time value.
    110        1.1  gdamore  */
    111        1.1  gdamore void
    112        1.1  gdamore inittodr(time_t base)
    113        1.1  gdamore {
    114  1.27.10.2     yamt 	bool badbase = false;
    115  1.27.10.2     yamt 	bool waszero = (base == 0);
    116  1.27.10.2     yamt 	bool goodtime = false;
    117  1.27.10.2     yamt 	bool badrtc = false;
    118       1.12  gdamore 	int s;
    119        1.1  gdamore 	struct timespec ts;
    120        1.2  gdamore 	struct timeval tv;
    121        1.1  gdamore 
    122        1.1  gdamore 	if (base < 5 * SECYR) {
    123        1.4  gdamore 		struct clock_ymdhms basedate;
    124        1.4  gdamore 
    125        1.1  gdamore 		/*
    126        1.1  gdamore 		 * If base is 0, assume filesystem time is just unknown
    127        1.2  gdamore 		 * instead of preposterous. Don't bark.
    128        1.1  gdamore 		 */
    129        1.1  gdamore 		if (base != 0)
    130        1.1  gdamore 			printf("WARNING: preposterous time in file system\n");
    131        1.1  gdamore 		/* not going to use it anyway, if the chip is readable */
    132  1.27.10.2     yamt 		basedate.dt_year = 2010;
    133        1.4  gdamore 		basedate.dt_mon = 1;
    134        1.4  gdamore 		basedate.dt_day = 1;
    135        1.4  gdamore 		basedate.dt_hour = 12;
    136        1.4  gdamore 		basedate.dt_min = 0;
    137        1.4  gdamore 		basedate.dt_sec = 0;
    138        1.4  gdamore 		base = clock_ymdhms_to_secs(&basedate);
    139  1.27.10.2     yamt 		badbase = true;
    140        1.1  gdamore 	}
    141        1.1  gdamore 
    142        1.5     matt 	/*
    143        1.5     matt 	 * Some ports need to be supplied base in order to fabricate a time_t.
    144        1.5     matt 	 */
    145       1.22  gdamore 	if (todr_handle)
    146       1.22  gdamore 		todr_handle->base_time = base;
    147        1.5     matt 
    148        1.1  gdamore 	if ((todr_handle == NULL) ||
    149        1.2  gdamore 	    (todr_gettime(todr_handle, &tv) != 0) ||
    150       1.17  gdamore 	    (tv.tv_sec < (25 * SECYR))) {
    151        1.1  gdamore 
    152       1.24    peter 		if (todr_handle != NULL)
    153        1.2  gdamore 			printf("WARNING: preposterous TOD clock time\n");
    154        1.1  gdamore 		else
    155        1.2  gdamore 			printf("WARNING: no TOD clock present\n");
    156  1.27.10.2     yamt 		badrtc = true;
    157        1.1  gdamore 	} else {
    158  1.27.10.2     yamt 		time_t deltat = tv.tv_sec - base;
    159        1.1  gdamore 
    160        1.1  gdamore 		if (deltat < 0)
    161        1.1  gdamore 			deltat = -deltat;
    162        1.2  gdamore 
    163  1.27.10.2     yamt 		if (!badbase && deltat >= 2 * SECDAY) {
    164        1.2  gdamore 
    165        1.2  gdamore 			if (tv.tv_sec < base) {
    166        1.2  gdamore 				/*
    167        1.2  gdamore 				 * The clock should never go backwards
    168        1.2  gdamore 				 * relative to filesystem time.  If it
    169        1.2  gdamore 				 * does by more than the threshold,
    170        1.2  gdamore 				 * believe the filesystem.
    171        1.2  gdamore 				 */
    172  1.27.10.2     yamt 				printf("WARNING: clock lost %" PRId64 " days\n",
    173        1.2  gdamore 				    deltat / SECDAY);
    174  1.27.10.2     yamt 				badrtc = true;
    175       1.24    peter 			} else {
    176  1.27.10.2     yamt 				aprint_verbose("WARNING: clock gained %" PRId64
    177  1.27.10.2     yamt 				    " days\n", deltat / SECDAY);
    178  1.27.10.2     yamt 				goodtime = true;
    179        1.2  gdamore 			}
    180        1.2  gdamore 		} else {
    181  1.27.10.2     yamt 			goodtime = true;
    182        1.2  gdamore 		}
    183        1.2  gdamore 	}
    184        1.2  gdamore 
    185        1.2  gdamore 	/* if the rtc time is bad, use the filesystem time */
    186        1.2  gdamore 	if (badrtc) {
    187        1.2  gdamore 		if (badbase) {
    188        1.2  gdamore 			printf("WARNING: using default initial time\n");
    189        1.2  gdamore 		} else {
    190        1.2  gdamore 			printf("WARNING: using filesystem time\n");
    191        1.2  gdamore 		}
    192        1.2  gdamore 		tv.tv_sec = base;
    193        1.2  gdamore 		tv.tv_usec = 0;
    194        1.1  gdamore 	}
    195        1.2  gdamore 
    196  1.27.10.2     yamt 	timeset = true;
    197        1.2  gdamore 
    198        1.2  gdamore 	ts.tv_sec = tv.tv_sec;
    199        1.2  gdamore 	ts.tv_nsec = tv.tv_usec * 1000;
    200       1.26     yamt 	s = splclock();
    201        1.2  gdamore 	tc_setclock(&ts);
    202       1.12  gdamore 	splx(s);
    203        1.2  gdamore 
    204        1.2  gdamore 	if (waszero || goodtime)
    205        1.2  gdamore 		return;
    206        1.2  gdamore 
    207        1.2  gdamore 	printf("WARNING: CHECK AND RESET THE DATE!\n");
    208        1.1  gdamore }
    209        1.1  gdamore 
    210        1.1  gdamore /*
    211        1.1  gdamore  * Reset the TODR based on the time value; used when the TODR
    212        1.1  gdamore  * has a preposterous value and also when the time is reset
    213        1.1  gdamore  * by the stime system call.  Also called when the TODR goes past
    214        1.1  gdamore  * TODRZERO + 100*(SECYEAR+2*SECDAY) (e.g. on Jan 2 just after midnight)
    215        1.1  gdamore  * to wrap the TODR around.
    216        1.1  gdamore  */
    217        1.1  gdamore void
    218        1.1  gdamore resettodr(void)
    219        1.1  gdamore {
    220       1.26     yamt 	struct timeval tv;
    221        1.1  gdamore 
    222        1.2  gdamore 	/*
    223        1.2  gdamore 	 * We might have been called by boot() due to a crash early
    224        1.2  gdamore 	 * on.  Don't reset the clock chip if we don't know what time
    225        1.2  gdamore 	 * it is.
    226        1.2  gdamore 	 */
    227        1.2  gdamore 	if (!timeset)
    228        1.2  gdamore 		return;
    229        1.2  gdamore 
    230       1.26     yamt 	getmicrotime(&tv);
    231        1.1  gdamore 
    232       1.26     yamt 	if (tv.tv_sec == 0)
    233        1.1  gdamore 		return;
    234        1.1  gdamore 
    235        1.1  gdamore 	if (todr_handle)
    236       1.26     yamt 		if (todr_settime(todr_handle, &tv) != 0)
    237        1.1  gdamore 			printf("Cannot set TOD clock time\n");
    238        1.1  gdamore }
    239        1.1  gdamore 
    240       1.18  gdamore #ifdef	TODR_DEBUG
    241       1.18  gdamore static void
    242       1.18  gdamore todr_debug(const char *prefix, int rv, struct clock_ymdhms *dt,
    243  1.27.10.2     yamt     struct timeval *tvp)
    244       1.18  gdamore {
    245       1.18  gdamore 	struct timeval tv_val;
    246       1.18  gdamore 	struct clock_ymdhms dt_val;
    247       1.18  gdamore 
    248       1.18  gdamore 	if (dt == NULL) {
    249       1.18  gdamore 		clock_secs_to_ymdhms(tvp->tv_sec, &dt_val);
    250       1.18  gdamore 		dt = &dt_val;
    251       1.18  gdamore 	}
    252       1.18  gdamore 	if (tvp == NULL) {
    253       1.18  gdamore 		tvp = &tv_val;
    254       1.18  gdamore 		tvp->tv_sec = clock_ymdhms_to_secs(dt);
    255       1.18  gdamore 		tvp->tv_usec = 0;
    256       1.18  gdamore 	}
    257       1.18  gdamore 	printf("%s: rv = %d\n", prefix, rv);
    258       1.18  gdamore 	printf("%s: rtc_offset = %d\n", prefix, rtc_offset);
    259       1.23  tsutsui 	printf("%s: %4u/%02u/%02u %02u:%02u:%02u, (wday %d) (epoch %u.%06u)\n",
    260       1.18  gdamore 	    prefix,
    261       1.18  gdamore 	    dt->dt_year, dt->dt_mon, dt->dt_day,
    262       1.18  gdamore 	    dt->dt_hour, dt->dt_min, dt->dt_sec,
    263       1.18  gdamore 	    dt->dt_wday, (unsigned)tvp->tv_sec, (unsigned)tvp->tv_usec);
    264       1.18  gdamore }
    265       1.18  gdamore #else	/* !TODR_DEBUG */
    266       1.18  gdamore #define	todr_debug(prefix, rv, dt, tvp)
    267       1.18  gdamore #endif	/* TODR_DEBUG */
    268       1.18  gdamore 
    269        1.6  gdamore 
    270        1.6  gdamore int
    271  1.27.10.2     yamt todr_gettime(todr_chip_handle_t tch, struct timeval *tvp)
    272        1.6  gdamore {
    273        1.6  gdamore 	struct clock_ymdhms	dt;
    274        1.6  gdamore 	int			rv;
    275        1.6  gdamore 
    276       1.17  gdamore 	if (tch->todr_gettime) {
    277       1.17  gdamore 		rv = tch->todr_gettime(tch, tvp);
    278       1.20  gdamore 		/*
    279       1.20  gdamore 		 * Some unconverted ports have their own references to
    280       1.20  gdamore 		 * rtc_offset.   A converted port must not do that.
    281       1.20  gdamore 		 */
    282       1.20  gdamore 		if (rv == 0)
    283       1.20  gdamore 			tvp->tv_sec += rtc_offset * 60;
    284       1.23  tsutsui 		todr_debug("TODR-GET-SECS", rv, NULL, tvp);
    285       1.17  gdamore 		return rv;
    286       1.17  gdamore 	} else if (tch->todr_gettime_ymdhms) {
    287       1.17  gdamore 		rv = tch->todr_gettime_ymdhms(tch, &dt);
    288       1.23  tsutsui 		todr_debug("TODR-GET-YMDHMS", rv, &dt, NULL);
    289       1.17  gdamore 		if (rv)
    290        1.6  gdamore 			return rv;
    291       1.10  gdamore 
    292        1.6  gdamore 		/*
    293       1.19  gdamore 		 * Simple sanity checks.  Note that this includes a
    294       1.19  gdamore 		 * value for clocks that can return a leap second.
    295       1.19  gdamore 		 * Note that we don't support double leap seconds,
    296       1.19  gdamore 		 * since this was apparently an error/misunderstanding
    297       1.19  gdamore 		 * on the part of the ISO C committee, and can never
    298       1.19  gdamore 		 * actually occur.  If your clock issues us a double
    299       1.19  gdamore 		 * leap second, it must be broken.  Ultimately, you'd
    300       1.19  gdamore 		 * have to be trying to read time at precisely that
    301       1.19  gdamore 		 * instant to even notice, so even broken clocks will
    302       1.19  gdamore 		 * work the vast majority of the time.  In such a case
    303       1.21  gdamore 		 * it is recommended correction be applied in the
    304       1.21  gdamore 		 * clock driver.
    305       1.19  gdamore 		 */
    306       1.13  tsutsui 		if (dt.dt_mon < 1 || dt.dt_mon > 12 ||
    307       1.13  tsutsui 		    dt.dt_day < 1 || dt.dt_day > 31 ||
    308       1.19  gdamore 		    dt.dt_hour > 23 || dt.dt_min > 59 || dt.dt_sec > 60) {
    309       1.17  gdamore 			return EINVAL;
    310       1.17  gdamore 		}
    311        1.6  gdamore 		tvp->tv_sec = clock_ymdhms_to_secs(&dt) + rtc_offset * 60;
    312        1.6  gdamore 		tvp->tv_usec = 0;
    313       1.17  gdamore 		return tvp->tv_sec < 0 ? EINVAL : 0;
    314        1.6  gdamore 	}
    315        1.6  gdamore 
    316       1.17  gdamore 	return ENXIO;
    317        1.6  gdamore }
    318        1.6  gdamore 
    319        1.6  gdamore int
    320  1.27.10.2     yamt todr_settime(todr_chip_handle_t tch, struct timeval *tvp)
    321        1.6  gdamore {
    322        1.6  gdamore 	struct clock_ymdhms	dt;
    323       1.17  gdamore 	int			rv;
    324        1.6  gdamore 
    325       1.17  gdamore 	if (tch->todr_settime) {
    326       1.20  gdamore 		/* See comments above in gettime why this is ifdef'd */
    327       1.20  gdamore 		struct timeval	copy = *tvp;
    328       1.20  gdamore 		copy.tv_sec -= rtc_offset * 60;
    329       1.20  gdamore 		rv = tch->todr_settime(tch, &copy);
    330       1.17  gdamore 		todr_debug("TODR-SET-SECS", rv, NULL, tvp);
    331       1.17  gdamore 		return rv;
    332       1.17  gdamore 	} else if (tch->todr_settime_ymdhms) {
    333       1.10  gdamore 		time_t	sec = tvp->tv_sec - rtc_offset * 60;
    334       1.10  gdamore 		if (tvp->tv_usec >= 500000)
    335       1.10  gdamore 			sec++;
    336       1.10  gdamore 		clock_secs_to_ymdhms(sec, &dt);
    337       1.17  gdamore 		rv = tch->todr_settime_ymdhms(tch, &dt);
    338       1.17  gdamore 		todr_debug("TODR-SET-YMDHMS", rv, &dt, NULL);
    339       1.17  gdamore 		return rv;
    340       1.17  gdamore 	} else {
    341       1.17  gdamore 		return ENXIO;
    342        1.6  gdamore 	}
    343        1.6  gdamore }
    344