1999-02-07 05:40:14 +00:00
|
|
|
|
.\"
|
|
|
|
|
.\" Copyright (c) 1999
|
|
|
|
|
.\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
|
|
|
|
|
.\" All rights reserved.
|
|
|
|
|
.\"
|
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
|
.\" are met:
|
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
.\" notice, this list of conditions and the following disclaimer as
|
|
|
|
|
.\" the first lines of this file unmodified.
|
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
|
.\"
|
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
.\"
|
1999-05-20 09:56:18 +00:00
|
|
|
|
.\" $Id: atkbd.4,v 1.3 1999/05/16 20:48:21 mph Exp $
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.\"
|
1999-02-10 14:25:03 +00:00
|
|
|
|
.Dd February 9, 1999
|
|
|
|
|
.Dt ATKBD 4
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.Os FreeBSD
|
|
|
|
|
.Sh NAME
|
|
|
|
|
.Nm atkbd
|
|
|
|
|
.Nd
|
|
|
|
|
the AT keyboard interface
|
|
|
|
|
.Sh SYNOPSIS
|
1999-05-20 09:56:18 +00:00
|
|
|
|
.Cd "device atkbd0 at atkbdc? irq 1"
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
|
The
|
|
|
|
|
.Nm
|
|
|
|
|
driver, together with the
|
|
|
|
|
.Nm atkbdc
|
|
|
|
|
driver, provides access to the AT 84 keyboard or the AT enhanced keyboard
|
|
|
|
|
which is connected to the AT keyboard controller.
|
|
|
|
|
.Pp
|
|
|
|
|
This driver is required for the console drivers
|
|
|
|
|
.Xr syscons 4
|
|
|
|
|
and
|
|
|
|
|
.Xr pcvt 4 .
|
|
|
|
|
.Pp
|
1999-02-10 14:25:03 +00:00
|
|
|
|
There can be only one
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.Nm
|
1999-02-10 14:25:03 +00:00
|
|
|
|
device defined in the kernel configuration file. This device also
|
|
|
|
|
requires the
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.Nm atkbdc
|
1999-02-10 14:25:03 +00:00
|
|
|
|
keyboard controller to be present.
|
|
|
|
|
The
|
|
|
|
|
.Em irq
|
|
|
|
|
number must always be 1; there is no provision of changing the number.
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.Sh DRIVER CONFIGURATION
|
|
|
|
|
.\".Ss Kernel Configuration Options
|
|
|
|
|
.Ss Driver Flags
|
|
|
|
|
The
|
|
|
|
|
.Nm
|
1999-02-10 14:25:03 +00:00
|
|
|
|
driver accepts the following driver flags. They can be set either in the
|
|
|
|
|
kernel configuration file
|
|
|
|
|
.Pq see Xr config 8 ,
|
|
|
|
|
or else in the User Configuration Menu at boot time
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.Pq see Xr boot 8 .
|
1999-02-10 14:25:03 +00:00
|
|
|
|
.Bl -tag -width FAIL
|
|
|
|
|
.It bit 0 (FAIL_IF_NO_KBD)
|
1999-02-07 05:40:14 +00:00
|
|
|
|
By default the
|
|
|
|
|
.Nm
|
|
|
|
|
driver will install even if a keyboard is not actually connected to the
|
|
|
|
|
system.
|
1999-02-10 14:25:03 +00:00
|
|
|
|
This option prevents the driver from being installed in this situation.
|
|
|
|
|
.It bit 1 (NO_RESET)
|
1999-02-07 05:40:14 +00:00
|
|
|
|
When this option is given, the
|
|
|
|
|
.Nm
|
|
|
|
|
driver will not reset the keyboard when initializing it.
|
|
|
|
|
It may be useful for laptop computers whose function keys
|
1999-02-10 14:25:03 +00:00
|
|
|
|
have special functions and these functions are forgotten when the
|
1999-02-07 05:40:14 +00:00
|
|
|
|
keyboard is reset.
|
1999-02-10 14:25:03 +00:00
|
|
|
|
.It bit 2 (ALT_SCANCODESET)
|
1999-02-07 05:40:14 +00:00
|
|
|
|
Certain keyboards, such as those on some ThinkPad models, behave
|
|
|
|
|
like the old XT keyboard and require this option.
|
|
|
|
|
.El
|
|
|
|
|
.\".Sh FILES
|
|
|
|
|
.\".Sh EXAMPLE
|
|
|
|
|
.\".Sh DIAGNOSTICS
|
|
|
|
|
.\".Sh CAVEATS
|
|
|
|
|
.\".Sh BUGS
|
|
|
|
|
.Sh SEE ALSO
|
|
|
|
|
.Xr atkbdc 4 ,
|
|
|
|
|
.Xr pcvt 4 ,
|
1999-02-10 14:25:03 +00:00
|
|
|
|
.Xr psm 4 ,
|
|
|
|
|
.Xr syscons 4 ,
|
|
|
|
|
.Xr boot 8 ,
|
|
|
|
|
.Xr config 8 .
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.Sh HISTORY
|
|
|
|
|
The
|
|
|
|
|
.Nm
|
|
|
|
|
driver first appeared in
|
|
|
|
|
.Fx 3.1 .
|
|
|
|
|
.Sh AUTHORS
|
|
|
|
|
The
|
|
|
|
|
.Nm
|
1999-02-10 14:25:03 +00:00
|
|
|
|
driver was written by
|
|
|
|
|
.An S<EFBFBD>ren Schmidt Aq sos@FreeBSD.org
|
|
|
|
|
and
|
1999-02-07 05:40:14 +00:00
|
|
|
|
.An Kazutaka Yokota Aq yokota@FreeBSD.org .
|
1999-02-10 14:25:03 +00:00
|
|
|
|
This manual page was written by
|
|
|
|
|
.An Kazutaka Yokota .
|