]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man4/attimer.4
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man4 / attimer.4
1 .\" Copyright (c) 2010 Alexander Motin <mav@FreeBSD.org>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd September 14, 2010
28 .Dt ATTIMER 4
29 .Os
30 .Sh NAME
31 .Nm attimer
32 .Nd i8254 Programmable Interval Timer (AT Timer) driver
33 .Sh SYNOPSIS
34 This driver is a mandatory part of x86 kernels.
35 .Pp
36 The following tunables are settable from the
37 .Xr loader 8 :
38 .Bl -ohang
39 .It Va hint.attimer. Ns Ar X Ns Va .clock
40 controls event timers functionality support. Setting to 0, disables it.
41 Default value is 1.
42 .It Va hint.attimer. Ns Ar X Ns Va .timecounter
43 controls time counter functionality support. Setting to 0, disables it.
44 Default value is 1.
45 .It Va hw.i8254.freq
46 allows to override default counter frequency.
47 The same value is also available in run-time via
48 .Va machdep.i8254_freq
49 sysctl.
50 .El
51 .Sh DESCRIPTION
52 This driver uses i8254 Programmable Interval Timer (AT Timer) hardware
53 to supply kernel with one time counter and one event timer, and generate
54 sound tones for system speaker.
55 This hardware includes three channels.
56 Each channel includes 16bit counter, counting down with known,
57 platform-dependent frequency.
58 Counters can operate in several different modes, including periodic and
59 one-shot.
60 Output of each channel has platform-defined wiring: one channel is wired
61 to the interrupt controller and may be used as event timer, one channel is
62 wired to speaker and used to generate sound tones, and one timer is reserved
63 for platform purposes.
64 .Pp
65 Driver uses single hardware channel to provide both time counter and event
66 timer functionality.
67 To make it possible, respective counter must be running in periodic more.
68 As result, one-shot event timer mode supported only when time counter
69 functionality is disabled.
70 .Pp
71 Event timer provided by the driver is irrelevant to CPU power states.
72 .Sh SEE ALSO
73 .Xr apic 4 ,
74 .Xr atrtc 4 ,
75 .Xr eventtimers 4 ,
76 .Xr hpet 4 ,
77 .Xr timecounters 4