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