Home | History | Annotate | Line # | Download | only in dev
dpclock.c revision 1.5
      1  1.5  christos /*	$NetBSD: dpclock.c,v 1.5 2014/11/20 16:34:26 christos Exp $	*/
      2  1.1    rumble 
      3  1.1    rumble /*
      4  1.1    rumble  * Copyright (c) 2001 Erik Reid
      5  1.1    rumble  * Copyright (c) 2001 Rafal K. Boni
      6  1.1    rumble  * Copyright (c) 2001 Christopher Sekiya
      7  1.1    rumble  * Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
      8  1.1    rumble  * All rights reserved.
      9  1.1    rumble  *
     10  1.1    rumble  * Portions of this code are derived from software contributed to The
     11  1.1    rumble  * NetBSD Foundation by Jason R. Thorpe of the Numerical Aerospace
     12  1.1    rumble  * Simulation Facility, NASA Ames Research Center.
     13  1.1    rumble  *
     14  1.1    rumble  * Redistribution and use in source and binary forms, with or without
     15  1.1    rumble  * modification, are permitted provided that the following conditions
     16  1.1    rumble  * are met:
     17  1.1    rumble  * 1. Redistributions of source code must retain the above copyright
     18  1.1    rumble  *    notice, this list of conditions and the following disclaimer.
     19  1.1    rumble  * 2. Redistributions in binary form must reproduce the above copyright
     20  1.1    rumble  *    notice, this list of conditions and the following disclaimer in the
     21  1.1    rumble  *    documentation and/or other materials provided with the distribution.
     22  1.1    rumble  * 3. The name of the author may not be used to endorse or promote products
     23  1.1    rumble  *    derived from this software without specific prior written permission.
     24  1.1    rumble  *
     25  1.1    rumble  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     26  1.1    rumble  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     27  1.1    rumble  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     28  1.1    rumble  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     29  1.1    rumble  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     30  1.1    rumble  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     31  1.1    rumble  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     32  1.1    rumble  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     33  1.1    rumble  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     34  1.1    rumble  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     35  1.1    rumble  */
     36  1.1    rumble 
     37  1.1    rumble #include <sys/param.h>
     38  1.1    rumble #include <sys/kernel.h>
     39  1.1    rumble #include <sys/systm.h>
     40  1.1    rumble #include <sys/device.h>
     41  1.1    rumble 
     42  1.3    dyoung #include <sys/bus.h>
     43  1.1    rumble #include <machine/autoconf.h>
     44  1.1    rumble #include <machine/sysconf.h>
     45  1.1    rumble #include <machine/machtype.h>
     46  1.1    rumble 
     47  1.1    rumble #include <dev/clock_subr.h>
     48  1.1    rumble #include <sgimips/dev/dp8573areg.h>
     49  1.1    rumble 
     50  1.1    rumble #include <sgimips/sgimips/clockvar.h>
     51  1.1    rumble 
     52  1.1    rumble struct dpclock_softc {
     53  1.1    rumble 	struct todr_chip_handle sc_todrch;
     54  1.1    rumble 
     55  1.1    rumble 	/* RTC registers */
     56  1.1    rumble 	bus_space_tag_t		sc_rtct;
     57  1.1    rumble 	bus_space_handle_t	sc_rtch;
     58  1.1    rumble };
     59  1.1    rumble 
     60  1.4       chs static int	dpclock_match(device_t, cfdata_t, void *);
     61  1.4       chs static void	dpclock_attach(device_t, device_t, void *);
     62  1.2   tsutsui static int	dpclock_gettime(struct todr_chip_handle *, struct timeval *);
     63  1.2   tsutsui static int	dpclock_settime(struct todr_chip_handle *, struct timeval *);
     64  1.1    rumble 
     65  1.4       chs CFATTACH_DECL_NEW(dpclock, sizeof(struct dpclock_softc),
     66  1.1    rumble     dpclock_match, dpclock_attach, NULL, NULL);
     67  1.1    rumble 
     68  1.1    rumble static int
     69  1.4       chs dpclock_match(device_t parent, cfdata_t cf, void *aux)
     70  1.1    rumble {
     71  1.1    rumble 	struct mainbus_attach_args *ma = aux;
     72  1.1    rumble 
     73  1.1    rumble 	switch (mach_type) {
     74  1.1    rumble 	case MACH_SGI_IP6 | MACH_SGI_IP10:
     75  1.1    rumble 		if (ma->ma_addr == 0x1fbc0000)
     76  1.1    rumble 			return (1);
     77  1.1    rumble 		break;
     78  1.1    rumble 
     79  1.1    rumble 	case MACH_SGI_IP12:
     80  1.1    rumble 	case MACH_SGI_IP20:
     81  1.1    rumble 		if (ma->ma_addr == 0x1fb80e00)
     82  1.1    rumble 			return (1);
     83  1.1    rumble 		break;
     84  1.1    rumble 	}
     85  1.1    rumble 
     86  1.1    rumble 	return (0);
     87  1.1    rumble }
     88  1.1    rumble 
     89  1.1    rumble static void
     90  1.4       chs dpclock_attach(device_t parent, device_t self, void *aux)
     91  1.1    rumble {
     92  1.4       chs 	struct dpclock_softc *sc = device_private(self);
     93  1.1    rumble 	struct mainbus_attach_args *ma = aux;
     94  1.1    rumble 	int err;
     95  1.1    rumble 
     96  1.1    rumble 	printf("\n");
     97  1.1    rumble 
     98  1.1    rumble 	/*
     99  1.1    rumble 	 * All machines have one byte register per word. IP6/IP10 use
    100  1.1    rumble 	 * the MSB, others the LSB.
    101  1.1    rumble 	 */
    102  1.1    rumble 	if (mach_type == MACH_SGI_IP12 || mach_type == MACH_SGI_IP20)
    103  1.1    rumble 		sc->sc_rtct = SGIMIPS_BUS_SPACE_HPC;
    104  1.1    rumble 	else
    105  1.1    rumble 		sc->sc_rtct = SGIMIPS_BUS_SPACE_IP6_DPCLOCK;
    106  1.1    rumble 
    107  1.1    rumble 	if ((err = bus_space_map(sc->sc_rtct, ma->ma_addr, 0x1ffff,
    108  1.1    rumble 	    BUS_SPACE_MAP_LINEAR, &sc->sc_rtch)) != 0) {
    109  1.1    rumble 		printf(": unable to map RTC registers, error = %d\n", err);
    110  1.1    rumble 		return;
    111  1.1    rumble 	}
    112  1.1    rumble 
    113  1.1    rumble 	sc->sc_todrch.cookie = sc;
    114  1.1    rumble 	sc->sc_todrch.todr_gettime = dpclock_gettime;
    115  1.1    rumble 	sc->sc_todrch.todr_settime = dpclock_settime;
    116  1.1    rumble 	sc->sc_todrch.todr_setwen = NULL;
    117  1.1    rumble 
    118  1.1    rumble 	todr_attach(&sc->sc_todrch);
    119  1.1    rumble }
    120  1.1    rumble 
    121  1.1    rumble /*
    122  1.1    rumble  * Get the time of day, based on the clock's value and/or the base value.
    123  1.1    rumble  */
    124  1.1    rumble static int
    125  1.2   tsutsui dpclock_gettime(struct todr_chip_handle *todrch, struct timeval *tv)
    126  1.1    rumble {
    127  1.1    rumble 	struct dpclock_softc *sc = (struct dpclock_softc *)todrch->cookie;
    128  1.1    rumble 	struct clock_ymdhms dt;
    129  1.1    rumble 	int s;
    130  1.1    rumble 	u_int8_t i, j;
    131  1.1    rumble 	u_int8_t regs[32];
    132  1.1    rumble 
    133  1.1    rumble 	s = splhigh();
    134  1.1    rumble 	i = bus_space_read_1(sc->sc_rtct, sc->sc_rtch, DP8573A_TIMESAVE_CTL);
    135  1.1    rumble 	j = i | DP8573A_TIMESAVE_CTL_EN;
    136  1.1    rumble 	bus_space_write_1(sc->sc_rtct, sc->sc_rtch, DP8573A_TIMESAVE_CTL, j);
    137  1.1    rumble 	bus_space_write_1(sc->sc_rtct, sc->sc_rtch, DP8573A_TIMESAVE_CTL, i);
    138  1.1    rumble 	splx(s);
    139  1.1    rumble 
    140  1.1    rumble 	for (i = 0; i < 32; i++)
    141  1.1    rumble 		regs[i] = bus_space_read_1(sc->sc_rtct, sc->sc_rtch, i);
    142  1.1    rumble 
    143  1.5  christos 	dt.dt_sec = bcdtobin(regs[DP8573A_SAVE_SEC]);
    144  1.5  christos 	dt.dt_min = bcdtobin(regs[DP8573A_SAVE_MIN]);
    145  1.1    rumble 
    146  1.1    rumble 	if (regs[DP8573A_RT_MODE] & DP8573A_RT_MODE_1224) {
    147  1.5  christos 		dt.dt_hour = bcdtobin(regs[DP8573A_SAVE_HOUR] &
    148  1.1    rumble 						DP8573A_HOUR_12HR_MASK) +
    149  1.1    rumble 		    ((regs[DP8573A_SAVE_HOUR] & DP8573A_RT_MODE_1224) ? 0 : 12);
    150  1.1    rumble 
    151  1.1    rumble 		/*
    152  1.1    rumble 		 * In AM/PM mode, hour range is 01-12, so adding in 12 hours
    153  1.1    rumble 		 * for PM gives us 01-24, whereas we want 00-23, so map hour
    154  1.1    rumble 		 * 24 to hour 0.
    155  1.1    rumble 		 */
    156  1.1    rumble 
    157  1.1    rumble 		if (dt.dt_hour == 24)
    158  1.1    rumble 			dt.dt_hour = 0;
    159  1.1    rumble 	} else {
    160  1.5  christos 		dt.dt_hour = bcdtobin(regs[DP8573A_SAVE_HOUR] &
    161  1.1    rumble 							DP8573A_HOUR_24HR_MASK);
    162  1.1    rumble 	}
    163  1.1    rumble 
    164  1.5  christos 	dt.dt_wday = bcdtobin(regs[DP8573A_DOW]);    /* Not from time saved */
    165  1.5  christos 	dt.dt_day = bcdtobin(regs[DP8573A_SAVE_DOM]);
    166  1.5  christos 	dt.dt_mon = bcdtobin(regs[DP8573A_SAVE_MONTH]);
    167  1.5  christos 	dt.dt_year = FROM_IRIX_YEAR(bcdtobin(regs[DP8573A_YEAR]));
    168  1.1    rumble 
    169  1.1    rumble 	/* simple sanity checks */
    170  1.1    rumble 	if (dt.dt_mon > 12 || dt.dt_day > 31 ||
    171  1.1    rumble 	    dt.dt_hour >= 24 || dt.dt_min >= 60 || dt.dt_sec >= 60)
    172  1.1    rumble 		return (EIO);
    173  1.1    rumble 
    174  1.1    rumble 	tv->tv_sec = (long)clock_ymdhms_to_secs(&dt);
    175  1.1    rumble 	if (tv->tv_sec == -1)
    176  1.1    rumble 		return (ERANGE);
    177  1.1    rumble 	tv->tv_usec = 0;
    178  1.1    rumble 
    179  1.1    rumble 	return (0);
    180  1.1    rumble }
    181  1.1    rumble 
    182  1.1    rumble /*
    183  1.1    rumble  * Reset the TODR based on the time value.
    184  1.1    rumble  */
    185  1.1    rumble static int
    186  1.2   tsutsui dpclock_settime(struct todr_chip_handle *todrch, struct timeval *tv)
    187  1.1    rumble {
    188  1.1    rumble 	struct dpclock_softc *sc = (struct dpclock_softc *)todrch->cookie;
    189  1.1    rumble 	struct clock_ymdhms dt;
    190  1.1    rumble 	int s;
    191  1.1    rumble 	u_int8_t i, j;
    192  1.1    rumble 	u_int8_t regs[32];
    193  1.1    rumble 
    194  1.1    rumble 	clock_secs_to_ymdhms((time_t)(tv->tv_sec + (tv->tv_usec > 500000)),&dt);
    195  1.1    rumble 
    196  1.1    rumble 	s = splhigh();
    197  1.1    rumble 	i = bus_space_read_1(sc->sc_rtct, sc->sc_rtch, DP8573A_TIMESAVE_CTL);
    198  1.1    rumble 	j = i | DP8573A_TIMESAVE_CTL_EN;
    199  1.1    rumble 	bus_space_write_1(sc->sc_rtct, sc->sc_rtch, DP8573A_TIMESAVE_CTL, j);
    200  1.1    rumble 	bus_space_write_1(sc->sc_rtct, sc->sc_rtch, DP8573A_TIMESAVE_CTL, i);
    201  1.1    rumble 	splx(s);
    202  1.1    rumble 
    203  1.1    rumble 	for (i = 0; i < 32; i++)
    204  1.1    rumble 		regs[i] = bus_space_read_1(sc->sc_rtct, sc->sc_rtch, i);
    205  1.1    rumble 
    206  1.1    rumble 	regs[DP8573A_SUBSECOND] = 0;
    207  1.5  christos 	regs[DP8573A_SECOND] = bintobcd(dt.dt_sec);
    208  1.5  christos 	regs[DP8573A_MINUTE] = bintobcd(dt.dt_min);
    209  1.5  christos 	regs[DP8573A_HOUR] = bintobcd(dt.dt_hour) & DP8573A_HOUR_24HR_MASK;
    210  1.5  christos 	regs[DP8573A_DOW] = bintobcd(dt.dt_wday);
    211  1.5  christos 	regs[DP8573A_DOM] = bintobcd(dt.dt_day);
    212  1.5  christos 	regs[DP8573A_MONTH] = bintobcd(dt.dt_mon);
    213  1.5  christos 	regs[DP8573A_YEAR] = bintobcd(TO_IRIX_YEAR(dt.dt_year));
    214  1.1    rumble 
    215  1.1    rumble 	s = splhigh();
    216  1.1    rumble 	i = bus_space_read_1(sc->sc_rtct, sc->sc_rtch, DP8573A_RT_MODE);
    217  1.1    rumble 	j = i & ~DP8573A_RT_MODE_CLKSS;
    218  1.1    rumble 	bus_space_write_1(sc->sc_rtct, sc->sc_rtch, DP8573A_RT_MODE, j);
    219  1.1    rumble 
    220  1.1    rumble 	for (i = 0; i < 10; i++)
    221  1.1    rumble 		bus_space_write_1(sc->sc_rtct, sc->sc_rtch, DP8573A_COUNTERS +i,
    222  1.1    rumble 						    regs[DP8573A_COUNTERS + i]);
    223  1.1    rumble 
    224  1.1    rumble 	bus_space_write_1(sc->sc_rtct, sc->sc_rtch, DP8573A_RT_MODE, i);
    225  1.1    rumble 	splx(s);
    226  1.1    rumble 
    227  1.1    rumble 	return (0);
    228  1.1    rumble }
    229