Document the acpi_toshiba driver written by Hiroyuki Aizu.

Approved by:	njl (mentor)
This commit is contained in:
Philip Paeps 2004-02-19 19:35:27 +00:00
parent bc55355956
commit 43f842cb15
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126020
2 changed files with 107 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# $FreeBSD$
MAN= aic.4 \
MAN= acpi_toshiba.4 \
aic.4 \
alpm.4 \
amdpm.4 \
apm.4 \

View File

@ -0,0 +1,105 @@
.\"
.\" Copyright (c) 2003 Philip Paeps <philip@FreeBSD.org>
.\" 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.
.\" 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
.\"
.\" $FreeBSD$
.\"
.Dd 19 February 2004
.Dt ACPI_TOSHIBA 4
.Os
.Sh NAME
.Nm acpi_toshiba
.Nd Toshiba HCI Interface
.Sh SYNOPSIS
.Cd device acpi_toshiba
.Sh DESCRIPTION
HCI is Toshiba's
.Em Hardware Control Interface
which is somewhat uniform across their models.
The
.Nm
driver allows the user to manipulate HCI-controlled hardware using a number of
.Xr sysctl 8
variables.
.Sh SYSCTLS
The following sysctls are currently implemented:
.Bl -ohang -offset indent
.It Va hw.acpi.toshiba.force_fan
Causes active cooling to be forcibly enabled ('1') or disabled ('0')
regardless of the current temperature.
.It Va hw.acpi.toshiba.video_output
Sets the active display to use according to a bitwise OR of the following:
.Pp
.Bl -tag -width 10 -offset indent -compact
.It 0
No display
.It 1
LCD
.It 2
CRT
.It 4
TV-Out
.El
.It Va hw.acpi.toshiba.lcd_brightness
Makes the LCD backlight brighter or dimmer (higher values are brighter).
.It Va hw.acpi.toshiba.lcd_backlight
Turns the LCD backlight on and off.
.It Va hw.acpi.toshiba.cpu_speed
Sets the CPU speed to the specified speed.
This provides similar functionality to the
.Em hw.acpi.cpu.throttle_state
variable.
Note, however, that higher values mean higher speeds here.
.El
.Pp
Defaults for these variables can be set in
.Xr sysctl.conf 5 ,
which is parsed at boot-time.
.Sh TUNABLES
The
.Em hw.acpi.toshiba.enable_fn_keys
tunable enables or disables the function keys on the keyboard.
Function keys are enabled by default.
.Pp
This behaviour can be changed at the loader prompt or in
.Xr loader.conf 5 .
.Sh SEE ALSO
.Xr acpi 4 ,
.Xr loader.conf 5 ,
.Xr sysctl.conf 5 ,
.Xr sysctl 8
.Sh HISTORY
The
.Nm
driver first appeared in
.Fx 5.1
.Sh AUTHORS
.An -nosplit
The
.Nm
driver was written by
.An Hiroyuki Aizu Aq aizu@navi.org .
.Pp
This manual page was written by
.An Philip Paeps Aq philip@FreeBSD.org .