Home | History | Annotate | Line # | Download | only in mace
mcclock_mace.c revision 1.8.20.1
      1  1.8.20.1      yamt /*	$NetBSD: mcclock_mace.c,v 1.8.20.1 2009/05/04 08:11:50 yamt Exp $	*/
      2       1.1    sekiya 
      3       1.1    sekiya /*
      4       1.1    sekiya  * Copyright (c) 2001 Antti Kantee.  All Rights Reserved.
      5       1.1    sekiya  *
      6       1.1    sekiya  * Redistribution and use in source and binary forms, with or without
      7       1.1    sekiya  * modification, are permitted provided that the following conditions
      8       1.1    sekiya  * are met:
      9       1.1    sekiya  * 1. Redistributions of source code must retain the above copyright
     10       1.1    sekiya  *    notice, this list of conditions and the following disclaimer.
     11       1.1    sekiya  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1    sekiya  *    notice, this list of conditions and the following disclaimer in the
     13       1.1    sekiya  *    documentation and/or other materials provided with the distribution.
     14       1.6     pooka  * 3. The name of the company nor the name of the author may be used to
     15       1.1    sekiya  *    endorse or promote products derived from this software without specific
     16       1.1    sekiya  *    prior written permission.
     17       1.1    sekiya  *
     18       1.1    sekiya  * THIS SOFTWARE IS PROVIDED BY CAUASLITY LIMITED ``AS IS'' AND ANY EXPRESS
     19       1.1    sekiya  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     20       1.1    sekiya  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     21       1.1    sekiya  * DISCLAIMED. IN NO EVENT SHALL CAUSALITY LIMITED OR CONTRIBUTORS BE LIABLE
     22       1.1    sekiya  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     23       1.1    sekiya  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     24       1.1    sekiya  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     25       1.1    sekiya  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     26       1.1    sekiya  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27       1.1    sekiya  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28       1.1    sekiya  * SUCH DAMAGE.
     29       1.1    sekiya  */
     30       1.1    sekiya 
     31       1.1    sekiya /*
     32       1.1    sekiya  * Copyright (c) 1998 Mark Brinicombe.
     33       1.1    sekiya  * Copyright (c) 1998 Causality Limited.
     34       1.1    sekiya  * All rights reserved.
     35       1.1    sekiya  *
     36       1.1    sekiya  * Written by Mark Brinicombe, Causality Limited
     37       1.1    sekiya  *
     38       1.1    sekiya  * Redistribution and use in source and binary forms, with or without
     39       1.1    sekiya  * modification, are permitted provided that the following conditions
     40       1.1    sekiya  * are met:
     41       1.1    sekiya  * 1. Redistributions of source code must retain the above copyright
     42       1.1    sekiya  *    notice, this list of conditions and the following disclaimer.
     43       1.1    sekiya  * 2. Redistributions in binary form must reproduce the above copyright
     44       1.1    sekiya  *    notice, this list of conditions and the following disclaimer in the
     45       1.1    sekiya  *    documentation and/or other materials provided with the distribution.
     46       1.1    sekiya  * 3. All advertising materials mentioning features or use of this software
     47       1.1    sekiya  *    must display the following acknowledgement:
     48       1.1    sekiya  *	This product includes software developed by Mark Brinicombe
     49       1.1    sekiya  *	for the NetBSD Project.
     50       1.1    sekiya  * 4. The name of the company nor the name of the author may be used to
     51       1.1    sekiya  *    endorse or promote products derived from this software without specific
     52       1.1    sekiya  *    prior written permission.
     53       1.1    sekiya  *
     54       1.1    sekiya  * THIS SOFTWARE IS PROVIDED BY CAUASLITY LIMITED ``AS IS'' AND ANY EXPRESS
     55       1.1    sekiya  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     56       1.1    sekiya  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     57       1.1    sekiya  * DISCLAIMED. IN NO EVENT SHALL CAUSALITY LIMITED OR CONTRIBUTORS BE LIABLE
     58       1.1    sekiya  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     59       1.1    sekiya  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     60       1.1    sekiya  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     61       1.1    sekiya  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     62       1.1    sekiya  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     63       1.1    sekiya  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     64       1.1    sekiya  * SUCH DAMAGE.
     65       1.1    sekiya  */
     66       1.1    sekiya 
     67       1.1    sekiya #include <sys/cdefs.h>
     68  1.8.20.1      yamt __KERNEL_RCSID(0, "$NetBSD: mcclock_mace.c,v 1.8.20.1 2009/05/04 08:11:50 yamt Exp $");
     69       1.1    sekiya 
     70       1.1    sekiya #include <sys/param.h>
     71       1.1    sekiya #include <sys/systm.h>
     72  1.8.20.1      yamt #include <sys/device.h>
     73       1.1    sekiya 
     74       1.1    sekiya #include <machine/cpu.h>
     75       1.1    sekiya #include <machine/autoconf.h>
     76       1.1    sekiya #include <machine/bus.h>
     77       1.1    sekiya #include <machine/machtype.h>
     78       1.1    sekiya 
     79       1.1    sekiya #include <dev/clock_subr.h>
     80       1.1    sekiya #include <dev/ic/ds1687reg.h>
     81       1.1    sekiya 
     82       1.1    sekiya #include <sgimips/mace/macevar.h>
     83       1.1    sekiya 
     84       1.1    sekiya #include <sgimips/sgimips/clockvar.h>
     85       1.1    sekiya 
     86       1.1    sekiya struct mcclock_mace_softc {
     87       1.1    sekiya 	struct device		sc_dev;
     88       1.1    sekiya 
     89       1.5    rumble 	struct todr_chip_handle sc_todrch;
     90       1.5    rumble 
     91       1.1    sekiya 	bus_space_tag_t		sc_st;
     92       1.1    sekiya 	bus_space_handle_t	sc_sh;
     93       1.1    sekiya };
     94       1.1    sekiya 
     95       1.7  macallan static struct mcclock_mace_softc *mace0 = NULL;
     96       1.7  macallan 
     97       1.1    sekiya static int	mcclock_mace_match(struct device *, struct cfdata *, void *);
     98       1.1    sekiya static void	mcclock_mace_attach(struct device*, struct device *, void *);
     99       1.1    sekiya 
    100       1.5    rumble static int	mcclock_mace_gettime(struct todr_chip_handle *,
    101       1.5    rumble     volatile struct timeval *);
    102       1.5    rumble static int	mcclock_mace_settime(struct todr_chip_handle *,
    103       1.5    rumble     volatile struct timeval *);
    104       1.1    sekiya 
    105       1.1    sekiya unsigned int	ds1687_read(void *arg, unsigned int addr);
    106       1.1    sekiya void		ds1687_write(void *arg, unsigned int addr, unsigned int data);
    107       1.1    sekiya 
    108       1.7  macallan void		mcclock_poweroff(void);
    109       1.7  macallan 
    110       1.7  macallan 
    111       1.1    sekiya CFATTACH_DECL(mcclock_mace, sizeof(struct mcclock_mace_softc),
    112       1.1    sekiya     mcclock_mace_match, mcclock_mace_attach, NULL, NULL);
    113       1.1    sekiya 
    114       1.1    sekiya static int
    115       1.1    sekiya mcclock_mace_match(struct device *parent, struct cfdata *match, void *aux)
    116       1.1    sekiya {
    117       1.3    sekiya 	return 1;
    118       1.1    sekiya }
    119       1.1    sekiya 
    120       1.1    sekiya void
    121       1.1    sekiya mcclock_mace_attach(struct device *parent, struct device *self, void *aux)
    122       1.1    sekiya {
    123       1.1    sekiya 	struct mcclock_mace_softc *sc = (void *)self;
    124       1.1    sekiya 	struct mace_attach_args *maa = aux;
    125       1.1    sekiya 
    126       1.1    sekiya 	sc->sc_st = maa->maa_st;
    127       1.1    sekiya 	/* XXX should be bus_space_map() */
    128       1.1    sekiya 	if (bus_space_subregion(maa->maa_st, maa->maa_sh,
    129       1.1    sekiya 	    maa->maa_offset, 0, &sc->sc_sh))
    130       1.1    sekiya 		panic("mcclock_mace_attach: couldn't map");
    131       1.1    sekiya 
    132       1.1    sekiya 	/*
    133       1.1    sekiya 	 * We want a fixed format: 24-hour, BCD data, so just force the
    134       1.1    sekiya 	 * RTC to this mode; if there was junk there we'll be able to
    135       1.1    sekiya 	 * fix things up later when we discover the time read back is
    136       1.1    sekiya 	 * no good.
    137       1.1    sekiya 	 */
    138       1.1    sekiya 	ds1687_write(sc, DS1687_CONTROLA, DS1687_DV1 | DS1687_BANK1);
    139       1.1    sekiya 	ds1687_write(sc, DS1687_CONTROLB, DS1687_24HRS);
    140       1.1    sekiya 
    141       1.1    sekiya 	/* XXXrkb: init kickstart/wakeup stuff */
    142       1.1    sekiya 
    143       1.1    sekiya 	if (!(ds1687_read(sc, DS1687_CONTROLD) & DS1687_VRT))
    144       1.1    sekiya 		printf(": lithium cell is dead, RTC unreliable");
    145       1.1    sekiya 
    146       1.1    sekiya 	printf("\n");
    147       1.5    rumble 
    148       1.5    rumble 	sc->sc_todrch.cookie = sc;
    149       1.5    rumble 	sc->sc_todrch.todr_gettime = mcclock_mace_gettime;
    150       1.5    rumble 	sc->sc_todrch.todr_settime = mcclock_mace_settime;
    151       1.5    rumble 	sc->sc_todrch.todr_setwen = NULL;
    152       1.5    rumble 
    153       1.5    rumble 	todr_attach(&sc->sc_todrch);
    154       1.7  macallan 	mace0 = sc;
    155       1.1    sekiya }
    156       1.1    sekiya 
    157       1.1    sekiya /*
    158       1.1    sekiya  * We need to use the following two functions from
    159       1.1    sekiya  * DS1687_PUT/GETTOD(). Hence the names.
    160       1.1    sekiya  */
    161       1.1    sekiya unsigned int
    162       1.1    sekiya ds1687_read(void *arg, unsigned int addr)
    163       1.1    sekiya {
    164       1.1    sekiya 	struct mcclock_mace_softc *sc = (struct mcclock_mace_softc *)arg;
    165       1.1    sekiya 
    166       1.1    sekiya 	return (bus_space_read_1(sc->sc_st, sc->sc_sh, addr));
    167       1.1    sekiya }
    168       1.1    sekiya 
    169       1.1    sekiya void
    170       1.1    sekiya ds1687_write(void *arg, unsigned int addr, unsigned int data)
    171       1.1    sekiya {
    172       1.1    sekiya 	struct mcclock_mace_softc *sc = (struct mcclock_mace_softc *)arg;
    173       1.1    sekiya 
    174       1.1    sekiya 	bus_space_write_1(sc->sc_st, sc->sc_sh, addr, data);
    175       1.1    sekiya }
    176       1.1    sekiya 
    177       1.5    rumble static int
    178       1.5    rumble mcclock_mace_gettime(struct todr_chip_handle *todrch,
    179       1.5    rumble     volatile struct timeval *tv)
    180       1.1    sekiya {
    181       1.5    rumble 	struct mcclock_mace_softc *sc =
    182       1.5    rumble 	    (struct mcclock_mace_softc *)todrch->cookie;
    183       1.5    rumble 	struct clock_ymdhms dt;
    184       1.1    sekiya 	ds1687_todregs regs;
    185       1.1    sekiya 	int s;
    186       1.1    sekiya 
    187       1.1    sekiya 	s = splhigh();
    188       1.1    sekiya 	DS1687_GETTOD(sc, &regs);
    189       1.1    sekiya 	splx(s);
    190       1.1    sekiya 
    191       1.5    rumble 	dt.dt_sec = FROMBCD(regs[DS1687_SOFT_SEC]);
    192       1.5    rumble 	dt.dt_min = FROMBCD(regs[DS1687_SOFT_MIN]);
    193       1.5    rumble 	dt.dt_hour = FROMBCD(regs[DS1687_SOFT_HOUR]);
    194       1.5    rumble 	dt.dt_wday = FROMBCD(regs[DS1687_SOFT_DOW]);
    195       1.5    rumble 	dt.dt_day = FROMBCD(regs[DS1687_SOFT_DOM]);
    196       1.5    rumble 	dt.dt_mon = FROMBCD(regs[DS1687_SOFT_MONTH]);
    197       1.5    rumble 	dt.dt_year = FROMBCD(regs[DS1687_SOFT_YEAR]) +
    198       1.1    sekiya 	    (100 * FROMBCD(regs[DS1687_SOFT_CENTURY]));
    199       1.5    rumble 
    200       1.5    rumble 	/* simple sanity checks */
    201       1.5    rumble 	if (dt.dt_mon > 12 || dt.dt_day > 31 ||
    202       1.5    rumble 	    dt.dt_hour >= 24 || dt.dt_min >= 60 || dt.dt_sec >= 60)
    203       1.5    rumble 		return (EIO);
    204       1.5    rumble 
    205       1.5    rumble 	tv->tv_sec = (long)clock_ymdhms_to_secs(&dt);
    206       1.5    rumble 	if (tv->tv_sec == -1)
    207       1.5    rumble 		return (ERANGE);
    208       1.5    rumble 	tv->tv_usec = 0;
    209       1.5    rumble 
    210       1.5    rumble 	return (0);
    211       1.1    sekiya }
    212       1.1    sekiya 
    213       1.5    rumble static int
    214       1.5    rumble mcclock_mace_settime(struct todr_chip_handle *todrch,
    215       1.5    rumble     volatile struct timeval *tv)
    216       1.1    sekiya {
    217       1.5    rumble 	struct mcclock_mace_softc *sc =
    218       1.5    rumble 	    (struct mcclock_mace_softc *)todrch->cookie;
    219       1.5    rumble 	struct clock_ymdhms dt;
    220       1.1    sekiya 	ds1687_todregs regs;
    221       1.1    sekiya 	int s;
    222       1.1    sekiya 
    223       1.5    rumble 	clock_secs_to_ymdhms((time_t)(tv->tv_sec + (tv->tv_usec > 500000)),&dt);
    224       1.5    rumble 
    225       1.1    sekiya 	memset(&regs, 0, sizeof(regs));
    226       1.1    sekiya 
    227       1.5    rumble 	regs[DS1687_SOFT_SEC] = TOBCD(dt.dt_sec);
    228       1.5    rumble 	regs[DS1687_SOFT_MIN] = TOBCD(dt.dt_min);
    229       1.5    rumble 	regs[DS1687_SOFT_HOUR] = TOBCD(dt.dt_hour);
    230       1.5    rumble 	regs[DS1687_SOFT_DOW] = TOBCD(dt.dt_wday);
    231       1.5    rumble 	regs[DS1687_SOFT_DOM] = TOBCD(dt.dt_day);
    232       1.5    rumble 	regs[DS1687_SOFT_MONTH] = TOBCD(dt.dt_mon);
    233       1.5    rumble 	regs[DS1687_SOFT_YEAR] = TOBCD(dt.dt_year % 100);
    234       1.5    rumble 	regs[DS1687_SOFT_CENTURY] = TOBCD(dt.dt_year / 100);
    235       1.1    sekiya 	s = splhigh();
    236       1.1    sekiya 	DS1687_PUTTOD(sc, &regs);
    237       1.1    sekiya 	splx(s);
    238       1.5    rumble 
    239       1.5    rumble 	return (0);
    240       1.1    sekiya }
    241       1.7  macallan 
    242       1.7  macallan void
    243  1.8.20.1      yamt mcclock_poweroff(void)
    244       1.7  macallan {
    245       1.7  macallan 	int s;
    246       1.7  macallan 	uint8_t a, xctl_a, xctl_b;
    247       1.7  macallan 
    248       1.7  macallan 	if (mace0 == NULL)
    249       1.7  macallan 		return;
    250       1.7  macallan 
    251       1.7  macallan 	s = splhigh();
    252       1.7  macallan 	a = ds1687_read(mace0, DS1687_CONTROLA);
    253       1.7  macallan 	a &= ~DS1687_DV2;
    254       1.7  macallan 	a |= DS1687_DV1;
    255       1.7  macallan 	ds1687_write(mace0, DS1687_CONTROLA, a | DS1687_BANK1);
    256       1.7  macallan 	wbflush();
    257       1.7  macallan 
    258       1.7  macallan 	xctl_b = ds1687_read(mace0, DS1687_BANK1_XCTRL4B);
    259       1.7  macallan 	xctl_b |= DS1687_X4B_ABE | DS1687_X4B_KIE;
    260       1.7  macallan 	ds1687_write(mace0, DS1687_BANK1_XCTRL4B, xctl_b);
    261       1.7  macallan 
    262       1.7  macallan 	xctl_a = ds1687_read(mace0, DS1687_BANK1_XCTRL4A);
    263       1.7  macallan 	xctl_a &= ~(DS1687_X4A_RCF | DS1687_X4A_WAF | DS1687_X4A_KF);
    264       1.7  macallan 	ds1687_write(mace0, DS1687_BANK1_XCTRL4A, xctl_a);
    265       1.7  macallan 	wbflush();
    266       1.7  macallan 
    267       1.7  macallan 	/* and down we go */
    268       1.7  macallan 	ds1687_write(mace0, DS1687_BANK1_XCTRL4A, xctl_a | DS1687_X4A_PAB);
    269       1.7  macallan 	ds1687_write(mace0, DS1687_CONTROLA, a);
    270       1.7  macallan 	wbflush();
    271       1.7  macallan 	while(1);
    272       1.7  macallan }
    273