Merge from vendor branch OPENSSL:
[dragonfly.git] / sys / dev / misc / dec / mcclock.c
1 /* $FreeBSD: src/sys/dev/dec/mcclock.c,v 1.5.2.2 2001/12/17 14:03:15 gallatin Exp $ */
2 /* $DragonFly: src/sys/dev/misc/dec/Attic/mcclock.c,v 1.4 2004/01/30 05:42:15 dillon Exp $ */
3 /* $NetBSD: mcclock.c,v 1.11 1998/04/19 07:50:25 jonathan Exp $ */
4
5 /*
6  * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
7  * All rights reserved.
8  *
9  * Author: Chris G. Demetriou
10  *
11  * Permission to use, copy, modify and distribute this software and
12  * its documentation is hereby granted, provided that both the copyright
13  * notice and this permission notice appear in all copies of the
14  * software, derivative works or modified versions, and any portions
15  * thereof, and that both notices appear in supporting documentation.
16  *
17  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
18  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
19  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
20  *
21  * Carnegie Mellon requests users of this software to return to
22  *
23  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
24  *  School of Computer Science
25  *  Carnegie Mellon University
26  *  Pittsburgh PA 15213-3890
27  *
28  * any improvements or extensions that they make and grant Carnegie the
29  * rights to redistribute these changes.
30  */
31
32 #include <sys/param.h>
33 #include <sys/kernel.h>
34 #include <sys/systm.h>
35 #include <sys/bus.h>
36
37 #include <machine/clockvar.h>
38 #include "mcclockvar.h"
39 #include "mc146818reg.h"
40
41 /*
42  * XXX rate is machine-dependent.
43  */
44 #ifdef __alpha__
45 #define MC_DEFAULTRATE MC_RATE_1024_Hz
46 #endif
47 #ifdef __pmax__
48 #define MC_DEFAULTRATE MC_RATE_256_Hz
49 #endif
50
51 void
52 mcclock_attach(device_t dev)
53 {
54         /* Turn interrupts off, just in case. */
55         MCCLOCK_WRITE(dev, MC_REGB, MC_REGB_BINARY | MC_REGB_24HR);
56
57         clockattach(dev);
58 }
59
60 void
61 mcclock_init(device_t dev)
62 {
63         MCCLOCK_WRITE(dev, MC_REGA, MC_BASE_32_KHz | MC_DEFAULTRATE);
64         MCCLOCK_WRITE(dev, MC_REGB,
65             MC_REGB_PIE | MC_REGB_SQWE | MC_REGB_BINARY | MC_REGB_24HR);
66 }
67
68 /*
69  * Get the time of day, based on the clock's value and/or the base value.
70  */
71 void
72 mcclock_get(device_t dev, time_t base, struct clocktime *ct)
73 {
74         mc_todregs regs;
75
76         crit_enter();
77         MC146818_GETTOD(dev, &regs)
78         crit_exit();
79
80         ct->sec = regs[MC_SEC];
81         ct->min = regs[MC_MIN];
82         ct->hour = regs[MC_HOUR];
83         ct->dow = regs[MC_DOW];
84         ct->day = regs[MC_DOM];
85         ct->mon = regs[MC_MONTH];
86         ct->year = regs[MC_YEAR];
87 }
88
89 /*
90  * Reset the TODR based on the time value.
91  */
92 void
93 mcclock_set(device_t dev, struct clocktime *ct)
94 {
95         mc_todregs regs;
96
97         crit_enter();
98         MC146818_GETTOD(dev, &regs);
99         crit_exit();
100
101         regs[MC_SEC] = ct->sec;
102         regs[MC_MIN] = ct->min;
103         regs[MC_HOUR] = ct->hour;
104         regs[MC_DOW] = ct->dow;
105         regs[MC_DOM] = ct->day;
106         regs[MC_MONTH] = ct->mon;
107         regs[MC_YEAR] = ct->year;
108
109         crit_enter();
110         MC146818_PUTTOD(dev, &regs);
111         crit_exit();
112 }
113
114 int
115 mcclock_getsecs(device_t dev, int *secp)
116 {
117         int timeout = 100000000;
118         int sec;
119
120         for (;;) {
121                 crit_enter();
122                 if (!(MCCLOCK_READ(dev, MC_REGA) & MC_REGA_UIP)) {
123                         sec = MCCLOCK_READ(dev, MC_SEC);
124                         crit_exit();
125                         break;
126                 }
127                 if (--timeout == 0) {
128                         crit_exit();
129                         goto fail;
130                 }
131         }
132         *secp = sec;
133         return 0;
134  fail:
135         return ETIMEDOUT;
136 }
137