Merge from vendor branch GROFF:
[dragonfly.git] / sys / i386 / isa / pmtimer.c
1 /*-
2  * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  * $DragonFly: src/sys/i386/isa/Attic/pmtimer.c,v 1.4 2005/06/04 03:22:08 dillon Exp $
26  */
27
28 #include <sys/cdefs.h>
29
30 /*
31  * Timer device driver for power management events.
32  * The code for suspend/resume is derived from APM device driver.
33  */
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/bus.h>
38 #include <sys/kernel.h>
39 #include <sys/syslog.h>
40 #include <sys/thread2.h>
41 #include <machine/clock.h>
42
43 #include <bus/isa/isavar.h>
44
45 static devclass_t pmtimer_devclass;
46
47 /* reject any PnP devices for now */
48 static struct isa_pnp_id pmtimer_ids[] = {
49         {0}
50 };
51
52 static void
53 pmtimer_identify(driver_t *driver, device_t parent)
54 {
55         device_t child;
56
57         /*
58          * Only add a child if one doesn't exist already.
59          */
60         child = devclass_get_device(pmtimer_devclass, 0);
61         if (child == NULL) {
62                 child = BUS_ADD_CHILD(parent, 0, "pmtimer", 0);
63                 if (child == NULL)
64                         panic("pmtimer_identify");
65         }
66 }
67
68 static int
69 pmtimer_probe(device_t dev)
70 {
71
72         if (ISA_PNP_PROBE(device_get_parent(dev), dev, pmtimer_ids) == ENXIO) {
73                 return (ENXIO);
74         }
75
76         /* only one instance always */
77         return (device_get_unit(dev));
78 }
79
80 static struct timeval suspend_time;
81 static struct timeval diff_time;
82
83 static int
84 pmtimer_suspend(device_t dev)
85 {
86         crit_enter();
87         microtime(&diff_time);
88         inittodr(0);
89         microtime(&suspend_time);
90         timevalsub(&diff_time, &suspend_time);
91         crit_exit();
92         return (0);
93 }
94
95 static int
96 pmtimer_resume(device_t dev)
97 {
98         u_int second, minute, hour;
99         struct timeval resume_time;
100
101         /* modified for adjkerntz */
102         crit_enter();
103         timer_restore();                /* restore the all timers */
104         inittodr(0);                    /* adjust time to RTC */
105         microtime(&resume_time);
106
107         crit_exit();
108         second = resume_time.tv_sec - suspend_time.tv_sec; 
109         hour = second / 3600;
110         second %= 3600;
111         minute = second / 60;
112         second %= 60;
113         log(LOG_NOTICE, "wakeup from sleeping state (slept %02d:%02d:%02d)\n",
114                 hour, minute, second);
115         return (0);
116 }
117
118 static device_method_t pmtimer_methods[] = {
119         /* Device interface */
120         DEVMETHOD(device_identify,      pmtimer_identify),
121         DEVMETHOD(device_probe,         pmtimer_probe),
122         DEVMETHOD(device_attach,        bus_generic_attach),
123         DEVMETHOD(device_suspend,       pmtimer_suspend),
124         DEVMETHOD(device_resume,        pmtimer_resume),
125         { 0, 0 }
126 };
127
128 static driver_t pmtimer_driver = {
129         "pmtimer",
130         pmtimer_methods,
131         1,              /* no softc */
132 };
133
134 DRIVER_MODULE(pmtimer, isa, pmtimer_driver, pmtimer_devclass, 0, 0);