Home | History | Annotate | Line # | Download | only in vr
rtcreg.h revision 1.5.4.3
      1  1.5.4.3  nathanw /*	$NetBSD: rtcreg.h,v 1.5.4.3 2002/02/28 04:10:04 nathanw Exp $	*/
      2  1.5.4.2  nathanw 
      3  1.5.4.2  nathanw /*-
      4  1.5.4.2  nathanw  * Copyright (c) 1999 Shin Takemura. All rights reserved.
      5  1.5.4.2  nathanw  * Copyright (c) 1999-2001 SATO Kazumi. All rights reserved.
      6  1.5.4.2  nathanw  * Copyright (c) 1999 PocketBSD Project. All rights reserved.
      7  1.5.4.2  nathanw  *
      8  1.5.4.2  nathanw  * Redistribution and use in source and binary forms, with or without
      9  1.5.4.2  nathanw  * modification, are permitted provided that the following conditions
     10  1.5.4.2  nathanw  * are met:
     11  1.5.4.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     12  1.5.4.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     13  1.5.4.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.5.4.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     15  1.5.4.2  nathanw  *    documentation and/or other materials provided with the distribution.
     16  1.5.4.2  nathanw  * 3. All advertising materials mentioning features or use of this software
     17  1.5.4.2  nathanw  *    must display the following acknowledgement:
     18  1.5.4.2  nathanw  *	This product includes software developed by the PocketBSD project
     19  1.5.4.2  nathanw  *	and its contributors.
     20  1.5.4.2  nathanw  * 4. Neither the name of the project nor the names of its contributors
     21  1.5.4.2  nathanw  *    may be used to endorse or promote products derived from this software
     22  1.5.4.2  nathanw  *    without specific prior written permission.
     23  1.5.4.2  nathanw  *
     24  1.5.4.2  nathanw  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25  1.5.4.2  nathanw  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26  1.5.4.2  nathanw  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27  1.5.4.2  nathanw  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28  1.5.4.2  nathanw  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29  1.5.4.2  nathanw  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30  1.5.4.2  nathanw  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31  1.5.4.2  nathanw  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32  1.5.4.2  nathanw  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33  1.5.4.2  nathanw  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34  1.5.4.2  nathanw  * SUCH DAMAGE.
     35  1.5.4.2  nathanw  *
     36  1.5.4.2  nathanw  */
     37  1.5.4.2  nathanw 
     38  1.5.4.2  nathanw #define	SECMIN	((unsigned)60)			/* seconds per minute */
     39  1.5.4.2  nathanw #define	SECHOUR	((unsigned)(60*SECMIN))		/* seconds per hour */
     40  1.5.4.2  nathanw 
     41  1.5.4.2  nathanw #define	SEC2MIN	((unsigned)60/2)		/* 2seconds per minute */
     42  1.5.4.2  nathanw #define	SEC2HOUR ((unsigned)(60*SECMIN)/2)	/* 2seconds per hour */
     43  1.5.4.2  nathanw #define	SEC2DAY	((unsigned)(24*SECHOUR)/2)	/* 2seconds per day */
     44  1.5.4.2  nathanw #define	SEC2YR	((unsigned)(365*SECDAY)/2)	/* 2seconds per common year */
     45  1.5.4.2  nathanw 
     46  1.5.4.2  nathanw #define	YRREF		1999
     47  1.5.4.2  nathanw #define	MREF		1
     48  1.5.4.2  nathanw #define	DREF		1
     49  1.5.4.2  nathanw 
     50  1.5.4.2  nathanw #ifndef YBASE
     51  1.5.4.2  nathanw #define YBASE		1900
     52  1.5.4.2  nathanw #endif
     53  1.5.4.2  nathanw 
     54  1.5.4.2  nathanw #define EPOCHOFF	0			/* epoch offset */
     55  1.5.4.2  nathanw #ifndef EPOCHYEAR
     56  1.5.4.2  nathanw #define EPOCHYEAR	1850	/* XXX */	/* WINCE epoch year */
     57  1.5.4.2  nathanw #endif
     58  1.5.4.2  nathanw #define EPOCHMONTH	1			/* WINCE epoch month of year */
     59  1.5.4.2  nathanw #define EPOCHDATE	1			/* WINCE epoch date of month */
     60  1.5.4.2  nathanw 
     61  1.5.4.2  nathanw #define	LEAPYEAR4(year)	((((year) % 4) == 0 && ((year) % 100) != 0) || ((year%400)) == 0)
     62  1.5.4.2  nathanw #define	LEAPYEAR2(year)	(((year) % 4) == 0)
     63  1.5.4.2  nathanw 
     64  1.5.4.2  nathanw /*
     65  1.5.4.2  nathanw  *	RTC (Real Time Clock Unit) Registers definitions.
     66  1.5.4.2  nathanw  *		start 0x0B0000C0 (Vr4102-4121)
     67  1.5.4.2  nathanw  *		start 0x0F000100 (Vr4122-4131)
     68  1.5.4.2  nathanw  *		start 0x0B0000C0 (Vr4181)
     69  1.5.4.2  nathanw  */
     70  1.5.4.3  nathanw #define RTC_NO_REG_W		0xffffffff
     71  1.5.4.2  nathanw 
     72  1.5.4.2  nathanw #define ETIME_L_REG_W		0x000	/* Elapsed Time L */
     73  1.5.4.2  nathanw #define ETIME_M_REG_W		0x002	/* Elapsed Time M */
     74  1.5.4.2  nathanw #define ETIME_H_REG_W		0x004	/* Elapsed Time H */
     75  1.5.4.2  nathanw 
     76  1.5.4.2  nathanw #define		ETIME_L_HZ		0x8000	/* 1 HZ */
     77  1.5.4.2  nathanw 
     78  1.5.4.2  nathanw 
     79  1.5.4.2  nathanw #define ECMP_L_REG_W		0x008	/* Elapsed Compare L */
     80  1.5.4.2  nathanw #define ECMP_M_REG_W		0x00a	/* Elapsed Compare M */
     81  1.5.4.2  nathanw #define ECMP_H_REG_W		0x00c	/* Elapsed Compare H */
     82  1.5.4.2  nathanw 
     83  1.5.4.2  nathanw 
     84  1.5.4.2  nathanw #define RTCL1_L_REG_W		0x010	/* RTC Long 1 L */
     85  1.5.4.2  nathanw #define RTCL1_H_REG_W		0x012	/* RTC Long 1 H */
     86  1.5.4.2  nathanw 
     87  1.5.4.2  nathanw #define		RTCL1_L_HZ		0x8000	/* 1 HZ */
     88  1.5.4.2  nathanw 
     89  1.5.4.2  nathanw 
     90  1.5.4.2  nathanw #define RTCL1_CNT_L_REG_W	0x014	/* RTC Long 1 Count L */
     91  1.5.4.2  nathanw #define RTCL1_CNT_H_REG_W	0x016	/* RTC Long 1 Count H */
     92  1.5.4.2  nathanw 
     93  1.5.4.2  nathanw 
     94  1.5.4.2  nathanw #define RTCL2_L_REG_W		0x018	/* RTC Long 2 L */
     95  1.5.4.2  nathanw #define RTCL2_H_REG_W		0x01a	/* RTC Long 2 H */
     96  1.5.4.2  nathanw 
     97  1.5.4.2  nathanw #define		RTCL2_L_HZ		0x8000	/* 1 HZ */
     98  1.5.4.2  nathanw 
     99  1.5.4.2  nathanw 
    100  1.5.4.2  nathanw #define RTCL2_CNT_L_REG_W	0x01c	/* RTC Long 2 Count L */
    101  1.5.4.2  nathanw #define RTCL2_CNT_H_REG_W	0x01e	/* RTC Long 2 Count H */
    102  1.5.4.2  nathanw 
    103  1.5.4.2  nathanw 
    104  1.5.4.2  nathanw #define VR4102_TCLK_L_REG_W	0x100	/* TCLK L */
    105  1.5.4.2  nathanw #define VR4102_TCLK_H_REG_W	0x102	/* TCLK H */
    106  1.5.4.2  nathanw #define VR4122_TCLK_L_REG_W	0x020	/* TCLK L */
    107  1.5.4.2  nathanw #define VR4122_TCLK_H_REG_W	0x022	/* TCLK H */
    108  1.5.4.2  nathanw #if defined SINGLE_VRIP_BASE
    109  1.5.4.2  nathanw #if defined VRGROUP_4102_4121
    110  1.5.4.2  nathanw #define TCLK_L_REG_W		VR4102_TCLK_L_REG_W	/* TCLK L */
    111  1.5.4.2  nathanw #define TCLK_H_REG_W		VR4102_TCLK_H_REG_W	/* TCLK H */
    112  1.5.4.2  nathanw #endif /* VRGROUP_4102_4121 */
    113  1.5.4.2  nathanw #if defined VRGROUP_4122_4131
    114  1.5.4.2  nathanw #define TCLK_L_REG_W		VR4122_TCLK_L_REG_W	/* TCLK L */
    115  1.5.4.2  nathanw #define TCLK_H_REG_W		VR4122_TCLK_H_REG_W	/* TCLK H */
    116  1.5.4.2  nathanw #endif /* VRGROUP_4122_4131 */
    117  1.5.4.2  nathanw #if defined VRGROUP_4181
    118  1.5.4.3  nathanw #define TCLK_L_REG_W		RTC_NO_REG_W
    119  1.5.4.3  nathanw #define TCLK_H_REG_W		RTC_NO_REG_W
    120  1.5.4.2  nathanw #endif /* VRGROUP_4181 */
    121  1.5.4.2  nathanw #endif /* defined SINGLE_VRIP_BASE */
    122  1.5.4.2  nathanw 
    123  1.5.4.2  nathanw 
    124  1.5.4.2  nathanw #define VR4102_TCLK_CNT_L_REG_W	0x104	/* TCLK Count L */
    125  1.5.4.2  nathanw #define VR4102_TCLK_CNT_H_REG_W	0x106	/* TCLK Count H */
    126  1.5.4.2  nathanw #define VR4122_TCLK_CNT_L_REG_W	0x024	/* TCLK Count L */
    127  1.5.4.2  nathanw #define VR4122_TCLK_CNT_H_REG_W	0x026	/* TCLK Count H */
    128  1.5.4.2  nathanw #if defined SINGLE_VRIP_BASE
    129  1.5.4.2  nathanw #if defined VRGROUP_4102_4121
    130  1.5.4.2  nathanw #define TCLK_CNT_L_REG_W	VR4102_TCLK_CNT_L_REG_W	/* TCLK Count L */
    131  1.5.4.2  nathanw #define TCLK_CNT_H_REG_W	VR4102_TCLK_CNT_L_REG_W	/* TCLK Count H */
    132  1.5.4.2  nathanw #endif /* VRGROUP_4102_4121 */
    133  1.5.4.2  nathanw #if defined VRGROUP_4122_4131
    134  1.5.4.2  nathanw #define TCLK_CNT_L_REG_W	VR4122_TCLK_CNT_L_REG_W	/* TCLK Count L */
    135  1.5.4.2  nathanw #define TCLK_CNT_H_REG_W	VR4122_TCLK_CNT_H_REG_W	/* TCLK Count H */
    136  1.5.4.2  nathanw #endif /* VRGROUP_4122_4131 */
    137  1.5.4.2  nathanw #if defined VRGROUP_4181
    138  1.5.4.3  nathanw #define TCLK_CNT_L_REG_W	RTC_NO_REG_W
    139  1.5.4.3  nathanw #define TCLK_CNT_H_REG_W	RTC_NO_REG_W
    140  1.5.4.2  nathanw #endif /* VRGROUP_4181 */
    141  1.5.4.2  nathanw #endif /* defined SINGLE_VRIP_BASE */
    142  1.5.4.2  nathanw 
    143  1.5.4.2  nathanw 
    144  1.5.4.2  nathanw #define VR4102_RTCINT_REG_W		0x11e	/* RTC intr reg. */
    145  1.5.4.2  nathanw #define VR4122_RTCINT_REG_W		0x03e	/* RTC intr reg. */
    146  1.5.4.2  nathanw #define VR4181_RTCINT_REG_W		0x11e	/* RTC intr reg. */
    147  1.5.4.2  nathanw #if defined SINGLE_VRIP_BASE
    148  1.5.4.2  nathanw #if defined VRGROUP_4102_4121
    149  1.5.4.2  nathanw #define RTCINT_REG_W		VR4102_RTCINT_REG_W	/* RTC intr reg. */
    150  1.5.4.2  nathanw #endif /* VRGROUP_4102_4121 */
    151  1.5.4.2  nathanw #if defined VRGROUP_4122_4131
    152  1.5.4.2  nathanw #define RTCINT_REG_W		VR4122_RTCINT_REG_W	/* RTC intr reg. */
    153  1.5.4.2  nathanw #endif /* VRGROUP_4122 */
    154  1.5.4.2  nathanw #if defined VRGROUP_4181
    155  1.5.4.2  nathanw #define RTCINT_REG_W		VR4181_RTCINT_REG_W	/* RTC intr reg. */
    156  1.5.4.2  nathanw #endif /* VRGROUP_4181 */
    157  1.5.4.2  nathanw #endif /* defined SINGLE_VRIP_BASE */
    158  1.5.4.2  nathanw 
    159  1.5.4.2  nathanw #define		RTCINT_TCLOCK		(1<<3)	/* TClock */
    160  1.5.4.2  nathanw #define		RTCINT_RTCLONG2		(1<<2)	/* RTC Long 2 */
    161  1.5.4.2  nathanw #define		RTCINT_RTCLONG1		(1<<1)	/* RTC Long 1 */
    162  1.5.4.2  nathanw #define		RTCINT_ELAPSED		(1)	/* Elapsed time */
    163  1.5.4.2  nathanw #define		RTCINT_ALL		(RTCINT_TCLOCK|RTCINT_RTCLONG2|RTCINT_RTCLONG1|RTCINT_ELAPSED)
    164  1.5.4.2  nathanw 
    165  1.5.4.2  nathanw /* END rtcreg.h */
    166