| Commit | Line | Data |
|---|---|---|
| 984263bc MD |
1 | /*- |
| 2 | * Copyright (c) 1990 The Regents of the University of California. | |
| 3 | * All rights reserved. | |
| 4 | * | |
| 5 | * This code is derived from software contributed to Berkeley by | |
| 6 | * William Jolitz and Don Ahn. | |
| 7 | * | |
| 8 | * Redistribution and use in source and binary forms, with or without | |
| 9 | * modification, are permitted provided that the following conditions | |
| 10 | * are met: | |
| 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 the | |
| 15 | * documentation and/or other materials provided with the distribution. | |
| 16 | * 3. All advertising materials mentioning features or use of this software | |
| 17 | * must display the following acknowledgement: | |
| 18 | * This product includes software developed by the University of | |
| 19 | * California, Berkeley and its contributors. | |
| 20 | * 4. Neither the name of the University nor the names of its contributors | |
| 21 | * may be used to endorse or promote products derived from this software | |
| 22 | * without specific prior written permission. | |
| 23 | * | |
| 24 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | |
| 25 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
| 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
| 27 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | |
| 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
| 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
| 30 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
| 31 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
| 32 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
| 33 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
| 34 | * SUCH DAMAGE. | |
| 35 | * | |
| 36 | * from: @(#)clock.c 7.2 (Berkeley) 5/12/91 | |
| 37 | * $FreeBSD: src/sys/i386/isa/clock.c,v 1.149.2.6 2002/11/02 04:41:50 iwasaki Exp $ | |
| 21ce0dfa | 38 | * $DragonFly: src/sys/platform/pc32/isa/clock.c,v 1.55 2008/08/02 01:14:43 dillon Exp $ |
| 984263bc MD |
39 | */ |
| 40 | ||
| 41 | /* | |
| 42 | * Routines to handle clock hardware. | |
| 43 | */ | |
| 44 | ||
| 45 | /* | |
| 46 | * inittodr, settodr and support routines written | |
| 47 | * by Christoph Robitschko <chmr@edvz.tu-graz.ac.at> | |
| 48 | * | |
| 49 | * reintroduced and updated by Chris Stenton <chris@gnome.co.uk> 8/10/94 | |
| 50 | */ | |
| 51 | ||
| 1f2de5d4 | 52 | #include "use_apm.h" |
| 984263bc | 53 | #include "opt_clock.h" |
| 984263bc MD |
54 | |
| 55 | #include <sys/param.h> | |
| 56 | #include <sys/systm.h> | |
| 13194089 | 57 | #include <sys/eventhandler.h> |
| 984263bc MD |
58 | #include <sys/time.h> |
| 59 | #include <sys/kernel.h> | |
| e126caf1 | 60 | #include <sys/bus.h> |
| 984263bc MD |
61 | #ifndef SMP |
| 62 | #include <sys/lock.h> | |
| 63 | #endif | |
| 64 | #include <sys/sysctl.h> | |
| 65 | #include <sys/cons.h> | |
| 88c4d2f6 MD |
66 | #include <sys/systimer.h> |
| 67 | #include <sys/globaldata.h> | |
| 68 | #include <sys/thread2.h> | |
| 69 | #include <sys/systimer.h> | |
| 37e7efec | 70 | #include <sys/machintr.h> |
| 984263bc MD |
71 | |
| 72 | #include <machine/clock.h> | |
| 73 | #ifdef CLK_CALIBRATION_LOOP | |
| 74 | #endif | |
| 75 | #include <machine/cputypes.h> | |
| 76 | #include <machine/frame.h> | |
| 77 | #include <machine/ipl.h> | |
| 78 | #include <machine/limits.h> | |
| 79 | #include <machine/md_var.h> | |
| 80 | #include <machine/psl.h> | |
| 984263bc | 81 | #include <machine/segments.h> |
| 984263bc | 82 | #include <machine/smp.h> |
| 984263bc MD |
83 | #include <machine/specialreg.h> |
| 84 | ||
| a9295349 | 85 | #include <machine_base/icu/icu.h> |
| 21ce0dfa | 86 | #include <bus/isa/isa.h> |
| 1f2de5d4 | 87 | #include <bus/isa/rtc.h> |
| a9295349 | 88 | #include <machine_base/isa/timerreg.h> |
| 984263bc | 89 | |
| a9295349 | 90 | #include <machine_base/isa/intr_machdep.h> |
| 984263bc | 91 | |
| 984263bc | 92 | #ifdef APIC_IO |
| 984263bc MD |
93 | /* The interrupt triggered by the 8254 (timer) chip */ |
| 94 | int apic_8254_intr; | |
| 3ae0cd58 | 95 | static void setup_8254_mixed_mode (void); |
| 984263bc | 96 | #endif |
| 88c4d2f6 | 97 | static void i8254_restore(void); |
| e63ac55d | 98 | static void resettodr_on_shutdown(void *arg __unused); |
| 984263bc MD |
99 | |
| 100 | /* | |
| 101 | * 32-bit time_t's can't reach leap years before 1904 or after 2036, so we | |
| 102 | * can use a simple formula for leap years. | |
| 103 | */ | |
| 104 | #define LEAPYEAR(y) ((u_int)(y) % 4 == 0) | |
| 105 | #define DAYSPERYEAR (31+28+31+30+31+30+31+31+30+31+30+31) | |
| 106 | ||
| 88c4d2f6 MD |
107 | #ifndef TIMER_FREQ |
| 108 | #define TIMER_FREQ 1193182 | |
| 109 | #endif | |
| 984263bc | 110 | |
| e54beab0 JS |
111 | static uint8_t i8254_walltimer_sel; |
| 112 | static uint16_t i8254_walltimer_cntr; | |
| 984263bc MD |
113 | |
| 114 | int adjkerntz; /* local offset from GMT in seconds */ | |
| 984263bc | 115 | int disable_rtc_set; /* disable resettodr() if != 0 */ |
| 88c4d2f6 | 116 | int statclock_disable = 1; /* we don't use the statclock right now */ |
| 8b3ec75a | 117 | int tsc_present; |
| 374133e3 | 118 | int64_t tsc_frequency; |
| 984263bc MD |
119 | int tsc_is_broken; |
| 120 | int wall_cmos_clock; /* wall CMOS clock assumed if != 0 */ | |
| 88c4d2f6 MD |
121 | int timer0_running; |
| 122 | enum tstate { RELEASED, ACQUIRED }; | |
| 123 | enum tstate timer0_state; | |
| 124 | enum tstate timer1_state; | |
| 125 | enum tstate timer2_state; | |
| 984263bc MD |
126 | |
| 127 | static int beeping = 0; | |
| 984263bc | 128 | static const u_char daysinmonth[] = {31,28,31,30,31,30,31,31,30,31,30,31}; |
| 984263bc MD |
129 | static u_char rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF; |
| 130 | static u_char rtc_statusb = RTCSB_24HR | RTCSB_PINTR; | |
| e63ac55d | 131 | static int rtc_loaded; |
| 984263bc | 132 | |
| 1636ba19 MD |
133 | static int i8254_cputimer_div; |
| 134 | ||
| ef612539 | 135 | static int i8254_nointr; |
| e87376d9 SZ |
136 | static int i8254_intr_disable = 0; |
| 137 | TUNABLE_INT("hw.i8254.intr_disable", &i8254_intr_disable); | |
| 138 | ||
| b02bbab0 JS |
139 | static struct callout sysbeepstop_ch; |
| 140 | ||
| 044ee7c4 MD |
141 | static sysclock_t i8254_cputimer_count(void); |
| 142 | static void i8254_cputimer_construct(struct cputimer *cputimer, sysclock_t last); | |
| 143 | static void i8254_cputimer_destruct(struct cputimer *cputimer); | |
| 144 | ||
| 145 | static struct cputimer i8254_cputimer = { | |
| d8fdd978 | 146 | SLIST_ENTRY_INITIALIZER, |
| 044ee7c4 MD |
147 | "i8254", |
| 148 | CPUTIMER_PRI_8254, | |
| 149 | 0, | |
| 150 | i8254_cputimer_count, | |
| 151 | cputimer_default_fromhz, | |
| 152 | cputimer_default_fromus, | |
| 153 | i8254_cputimer_construct, | |
| 154 | i8254_cputimer_destruct, | |
| 155 | TIMER_FREQ, | |
| 5ee041ae | 156 | 0, 0, 0 |
| 044ee7c4 MD |
157 | }; |
| 158 | ||
| ef612539 SZ |
159 | static void i8254_intr_reload(struct cputimer_intr *, sysclock_t); |
| 160 | static void i8254_intr_config(struct cputimer_intr *, const struct cputimer *); | |
| 161 | static void i8254_intr_initclock(struct cputimer_intr *, boolean_t); | |
| 162 | ||
| 163 | static struct cputimer_intr i8254_cputimer_intr = { | |
| 164 | .freq = TIMER_FREQ, | |
| 165 | .reload = i8254_intr_reload, | |
| 166 | .enable = cputimer_intr_default_enable, | |
| 167 | .config = i8254_intr_config, | |
| 168 | .restart = cputimer_intr_default_restart, | |
| 169 | .pmfixup = cputimer_intr_default_pmfixup, | |
| 170 | .initclock = i8254_intr_initclock, | |
| 171 | .next = SLIST_ENTRY_INITIALIZER, | |
| 172 | .name = "i8254", | |
| 173 | .type = CPUTIMER_INTR_8254, | |
| 174 | .prio = CPUTIMER_INTR_PRIO_8254, | |
| 175 | .caps = CPUTIMER_INTR_CAP_PS | |
| 176 | }; | |
| 177 | ||
| 88c4d2f6 MD |
178 | /* |
| 179 | * timer0 clock interrupt. Timer0 is in one-shot mode and has stopped | |
| 180 | * counting as of this interrupt. We use timer1 in free-running mode (not | |
| 181 | * generating any interrupts) as our main counter. Each cpu has timeouts | |
| 182 | * pending. | |
| ec4812b0 MD |
183 | * |
| 184 | * This code is INTR_MPSAFE and may be called without the BGL held. | |
| 88c4d2f6 | 185 | */ |
| 984263bc | 186 | static void |
| 477d3c1c | 187 | clkintr(void *dummy, void *frame_arg) |
| 984263bc | 188 | { |
| ec4812b0 | 189 | static sysclock_t sysclock_count; /* NOTE! Must be static */ |
| 88c4d2f6 | 190 | struct globaldata *gd = mycpu; |
| b8a98473 | 191 | #ifdef SMP |
| 88c4d2f6 MD |
192 | struct globaldata *gscan; |
| 193 | int n; | |
| b8a98473 | 194 | #endif |
| 9a47427a | 195 | |
| b505872f | 196 | /* |
| 88c4d2f6 | 197 | * SWSTROBE mode is a one-shot, the timer is no longer running |
| b505872f | 198 | */ |
| 88c4d2f6 | 199 | timer0_running = 0; |
| b505872f | 200 | |
| 88c4d2f6 | 201 | /* |
| 774fc796 MD |
202 | * XXX the dispatcher needs work. right now we call systimer_intr() |
| 203 | * directly or via IPI for any cpu with systimers queued, which is | |
| ec4812b0 | 204 | * usually *ALL* of them. We need to use the LAPIC timer for this. |
| 88c4d2f6 | 205 | */ |
| ec4812b0 | 206 | sysclock_count = sys_cputimer->count(); |
| b8a98473 | 207 | #ifdef SMP |
| 88c4d2f6 MD |
208 | for (n = 0; n < ncpus; ++n) { |
| 209 | gscan = globaldata_find(n); | |
| 774fc796 | 210 | if (TAILQ_FIRST(&gscan->gd_systimerq) == NULL) |
| 88c4d2f6 MD |
211 | continue; |
| 212 | if (gscan != gd) { | |
| b8a98473 | 213 | lwkt_send_ipiq3(gscan, (ipifunc3_t)systimer_intr, |
| ec4812b0 | 214 | &sysclock_count, 0); |
| 88c4d2f6 | 215 | } else { |
| ec4812b0 | 216 | systimer_intr(&sysclock_count, 0, frame_arg); |
| 88c4d2f6 | 217 | } |
| 984263bc | 218 | } |
| b8a98473 MD |
219 | #else |
| 220 | if (TAILQ_FIRST(&gd->gd_systimerq) != NULL) | |
| ec4812b0 | 221 | systimer_intr(&sysclock_count, 0, frame_arg); |
| b8a98473 | 222 | #endif |
| 984263bc MD |
223 | } |
| 224 | ||
| 88c4d2f6 | 225 | |
| 984263bc | 226 | /* |
| 88c4d2f6 | 227 | * NOTE! not MP safe. |
| 984263bc MD |
228 | */ |
| 229 | int | |
| 984263bc MD |
230 | acquire_timer2(int mode) |
| 231 | { | |
| 984263bc MD |
232 | if (timer2_state != RELEASED) |
| 233 | return (-1); | |
| 234 | timer2_state = ACQUIRED; | |
| 235 | ||
| 236 | /* | |
| 237 | * This access to the timer registers is as atomic as possible | |
| 238 | * because it is a single instruction. We could do better if we | |
| 88c4d2f6 | 239 | * knew the rate. |
| 984263bc MD |
240 | */ |
| 241 | outb(TIMER_MODE, TIMER_SEL2 | (mode & 0x3f)); | |
| 984263bc MD |
242 | return (0); |
| 243 | } | |
| 244 | ||
| 245 | int | |
| 09e6e929 | 246 | release_timer2(void) |
| 984263bc | 247 | { |
| 984263bc MD |
248 | if (timer2_state != ACQUIRED) |
| 249 | return (-1); | |
| 984263bc | 250 | outb(TIMER_MODE, TIMER_SEL2 | TIMER_SQWAVE | TIMER_16BIT); |
| 88c4d2f6 | 251 | timer2_state = RELEASED; |
| 984263bc MD |
252 | return (0); |
| 253 | } | |
| 254 | ||
| 255 | /* | |
| 256 | * This routine receives statistical clock interrupts from the RTC. | |
| 257 | * As explained above, these occur at 128 interrupts per second. | |
| 258 | * When profiling, we receive interrupts at a rate of 1024 Hz. | |
| 259 | * | |
| 260 | * This does not actually add as much overhead as it sounds, because | |
| 261 | * when the statistical clock is active, the hardclock driver no longer | |
| 262 | * needs to keep (inaccurate) statistics on its own. This decouples | |
| 263 | * statistics gathering from scheduling interrupts. | |
| 264 | * | |
| 265 | * The RTC chip requires that we read status register C (RTC_INTR) | |
| 266 | * to acknowledge an interrupt, before it will generate the next one. | |
| 267 | * Under high interrupt load, rtcintr() can be indefinitely delayed and | |
| 268 | * the clock can tick immediately after the read from RTC_INTR. In this | |
| 269 | * case, the mc146818A interrupt signal will not drop for long enough | |
| 270 | * to register with the 8259 PIC. If an interrupt is missed, the stat | |
| 271 | * clock will halt, considerably degrading system performance. This is | |
| 272 | * why we use 'while' rather than a more straightforward 'if' below. | |
| 273 | * Stat clock ticks can still be lost, causing minor loss of accuracy | |
| 274 | * in the statistics, but the stat clock will no longer stop. | |
| 275 | */ | |
| 276 | static void | |
| 477d3c1c | 277 | rtcintr(void *dummy, void *frame) |
| 984263bc MD |
278 | { |
| 279 | while (rtcin(RTC_INTR) & RTCIR_PERIOD) | |
| 88c4d2f6 | 280 | ; |
| 477d3c1c | 281 | /* statclock(frame); no longer used */ |
| 984263bc MD |
282 | } |
| 283 | ||
| 284 | #include "opt_ddb.h" | |
| 285 | #ifdef DDB | |
| 286 | #include <ddb/ddb.h> | |
| 287 | ||
| 288 | DB_SHOW_COMMAND(rtc, rtc) | |
| 289 | { | |
| 26be20a0 | 290 | kprintf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n", |
| 984263bc MD |
291 | rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY), |
| 292 | rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC), | |
| 293 | rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR)); | |
| 294 | } | |
| 295 | #endif /* DDB */ | |
| 296 | ||
| 88c4d2f6 | 297 | /* |
| 88c4d2f6 MD |
298 | * Return the current cpu timer count as a 32 bit integer. |
| 299 | */ | |
| 044ee7c4 | 300 | static |
| 88c4d2f6 | 301 | sysclock_t |
| 044ee7c4 | 302 | i8254_cputimer_count(void) |
| 88c4d2f6 | 303 | { |
| 88c4d2f6 MD |
304 | static __uint16_t cputimer_last; |
| 305 | __uint16_t count; | |
| 306 | sysclock_t ret; | |
| 984263bc | 307 | |
| 88c4d2f6 | 308 | clock_lock(); |
| e54beab0 JS |
309 | outb(TIMER_MODE, i8254_walltimer_sel | TIMER_LATCH); |
| 310 | count = (__uint8_t)inb(i8254_walltimer_cntr); /* get countdown */ | |
| 311 | count |= ((__uint8_t)inb(i8254_walltimer_cntr) << 8); | |
| 88c4d2f6 MD |
312 | count = -count; /* -> countup */ |
| 313 | if (count < cputimer_last) /* rollover */ | |
| 044ee7c4 MD |
314 | i8254_cputimer.base += 0x00010000; |
| 315 | ret = i8254_cputimer.base | count; | |
| 88c4d2f6 | 316 | cputimer_last = count; |
| 8a8d5d85 | 317 | clock_unlock(); |
| 88c4d2f6 MD |
318 | return(ret); |
| 319 | } | |
| 320 | ||
| 321 | /* | |
| 1636ba19 MD |
322 | * This function is called whenever the system timebase changes, allowing |
| 323 | * us to calculate what is needed to convert a system timebase tick | |
| 324 | * into an 8254 tick for the interrupt timer. If we can convert to a | |
| 325 | * simple shift, multiplication, or division, we do so. Otherwise 64 | |
| 326 | * bit arithmatic is required every time the interrupt timer is reloaded. | |
| 327 | */ | |
| ef612539 SZ |
328 | static void |
| 329 | i8254_intr_config(struct cputimer_intr *cti, const struct cputimer *timer) | |
| 1636ba19 MD |
330 | { |
| 331 | int freq; | |
| 332 | int div; | |
| 333 | ||
| 334 | /* | |
| 335 | * Will a simple divide do the trick? | |
| 336 | */ | |
| ef612539 SZ |
337 | div = (timer->freq + (cti->freq / 2)) / cti->freq; |
| 338 | freq = cti->freq * div; | |
| 1636ba19 MD |
339 | |
| 340 | if (freq >= timer->freq - 1 && freq <= timer->freq + 1) | |
| 341 | i8254_cputimer_div = div; | |
| 342 | else | |
| 343 | i8254_cputimer_div = 0; | |
| 344 | } | |
| 345 | ||
| 346 | /* | |
| 88c4d2f6 MD |
347 | * Reload for the next timeout. It is possible for the reload value |
| 348 | * to be 0 or negative, indicating that an immediate timer interrupt | |
| 349 | * is desired. For now make the minimum 2 ticks. | |
| 1636ba19 MD |
350 | * |
| 351 | * We may have to convert from the system timebase to the 8254 timebase. | |
| 88c4d2f6 | 352 | */ |
| c5c70fac | 353 | static void |
| ef612539 | 354 | i8254_intr_reload(struct cputimer_intr *cti, sysclock_t reload) |
| 88c4d2f6 MD |
355 | { |
| 356 | __uint16_t count; | |
| 357 | ||
| 1636ba19 MD |
358 | if (i8254_cputimer_div) |
| 359 | reload /= i8254_cputimer_div; | |
| 360 | else | |
| ef612539 | 361 | reload = (int64_t)reload * cti->freq / sys_cputimer->freq; |
| 5ee041ae | 362 | |
| 88c4d2f6 MD |
363 | if ((int)reload < 2) |
| 364 | reload = 2; | |
| 365 | ||
| 366 | clock_lock(); | |
| 367 | if (timer0_running) { | |
| 368 | outb(TIMER_MODE, TIMER_SEL0 | TIMER_LATCH); /* count-down timer */ | |
| 369 | count = (__uint8_t)inb(TIMER_CNTR0); /* lsb */ | |
| 370 | count |= ((__uint8_t)inb(TIMER_CNTR0) << 8); /* msb */ | |
| 371 | if (reload < count) { | |
| 372 | outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT); | |
| 373 | outb(TIMER_CNTR0, (__uint8_t)reload); /* lsb */ | |
| 374 | outb(TIMER_CNTR0, (__uint8_t)(reload >> 8)); /* msb */ | |
| 375 | } | |
| 376 | } else { | |
| 377 | timer0_running = 1; | |
| 378 | if (reload > 0xFFFF) | |
| 379 | reload = 0; /* full count */ | |
| 380 | outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT); | |
| 381 | outb(TIMER_CNTR0, (__uint8_t)reload); /* lsb */ | |
| 382 | outb(TIMER_CNTR0, (__uint8_t)(reload >> 8)); /* msb */ | |
| 383 | } | |
| 384 | clock_unlock(); | |
| 984263bc MD |
385 | } |
| 386 | ||
| 387 | /* | |
| dbcd0c9b MD |
388 | * DELAY(usec) - Spin for the specified number of microseconds. |
| 389 | * DRIVERSLEEP(usec) - Spin for the specified number of microseconds, | |
| 390 | * but do a thread switch in the loop | |
| 391 | * | |
| 88c4d2f6 | 392 | * Relies on timer 1 counting down from (cputimer_freq / hz) |
| 984263bc MD |
393 | * Note: timer had better have been programmed before this is first used! |
| 394 | */ | |
| dbcd0c9b MD |
395 | static void |
| 396 | DODELAY(int n, int doswitch) | |
| 984263bc MD |
397 | { |
| 398 | int delta, prev_tick, tick, ticks_left; | |
| 399 | ||
| 400 | #ifdef DELAYDEBUG | |
| 401 | int getit_calls = 1; | |
| 402 | int n1; | |
| 403 | static int state = 0; | |
| 404 | ||
| 405 | if (state == 0) { | |
| 406 | state = 1; | |
| 407 | for (n1 = 1; n1 <= 10000000; n1 *= 10) | |
| 408 | DELAY(n1); | |
| 409 | state = 2; | |
| 410 | } | |
| 411 | if (state == 1) | |
| 26be20a0 | 412 | kprintf("DELAY(%d)...", n); |
| 984263bc MD |
413 | #endif |
| 414 | /* | |
| 415 | * Guard against the timer being uninitialized if we are called | |
| 416 | * early for console i/o. | |
| 417 | */ | |
| 88c4d2f6 MD |
418 | if (timer0_state == RELEASED) |
| 419 | i8254_restore(); | |
| 984263bc MD |
420 | |
| 421 | /* | |
| 422 | * Read the counter first, so that the rest of the setup overhead is | |
| 1636ba19 MD |
423 | * counted. Then calculate the number of hardware timer ticks |
| 424 | * required, rounding up to be sure we delay at least the requested | |
| 425 | * number of microseconds. | |
| 984263bc | 426 | */ |
| 044ee7c4 | 427 | prev_tick = sys_cputimer->count(); |
| 1636ba19 MD |
428 | ticks_left = ((u_int)n * (int64_t)sys_cputimer->freq + 999999) / |
| 429 | 1000000; | |
| 430 | ||
| 984263bc | 431 | /* |
| 1636ba19 | 432 | * Loop until done. |
| 984263bc | 433 | */ |
| 984263bc | 434 | while (ticks_left > 0) { |
| 044ee7c4 | 435 | tick = sys_cputimer->count(); |
| 984263bc MD |
436 | #ifdef DELAYDEBUG |
| 437 | ++getit_calls; | |
| 438 | #endif | |
| 88c4d2f6 | 439 | delta = tick - prev_tick; |
| 984263bc | 440 | prev_tick = tick; |
| 88c4d2f6 MD |
441 | if (delta < 0) |
| 442 | delta = 0; | |
| 984263bc | 443 | ticks_left -= delta; |
| dbcd0c9b MD |
444 | if (doswitch && ticks_left > 0) |
| 445 | lwkt_switch(); | |
| 984263bc MD |
446 | } |
| 447 | #ifdef DELAYDEBUG | |
| 448 | if (state == 1) | |
| 26be20a0 | 449 | kprintf(" %d calls to getit() at %d usec each\n", |
| 984263bc MD |
450 | getit_calls, (n + 5) / getit_calls); |
| 451 | #endif | |
| 452 | } | |
| 453 | ||
| dbcd0c9b MD |
454 | void |
| 455 | DELAY(int n) | |
| 456 | { | |
| 457 | DODELAY(n, 0); | |
| 458 | } | |
| 459 | ||
| 460 | void | |
| 461 | DRIVERSLEEP(int usec) | |
| 462 | { | |
| 463 | globaldata_t gd = mycpu; | |
| 464 | ||
| 465 | if (gd->gd_intr_nesting_level || | |
| 466 | gd->gd_spinlock_rd || | |
| 467 | gd->gd_spinlocks_wr) { | |
| 468 | DODELAY(usec, 0); | |
| 469 | } else { | |
| 470 | DODELAY(usec, 1); | |
| 471 | } | |
| 472 | } | |
| 473 | ||
| 984263bc MD |
474 | static void |
| 475 | sysbeepstop(void *chan) | |
| 476 | { | |
| 477 | outb(IO_PPI, inb(IO_PPI)&0xFC); /* disable counter2 output to speaker */ | |
| 984263bc | 478 | beeping = 0; |
| 88c4d2f6 | 479 | release_timer2(); |
| 984263bc MD |
480 | } |
| 481 | ||
| 482 | int | |
| 483 | sysbeep(int pitch, int period) | |
| 484 | { | |
| 984263bc | 485 | if (acquire_timer2(TIMER_SQWAVE|TIMER_16BIT)) |
| 88c4d2f6 MD |
486 | return(-1); |
| 487 | /* | |
| 488 | * Nobody else is using timer2, we do not need the clock lock | |
| 489 | */ | |
| 984263bc MD |
490 | outb(TIMER_CNTR2, pitch); |
| 491 | outb(TIMER_CNTR2, (pitch>>8)); | |
| 984263bc MD |
492 | if (!beeping) { |
| 493 | /* enable counter2 output to speaker */ | |
| 494 | outb(IO_PPI, inb(IO_PPI) | 3); | |
| 495 | beeping = period; | |
| b02bbab0 | 496 | callout_reset(&sysbeepstop_ch, period, sysbeepstop, NULL); |
| 984263bc | 497 | } |
| 984263bc MD |
498 | return (0); |
| 499 | } | |
| 500 | ||
| 501 | /* | |
| 502 | * RTC support routines | |
| 503 | */ | |
| 504 | ||
| 505 | int | |
| 09e6e929 | 506 | rtcin(int reg) |
| 984263bc | 507 | { |
| 984263bc MD |
508 | u_char val; |
| 509 | ||
| 9acd5bbb | 510 | crit_enter(); |
| 984263bc MD |
511 | outb(IO_RTC, reg); |
| 512 | inb(0x84); | |
| 513 | val = inb(IO_RTC + 1); | |
| 514 | inb(0x84); | |
| 9acd5bbb | 515 | crit_exit(); |
| 984263bc MD |
516 | return (val); |
| 517 | } | |
| 518 | ||
| 519 | static __inline void | |
| 520 | writertc(u_char reg, u_char val) | |
| 521 | { | |
| 9acd5bbb | 522 | crit_enter(); |
| 984263bc MD |
523 | inb(0x84); |
| 524 | outb(IO_RTC, reg); | |
| 525 | inb(0x84); | |
| 526 | outb(IO_RTC + 1, val); | |
| 527 | inb(0x84); /* XXX work around wrong order in rtcin() */ | |
| 9acd5bbb | 528 | crit_exit(); |
| 984263bc MD |
529 | } |
| 530 | ||
| 531 | static __inline int | |
| 532 | readrtc(int port) | |
| 533 | { | |
| 534 | return(bcd2bin(rtcin(port))); | |
| 535 | } | |
| 536 | ||
| 537 | static u_int | |
| 538 | calibrate_clocks(void) | |
| 539 | { | |
| 540 | u_int64_t old_tsc; | |
| 541 | u_int count, prev_count, tot_count; | |
| 542 | int sec, start_sec, timeout; | |
| 543 | ||
| 544 | if (bootverbose) | |
| 26be20a0 | 545 | kprintf("Calibrating clock(s) ... "); |
| 984263bc MD |
546 | if (!(rtcin(RTC_STATUSD) & RTCSD_PWR)) |
| 547 | goto fail; | |
| 548 | timeout = 100000000; | |
| 549 | ||
| 550 | /* Read the mc146818A seconds counter. */ | |
| 551 | for (;;) { | |
| 552 | if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) { | |
| 553 | sec = rtcin(RTC_SEC); | |
| 554 | break; | |
| 555 | } | |
| 556 | if (--timeout == 0) | |
| 557 | goto fail; | |
| 558 | } | |
| 559 | ||
| 560 | /* Wait for the mC146818A seconds counter to change. */ | |
| 561 | start_sec = sec; | |
| 562 | for (;;) { | |
| 563 | if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) { | |
| 564 | sec = rtcin(RTC_SEC); | |
| 565 | if (sec != start_sec) | |
| 566 | break; | |
| 567 | } | |
| 568 | if (--timeout == 0) | |
| 569 | goto fail; | |
| 570 | } | |
| 571 | ||
| 572 | /* Start keeping track of the i8254 counter. */ | |
| 044ee7c4 | 573 | prev_count = sys_cputimer->count(); |
| 984263bc MD |
574 | tot_count = 0; |
| 575 | ||
| 576 | if (tsc_present) | |
| 577 | old_tsc = rdtsc(); | |
| 578 | else | |
| 579 | old_tsc = 0; /* shut up gcc */ | |
| 580 | ||
| 581 | /* | |
| 582 | * Wait for the mc146818A seconds counter to change. Read the i8254 | |
| 583 | * counter for each iteration since this is convenient and only | |
| 584 | * costs a few usec of inaccuracy. The timing of the final reads | |
| 585 | * of the counters almost matches the timing of the initial reads, | |
| 586 | * so the main cause of inaccuracy is the varying latency from | |
| 587 | * inside getit() or rtcin(RTC_STATUSA) to the beginning of the | |
| 588 | * rtcin(RTC_SEC) that returns a changed seconds count. The | |
| 589 | * maximum inaccuracy from this cause is < 10 usec on 486's. | |
| 590 | */ | |
| 591 | start_sec = sec; | |
| 592 | for (;;) { | |
| 593 | if (!(rtcin(RTC_STATUSA) & RTCSA_TUP)) | |
| 594 | sec = rtcin(RTC_SEC); | |
| 044ee7c4 | 595 | count = sys_cputimer->count(); |
| 88c4d2f6 | 596 | tot_count += (int)(count - prev_count); |
| 984263bc MD |
597 | prev_count = count; |
| 598 | if (sec != start_sec) | |
| 599 | break; | |
| 600 | if (--timeout == 0) | |
| 601 | goto fail; | |
| 602 | } | |
| 603 | ||
| 604 | /* | |
| 605 | * Read the cpu cycle counter. The timing considerations are | |
| 606 | * similar to those for the i8254 clock. | |
| 607 | */ | |
| 374133e3 MD |
608 | if (tsc_present) { |
| 609 | tsc_frequency = rdtsc() - old_tsc; | |
| 374133e3 | 610 | } |
| 984263bc | 611 | |
| c17827b4 | 612 | if (tsc_present) |
| 870b0161 | 613 | kprintf("TSC clock: %llu Hz, ", tsc_frequency); |
| 26be20a0 | 614 | kprintf("i8254 clock: %u Hz\n", tot_count); |
| 984263bc MD |
615 | return (tot_count); |
| 616 | ||
| 617 | fail: | |
| 26be20a0 | 618 | kprintf("failed, using default i8254 clock of %u Hz\n", |
| 044ee7c4 MD |
619 | i8254_cputimer.freq); |
| 620 | return (i8254_cputimer.freq); | |
| 984263bc MD |
621 | } |
| 622 | ||
| 623 | static void | |
| 624 | i8254_restore(void) | |
| 625 | { | |
| 88c4d2f6 | 626 | timer0_state = ACQUIRED; |
| e54beab0 | 627 | |
| 044ee7c4 MD |
628 | clock_lock(); |
| 629 | ||
| 630 | /* | |
| 631 | * Timer0 is our fine-grained variable clock interrupt | |
| 632 | */ | |
| 633 | outb(TIMER_MODE, TIMER_SEL0 | TIMER_SWSTROBE | TIMER_16BIT); | |
| 634 | outb(TIMER_CNTR0, 2); /* lsb */ | |
| 635 | outb(TIMER_CNTR0, 0); /* msb */ | |
| ee31250e | 636 | clock_unlock(); |
| 044ee7c4 | 637 | |
| ef612539 SZ |
638 | if (!i8254_nointr) { |
| 639 | cputimer_intr_register(&i8254_cputimer_intr); | |
| 640 | cputimer_intr_select(&i8254_cputimer_intr, 0); | |
| 641 | } | |
| 642 | ||
| 044ee7c4 MD |
643 | /* |
| 644 | * Timer1 or timer2 is our free-running clock, but only if another | |
| 645 | * has not been selected. | |
| 646 | */ | |
| 5ee041ae MD |
647 | cputimer_register(&i8254_cputimer); |
| 648 | cputimer_select(&i8254_cputimer, 0); | |
| 044ee7c4 MD |
649 | } |
| 650 | ||
| 651 | static void | |
| 652 | i8254_cputimer_construct(struct cputimer *timer, sysclock_t oldclock) | |
| 653 | { | |
| 654 | int which; | |
| 655 | ||
| 656 | /* | |
| 657 | * Should we use timer 1 or timer 2 ? | |
| 658 | */ | |
| 659 | which = 0; | |
| 660 | TUNABLE_INT_FETCH("hw.i8254.walltimer", &which); | |
| 661 | if (which != 1 && which != 2) | |
| 662 | which = 2; | |
| 663 | ||
| 664 | switch(which) { | |
| 665 | case 1: | |
| 666 | timer->name = "i8254_timer1"; | |
| 667 | timer->type = CPUTIMER_8254_SEL1; | |
| e54beab0 JS |
668 | i8254_walltimer_sel = TIMER_SEL1; |
| 669 | i8254_walltimer_cntr = TIMER_CNTR1; | |
| 670 | timer1_state = ACQUIRED; | |
| 044ee7c4 MD |
671 | break; |
| 672 | case 2: | |
| 673 | timer->name = "i8254_timer2"; | |
| 674 | timer->type = CPUTIMER_8254_SEL2; | |
| e54beab0 JS |
675 | i8254_walltimer_sel = TIMER_SEL2; |
| 676 | i8254_walltimer_cntr = TIMER_CNTR2; | |
| 677 | timer2_state = ACQUIRED; | |
| 044ee7c4 | 678 | break; |
| e54beab0 | 679 | } |
| 044ee7c4 MD |
680 | |
| 681 | timer->base = (oldclock + 0xFFFF) & ~0xFFFF; | |
| 682 | ||
| ee31250e | 683 | clock_lock(); |
| e54beab0 JS |
684 | outb(TIMER_MODE, i8254_walltimer_sel | TIMER_RATEGEN | TIMER_16BIT); |
| 685 | outb(i8254_walltimer_cntr, 0); /* lsb */ | |
| 686 | outb(i8254_walltimer_cntr, 0); /* msb */ | |
| 88c4d2f6 | 687 | outb(IO_PPI, inb(IO_PPI) | 1); /* bit 0: enable gate, bit 1: spkr */ |
| ee31250e | 688 | clock_unlock(); |
| 044ee7c4 MD |
689 | } |
| 690 | ||
| 691 | static void | |
| 692 | i8254_cputimer_destruct(struct cputimer *timer) | |
| 693 | { | |
| 694 | switch(timer->type) { | |
| 695 | case CPUTIMER_8254_SEL1: | |
| 696 | timer1_state = RELEASED; | |
| 697 | break; | |
| 698 | case CPUTIMER_8254_SEL2: | |
| 699 | timer2_state = RELEASED; | |
| 700 | break; | |
| 701 | default: | |
| 702 | break; | |
| 703 | } | |
| 704 | timer->type = 0; | |
| 984263bc MD |
705 | } |
| 706 | ||
| 707 | static void | |
| 708 | rtc_restore(void) | |
| 709 | { | |
| 984263bc MD |
710 | /* Restore all of the RTC's "status" (actually, control) registers. */ |
| 711 | writertc(RTC_STATUSB, RTCSB_24HR); | |
| 712 | writertc(RTC_STATUSA, rtc_statusa); | |
| 713 | writertc(RTC_STATUSB, rtc_statusb); | |
| 714 | } | |
| 715 | ||
| 716 | /* | |
| 0284027e | 717 | * Restore all the timers. |
| 984263bc | 718 | * |
| 0d1dffdf MD |
719 | * This function is called to resynchronize our core timekeeping after a |
| 720 | * long halt, e.g. from apm_default_resume() and friends. It is also | |
| 721 | * called if after a BIOS call we have detected munging of the 8254. | |
| 722 | * It is necessary because cputimer_count() counter's delta may have grown | |
| 723 | * too large for nanouptime() and friends to handle, or (in the case of 8254 | |
| 724 | * munging) might cause the SYSTIMER code to prematurely trigger. | |
| 984263bc MD |
725 | */ |
| 726 | void | |
| 727 | timer_restore(void) | |
| 728 | { | |
| 0284027e | 729 | crit_enter(); |
| 984263bc MD |
730 | i8254_restore(); /* restore timer_freq and hz */ |
| 731 | rtc_restore(); /* reenable RTC interrupts */ | |
| 0284027e | 732 | crit_exit(); |
| 984263bc MD |
733 | } |
| 734 | ||
| 735 | /* | |
| 736 | * Initialize 8254 timer 0 early so that it can be used in DELAY(). | |
| 984263bc MD |
737 | */ |
| 738 | void | |
| 09e6e929 | 739 | startrtclock(void) |
| 984263bc MD |
740 | { |
| 741 | u_int delta, freq; | |
| 742 | ||
| 88c4d2f6 MD |
743 | /* |
| 744 | * Can we use the TSC? | |
| 745 | */ | |
| 984263bc MD |
746 | if (cpu_feature & CPUID_TSC) |
| 747 | tsc_present = 1; | |
| 748 | else | |
| 749 | tsc_present = 0; | |
| 750 | ||
| 88c4d2f6 MD |
751 | /* |
| 752 | * Initial RTC state, don't do anything unexpected | |
| 753 | */ | |
| 984263bc MD |
754 | writertc(RTC_STATUSA, rtc_statusa); |
| 755 | writertc(RTC_STATUSB, RTCSB_24HR); | |
| 756 | ||
| 88c4d2f6 MD |
757 | /* |
| 758 | * Set the 8254 timer0 in TIMER_SWSTROBE mode and cause it to | |
| 759 | * generate an interrupt, which we will ignore for now. | |
| 760 | * | |
| 761 | * Set the 8254 timer1 in TIMER_RATEGEN mode and load 0x0000 | |
| 762 | * (so it counts a full 2^16 and repeats). We will use this timer | |
| 763 | * for our counting. | |
| 764 | */ | |
| 765 | i8254_restore(); | |
| 984263bc MD |
766 | freq = calibrate_clocks(); |
| 767 | #ifdef CLK_CALIBRATION_LOOP | |
| 768 | if (bootverbose) { | |
| 26be20a0 | 769 | kprintf( |
| 984263bc MD |
770 | "Press a key on the console to abort clock calibration\n"); |
| 771 | while (cncheckc() == -1) | |
| 772 | calibrate_clocks(); | |
| 773 | } | |
| 774 | #endif | |
| 775 | ||
| 776 | /* | |
| 777 | * Use the calibrated i8254 frequency if it seems reasonable. | |
| 778 | * Otherwise use the default, and don't use the calibrated i586 | |
| 779 | * frequency. | |
| 780 | */ | |
| 044ee7c4 MD |
781 | delta = freq > i8254_cputimer.freq ? |
| 782 | freq - i8254_cputimer.freq : i8254_cputimer.freq - freq; | |
| 783 | if (delta < i8254_cputimer.freq / 100) { | |
| 984263bc MD |
784 | #ifndef CLK_USE_I8254_CALIBRATION |
| 785 | if (bootverbose) | |
| 26be20a0 | 786 | kprintf( |
| 984263bc | 787 | "CLK_USE_I8254_CALIBRATION not specified - using default frequency\n"); |
| 044ee7c4 | 788 | freq = i8254_cputimer.freq; |
| 984263bc | 789 | #endif |
| ef612539 SZ |
790 | /* |
| 791 | * NOTE: | |
| 792 | * Interrupt timer's freq must be adjusted | |
| 793 | * before we change the cuptimer's frequency. | |
| 794 | */ | |
| 795 | i8254_cputimer_intr.freq = freq; | |
| 5ee041ae | 796 | cputimer_set_frequency(&i8254_cputimer, freq); |
| 984263bc MD |
797 | } else { |
| 798 | if (bootverbose) | |
| 26be20a0 | 799 | kprintf( |
| 984263bc | 800 | "%d Hz differs from default of %d Hz by more than 1%%\n", |
| 044ee7c4 | 801 | freq, i8254_cputimer.freq); |
| 374133e3 | 802 | tsc_frequency = 0; |
| 984263bc MD |
803 | } |
| 804 | ||
| 984263bc | 805 | #ifndef CLK_USE_TSC_CALIBRATION |
| 870b0161 | 806 | if (tsc_frequency != 0) { |
| 984263bc | 807 | if (bootverbose) |
| 26be20a0 | 808 | kprintf( |
| 984263bc | 809 | "CLK_USE_TSC_CALIBRATION not specified - using old calibration method\n"); |
| 374133e3 | 810 | tsc_frequency = 0; |
| 984263bc MD |
811 | } |
| 812 | #endif | |
| 374133e3 | 813 | if (tsc_present && tsc_frequency == 0) { |
| 984263bc MD |
814 | /* |
| 815 | * Calibration of the i586 clock relative to the mc146818A | |
| 816 | * clock failed. Do a less accurate calibration relative | |
| 817 | * to the i8254 clock. | |
| 818 | */ | |
| 819 | u_int64_t old_tsc = rdtsc(); | |
| 820 | ||
| 821 | DELAY(1000000); | |
| 374133e3 | 822 | tsc_frequency = rdtsc() - old_tsc; |
| 984263bc | 823 | #ifdef CLK_USE_TSC_CALIBRATION |
| 870b0161 MD |
824 | if (bootverbose) { |
| 825 | kprintf("TSC clock: %llu Hz (Method B)\n", | |
| 826 | tsc_frequency); | |
| 827 | } | |
| 984263bc MD |
828 | #endif |
| 829 | } | |
| 830 | ||
| 87e2fa7e | 831 | EVENTHANDLER_REGISTER(shutdown_post_sync, resettodr_on_shutdown, NULL, SHUTDOWN_PRI_LAST); |
| 13194089 | 832 | |
| 984263bc MD |
833 | #if !defined(SMP) |
| 834 | /* | |
| 835 | * We can not use the TSC in SMP mode, until we figure out a | |
| 836 | * cheap (impossible), reliable and precise (yeah right!) way | |
| 837 | * to synchronize the TSCs of all the CPUs. | |
| 838 | * Curse Intel for leaving the counter out of the I/O APIC. | |
| 839 | */ | |
| 840 | ||
| 841 | #if NAPM > 0 | |
| 842 | /* | |
| 843 | * We can not use the TSC if we support APM. Precise timekeeping | |
| 844 | * on an APM'ed machine is at best a fools pursuit, since | |
| 845 | * any and all of the time spent in various SMM code can't | |
| 846 | * be reliably accounted for. Reading the RTC is your only | |
| 847 | * source of reliable time info. The i8254 looses too of course | |
| 848 | * but we need to have some kind of time... | |
| 849 | * We don't know at this point whether APM is going to be used | |
| 850 | * or not, nor when it might be activated. Play it safe. | |
| 851 | */ | |
| 852 | return; | |
| 853 | #endif /* NAPM > 0 */ | |
| 854 | ||
| 984263bc MD |
855 | #endif /* !defined(SMP) */ |
| 856 | } | |
| 857 | ||
| 858 | /* | |
| e63ac55d MD |
859 | * Sync the time of day back to the RTC on shutdown, but only if |
| 860 | * we have already loaded it and have not crashed. | |
| 861 | */ | |
| 862 | static void | |
| 863 | resettodr_on_shutdown(void *arg __unused) | |
| 864 | { | |
| 865 | if (rtc_loaded && panicstr == NULL) { | |
| 866 | resettodr(); | |
| 867 | } | |
| 868 | } | |
| 869 | ||
| 870 | /* | |
| 984263bc MD |
871 | * Initialize the time of day register, based on the time base which is, e.g. |
| 872 | * from a filesystem. | |
| 873 | */ | |
| 874 | void | |
| 875 | inittodr(time_t base) | |
| 876 | { | |
| 877 | unsigned long sec, days; | |
| 878 | int yd; | |
| 879 | int year, month; | |
| 88c4d2f6 | 880 | int y, m; |
| 984263bc MD |
881 | struct timespec ts; |
| 882 | ||
| 883 | if (base) { | |
| 984263bc MD |
884 | ts.tv_sec = base; |
| 885 | ts.tv_nsec = 0; | |
| 88c4d2f6 | 886 | set_timeofday(&ts); |
| 984263bc MD |
887 | } |
| 888 | ||
| 889 | /* Look if we have a RTC present and the time is valid */ | |
| 890 | if (!(rtcin(RTC_STATUSD) & RTCSD_PWR)) | |
| 891 | goto wrong_time; | |
| 892 | ||
| 893 | /* wait for time update to complete */ | |
| 894 | /* If RTCSA_TUP is zero, we have at least 244us before next update */ | |
| 88c4d2f6 | 895 | crit_enter(); |
| 984263bc | 896 | while (rtcin(RTC_STATUSA) & RTCSA_TUP) { |
| 88c4d2f6 MD |
897 | crit_exit(); |
| 898 | crit_enter(); | |
| 984263bc MD |
899 | } |
| 900 | ||
| 901 | days = 0; | |
| 902 | #ifdef USE_RTC_CENTURY | |
| 903 | year = readrtc(RTC_YEAR) + readrtc(RTC_CENTURY) * 100; | |
| 904 | #else | |
| 905 | year = readrtc(RTC_YEAR) + 1900; | |
| 906 | if (year < 1970) | |
| 907 | year += 100; | |
| 908 | #endif | |
| 909 | if (year < 1970) { | |
| 88c4d2f6 | 910 | crit_exit(); |
| 984263bc MD |
911 | goto wrong_time; |
| 912 | } | |
| 913 | month = readrtc(RTC_MONTH); | |
| 914 | for (m = 1; m < month; m++) | |
| 915 | days += daysinmonth[m-1]; | |
| 916 | if ((month > 2) && LEAPYEAR(year)) | |
| 917 | days ++; | |
| 918 | days += readrtc(RTC_DAY) - 1; | |
| 919 | yd = days; | |
| 920 | for (y = 1970; y < year; y++) | |
| 921 | days += DAYSPERYEAR + LEAPYEAR(y); | |
| 922 | sec = ((( days * 24 + | |
| 923 | readrtc(RTC_HRS)) * 60 + | |
| 924 | readrtc(RTC_MIN)) * 60 + | |
| 925 | readrtc(RTC_SEC)); | |
| 926 | /* sec now contains the number of seconds, since Jan 1 1970, | |
| 927 | in the local time zone */ | |
| 928 | ||
| 929 | sec += tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0); | |
| 930 | ||
| 931 | y = time_second - sec; | |
| 932 | if (y <= -2 || y >= 2) { | |
| 933 | /* badly off, adjust it */ | |
| 934 | ts.tv_sec = sec; | |
| 935 | ts.tv_nsec = 0; | |
| 88c4d2f6 | 936 | set_timeofday(&ts); |
| 984263bc | 937 | } |
| e63ac55d | 938 | rtc_loaded = 1; |
| 88c4d2f6 | 939 | crit_exit(); |
| 984263bc MD |
940 | return; |
| 941 | ||
| 942 | wrong_time: | |
| 26be20a0 SW |
943 | kprintf("Invalid time in real time clock.\n"); |
| 944 | kprintf("Check and reset the date immediately!\n"); | |
| 984263bc MD |
945 | } |
| 946 | ||
| 947 | /* | |
| 948 | * Write system time back to RTC | |
| 949 | */ | |
| 950 | void | |
| 09e6e929 | 951 | resettodr(void) |
| 984263bc | 952 | { |
| 2f70966e MD |
953 | struct timeval tv; |
| 954 | unsigned long tm; | |
| 955 | int m; | |
| 956 | int y; | |
| 984263bc MD |
957 | |
| 958 | if (disable_rtc_set) | |
| 959 | return; | |
| 960 | ||
| 2f70966e MD |
961 | microtime(&tv); |
| 962 | tm = tv.tv_sec; | |
| 984263bc | 963 | |
| 88c4d2f6 | 964 | crit_enter(); |
| 984263bc MD |
965 | /* Disable RTC updates and interrupts. */ |
| 966 | writertc(RTC_STATUSB, RTCSB_HALT | RTCSB_24HR); | |
| 967 | ||
| 968 | /* Calculate local time to put in RTC */ | |
| 969 | ||
| 970 | tm -= tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0); | |
| 971 | ||
| 972 | writertc(RTC_SEC, bin2bcd(tm%60)); tm /= 60; /* Write back Seconds */ | |
| 973 | writertc(RTC_MIN, bin2bcd(tm%60)); tm /= 60; /* Write back Minutes */ | |
| 974 | writertc(RTC_HRS, bin2bcd(tm%24)); tm /= 24; /* Write back Hours */ | |
| 975 | ||
| 976 | /* We have now the days since 01-01-1970 in tm */ | |
| 977 | writertc(RTC_WDAY, (tm+4)%7); /* Write back Weekday */ | |
| 978 | for (y = 1970, m = DAYSPERYEAR + LEAPYEAR(y); | |
| 979 | tm >= m; | |
| 980 | y++, m = DAYSPERYEAR + LEAPYEAR(y)) | |
| 981 | tm -= m; | |
| 982 | ||
| 983 | /* Now we have the years in y and the day-of-the-year in tm */ | |
| 984 | writertc(RTC_YEAR, bin2bcd(y%100)); /* Write back Year */ | |
| 985 | #ifdef USE_RTC_CENTURY | |
| 986 | writertc(RTC_CENTURY, bin2bcd(y/100)); /* ... and Century */ | |
| 987 | #endif | |
| 988 | for (m = 0; ; m++) { | |
| 989 | int ml; | |
| 990 | ||
| 991 | ml = daysinmonth[m]; | |
| 992 | if (m == 1 && LEAPYEAR(y)) | |
| 993 | ml++; | |
| 994 | if (tm < ml) | |
| 995 | break; | |
| 996 | tm -= ml; | |
| 997 | } | |
| 998 | ||
| 999 | writertc(RTC_MONTH, bin2bcd(m + 1)); /* Write back Month */ | |
| 1000 | writertc(RTC_DAY, bin2bcd(tm + 1)); /* Write back Month Day */ | |
| 1001 | ||
| 1002 | /* Reenable RTC updates and interrupts. */ | |
| 1003 | writertc(RTC_STATUSB, rtc_statusb); | |
| 88c4d2f6 | 1004 | crit_exit(); |
| 984263bc MD |
1005 | } |
| 1006 | ||
| 50b53814 SZ |
1007 | static void |
| 1008 | cpu_initclocks(void) | |
| 1009 | { | |
| 1010 | callout_init(&sysbeepstop_ch); | |
| 1011 | ||
| 1012 | if (statclock_disable) { | |
| 1013 | /* | |
| 1014 | * The stat interrupt mask is different without the | |
| 1015 | * statistics clock. Also, don't set the interrupt | |
| 1016 | * flag which would normally cause the RTC to generate | |
| 1017 | * interrupts. | |
| 1018 | */ | |
| 1019 | rtc_statusb = RTCSB_24HR; | |
| 1020 | } else { | |
| 1021 | /* Setting stathz to nonzero early helps avoid races. */ | |
| 1022 | stathz = RTC_NOPROFRATE; | |
| 1023 | profhz = RTC_PROFRATE; | |
| 1024 | } | |
| 1025 | ||
| 1026 | /* Initialize RTC. */ | |
| 1027 | writertc(RTC_STATUSA, rtc_statusa); | |
| 1028 | writertc(RTC_STATUSB, RTCSB_24HR); | |
| 1029 | ||
| 1030 | if (statclock_disable == 0) { | |
| 1031 | int diag; | |
| 1032 | ||
| 1033 | diag = rtcin(RTC_DIAG); | |
| 1034 | if (diag != 0) { | |
| 1035 | kprintf("RTC BIOS diagnostic error %b\n", | |
| 1036 | diag, RTCDG_BITS); | |
| 1037 | } | |
| 1038 | ||
| 1039 | #ifdef APIC_IO | |
| 1040 | if (isa_apic_irq(8) != 8) | |
| 1041 | panic("APIC RTC != 8"); | |
| 1042 | #endif /* APIC_IO */ | |
| 1043 | ||
| 1044 | register_int(8, (inthand2_t *)rtcintr, NULL, "rtc", NULL, | |
| 1045 | INTR_EXCL | INTR_FAST | INTR_NOPOLL | | |
| 1046 | INTR_NOENTROPY); | |
| 1047 | machintr_intren(8); | |
| 1048 | ||
| 1049 | writertc(RTC_STATUSB, rtc_statusb); | |
| 1050 | } | |
| 1051 | } | |
| 1052 | SYSINIT(clockinit, SI_BOOT2_CLOCKREG, SI_ORDER_FIRST, cpu_initclocks, NULL) | |
| 984263bc MD |
1053 | |
| 1054 | /* | |
| 88c4d2f6 MD |
1055 | * Start both clocks running. DragonFly note: the stat clock is no longer |
| 1056 | * used. Instead, 8254 based systimers are used for all major clock | |
| 1057 | * interrupts. statclock_disable is set by default. | |
| 984263bc | 1058 | */ |
| ef612539 SZ |
1059 | static void |
| 1060 | i8254_intr_initclock(struct cputimer_intr *cti, boolean_t selected) | |
| 984263bc | 1061 | { |
| 984263bc MD |
1062 | #ifdef APIC_IO |
| 1063 | int apic_8254_trial; | |
| 477d3c1c | 1064 | void *clkdesc; |
| 984263bc MD |
1065 | #endif /* APIC_IO */ |
| 1066 | ||
| ef612539 SZ |
1067 | if (!selected && i8254_intr_disable) { |
| 1068 | i8254_nointr = 1; /* don't try to register again */ | |
| 1069 | cputimer_intr_deregister(cti); | |
| e87376d9 | 1070 | return; |
| ef612539 | 1071 | } |
| e87376d9 | 1072 | |
| 984263bc MD |
1073 | /* Finish initializing 8253 timer 0. */ |
| 1074 | #ifdef APIC_IO | |
| 984263bc MD |
1075 | apic_8254_intr = isa_apic_irq(0); |
| 1076 | apic_8254_trial = 0; | |
| 1077 | if (apic_8254_intr >= 0 ) { | |
| 1078 | if (apic_int_type(0, 0) == 3) | |
| 1079 | apic_8254_trial = 1; | |
| 1080 | } else { | |
| 1081 | /* look for ExtInt on pin 0 */ | |
| 1082 | if (apic_int_type(0, 0) == 3) { | |
| 1083 | apic_8254_intr = apic_irq(0, 0); | |
| 1084 | setup_8254_mixed_mode(); | |
| 1085 | } else | |
| 1086 | panic("APIC_IO: Cannot route 8254 interrupt to CPU"); | |
| 1087 | } | |
| 1088 | ||
| 9d522d14 MD |
1089 | clkdesc = register_int(apic_8254_intr, clkintr, NULL, "clk", |
| 1090 | NULL, | |
| 1091 | INTR_EXCL | INTR_FAST | | |
| 8b3ec75a MD |
1092 | INTR_NOPOLL | INTR_MPSAFE | |
| 1093 | INTR_NOENTROPY); | |
| 37e7efec | 1094 | machintr_intren(apic_8254_intr); |
| 984263bc | 1095 | |
| 984263bc | 1096 | if (apic_8254_trial) { |
| 88c4d2f6 | 1097 | sysclock_t base; |
| 477d3c1c MD |
1098 | long lastcnt; |
| 1099 | ||
| c5c70fac SZ |
1100 | /* |
| 1101 | * Following code assumes the 8254 is the cpu timer, | |
| 1102 | * so make sure it is. | |
| 1103 | */ | |
| 1104 | KKASSERT(sys_cputimer == &i8254_cputimer); | |
| ef612539 | 1105 | KKASSERT(cti == &i8254_cputimer_intr); |
| c5c70fac | 1106 | |
| 477d3c1c | 1107 | lastcnt = get_interrupt_counter(apic_8254_intr); |
| 88c4d2f6 MD |
1108 | |
| 1109 | /* | |
| c5c70fac SZ |
1110 | * Force an 8254 Timer0 interrupt and wait 1/100s for |
| 1111 | * it to happen, then see if we got it. | |
| 88c4d2f6 | 1112 | */ |
| 26be20a0 | 1113 | kprintf("APIC_IO: Testing 8254 interrupt delivery\n"); |
| ef612539 | 1114 | i8254_intr_reload(cti, 2); |
| 044ee7c4 MD |
1115 | base = sys_cputimer->count(); |
| 1116 | while (sys_cputimer->count() - base < sys_cputimer->freq / 100) | |
| 984263bc | 1117 | ; /* nothing */ |
| 477d3c1c | 1118 | if (get_interrupt_counter(apic_8254_intr) - lastcnt == 0) { |
| 984263bc MD |
1119 | /* |
| 1120 | * The MP table is broken. | |
| 1121 | * The 8254 was not connected to the specified pin | |
| 1122 | * on the IO APIC. | |
| 1123 | * Workaround: Limited variant of mixed mode. | |
| 1124 | */ | |
| 37e7efec | 1125 | machintr_intrdis(apic_8254_intr); |
| 9d522d14 | 1126 | unregister_int(clkdesc); |
| 26be20a0 | 1127 | kprintf("APIC_IO: Broken MP table detected: " |
| 984263bc MD |
1128 | "8254 is not connected to " |
| 1129 | "IOAPIC #%d intpin %d\n", | |
| 1130 | int_to_apicintpin[apic_8254_intr].ioapic, | |
| 1131 | int_to_apicintpin[apic_8254_intr].int_pin); | |
| 1132 | /* | |
| 1133 | * Revoke current ISA IRQ 0 assignment and | |
| 1134 | * configure a fallback interrupt routing from | |
| 1135 | * the 8254 Timer via the 8259 PIC to the | |
| 1136 | * an ExtInt interrupt line on IOAPIC #0 intpin 0. | |
| 1137 | * We reuse the low level interrupt handler number. | |
| 1138 | */ | |
| 1139 | if (apic_irq(0, 0) < 0) { | |
| 1140 | revoke_apic_irq(apic_8254_intr); | |
| 1141 | assign_apic_irq(0, 0, apic_8254_intr); | |
| 1142 | } | |
| 1143 | apic_8254_intr = apic_irq(0, 0); | |
| 1144 | setup_8254_mixed_mode(); | |
| 9d522d14 MD |
1145 | register_int(apic_8254_intr, clkintr, NULL, "clk", |
| 1146 | NULL, | |
| 1147 | INTR_EXCL | INTR_FAST | | |
| 8b3ec75a MD |
1148 | INTR_NOPOLL | INTR_MPSAFE | |
| 1149 | INTR_NOENTROPY); | |
| 37e7efec | 1150 | machintr_intren(apic_8254_intr); |
| 984263bc | 1151 | } |
| 984263bc MD |
1152 | } |
| 1153 | if (apic_int_type(0, 0) != 3 || | |
| 1154 | int_to_apicintpin[apic_8254_intr].ioapic != 0 || | |
| 88c4d2f6 | 1155 | int_to_apicintpin[apic_8254_intr].int_pin != 0) { |
| 26be20a0 | 1156 | kprintf("APIC_IO: routing 8254 via IOAPIC #%d intpin %d\n", |
| 984263bc MD |
1157 | int_to_apicintpin[apic_8254_intr].ioapic, |
| 1158 | int_to_apicintpin[apic_8254_intr].int_pin); | |
| 88c4d2f6 | 1159 | } else { |
| 26be20a0 | 1160 | kprintf("APIC_IO: " |
| 984263bc | 1161 | "routing 8254 via 8259 and IOAPIC #0 intpin 0\n"); |
| 88c4d2f6 | 1162 | } |
| 50b53814 SZ |
1163 | #else /* !APIC_IO */ |
| 1164 | ||
| 1165 | register_int(0, clkintr, NULL, "clk", NULL, | |
| 1166 | INTR_EXCL | INTR_FAST | | |
| 1167 | INTR_NOPOLL | INTR_MPSAFE | | |
| 1168 | INTR_NOENTROPY); | |
| 1169 | machintr_intren(ICU_IRQ0); | |
| 1170 | ||
| 1171 | #endif /* APIC_IO */ | |
| 984263bc MD |
1172 | } |
| 1173 | ||
| 1174 | #ifdef APIC_IO | |
| 984263bc MD |
1175 | |
| 1176 | static void | |
| 09e6e929 | 1177 | setup_8254_mixed_mode(void) |
| 984263bc MD |
1178 | { |
| 1179 | /* | |
| 1180 | * Allow 8254 timer to INTerrupt 8259: | |
| 1181 | * re-initialize master 8259: | |
| 1182 | * reset; prog 4 bytes, single ICU, edge triggered | |
| 1183 | */ | |
| 1184 | outb(IO_ICU1, 0x13); | |
| 97359a5b | 1185 | outb(IO_ICU1 + 1, IDT_OFFSET); /* start vector (unused) */ |
| 984263bc MD |
1186 | outb(IO_ICU1 + 1, 0x00); /* ignore slave */ |
| 1187 | outb(IO_ICU1 + 1, 0x03); /* auto EOI, 8086 */ | |
| 1188 | outb(IO_ICU1 + 1, 0xfe); /* unmask INT0 */ | |
| 1189 | ||
| 1190 | /* program IO APIC for type 3 INT on INT0 */ | |
| 1191 | if (ext_int_setup(0, 0) < 0) | |
| 1192 | panic("8254 redirect via APIC pin0 impossible!"); | |
| 1193 | } | |
| 1194 | #endif | |
| 1195 | ||
| 1196 | void | |
| 1197 | setstatclockrate(int newhz) | |
| 1198 | { | |
| 1199 | if (newhz == RTC_PROFRATE) | |
| 1200 | rtc_statusa = RTCSA_DIVIDER | RTCSA_PROF; | |
| 1201 | else | |
| 1202 | rtc_statusa = RTCSA_DIVIDER | RTCSA_NOPROF; | |
| 1203 | writertc(RTC_STATUSA, rtc_statusa); | |
| 1204 | } | |
| 1205 | ||
| 88c4d2f6 | 1206 | #if 0 |
| 984263bc MD |
1207 | static unsigned |
| 1208 | tsc_get_timecount(struct timecounter *tc) | |
| 1209 | { | |
| 1210 | return (rdtsc()); | |
| 1211 | } | |
| 88c4d2f6 | 1212 | #endif |
| 984263bc MD |
1213 | |
| 1214 | #ifdef KERN_TIMESTAMP | |
| 1215 | #define KERN_TIMESTAMP_SIZE 16384 | |
| 1216 | static u_long tsc[KERN_TIMESTAMP_SIZE] ; | |
| 1217 | SYSCTL_OPAQUE(_debug, OID_AUTO, timestamp, CTLFLAG_RD, tsc, | |
| 1218 | sizeof(tsc), "LU", "Kernel timestamps"); | |
| 1219 | void | |
| 1220 | _TSTMP(u_int32_t x) | |
| 1221 | { | |
| 1222 | static int i; | |
| 1223 | ||
| 1224 | tsc[i] = (u_int32_t)rdtsc(); | |
| 1225 | tsc[i+1] = x; | |
| 1226 | i = i + 2; | |
| 1227 | if (i >= KERN_TIMESTAMP_SIZE) | |
| 1228 | i = 0; | |
| 1229 | tsc[i] = 0; /* mark last entry */ | |
| 1230 | } | |
| 6b08710e | 1231 | #endif /* KERN_TIMESTAMP */ |
| 984263bc | 1232 | |
| c17827b4 MD |
1233 | /* |
| 1234 | * | |
| 1235 | */ | |
| 1236 | ||
| 1237 | static int | |
| 1238 | hw_i8254_timestamp(SYSCTL_HANDLER_ARGS) | |
| 1239 | { | |
| 1240 | sysclock_t count; | |
| 1241 | __uint64_t tscval; | |
| 1242 | char buf[32]; | |
| 1243 | ||
| 1244 | crit_enter(); | |
| 044ee7c4 MD |
1245 | if (sys_cputimer == &i8254_cputimer) |
| 1246 | count = sys_cputimer->count(); | |
| 1247 | else | |
| 1248 | count = 0; | |
| c17827b4 MD |
1249 | if (tsc_present) |
| 1250 | tscval = rdtsc(); | |
| 1251 | else | |
| 1252 | tscval = 0; | |
| 1253 | crit_exit(); | |
| f8c7a42d | 1254 | ksnprintf(buf, sizeof(buf), "%08x %016llx", count, (long long)tscval); |
| c17827b4 MD |
1255 | return(SYSCTL_OUT(req, buf, strlen(buf) + 1)); |
| 1256 | } | |
| 1257 | ||
| 1258 | SYSCTL_NODE(_hw, OID_AUTO, i8254, CTLFLAG_RW, 0, "I8254"); | |
| 044ee7c4 MD |
1259 | SYSCTL_UINT(_hw_i8254, OID_AUTO, freq, CTLFLAG_RD, &i8254_cputimer.freq, 0, |
| 1260 | "frequency"); | |
| c17827b4 | 1261 | SYSCTL_PROC(_hw_i8254, OID_AUTO, timestamp, CTLTYPE_STRING|CTLFLAG_RD, |
| 044ee7c4 | 1262 | 0, 0, hw_i8254_timestamp, "A", ""); |
| c17827b4 | 1263 | |
| 870b0161 MD |
1264 | SYSCTL_INT(_hw, OID_AUTO, tsc_present, CTLFLAG_RD, |
| 1265 | &tsc_present, 0, "TSC Available"); | |
| 1266 | SYSCTL_QUAD(_hw, OID_AUTO, tsc_frequency, CTLFLAG_RD, | |
| 1267 | &tsc_frequency, 0, "TSC Frequency"); | |
| 1268 |