Merge from vendor branch TNFTP:
[dragonfly.git] / sys / platform / vkernel / platform / systimer.c
1 /*
2  * Copyright (c) 2006 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sys/platform/vkernel/platform/systimer.c,v 1.11 2007/01/15 19:08:10 dillon Exp $
35  */
36
37 #include <sys/types.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/systimer.h>
41 #include <sys/sysctl.h>
42 #include <sys/signal.h>
43 #include <sys/interrupt.h>
44 #include <sys/bus.h>
45 #include <sys/time.h>
46 #include <machine/cpu.h>
47 #include <machine/globaldata.h>
48 #include <machine/md_var.h>
49
50 #include <sys/thread2.h>
51
52 #include <unistd.h>
53 #include <signal.h>
54
55 static void cputimer_intr(void *dummy, struct intrframe *frame);
56
57 int disable_rtc_set;
58 SYSCTL_INT(_machdep, CPU_DISRTCSET, disable_rtc_set,
59            CTLFLAG_RW, &disable_rtc_set, 0, "");
60
61 int adjkerntz;
62 int wall_cmos_clock = 0;
63 static struct kqueue_info *kqueue_timer_info;
64
65
66 /*
67  * SYSTIMER IMPLEMENTATION
68  */
69 static sysclock_t vkernel_timer_get_timecount(void);
70 static void vkernel_timer_construct(struct cputimer *timer, sysclock_t oclock);
71
72 static struct cputimer vkernel_cputimer = {
73         SLIST_ENTRY_INITIALIZER,
74         "VKERNEL",
75         CPUTIMER_PRI_VKERNEL,
76         CPUTIMER_VKERNEL,
77         vkernel_timer_get_timecount,
78         cputimer_default_fromhz,
79         cputimer_default_fromus,
80         vkernel_timer_construct,
81         cputimer_default_destruct,
82         1000000,                        /* 1us granularity */
83         0, 0, 0
84 };
85
86 /*
87  * Initialize the systimer subsystem, called from MI code in early boot.
88  */
89 void
90 cpu_initclocks(void)
91 {
92         kprintf("initclocks\n");
93         cputimer_register(&vkernel_cputimer);
94         cputimer_select(&vkernel_cputimer, 0);
95 }
96
97 /*
98  * Constructor to initialize timer->base and get an initial count.
99  */
100 static void
101 vkernel_timer_construct(struct cputimer *timer, sysclock_t oclock)
102 {
103         timer->base = 0;
104         timer->base = oclock - vkernel_timer_get_timecount();
105 }
106
107 /*
108  * Get the current counter, with 2's complement rollover.
109  */
110 static sysclock_t
111 vkernel_timer_get_timecount(void)
112 {
113         static sysclock_t vkernel_last_counter;
114         struct timeval tv;
115         sysclock_t counter;
116
117         /* XXX NO PROTECTION FROM INTERRUPT */
118         gettimeofday(&tv, NULL);
119         counter = (sysclock_t)tv.tv_usec;
120         if (counter < vkernel_last_counter)
121                 vkernel_cputimer.base += 1000000;
122         vkernel_last_counter = counter;
123         counter += vkernel_cputimer.base;
124         return(counter);
125 }
126
127 /*
128  * Configure the interrupt for our core systimer.  Use the kqueue timer
129  * support functions.
130  */
131 void
132 cputimer_intr_config(struct cputimer *timer)
133 {
134         kqueue_timer_info = kqueue_add_timer(cputimer_intr, NULL);
135 }
136
137 /*
138  * Reload the interrupt for our core systimer.  Because the caller's
139  * reload calculation can be negatively indexed, we need a minimal
140  * check to ensure that a reasonable reload value is selected. 
141  */
142 void
143 cputimer_intr_reload(sysclock_t reload)
144 {
145         if (kqueue_timer_info) {
146                 if ((int)reload < 1)
147                         reload = 1;
148                 kqueue_reload_timer(kqueue_timer_info, (reload + 999) / 1000);
149         }
150 }
151
152 /*
153  * clock interrupt.
154  *
155  * NOTE: frame is a struct intrframe pointer.
156  */
157 static void
158 cputimer_intr(void *dummy, struct intrframe *frame)
159 {
160         static sysclock_t sysclock_count;
161         struct globaldata *gd = mycpu;
162 #ifdef SMP
163         struct globaldata *gscan;
164         int n;
165 #endif
166         
167         sysclock_count = sys_cputimer->count();
168 #ifdef SMP
169         for (n = 0; n < ncpus; ++n) {
170                 gscan = globaldata_find(n);
171                 if (TAILQ_FIRST(&gscan->gd_systimerq) == NULL)
172                         continue;
173                 if (gscan != gd) {
174                         lwkt_send_ipiq3(gscan, (ipifunc3_t)systimer_intr,
175                                         &sysclock_count, 0);
176                 } else {
177                         systimer_intr(&sysclock_count, 0, frame);
178                 }
179         }
180 #else
181         if (TAILQ_FIRST(&gd->gd_systimerq) != NULL)
182                 systimer_intr(&sysclock_count, 0, frame);
183 #endif
184 }
185
186 /*
187  * Initialize the time of day register, based on the time base which is, e.g.
188  * from a filesystem.
189  */
190 void
191 inittodr(time_t base)
192 {
193         struct timespec ts;
194         struct timeval tv;
195
196         gettimeofday(&tv, NULL);
197         ts.tv_sec = tv.tv_sec;
198         ts.tv_nsec = tv.tv_usec * 1000;
199         set_timeofday(&ts);
200 }
201
202 /*
203  * Write system time back to the RTC
204  */
205 void
206 resettodr(void)
207 {
208 }
209
210 void
211 DELAY(int usec)
212 {
213         usleep(usec);
214 }
215