xref: /dragonfly/share/man/man4/atkbd.4 (revision 0ca59c34)
1.\"
2.\" Copyright (c) 1999
3.\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer as
11.\"    the first lines of this file unmodified.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\"    notice, this list of conditions and the following disclaimer in the
14.\"    documentation and/or other materials provided with the distribution.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26.\"
27.\" $FreeBSD: src/share/man/man4/atkbd.4,v 1.12.2.5 2001/08/17 13:08:36 ru Exp $
28.\"
29.Dd May 21, 1999
30.Dt ATKBD 4
31.Os
32.Sh NAME
33.Nm atkbd
34.Nd the AT keyboard interface
35.Sh SYNOPSIS
36.Cd "options ATKBD_DFLT_KEYMAP"
37.Cd "makeoptions ATKBD_DFLT_KEYMAP=_keymap_name_"
38.Cd "options KBD_DISABLE_KEYMAP_LOAD"
39.Cd "device atkbd0 at atkbdc? irq 1"
40.Sh DESCRIPTION
41The
42.Nm
43driver, together with the
44.Nm atkbdc
45driver, provides access to the AT 84 keyboard or the AT enhanced keyboard
46which is connected to the AT keyboard controller.
47.Pp
48This driver is required for the
49.Xr syscons 4
50console driver.
51.Pp
52There can be only one
53.Nm
54device defined in the kernel configuration file.  This device also
55requires the
56.Nm atkbdc
57keyboard controller to be present.
58The
59.Em irq
60number must always be 1; there is no provision of changing the number.
61.Ss Function Keys
62The AT keyboard has a number of function keys.
63They are numbered as follows and can be associated with strings
64by the
65.Xr kbdcontrol 1
66command.
67.Pp
68.Bl -tag -width "Function Key Number" -compact
69.It "Function Key number"
70Function Key
71.It "1, 2,...12"
72F1, F2,... F12
73.It "13, 14,...24"
74Shift+F1, Shift+F2,... Shift+F12
75.It "25, 26,...36"
76Ctl+F1, Ctl+F2,... Ctl+F12
77.It "37, 38,...48"
78Shift+Ctl+F1, Shift+Ctl+F2,... Shift+Ctl+F12
79.It 49
80Home and Numpad 7 (without NumLock)
81.It 50
82Up Arrow and Numpad 8 (without NumLock)
83.It 51
84Page Up and Numpad 9 (without NumLock)
85.It 52
86Numpad -
87.It 53
88Left Arrow and Numpad 4 (without NumLock)
89.It 54
90Numpad 5 (without NumLock)
91.It 55
92Right Arrow and Numpad 6 (without NumLock)
93.It 56
94Numpad +
95.It 57
96End and Numpad 1 (without NumLock)
97.It 58
98Down Arrow and Numpad 2 (without NumLock)
99.It 59
100Page Down and Numpad 3 (without NumLock)
101.It 60
102Ins and Numpad 0 (without NumLock)
103.It 61
104Del
105.It 62
106Left GUI Key
107.It 63
108Right GUI Key
109.It 64
110Menu
111.El
112.Pp
113See the man page for the
114.Xr kbdcontrol 1
115command for how to assign a string to the function key.
116.Sh DRIVER CONFIGURATION
117.Ss Kernel Configuration Options
118The following kernel configuration options control the
119.Nm
120driver.
121.Bl -tag -width ATKBD_DFLT
122.It Em ATKBD_DFLT_KEYMAP
123This option sets the default, built-in keymap of the
124.Nm
125driver to the named keymap.
126See
127.Sx EXAMPLES
128below.
129.It Em KBD_DISABLE_KEYMAP_LOAD
130The keymap can be modified by the
131.Xr kbdcontrol 1
132command.
133This option will disable this feature and prevent the user from
134changing key assignment.
135.El
136.Ss Driver Flags
137The
138.Nm
139driver accepts the following driver flags.  They can be set either in the
140kernel configuration file
141(see
142.Xr config 8 ) ,
143or else in the User Configuration Menu at boot time
144(see
145.Xr boot 8 ) .
146.Bl -tag -width FAIL
147.It bit 0 (FAIL_IF_NO_KBD)
148By default the
149.Nm
150driver will install even if a keyboard is not actually connected to the
151system.
152This option prevents the driver from being installed in this situation.
153.It bit 1 (NO_RESET)
154When this option is given, the
155.Nm
156driver will not reset the keyboard when initializing it.
157It may be useful for laptop computers whose function keys
158have special functions and these functions are forgotten when the
159keyboard is reset.
160.It bit 2 (ALT_SCANCODESET)
161Certain keyboards, such as those on some ThinkPad models, behave
162like the old XT keyboard and require this option.
163.El
164.\".Sh FILES
165.Sh EXAMPLES
166The
167.Nm
168driver requires the keyboard controller
169.Nm atkbdc .
170Thus, the kernel configuration file should contain the following lines.
171.Pp
172.D1 Cd "device atkbdc0 at isa"
173.D1 Cd "device atkbd0 at atkbdc? irq 1"
174.Pp
175The following example shows how to set the default, built-in keymap
176to
177.Pa jp.106.kbd .
178.Pp
179.D1 Cd "options ATKBD_DFLT_KEYMAP"
180.D1 Cd "makeoptions ATKBD_DFLT_KEYMAP=jp.106"
181.D1 Cd "device atkbd0 at atkbdc? irq 1"
182.\".Sh DIAGNOSTICS
183.\".Sh CAVEATS
184.\".Sh BUGS
185.Sh SEE ALSO
186.Xr kbdcontrol 1 ,
187.Xr atkbdc 4 ,
188.Xr psm 4 ,
189.Xr syscons 4 ,
190.Xr boot 8 ,
191.Xr config 8
192.Sh HISTORY
193The
194.Nm
195driver first appeared in
196.Fx 3.1 .
197.Sh AUTHORS
198.An -nosplit
199The
200.Nm
201driver was written by
202.An S\(/oren Schmidt Aq Mt sos@FreeBSD.org
203and
204.An Kazutaka Yokota Aq Mt yokota@FreeBSD.org .
205This manual page was written by
206.An Kazutaka Yokota .
207