]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - share/man/man4/man4.i386/acpi_asus.4
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / share / man / man4 / man4.i386 / acpi_asus.4
1 .\"
2 .\" Copyright (c) 2004 Philip Paeps <philip@FreeBSD.org>
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd June 2, 2007
29 .Dt ACPI_ASUS 4 i386
30 .Os
31 .Sh NAME
32 .Nm acpi_asus
33 .Nd Asus Laptop Extras
34 .Sh SYNOPSIS
35 To compile this driver into the kernel,
36 place the following line in your
37 kernel configuration file:
38 .Bd -ragged -offset indent
39 .Cd "device acpi_asus"
40 .Ed
41 .Pp
42 Alternatively, to load the driver as a
43 module at boot time, place the following line in
44 .Xr loader.conf 5 :
45 .Bd -literal -offset indent
46 acpi_asus_load="YES"
47 .Ed
48 .Sh DESCRIPTION
49 The
50 .Nm
51 driver provides support for the extra ACPI-controlled gadgets, such as hotkeys
52 and leds, found on recent Asus (and Medion) laptops.
53 It allows one to use the
54 .Xr sysctl 8
55 interface to manipulate the brightness of the LCD panel and the display output
56 state.
57 Hotkey events are passed to
58 .Xr devd 8
59 for easy handling in userspace.
60 .Pp
61 Currently, the following Asus laptops are fully supported:
62 .Pp
63 .Bl -item -offset indent -compact
64 .It
65 xxN
66 .It
67 A1x
68 .It
69 A2x
70 .It
71 A3N
72 .It
73 A4D
74 .It
75 A6VM
76 .It
77 D1x
78 .It
79 J1x
80 .It
81 L2B
82 .It
83 L2D
84 .It
85 L2E
86 .It
87 L3C
88 .It
89 L3D
90 .It
91 L3H
92 .It
93 L4E
94 .It
95 L4R
96 .It
97 L5x
98 .It
99 L8x
100 .It
101 M1A
102 .It
103 M2E
104 .It
105 M6N
106 .It
107 M6R
108 .It
109 S1x
110 .It
111 S2x
112 .It
113 V6V
114 .It
115 W5A
116 .El
117 .Pp
118 Additionally,
119 .Nm
120 also supports the Asus-compatible
121 .Em ATK0100
122 interface found in
123 .Em Samsung P30/P35
124 laptops.
125 .Sh SYSCTL VARIABLES
126 The following sysctls are currently implemented:
127 .Bl -tag -width indent
128 .It Va hw.acpi.asus.lcd_brightness
129 Makes the LCD backlight brighter or dimmer (higher values are brighter).
130 .It Va hw.acpi.asus.lcd_backlight
131 Turns the LCD backlight on or off.
132 .It Va hw.acpi.asus.video_output
133 Sets the active display to use according to a bitwise OR of the following:
134 .Pp
135 .Bl -tag -width indent -compact
136 .It Li 0
137 No display
138 .It Li 1
139 LCD
140 .It Li 2
141 CRT
142 .It Li 4
143 TV-Out
144 .El
145 .Pp
146 Some models also support video switching via the generic
147 .Xr acpi_video 4
148 driver.
149 Most models do not, however.
150 .El
151 .Pp
152 Defaults for these variables can be set in
153 .Xr sysctl.conf 5 ,
154 which is parsed at boot-time.
155 .Sh SEE ALSO
156 .Xr acpi 4 ,
157 .Xr acpi_video 4 ,
158 .Xr sysctl.conf 5 ,
159 .Xr sysctl 8
160 .Rs
161 .%T The acpi4asus Project
162 .%O http://sourceforge.net/projects/acpi4asus/
163 .Re
164 .Sh HISTORY
165 The
166 .Nm
167 driver first appeared in
168 .Fx 5.3 .
169 .Sh AUTHORS
170 .An -nosplit
171 The
172 .Nm
173 driver and this manual page were written by
174 .An Philip Paeps Aq philip@FreeBSD.org .
175 .Pp
176 Inspiration came from the
177 .Em acpi4asus project
178 started by
179 .An Julien Lerouge
180 which maintains a driver implementing this
181 functionality in the
182 .Tn Linux
183 kernel.