Home | History | Annotate | Line # | Download | only in dev
a34kbbc.c revision 1.8.12.2
      1  1.8.12.1  nathanw /*	$NetBSD: a34kbbc.c,v 1.8.12.2 2002/10/18 02:34:44 nathanw Exp $ */
      2       1.1       is 
      3       1.1       is /*
      4       1.1       is  * Copyright (c) 1988 University of Utah.
      5       1.1       is  * Copyright (c) 1982, 1990 The Regents of the University of California.
      6       1.1       is  * All rights reserved.
      7       1.1       is  *
      8       1.1       is  * This code is derived from software contributed to Berkeley by
      9       1.1       is  * the Systems Programming Group of the University of Utah Computer
     10       1.1       is  * Science Department.
     11       1.1       is  *
     12       1.1       is  * Redistribution and use in source and binary forms, with or without
     13       1.1       is  * modification, are permitted provided that the following conditions
     14       1.1       is  * are met:
     15       1.1       is  * 1. Redistributions of source code must retain the above copyright
     16       1.1       is  *    notice, this list of conditions and the following disclaimer.
     17       1.1       is  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1       is  *    notice, this list of conditions and the following disclaimer in the
     19       1.1       is  *    documentation and/or other materials provided with the distribution.
     20       1.1       is  * 3. All advertising materials mentioning features or use of this software
     21       1.1       is  *    must display the following acknowledgement:
     22       1.1       is  *	This product includes software developed by the University of
     23       1.1       is  *	California, Berkeley and its contributors.
     24       1.1       is  * 4. Neither the name of the University nor the names of its contributors
     25       1.1       is  *    may be used to endorse or promote products derived from this software
     26       1.1       is  *    without specific prior written permission.
     27       1.1       is  *
     28       1.1       is  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29       1.1       is  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30       1.1       is  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31       1.1       is  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32       1.1       is  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33       1.1       is  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34       1.1       is  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35       1.1       is  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36       1.1       is  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37       1.1       is  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38       1.1       is  * SUCH DAMAGE.
     39       1.1       is  *
     40       1.1       is  * from: Utah $Hdr: clock.c 1.18 91/01/21$
     41       1.1       is  *
     42       1.1       is  *	@(#)clock.c	7.6 (Berkeley) 5/7/91
     43       1.1       is  */
     44       1.1       is 
     45  1.8.12.1  nathanw #include <sys/cdefs.h>
     46  1.8.12.1  nathanw __KERNEL_RCSID(0, "$NetBSD: a34kbbc.c,v 1.8.12.2 2002/10/18 02:34:44 nathanw Exp $");
     47  1.8.12.1  nathanw 
     48       1.1       is #include <sys/param.h>
     49       1.1       is #include <sys/kernel.h>
     50       1.1       is #include <sys/device.h>
     51       1.1       is #include <sys/systm.h>
     52       1.1       is #include <machine/psl.h>
     53       1.1       is #include <machine/cpu.h>
     54       1.1       is #include <amiga/amiga/device.h>
     55       1.1       is #include <amiga/amiga/custom.h>
     56       1.1       is #include <amiga/amiga/cia.h>
     57       1.1       is #include <amiga/dev/rtc.h>
     58       1.1       is #include <amiga/dev/zbusvar.h>
     59       1.1       is 
     60       1.1       is #include <dev/clock_subr.h>
     61       1.1       is 
     62  1.8.12.1  nathanw int a34kbbc_match(struct device *, struct cfdata *, void *);
     63  1.8.12.1  nathanw void a34kbbc_attach(struct device *, struct device *, void *);
     64       1.1       is 
     65  1.8.12.2  nathanw CFATTACH_DECL(a34kbbc, sizeof(struct device),
     66  1.8.12.2  nathanw     a34kbbc_match, a34kbbc_attach, NULL, NULL);
     67       1.1       is 
     68       1.1       is void *a34kclockaddr;
     69  1.8.12.1  nathanw int a34kugettod(struct timeval *);
     70  1.8.12.1  nathanw int a34kusettod(struct timeval *);
     71       1.1       is 
     72       1.1       is int
     73  1.8.12.1  nathanw a34kbbc_match(struct device *pdp, struct cfdata *cfp, void *auxp)
     74       1.1       is {
     75       1.8   kleink 	static int a34kbbc_matched = 0;
     76       1.8   kleink 
     77       1.1       is 	if (!matchname("a34kbbc", auxp))
     78       1.1       is 		return(0);
     79       1.1       is 
     80       1.8   kleink 	/* Allow only once instance. */
     81       1.8   kleink 	if (a34kbbc_matched)
     82       1.8   kleink 		return(0);
     83       1.1       is 
     84       1.1       is 	if (!(is_a3000() || is_a4000()))
     85       1.1       is 		return(0);
     86       1.1       is 
     87       1.1       is 	a34kclockaddr = (void *)ztwomap(0xdc0000);
     88       1.3       is 	if (a34kugettod(0) == 0)
     89       1.1       is 		return(0);
     90       1.1       is 
     91       1.8   kleink 	a34kbbc_matched = 1;
     92       1.1       is 	return(1);
     93       1.1       is }
     94       1.1       is 
     95       1.1       is /*
     96       1.1       is  * Attach us to the rtc function pointers.
     97       1.1       is  */
     98       1.1       is void
     99  1.8.12.1  nathanw a34kbbc_attach(struct device *pdp, struct device *dp, void *auxp)
    100       1.1       is {
    101       1.1       is 	printf("\n");
    102       1.1       is 	a34kclockaddr = (void *)ztwomap(0xdc0000);
    103       1.1       is 
    104       1.3       is 	ugettod = a34kugettod;
    105       1.3       is 	usettod = a34kusettod;
    106       1.1       is }
    107       1.1       is 
    108       1.3       is int
    109  1.8.12.1  nathanw a34kugettod(struct timeval *tvp)
    110       1.1       is {
    111       1.1       is 	struct rtclock3000 *rt;
    112       1.1       is 	struct clock_ymdhms dt;
    113       1.1       is 	time_t secs;
    114       1.1       is 
    115       1.1       is 	rt = a34kclockaddr;
    116       1.1       is 
    117       1.1       is 	/* hold clock */
    118       1.1       is 	rt->control1 = A3CONTROL1_HOLD_CLOCK;
    119       1.1       is 
    120       1.1       is 	/* Copy the info.  Careful about the order! */
    121       1.1       is 	dt.dt_sec   = rt->second1 * 10 + rt->second2;
    122       1.1       is 	dt.dt_min   = rt->minute1 * 10 + rt->minute2;
    123       1.1       is 	dt.dt_hour  = rt->hour1   * 10 + rt->hour2;
    124       1.1       is 	dt.dt_wday  = rt->weekday;
    125       1.1       is 	dt.dt_day   = rt->day1    * 10 + rt->day2;
    126       1.1       is 	dt.dt_mon   = rt->month1  * 10 + rt->month2;
    127       1.1       is 	dt.dt_year  = rt->year1   * 10 + rt->year2;
    128       1.1       is 
    129       1.1       is 	dt.dt_year += CLOCK_BASE_YEAR;
    130       1.5       is 	/* let it run again.. */
    131       1.5       is 	rt->control1 = A3CONTROL1_FREE_CLOCK;
    132       1.5       is 
    133       1.4       is 	if (dt.dt_year < STARTOFTIME)
    134       1.4       is 		dt.dt_year += 100;
    135       1.1       is 
    136       1.1       is 
    137       1.1       is 	if ((dt.dt_hour > 23) ||
    138  1.8.12.1  nathanw 	    (dt.dt_wday > 6) ||
    139  1.8.12.1  nathanw 	    (dt.dt_day  > 31) ||
    140       1.1       is 	    (dt.dt_mon  > 12) ||
    141       1.4       is 	    /* (dt.dt_year < STARTOFTIME) || */ (dt.dt_year > 2036))
    142       1.1       is 		return (0);
    143       1.1       is 
    144       1.1       is 	secs = clock_ymdhms_to_secs(&dt);
    145       1.3       is 	if (tvp)
    146       1.3       is 		tvp->tv_sec = secs;
    147       1.3       is 	return (1);
    148       1.1       is }
    149       1.1       is 
    150       1.1       is int
    151  1.8.12.1  nathanw a34kusettod(struct timeval *tvp)
    152       1.1       is {
    153       1.1       is 	struct rtclock3000 *rt;
    154       1.1       is 	struct clock_ymdhms dt;
    155       1.3       is 	time_t secs;
    156       1.1       is 
    157       1.1       is 	rt = a34kclockaddr;
    158       1.3       is 	secs = tvp->tv_sec;
    159       1.1       is 	/*
    160       1.1       is 	 * there seem to be problems with the bitfield addressing
    161       1.1       is 	 * currently used..
    162       1.1       is 	 */
    163       1.1       is 
    164       1.1       is 	if (! rt)
    165       1.1       is 		return (0);
    166       1.1       is 
    167       1.1       is 	clock_secs_to_ymdhms(secs, &dt);
    168       1.1       is 
    169       1.7       is 	rt->control1 = A3CONTROL1_HOLD_CLOCK;		/* implies mode 0 */
    170       1.1       is 	rt->second1 = dt.dt_sec / 10;
    171       1.1       is 	rt->second2 = dt.dt_sec % 10;
    172       1.1       is 	rt->minute1 = dt.dt_min / 10;
    173       1.1       is 	rt->minute2 = dt.dt_min % 10;
    174       1.1       is 	rt->hour1   = dt.dt_hour / 10;
    175       1.1       is 	rt->hour2   = dt.dt_hour % 10;
    176       1.1       is 	rt->weekday = dt.dt_wday;
    177       1.1       is 	rt->day1    = dt.dt_day / 10;
    178       1.1       is 	rt->day2    = dt.dt_day % 10;
    179       1.1       is 	rt->month1  = dt.dt_mon / 10;
    180       1.1       is 	rt->month2  = dt.dt_mon % 10;
    181       1.5       is 	rt->year1   = (dt.dt_year / 10) % 10;
    182       1.1       is 	rt->year2   = dt.dt_year % 10;
    183       1.6       is 	rt->control1 = A3CONTROL1_HOLD_CLOCK | 1;	/* mode 1 registers */
    184       1.6       is 	rt->leapyear = dt.dt_year; 		/* XXX implicit % 4 */
    185       1.7       is 	rt->control1 = A3CONTROL1_FREE_CLOCK;		/* implies mode 1 */
    186       1.1       is 
    187       1.1       is 	return (1);
    188       1.1       is }
    189