Home | History | Annotate | Line # | Download | only in dev
rtc.c revision 1.1
      1 /*	$NetBSD: rtc.c,v 1.1 2001/12/11 00:29:21 uwe Exp $ */
      2 
      3 /*
      4  * Copyright (c) 2001 Valeriy E. Ushakov
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. The name of the author may not be used to endorse or promote products
     16  *    derived from this software without specific prior written permission
     17  *
     18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28  */
     29 
     30 /*
     31  * `rtc' is a DS1287A (== MC146818A) time-of-day clock at EBus.
     32  * In Krups it's not used to store idprom so this driver doesn't
     33  * support it.  Don't know about other ms-IIep systems.
     34  */
     35 
     36 #include <sys/param.h>
     37 #include <sys/kernel.h>
     38 #include <sys/device.h>
     39 #include <sys/malloc.h>
     40 #include <sys/systm.h>
     41 #ifdef GPROF
     42 #include <sys/gmon.h>
     43 #endif
     44 
     45 #include <machine/bus.h>
     46 #include <machine/autoconf.h>
     47 
     48 #include <dev/clock_subr.h>
     49 #include <dev/ic/mc146818reg.h>
     50 
     51 #include <sparc/dev/ebusreg.h>
     52 #include <sparc/dev/ebusvar.h>
     53 
     54 struct rtc_ebus_softc {
     55 	struct device		sc_dev;
     56 
     57 	bus_space_tag_t		sc_bt;	/* parent bus tag */
     58 	bus_space_handle_t	sc_bh;	/* handle for registers */
     59 };
     60 
     61 static int	rtcmatch_ebus(struct device *, struct cfdata *, void *);
     62 static void	rtcattach_ebus(struct device *, struct device *, void *);
     63 
     64 struct cfattach rtc_ebus_ca = {
     65 	sizeof(struct rtc_ebus_softc), rtcmatch_ebus, rtcattach_ebus
     66 };
     67 
     68 
     69 /* XXX: global TOD clock handle (sparc/clock.c) */
     70 extern todr_chip_handle_t todr_handle;
     71 
     72 /* todr(9) methods */
     73 int rtc_gettime(todr_chip_handle_t, struct timeval *);
     74 int rtc_settime(todr_chip_handle_t, struct timeval *);
     75 int rtc_getcal(todr_chip_handle_t, int *);
     76 int rtc_setcal(todr_chip_handle_t, int);
     77 
     78 int rtc_auto_century_adjust = 1; /* XXX: do we ever want not to? */
     79 
     80 
     81 /*
     82  * MD read/write functions declared in mc146818reg.h
     83  */
     84 #define	RTC_ADDR	0
     85 #define	RTC_DATA	1
     86 
     87 u_int
     88 mc146818_read(cookie, reg)
     89 	void *cookie;
     90 	u_int reg;
     91 {
     92 	struct rtc_ebus_softc *sc = cookie;
     93 
     94 	bus_space_write_1(sc->sc_bt, sc->sc_bh, RTC_ADDR, reg);
     95 	return (bus_space_read_1(sc->sc_bt, sc->sc_bh, RTC_DATA));
     96 }
     97 
     98 void
     99 mc146818_write(cookie, reg, datum)
    100 	void *cookie;
    101 	u_int reg;
    102 	u_int datum;
    103 {
    104 	struct rtc_ebus_softc *sc = cookie;
    105 
    106 	bus_space_write_1(sc->sc_bt, sc->sc_bh, RTC_ADDR, reg);
    107 	bus_space_write_1(sc->sc_bt, sc->sc_bh, RTC_DATA, datum);
    108 }
    109 
    110 
    111 static int
    112 rtcmatch_ebus(parent, cf, aux)
    113 	struct device *parent;
    114 	struct cfdata *cf;
    115 	void *aux;
    116 {
    117 	struct ebus_attach_args *ea = aux;
    118 
    119 	return (strcmp(cf->cf_driver->cd_name, ea->ea_name) == 0);
    120 }
    121 
    122 static void
    123 rtcattach_ebus(parent, self, aux)
    124 	struct device *parent;
    125 	struct device *self;
    126 	void *aux;
    127 {
    128 	struct rtc_ebus_softc *sc = (void *)self;
    129 	struct ebus_attach_args *ea = aux;
    130 
    131 	todr_chip_handle_t handle;
    132 
    133 	sc->sc_bt = ea->ea_bustag;
    134 	if (ebus_bus_map(sc->sc_bt,
    135 			 BUS_ADDR(ea->ea_reg[0].bar, ea->ea_reg[0].offset),
    136 			 ea->ea_reg[0].size,
    137 			 BUS_SPACE_MAP_LINEAR, 0,
    138 			 &sc->sc_bh) != 0)
    139 	{
    140 		printf(": can't map registers\n", self->dv_xname);
    141 		return;
    142 	}
    143 
    144 	/* XXX: no "model" property in Krups */
    145 	printf(": time-of-day clock\n");
    146 
    147 	/*
    148 	 * Turn interrupts off (clear MC_REGB_?IE bits), just in case
    149 	 * (although they shouldn't be wired to an interrupt
    150 	 * controller on sparcs).
    151 	 */
    152 	mc146818_write(sc, MC_REGB, MC_REGB_BINARY | MC_REGB_24HR);
    153 
    154 	/* setup our todr_handle */
    155 	handle = malloc(ALIGN(sizeof(struct todr_chip_handle)),
    156 			M_DEVBUF, M_NOWAIT);
    157 
    158 	handle->cookie = sc;
    159 	handle->bus_cookie = NULL; /* unused */
    160 	handle->todr_gettime = rtc_gettime;
    161 	handle->todr_settime = rtc_settime;
    162 	handle->todr_getcal = rtc_getcal;
    163 	handle->todr_setcal = rtc_setcal;
    164 	handle->todr_setwen = NULL; /* not necessary, no idprom to protect */
    165 
    166 	todr_handle = handle;
    167 }
    168 
    169 
    170 /*
    171  * Get time-of-day and convert to a `struct timeval'
    172  * Return 0 on success; an error number otherwise.
    173  */
    174 int
    175 rtc_gettime(handle, tv)
    176 	todr_chip_handle_t handle;
    177 	struct timeval *tv;
    178 {
    179 	struct rtc_ebus_softc *sc = handle->cookie;
    180 	struct clock_ymdhms dt;
    181 	u_int year;
    182 
    183 	/* update in progress; spin loop */
    184 	while (mc146818_read(sc, MC_REGA) & MC_REGA_UIP)
    185 		continue;
    186 
    187 	/* stop updates (XXX: do we need that???) */
    188 	mc146818_write(sc, MC_REGB,
    189 		       (mc146818_read(sc, MC_REGB) | MC_REGB_SET));
    190 
    191 	/* read time */
    192 	dt.dt_sec  = mc146818_read(sc, MC_SEC);
    193 	dt.dt_min  = mc146818_read(sc, MC_MIN);
    194 	dt.dt_hour = mc146818_read(sc, MC_HOUR);
    195 	dt.dt_day  = mc146818_read(sc, MC_DOM);
    196 	dt.dt_mon  = mc146818_read(sc, MC_MONTH);
    197 	year       = mc146818_read(sc, MC_YEAR);
    198 
    199 	/* reenable updates */
    200 	mc146818_write(sc, MC_REGB,
    201 		       (mc146818_read(sc, MC_REGB) & ~MC_REGB_SET));
    202 
    203 	/* year in the century 0..99: adjust to AD */
    204 	year += 1900;
    205 	if (year < POSIX_BASE_YEAR && rtc_auto_century_adjust != 0)
    206 		year += 100;
    207 	dt.dt_year = year;
    208 
    209 	/* simple sanity checks */
    210 	if (dt.dt_mon > 12 || dt.dt_day > 31
    211 	    || dt.dt_hour >= 24 || dt.dt_min >= 60 || dt.dt_sec >= 60)
    212 		return (ERANGE);
    213 
    214 	tv->tv_sec = clock_ymdhms_to_secs(&dt);
    215 	tv->tv_usec = 0;
    216 	return (0);
    217 }
    218 
    219 /*
    220  * Set the time-of-day clock based on the value of the `struct timeval' arg.
    221  * Return 0 on success; an error number otherwise.
    222  */
    223 int
    224 rtc_settime(handle, tv)
    225 	todr_chip_handle_t handle;
    226 	struct timeval *tv;
    227 {
    228 	struct rtc_ebus_softc *sc = handle->cookie;
    229 	struct clock_ymdhms dt;
    230 	u_int year;
    231 	u_int wday;
    232 
    233 	clock_secs_to_ymdhms(tv->tv_sec, &dt);
    234 
    235 	year = dt.dt_year - 1900;
    236 	if (year >= 100 && rtc_auto_century_adjust != 0)
    237 		year -= 100;
    238 
    239 	wday = dt.dt_wday;
    240 	if (wday == 0)
    241 		wday = 7;
    242 
    243 	/* stop updates */
    244 	mc146818_write(sc, MC_REGB,
    245 		       (mc146818_read(sc, MC_REGB) | MC_REGB_SET));
    246 
    247 	mc146818_write(sc, MC_SEC,   dt.dt_sec);
    248 	mc146818_write(sc, MC_MIN,   dt.dt_min);
    249 	mc146818_write(sc, MC_HOUR,  dt.dt_hour);
    250 	mc146818_write(sc, MC_DOW,   wday);
    251 	mc146818_write(sc, MC_DOM,   dt.dt_day);
    252 	mc146818_write(sc, MC_MONTH, dt.dt_mon);
    253 	mc146818_write(sc, MC_YEAR,  year);
    254 
    255 	/* reenable updates */
    256 	mc146818_write(sc, MC_REGB,
    257 		       (mc146818_read(sc, MC_REGB) & ~MC_REGB_SET));
    258 	return (0);
    259 }
    260 
    261 
    262 /*
    263  * RTC does not support TOD clock calibration
    264  */
    265 
    266 /* ARGSUSED */
    267 int
    268 rtc_getcal(handle, vp)
    269 	todr_chip_handle_t handle;
    270 	int *vp;
    271 {
    272 	return (EOPNOTSUPP);
    273 }
    274 
    275 /* ARGSUSED */
    276 int
    277 rtc_setcal(handle, v)
    278 	todr_chip_handle_t handle;
    279 	int v;
    280 {
    281 	return (EOPNOTSUPP);
    282 }
    283