blob: 9c4bd220c44fdf30381046b169c336365f10214a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * asus_acpi.c - Asus Laptop ACPI Extras
3 *
4 *
Karol Kozimora170a532006-06-30 19:03:00 -04005 * Copyright (C) 2002-2005 Julien Lerouge, 2003-2006 Karol Kozimor
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 *
22 * The development page for this driver is located at
23 * http://sourceforge.net/projects/acpi4asus/
24 *
25 * Credits:
26 * Pontus Fuchs - Helper functions, cleanup
27 * Johann Wiesner - Small compile fixes
28 * John Belmonte - ACPI code for Toshiba laptop was a good starting point.
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +030029 * �ic Burghard - LED display support for W1N
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/init.h>
36#include <linux/types.h>
37#include <linux/proc_fs.h>
Holger Macht2039a6e2006-10-20 14:30:29 -070038#include <linux/backlight.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <acpi/acpi_drivers.h>
40#include <acpi/acpi_bus.h>
41#include <asm/uaccess.h>
42
Karol Kozimora170a532006-06-30 19:03:00 -040043#define ASUS_ACPI_VERSION "0.30"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define PROC_ASUS "asus" //the directory
46#define PROC_MLED "mled"
47#define PROC_WLED "wled"
48#define PROC_TLED "tled"
Karol Kozimore067aaa2006-06-30 19:07:00 -040049#define PROC_BT "bluetooth"
Karol Kozimor42cb8912006-06-30 19:04:00 -040050#define PROC_LEDD "ledd"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define PROC_INFO "info"
52#define PROC_LCD "lcd"
53#define PROC_BRN "brn"
54#define PROC_DISP "disp"
55
56#define ACPI_HOTK_NAME "Asus Laptop ACPI Extras Driver"
57#define ACPI_HOTK_CLASS "hotkey"
58#define ACPI_HOTK_DEVICE_NAME "Hotkey"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*
61 * Some events we use, same for all Asus
62 */
Len Brown4be44fc2005-08-05 00:44:28 -040063#define BR_UP 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define BR_DOWN 0x20
65
66/*
67 * Flags for hotk status
68 */
Karol Kozimore067aaa2006-06-30 19:07:00 -040069#define MLED_ON 0x01 //mail LED
70#define WLED_ON 0x02 //wireless LED
71#define TLED_ON 0x04 //touchpad LED
72#define BT_ON 0x08 //internal Bluetooth
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74MODULE_AUTHOR("Julien Lerouge, Karol Kozimor");
75MODULE_DESCRIPTION(ACPI_HOTK_NAME);
76MODULE_LICENSE("GPL");
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static uid_t asus_uid;
79static gid_t asus_gid;
80module_param(asus_uid, uint, 0);
Karol Kozimoraea19aa2006-01-03 23:05:00 -050081MODULE_PARM_DESC(asus_uid, "UID for entries in /proc/acpi/asus.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070082module_param(asus_gid, uint, 0);
Karol Kozimoraea19aa2006-01-03 23:05:00 -050083MODULE_PARM_DESC(asus_gid, "GID for entries in /proc/acpi/asus.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* For each model, all features implemented,
86 * those marked with R are relative to HOTK, A for absolute */
87struct model_data {
Len Brown4be44fc2005-08-05 00:44:28 -040088 char *name; //name of the laptop________________A
89 char *mt_mled; //method to handle mled_____________R
90 char *mled_status; //node to handle mled reading_______A
91 char *mt_wled; //method to handle wled_____________R
92 char *wled_status; //node to handle wled reading_______A
93 char *mt_tled; //method to handle tled_____________R
94 char *tled_status; //node to handle tled reading_______A
Karol Kozimor42cb8912006-06-30 19:04:00 -040095 char *mt_ledd; //method to handle LED display______R
Karol Kozimore067aaa2006-06-30 19:07:00 -040096 char *mt_bt_switch; //method to switch Bluetooth on/off_R
97 char *bt_status; //no model currently supports this__?
98 char *mt_lcd_switch; //method to turn LCD on/off_________A
Len Brown4be44fc2005-08-05 00:44:28 -040099 char *lcd_status; //node to read LCD panel state______A
100 char *brightness_up; //method to set brightness up_______A
101 char *brightness_down; //guess what ?______________________A
102 char *brightness_set; //method to set absolute brightness_R
103 char *brightness_get; //method to get absolute brightness_R
104 char *brightness_status; //node to get brightness____________A
105 char *display_set; //method to set video output________R
106 char *display_get; //method to get video output________R
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109/*
110 * This is the main structure, we can use it to store anything interesting
111 * about the hotk device
112 */
113struct asus_hotk {
Len Brown4be44fc2005-08-05 00:44:28 -0400114 struct acpi_device *device; //the device we are in
115 acpi_handle handle; //the handle of the hotk device
116 char status; //status of the hotk, for LEDs, ...
Karol Kozimor42cb8912006-06-30 19:04:00 -0400117 u32 ledd_status; //status of the LED display
Len Brown4be44fc2005-08-05 00:44:28 -0400118 struct model_data *methods; //methods available on the laptop
119 u8 brightness; //brightness level
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 enum {
Len Brown4be44fc2005-08-05 00:44:28 -0400121 A1x = 0, //A1340D, A1300F
122 A2x, //A2500H
Karol Kozimorf78c5892006-06-30 19:06:00 -0400123 A4G, //A4700G
Len Brown4be44fc2005-08-05 00:44:28 -0400124 D1x, //D1
125 L2D, //L2000D
126 L3C, //L3800C
127 L3D, //L3400D
Karol Kozimorebccb842006-06-30 19:08:00 -0400128 L3H, //L3H, L2000E, L5D
Len Brown4be44fc2005-08-05 00:44:28 -0400129 L4R, //L4500R
130 L5x, //L5800C
131 L8L, //L8400L
132 M1A, //M1300A
133 M2E, //M2400E, L4400L
Karol Kozimorc067a782006-06-30 19:05:00 -0400134 M6N, //M6800N, W3400N
Karol Kozimored2cb072006-06-30 19:03:00 -0400135 M6R, //M6700R, A3000G
Len Brown4be44fc2005-08-05 00:44:28 -0400136 P30, //Samsung P30
137 S1x, //S1300A, but also L1400B and M2400A (L84F)
138 S2x, //S200 (J1 reported), Victor MP-XP7210
Karol Kozimor42cb8912006-06-30 19:04:00 -0400139 W1N, //W1000N
Karol Kozimore067aaa2006-06-30 19:07:00 -0400140 W5A, //W5A
Marek W288f3ad2006-08-14 22:37:20 -0700141 W3V, //W3030V
Karol Kozimor42cb8912006-06-30 19:04:00 -0400142 xxN, //M2400N, M3700N, M5200N, M6800N, S1300N, S5200N
Matthew C Campbell1c0f0572007-02-05 16:09:09 -0800143 A4S, //Z81sp
Len Brown4be44fc2005-08-05 00:44:28 -0400144 //(Centrino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 END_MODEL
Len Brown4be44fc2005-08-05 00:44:28 -0400146 } model; //Models currently supported
147 u16 event_count[128]; //count for each event TODO make this better
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
150/* Here we go */
151#define A1x_PREFIX "\\_SB.PCI0.ISA.EC0."
152#define L3C_PREFIX "\\_SB.PCI0.PX40.ECD0."
153#define M1A_PREFIX "\\_SB.PCI0.PX40.EC0."
154#define P30_PREFIX "\\_SB.PCI0.LPCB.EC0."
155#define S1x_PREFIX "\\_SB.PCI0.PX40."
156#define S2x_PREFIX A1x_PREFIX
157#define xxN_PREFIX "\\_SB.PCI0.SBRG.EC0."
158
159static struct model_data model_conf[END_MODEL] = {
Len Brown4be44fc2005-08-05 00:44:28 -0400160 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * TODO I have seen a SWBX and AIBX method on some models, like L1400B,
162 * it seems to be a kind of switch, but what for ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
164
165 {
Len Brown4be44fc2005-08-05 00:44:28 -0400166 .name = "A1x",
167 .mt_mled = "MLED",
168 .mled_status = "\\MAIL",
169 .mt_lcd_switch = A1x_PREFIX "_Q10",
170 .lcd_status = "\\BKLI",
171 .brightness_up = A1x_PREFIX "_Q0E",
172 .brightness_down = A1x_PREFIX "_Q0F"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 {
Len Brown4be44fc2005-08-05 00:44:28 -0400175 .name = "A2x",
176 .mt_mled = "MLED",
177 .mt_wled = "WLED",
178 .wled_status = "\\SG66",
179 .mt_lcd_switch = "\\Q10",
180 .lcd_status = "\\BAOF",
181 .brightness_set = "SPLV",
182 .brightness_get = "GPLV",
183 .display_set = "SDSP",
184 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 {
Karol Kozimorf78c5892006-06-30 19:06:00 -0400187 .name = "A4G",
188 .mt_mled = "MLED",
189/* WLED present, but not controlled by ACPI */
190 .mt_lcd_switch = xxN_PREFIX "_Q10",
191 .brightness_set = "SPLV",
192 .brightness_get = "GPLV",
193 .display_set = "SDSP",
194 .display_get = "\\ADVG"},
195
196 {
Len Brown4be44fc2005-08-05 00:44:28 -0400197 .name = "D1x",
198 .mt_mled = "MLED",
199 .mt_lcd_switch = "\\Q0D",
200 .lcd_status = "\\GP11",
201 .brightness_up = "\\Q0C",
202 .brightness_down = "\\Q0B",
203 .brightness_status = "\\BLVL",
204 .display_set = "SDSP",
205 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 {
Len Brown4be44fc2005-08-05 00:44:28 -0400208 .name = "L2D",
209 .mt_mled = "MLED",
210 .mled_status = "\\SGP6",
211 .mt_wled = "WLED",
212 .wled_status = "\\RCP3",
213 .mt_lcd_switch = "\\Q10",
214 .lcd_status = "\\SGP0",
215 .brightness_up = "\\Q0E",
216 .brightness_down = "\\Q0F",
217 .display_set = "SDSP",
218 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 {
Len Brown4be44fc2005-08-05 00:44:28 -0400221 .name = "L3C",
222 .mt_mled = "MLED",
223 .mt_wled = "WLED",
224 .mt_lcd_switch = L3C_PREFIX "_Q10",
225 .lcd_status = "\\GL32",
226 .brightness_set = "SPLV",
227 .brightness_get = "GPLV",
228 .display_set = "SDSP",
229 .display_get = "\\_SB.PCI0.PCI1.VGAC.NMAP"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 {
Len Brown4be44fc2005-08-05 00:44:28 -0400232 .name = "L3D",
233 .mt_mled = "MLED",
234 .mled_status = "\\MALD",
235 .mt_wled = "WLED",
236 .mt_lcd_switch = "\\Q10",
237 .lcd_status = "\\BKLG",
238 .brightness_set = "SPLV",
239 .brightness_get = "GPLV",
240 .display_set = "SDSP",
241 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 {
Len Brown4be44fc2005-08-05 00:44:28 -0400244 .name = "L3H",
245 .mt_mled = "MLED",
246 .mt_wled = "WLED",
247 .mt_lcd_switch = "EHK",
248 .lcd_status = "\\_SB.PCI0.PM.PBC",
249 .brightness_set = "SPLV",
250 .brightness_get = "GPLV",
251 .display_set = "SDSP",
252 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 {
Len Brown4be44fc2005-08-05 00:44:28 -0400255 .name = "L4R",
256 .mt_mled = "MLED",
257 .mt_wled = "WLED",
258 .wled_status = "\\_SB.PCI0.SBRG.SG13",
259 .mt_lcd_switch = xxN_PREFIX "_Q10",
260 .lcd_status = "\\_SB.PCI0.SBSM.SEO4",
261 .brightness_set = "SPLV",
262 .brightness_get = "GPLV",
263 .display_set = "SDSP",
264 .display_get = "\\_SB.PCI0.P0P1.VGA.GETD"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 {
Len Brown4be44fc2005-08-05 00:44:28 -0400267 .name = "L5x",
268 .mt_mled = "MLED",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/* WLED present, but not controlled by ACPI */
Len Brown4be44fc2005-08-05 00:44:28 -0400270 .mt_tled = "TLED",
271 .mt_lcd_switch = "\\Q0D",
272 .lcd_status = "\\BAOF",
273 .brightness_set = "SPLV",
274 .brightness_get = "GPLV",
275 .display_set = "SDSP",
276 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 {
Len Brown4be44fc2005-08-05 00:44:28 -0400279 .name = "L8L"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280/* No features, but at least support the hotkeys */
Len Brown4be44fc2005-08-05 00:44:28 -0400281 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 {
Len Brown4be44fc2005-08-05 00:44:28 -0400284 .name = "M1A",
285 .mt_mled = "MLED",
286 .mt_lcd_switch = M1A_PREFIX "Q10",
287 .lcd_status = "\\PNOF",
288 .brightness_up = M1A_PREFIX "Q0E",
289 .brightness_down = M1A_PREFIX "Q0F",
290 .brightness_status = "\\BRIT",
291 .display_set = "SDSP",
292 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 {
Len Brown4be44fc2005-08-05 00:44:28 -0400295 .name = "M2E",
296 .mt_mled = "MLED",
297 .mt_wled = "WLED",
298 .mt_lcd_switch = "\\Q10",
299 .lcd_status = "\\GP06",
300 .brightness_set = "SPLV",
301 .brightness_get = "GPLV",
302 .display_set = "SDSP",
303 .display_get = "\\INFB"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 {
Len Brown4be44fc2005-08-05 00:44:28 -0400306 .name = "M6N",
307 .mt_mled = "MLED",
308 .mt_wled = "WLED",
309 .wled_status = "\\_SB.PCI0.SBRG.SG13",
310 .mt_lcd_switch = xxN_PREFIX "_Q10",
311 .lcd_status = "\\_SB.BKLT",
312 .brightness_set = "SPLV",
313 .brightness_get = "GPLV",
314 .display_set = "SDSP",
Karol Kozimor9becf5b2006-06-30 19:15:00 -0400315 .display_get = "\\SSTE"},
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 {
Len Brown4be44fc2005-08-05 00:44:28 -0400318 .name = "M6R",
319 .mt_mled = "MLED",
320 .mt_wled = "WLED",
321 .mt_lcd_switch = xxN_PREFIX "_Q10",
322 .lcd_status = "\\_SB.PCI0.SBSM.SEO4",
323 .brightness_set = "SPLV",
324 .brightness_get = "GPLV",
325 .display_set = "SDSP",
Karol Kozimor9becf5b2006-06-30 19:15:00 -0400326 .display_get = "\\_SB.PCI0.P0P1.VGA.GETD"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 {
Len Brown4be44fc2005-08-05 00:44:28 -0400329 .name = "P30",
330 .mt_wled = "WLED",
331 .mt_lcd_switch = P30_PREFIX "_Q0E",
332 .lcd_status = "\\BKLT",
333 .brightness_up = P30_PREFIX "_Q68",
334 .brightness_down = P30_PREFIX "_Q69",
335 .brightness_get = "GPLV",
336 .display_set = "SDSP",
337 .display_get = "\\DNXT"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 {
Len Brown4be44fc2005-08-05 00:44:28 -0400340 .name = "S1x",
341 .mt_mled = "MLED",
342 .mled_status = "\\EMLE",
343 .mt_wled = "WLED",
344 .mt_lcd_switch = S1x_PREFIX "Q10",
345 .lcd_status = "\\PNOF",
346 .brightness_set = "SPLV",
347 .brightness_get = "GPLV"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 {
Len Brown4be44fc2005-08-05 00:44:28 -0400350 .name = "S2x",
351 .mt_mled = "MLED",
352 .mled_status = "\\MAIL",
353 .mt_lcd_switch = S2x_PREFIX "_Q10",
354 .lcd_status = "\\BKLI",
355 .brightness_up = S2x_PREFIX "_Q0B",
356 .brightness_down = S2x_PREFIX "_Q0A"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 {
Karol Kozimor42cb8912006-06-30 19:04:00 -0400359 .name = "W1N",
360 .mt_mled = "MLED",
361 .mt_wled = "WLED",
362 .mt_ledd = "SLCM",
363 .mt_lcd_switch = xxN_PREFIX "_Q10",
364 .lcd_status = "\\BKLT",
365 .brightness_set = "SPLV",
366 .brightness_get = "GPLV",
367 .display_set = "SDSP",
368 .display_get = "\\ADVG"},
369
370 {
Karol Kozimore067aaa2006-06-30 19:07:00 -0400371 .name = "W5A",
372 .mt_bt_switch = "BLED",
373 .mt_wled = "WLED",
374 .mt_lcd_switch = xxN_PREFIX "_Q10",
375 .brightness_set = "SPLV",
376 .brightness_get = "GPLV",
377 .display_set = "SDSP",
378 .display_get = "\\ADVG"},
379
380 {
Marek W288f3ad2006-08-14 22:37:20 -0700381 .name = "W3V",
382 .mt_mled = "MLED",
383 .mt_wled = "WLED",
384 .mt_lcd_switch = xxN_PREFIX "_Q10",
385 .lcd_status = "\\BKLT",
386 .brightness_set = "SPLV",
387 .brightness_get = "GPLV",
388 .display_set = "SDSP",
389 .display_get = "\\INFB"},
390
391 {
Len Brown4be44fc2005-08-05 00:44:28 -0400392 .name = "xxN",
393 .mt_mled = "MLED",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394/* WLED present, but not controlled by ACPI */
Len Brown4be44fc2005-08-05 00:44:28 -0400395 .mt_lcd_switch = xxN_PREFIX "_Q10",
396 .lcd_status = "\\BKLT",
397 .brightness_set = "SPLV",
398 .brightness_get = "GPLV",
399 .display_set = "SDSP",
Matthew C Campbell1c0f0572007-02-05 16:09:09 -0800400 .display_get = "\\ADVG"},
401
402 {
403 .name = "A4S",
404 .brightness_set = "SPLV",
405 .brightness_get = "GPLV",
406 .mt_bt_switch = "BLED",
407 .mt_wled = "WLED"
408 }
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410};
411
412/* procdir we use */
413static struct proc_dir_entry *asus_proc_dir;
414
Holger Macht2039a6e2006-10-20 14:30:29 -0700415static struct backlight_device *asus_backlight_device;
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/*
418 * This header is made available to allow proper configuration given model,
419 * revision number , ... this info cannot go in struct asus_hotk because it is
420 * available before the hotk
421 */
422static struct acpi_table_header *asus_info;
423
424/* The actual device the driver binds to */
425static struct asus_hotk *hotk;
426
427/*
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200428 * The hotkey driver and autoloading declaration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 */
430static int asus_hotk_add(struct acpi_device *device);
431static int asus_hotk_remove(struct acpi_device *device, int type);
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200432static const struct acpi_device_id asus_device_ids[] = {
433 {"ATK0100", 0},
434 {"", 0},
435};
436MODULE_DEVICE_TABLE(acpi, asus_device_ids);
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438static struct acpi_driver asus_hotk_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500439 .name = "asus_acpi",
Len Brown4be44fc2005-08-05 00:44:28 -0400440 .class = ACPI_HOTK_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200441 .ids = asus_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400442 .ops = {
443 .add = asus_hotk_add,
444 .remove = asus_hotk_remove,
445 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446};
447
448/*
449 * This function evaluates an ACPI method, given an int as parameter, the
450 * method is searched within the scope of the handle, can be NULL. The output
451 * of the method is written is output, which can also be NULL
452 *
453 * returns 1 if write is successful, 0 else.
454 */
455static int write_acpi_int(acpi_handle handle, const char *method, int val,
456 struct acpi_buffer *output)
457{
458 struct acpi_object_list params; //list of input parameters (an int here)
459 union acpi_object in_obj; //the only param we use
460 acpi_status status;
461
462 params.count = 1;
463 params.pointer = &in_obj;
464 in_obj.type = ACPI_TYPE_INTEGER;
465 in_obj.integer.value = val;
466
Len Brown4be44fc2005-08-05 00:44:28 -0400467 status = acpi_evaluate_object(handle, (char *)method, &params, output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return (status == AE_OK);
469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471static int read_acpi_int(acpi_handle handle, const char *method, int *val)
472{
473 struct acpi_buffer output;
474 union acpi_object out_obj;
475 acpi_status status;
476
477 output.length = sizeof(out_obj);
478 output.pointer = &out_obj;
479
Len Brown4be44fc2005-08-05 00:44:28 -0400480 status = acpi_evaluate_object(handle, (char *)method, NULL, &output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 *val = out_obj.integer.value;
482 return (status == AE_OK) && (out_obj.type == ACPI_TYPE_INTEGER);
483}
484
485/*
486 * We write our info in page, we begin at offset off and cannot write more
487 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
488 * number of bytes written in page
489 */
490static int
491proc_read_info(char *page, char **start, off_t off, int count, int *eof,
Len Brown4be44fc2005-08-05 00:44:28 -0400492 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 int len = 0;
495 int temp;
496 char buf[16]; //enough for all info
497 /*
498 * We use the easy way, we don't care of off and count, so we don't set eof
499 * to 1
500 */
501
502 len += sprintf(page, ACPI_HOTK_NAME " " ASUS_ACPI_VERSION "\n");
Len Brown4be44fc2005-08-05 00:44:28 -0400503 len += sprintf(page + len, "Model reference : %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 hotk->methods->name);
505 /*
506 * The SFUN method probably allows the original driver to get the list
507 * of features supported by a given model. For now, 0x0100 or 0x0800
508 * bit signifies that the laptop is equipped with a Wi-Fi MiniPCI card.
509 * The significance of others is yet to be found.
510 */
511 if (read_acpi_int(hotk->handle, "SFUN", &temp))
Len Brown4be44fc2005-08-05 00:44:28 -0400512 len +=
513 sprintf(page + len, "SFUN value : 0x%04x\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /*
515 * Another value for userspace: the ASYM method returns 0x02 for
516 * battery low and 0x04 for battery critical, its readings tend to be
517 * more accurate than those provided by _BST.
518 * Note: since not all the laptops provide this method, errors are
519 * silently ignored.
520 */
521 if (read_acpi_int(hotk->handle, "ASYM", &temp))
Len Brown4be44fc2005-08-05 00:44:28 -0400522 len +=
523 sprintf(page + len, "ASYM value : 0x%04x\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (asus_info) {
525 snprintf(buf, 16, "%d", asus_info->length);
526 len += sprintf(page + len, "DSDT length : %s\n", buf);
527 snprintf(buf, 16, "%d", asus_info->checksum);
528 len += sprintf(page + len, "DSDT checksum : %s\n", buf);
529 snprintf(buf, 16, "%d", asus_info->revision);
530 len += sprintf(page + len, "DSDT revision : %s\n", buf);
531 snprintf(buf, 7, "%s", asus_info->oem_id);
532 len += sprintf(page + len, "OEM id : %s\n", buf);
533 snprintf(buf, 9, "%s", asus_info->oem_table_id);
534 len += sprintf(page + len, "OEM table id : %s\n", buf);
535 snprintf(buf, 16, "%x", asus_info->oem_revision);
536 len += sprintf(page + len, "OEM revision : 0x%s\n", buf);
537 snprintf(buf, 5, "%s", asus_info->asl_compiler_id);
538 len += sprintf(page + len, "ASL comp vendor id : %s\n", buf);
539 snprintf(buf, 16, "%x", asus_info->asl_compiler_revision);
540 len += sprintf(page + len, "ASL comp revision : 0x%s\n", buf);
541 }
542
543 return len;
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/*
547 * /proc handlers
548 * We write our info in page, we begin at offset off and cannot write more
549 * than count bytes. We set eof to 1 if we handle those 2 values. We return the
550 * number of bytes written in page
551 */
552
553/* Generic LED functions */
Len Brown4be44fc2005-08-05 00:44:28 -0400554static int read_led(const char *ledname, int ledmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 if (ledname) {
557 int led_status;
558
559 if (read_acpi_int(NULL, ledname, &led_status))
560 return led_status;
561 else
562 printk(KERN_WARNING "Asus ACPI: Error reading LED "
563 "status\n");
564 }
565 return (hotk->status & ledmask) ? 1 : 0;
566}
567
Len Brown4be44fc2005-08-05 00:44:28 -0400568static int parse_arg(const char __user * buf, unsigned long count, int *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 char s[32];
571 if (!count)
572 return 0;
573 if (count > 31)
574 return -EINVAL;
575 if (copy_from_user(s, buf, count))
576 return -EFAULT;
577 s[count] = 0;
578 if (sscanf(s, "%i", val) != 1)
579 return -EINVAL;
580 return count;
581}
582
583/* FIXME: kill extraneous args so it can be called independently */
584static int
Len Brown4be44fc2005-08-05 00:44:28 -0400585write_led(const char __user * buffer, unsigned long count,
586 char *ledname, int ledmask, int invert)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700588 int rv, value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 int led_out = 0;
590
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700591 rv = parse_arg(buffer, count, &value);
592 if (rv > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 led_out = value ? 1 : 0;
594
595 hotk->status =
596 (led_out) ? (hotk->status | ledmask) : (hotk->status & ~ledmask);
597
Len Brown4be44fc2005-08-05 00:44:28 -0400598 if (invert) /* invert target value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 led_out = !led_out & 0x1;
600
601 if (!write_acpi_int(hotk->handle, ledname, led_out, NULL))
Len Brown4be44fc2005-08-05 00:44:28 -0400602 printk(KERN_WARNING "Asus ACPI: LED (%s) write failed\n",
603 ledname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700605 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608/*
609 * Proc handlers for MLED
610 */
611static int
612proc_read_mled(char *page, char **start, off_t off, int count, int *eof,
613 void *data)
614{
Len Brown4be44fc2005-08-05 00:44:28 -0400615 return sprintf(page, "%d\n",
616 read_led(hotk->methods->mled_status, MLED_ON));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619static int
Len Brown4be44fc2005-08-05 00:44:28 -0400620proc_write_mled(struct file *file, const char __user * buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 unsigned long count, void *data)
622{
623 return write_led(buffer, count, hotk->methods->mt_mled, MLED_ON, 1);
624}
625
626/*
Karol Kozimor42cb8912006-06-30 19:04:00 -0400627 * Proc handlers for LED display
628 */
629static int
630proc_read_ledd(char *page, char **start, off_t off, int count, int *eof,
631 void *data)
632{
633 return sprintf(page, "0x%08x\n", hotk->ledd_status);
634}
635
636static int
637proc_write_ledd(struct file *file, const char __user * buffer,
638 unsigned long count, void *data)
639{
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700640 int rv, value;
Karol Kozimor42cb8912006-06-30 19:04:00 -0400641
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700642 rv = parse_arg(buffer, count, &value);
643 if (rv > 0) {
Karol Kozimor42cb8912006-06-30 19:04:00 -0400644 if (!write_acpi_int
645 (hotk->handle, hotk->methods->mt_ledd, value, NULL))
646 printk(KERN_WARNING
647 "Asus ACPI: LED display write failed\n");
648 else
649 hotk->ledd_status = (u32) value;
Alexey Dobriyan6df05702006-10-10 14:20:36 -0700650 }
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700651 return rv;
Karol Kozimor42cb8912006-06-30 19:04:00 -0400652}
653
654/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 * Proc handlers for WLED
656 */
657static int
658proc_read_wled(char *page, char **start, off_t off, int count, int *eof,
659 void *data)
660{
Len Brown4be44fc2005-08-05 00:44:28 -0400661 return sprintf(page, "%d\n",
662 read_led(hotk->methods->wled_status, WLED_ON));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
665static int
Len Brown4be44fc2005-08-05 00:44:28 -0400666proc_write_wled(struct file *file, const char __user * buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 unsigned long count, void *data)
668{
669 return write_led(buffer, count, hotk->methods->mt_wled, WLED_ON, 0);
670}
671
672/*
Karol Kozimore067aaa2006-06-30 19:07:00 -0400673 * Proc handlers for Bluetooth
674 */
675static int
676proc_read_bluetooth(char *page, char **start, off_t off, int count, int *eof,
677 void *data)
678{
679 return sprintf(page, "%d\n", read_led(hotk->methods->bt_status, BT_ON));
680}
681
682static int
683proc_write_bluetooth(struct file *file, const char __user * buffer,
684 unsigned long count, void *data)
685{
686 /* Note: mt_bt_switch controls both internal Bluetooth adapter's
687 presence and its LED */
688 return write_led(buffer, count, hotk->methods->mt_bt_switch, BT_ON, 0);
689}
690
691/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * Proc handlers for TLED
693 */
694static int
695proc_read_tled(char *page, char **start, off_t off, int count, int *eof,
696 void *data)
697{
Len Brown4be44fc2005-08-05 00:44:28 -0400698 return sprintf(page, "%d\n",
699 read_led(hotk->methods->tled_status, TLED_ON));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702static int
Len Brown4be44fc2005-08-05 00:44:28 -0400703proc_write_tled(struct file *file, const char __user * buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 unsigned long count, void *data)
705{
706 return write_led(buffer, count, hotk->methods->mt_tled, TLED_ON, 0);
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709static int get_lcd_state(void)
710{
711 int lcd = 0;
712
713 if (hotk->model != L3H) {
Len Brown4be44fc2005-08-05 00:44:28 -0400714 /* We don't have to check anything if we are here */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (!read_acpi_int(NULL, hotk->methods->lcd_status, &lcd))
Len Brown4be44fc2005-08-05 00:44:28 -0400716 printk(KERN_WARNING
717 "Asus ACPI: Error reading LCD status\n");
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (hotk->model == L2D)
720 lcd = ~lcd;
Len Brown4be44fc2005-08-05 00:44:28 -0400721 } else { /* L3H and the like have to be handled differently */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 acpi_status status = 0;
723 struct acpi_object_list input;
724 union acpi_object mt_params[2];
725 struct acpi_buffer output;
726 union acpi_object out_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 input.count = 2;
729 input.pointer = mt_params;
730 /* Note: the following values are partly guessed up, but
731 otherwise they seem to work */
732 mt_params[0].type = ACPI_TYPE_INTEGER;
733 mt_params[0].integer.value = 0x02;
734 mt_params[1].type = ACPI_TYPE_INTEGER;
735 mt_params[1].integer.value = 0x02;
736
737 output.length = sizeof(out_obj);
738 output.pointer = &out_obj;
Len Brown4be44fc2005-08-05 00:44:28 -0400739
740 status =
741 acpi_evaluate_object(NULL, hotk->methods->lcd_status,
742 &input, &output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (status != AE_OK)
744 return -1;
745 if (out_obj.type == ACPI_TYPE_INTEGER)
746 /* That's what the AML code does */
747 lcd = out_obj.integer.value >> 8;
748 }
Len Brown4be44fc2005-08-05 00:44:28 -0400749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return (lcd & 1);
751}
752
753static int set_lcd_state(int value)
754{
755 int lcd = 0;
756 acpi_status status = 0;
757
758 lcd = value ? 1 : 0;
759 if (lcd != get_lcd_state()) {
760 /* switch */
761 if (hotk->model != L3H) {
762 status =
Len Brown4be44fc2005-08-05 00:44:28 -0400763 acpi_evaluate_object(NULL,
764 hotk->methods->mt_lcd_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 NULL, NULL);
Len Brown4be44fc2005-08-05 00:44:28 -0400766 } else { /* L3H and the like have to be handled differently */
767 if (!write_acpi_int
768 (hotk->handle, hotk->methods->mt_lcd_switch, 0x07,
769 NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 status = AE_ERROR;
771 /* L3H's AML executes EHK (0x07) upon Fn+F7 keypress,
772 the exact behaviour is simulated here */
773 }
774 if (ACPI_FAILURE(status))
775 printk(KERN_WARNING "Asus ACPI: Error switching LCD\n");
776 }
777 return 0;
778
779}
780
781static int
782proc_read_lcd(char *page, char **start, off_t off, int count, int *eof,
783 void *data)
784{
785 return sprintf(page, "%d\n", get_lcd_state());
786}
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788static int
Len Brown4be44fc2005-08-05 00:44:28 -0400789proc_write_lcd(struct file *file, const char __user * buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 unsigned long count, void *data)
791{
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700792 int rv, value;
Len Brown4be44fc2005-08-05 00:44:28 -0400793
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700794 rv = parse_arg(buffer, count, &value);
795 if (rv > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 set_lcd_state(value);
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700797 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
Holger Macht2039a6e2006-10-20 14:30:29 -0700800static int read_brightness(struct backlight_device *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 int value;
Len Brown4be44fc2005-08-05 00:44:28 -0400803
804 if (hotk->methods->brightness_get) { /* SPLV/GPLV laptop */
805 if (!read_acpi_int(hotk->handle, hotk->methods->brightness_get,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 &value))
Len Brown4be44fc2005-08-05 00:44:28 -0400807 printk(KERN_WARNING
808 "Asus ACPI: Error reading brightness\n");
809 } else if (hotk->methods->brightness_status) { /* For D1 for example */
810 if (!read_acpi_int(NULL, hotk->methods->brightness_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 &value))
Len Brown4be44fc2005-08-05 00:44:28 -0400812 printk(KERN_WARNING
813 "Asus ACPI: Error reading brightness\n");
814 } else /* No GPLV method */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 value = hotk->brightness;
816 return value;
817}
818
819/*
820 * Change the brightness level
821 */
Holger Macht2039a6e2006-10-20 14:30:29 -0700822static int set_brightness(int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 acpi_status status = 0;
Holger Macht2039a6e2006-10-20 14:30:29 -0700825 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* SPLV laptop */
Len Brown4be44fc2005-08-05 00:44:28 -0400828 if (hotk->methods->brightness_set) {
829 if (!write_acpi_int(hotk->handle, hotk->methods->brightness_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 value, NULL))
Len Brown4be44fc2005-08-05 00:44:28 -0400831 printk(KERN_WARNING
832 "Asus ACPI: Error changing brightness\n");
Holger Macht2039a6e2006-10-20 14:30:29 -0700833 ret = -EIO;
834 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836
837 /* No SPLV method if we are here, act as appropriate */
Holger Macht2039a6e2006-10-20 14:30:29 -0700838 value -= read_brightness(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 while (value != 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400840 status = acpi_evaluate_object(NULL, (value > 0) ?
841 hotk->methods->brightness_up :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 hotk->methods->brightness_down,
843 NULL, NULL);
844 (value > 0) ? value-- : value++;
845 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400846 printk(KERN_WARNING
847 "Asus ACPI: Error changing brightness\n");
Holger Macht2039a6e2006-10-20 14:30:29 -0700848 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Holger Macht2039a6e2006-10-20 14:30:29 -0700850out:
851 return ret;
852}
853
854static int set_brightness_status(struct backlight_device *bd)
855{
Richard Purdie599a52d2007-02-10 23:07:48 +0000856 return set_brightness(bd->props.brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
859static int
860proc_read_brn(char *page, char **start, off_t off, int count, int *eof,
861 void *data)
862{
Holger Macht2039a6e2006-10-20 14:30:29 -0700863 return sprintf(page, "%d\n", read_brightness(NULL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866static int
Len Brown4be44fc2005-08-05 00:44:28 -0400867proc_write_brn(struct file *file, const char __user * buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 unsigned long count, void *data)
869{
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700870 int rv, value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700872 rv = parse_arg(buffer, count, &value);
873 if (rv > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400875 /* 0 <= value <= 15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 set_brightness(value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700878 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
881static void set_display(int value)
882{
883 /* no sanity check needed for now */
Len Brown4be44fc2005-08-05 00:44:28 -0400884 if (!write_acpi_int(hotk->handle, hotk->methods->display_set,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 value, NULL))
886 printk(KERN_WARNING "Asus ACPI: Error setting display\n");
887 return;
888}
889
890/*
891 * Now, *this* one could be more user-friendly, but so far, no-one has
892 * complained. The significance of bits is the same as in proc_write_disp()
893 */
894static int
895proc_read_disp(char *page, char **start, off_t off, int count, int *eof,
Len Brown4be44fc2005-08-05 00:44:28 -0400896 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 int value = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (!read_acpi_int(hotk->handle, hotk->methods->display_get, &value))
Len Brown4be44fc2005-08-05 00:44:28 -0400901 printk(KERN_WARNING
902 "Asus ACPI: Error reading display status\n");
903 value &= 0x07; /* needed for some models, shouldn't hurt others */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return sprintf(page, "%d\n", value);
905}
906
907/*
908 * Experimental support for display switching. As of now: 1 should activate
909 * the LCD output, 2 should do for CRT, and 4 for TV-Out. Any combination
910 * (bitwise) of these will suffice. I never actually tested 3 displays hooked up
911 * simultaneously, so be warned. See the acpi4asus README for more info.
912 */
913static int
Len Brown4be44fc2005-08-05 00:44:28 -0400914proc_write_disp(struct file *file, const char __user * buffer,
915 unsigned long count, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700917 int rv, value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700919 rv = parse_arg(buffer, count, &value);
920 if (rv > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 set_display(value);
Darren Jenkins6311f0d2006-10-10 14:20:35 -0700922 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Len Brown4be44fc2005-08-05 00:44:28 -0400925typedef int (proc_readfunc) (char *page, char **start, off_t off, int count,
926 int *eof, void *data);
927typedef int (proc_writefunc) (struct file * file, const char __user * buffer,
928 unsigned long count, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930static int
Bjorn Helgaas200739c2006-03-28 17:04:00 -0500931asus_proc_add(char *name, proc_writefunc * writefunc,
Len Brown4be44fc2005-08-05 00:44:28 -0400932 proc_readfunc * readfunc, mode_t mode,
933 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Len Brown4be44fc2005-08-05 00:44:28 -0400935 struct proc_dir_entry *proc =
936 create_proc_entry(name, mode, acpi_device_dir(device));
937 if (!proc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 printk(KERN_WARNING " Unable to create %s fs entry\n", name);
939 return -1;
940 }
941 proc->write_proc = writefunc;
942 proc->read_proc = readfunc;
943 proc->data = acpi_driver_data(device);
944 proc->owner = THIS_MODULE;
945 proc->uid = asus_uid;
946 proc->gid = asus_gid;
947 return 0;
948}
949
Bjorn Helgaas200739c2006-03-28 17:04:00 -0500950static int asus_hotk_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 struct proc_dir_entry *proc;
953 mode_t mode;
Len Brown4be44fc2005-08-05 00:44:28 -0400954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 /*
956 * If parameter uid or gid is not changed, keep the default setting for
957 * our proc entries (-rw-rw-rw-) else, it means we care about security,
958 * and then set to -rw-rw----
959 */
960
Len Brown4be44fc2005-08-05 00:44:28 -0400961 if ((asus_uid == 0) && (asus_gid == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 mode = S_IFREG | S_IRUGO | S_IWUGO;
963 } else {
964 mode = S_IFREG | S_IRUSR | S_IRGRP | S_IWUSR | S_IWGRP;
Karol Kozimoraea19aa2006-01-03 23:05:00 -0500965 printk(KERN_WARNING " asus_uid and asus_gid parameters are "
966 "deprecated, use chown and chmod instead!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
968
969 acpi_device_dir(device) = asus_proc_dir;
970 if (!acpi_device_dir(device))
971 return -ENODEV;
972
973 proc = create_proc_entry(PROC_INFO, mode, acpi_device_dir(device));
974 if (proc) {
975 proc->read_proc = proc_read_info;
976 proc->data = acpi_driver_data(device);
977 proc->owner = THIS_MODULE;
978 proc->uid = asus_uid;
979 proc->gid = asus_gid;
980 } else {
981 printk(KERN_WARNING " Unable to create " PROC_INFO
982 " fs entry\n");
983 }
984
985 if (hotk->methods->mt_wled) {
Len Brown4be44fc2005-08-05 00:44:28 -0400986 asus_proc_add(PROC_WLED, &proc_write_wled, &proc_read_wled,
987 mode, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
Karol Kozimor42cb8912006-06-30 19:04:00 -0400990 if (hotk->methods->mt_ledd) {
991 asus_proc_add(PROC_LEDD, &proc_write_ledd, &proc_read_ledd,
992 mode, device);
993 }
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (hotk->methods->mt_mled) {
Len Brown4be44fc2005-08-05 00:44:28 -0400996 asus_proc_add(PROC_MLED, &proc_write_mled, &proc_read_mled,
997 mode, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
1000 if (hotk->methods->mt_tled) {
Len Brown4be44fc2005-08-05 00:44:28 -04001001 asus_proc_add(PROC_TLED, &proc_write_tled, &proc_read_tled,
1002 mode, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
1004
Karol Kozimore067aaa2006-06-30 19:07:00 -04001005 if (hotk->methods->mt_bt_switch) {
1006 asus_proc_add(PROC_BT, &proc_write_bluetooth,
1007 &proc_read_bluetooth, mode, device);
1008 }
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /*
1011 * We need both read node and write method as LCD switch is also accessible
1012 * from keyboard
1013 */
1014 if (hotk->methods->mt_lcd_switch && hotk->methods->lcd_status) {
Len Brown4be44fc2005-08-05 00:44:28 -04001015 asus_proc_add(PROC_LCD, &proc_write_lcd, &proc_read_lcd, mode,
1016 device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
Len Brown4be44fc2005-08-05 00:44:28 -04001018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if ((hotk->methods->brightness_up && hotk->methods->brightness_down) ||
1020 (hotk->methods->brightness_get && hotk->methods->brightness_set)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001021 asus_proc_add(PROC_BRN, &proc_write_brn, &proc_read_brn, mode,
1022 device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024
1025 if (hotk->methods->display_set) {
Len Brown4be44fc2005-08-05 00:44:28 -04001026 asus_proc_add(PROC_DISP, &proc_write_disp, &proc_read_disp,
1027 mode, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029
1030 return 0;
1031}
1032
Len Brown4be44fc2005-08-05 00:44:28 -04001033static int asus_hotk_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Len Brown4be44fc2005-08-05 00:44:28 -04001035 if (acpi_device_dir(device)) {
1036 remove_proc_entry(PROC_INFO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (hotk->methods->mt_wled)
Len Brown4be44fc2005-08-05 00:44:28 -04001038 remove_proc_entry(PROC_WLED, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 if (hotk->methods->mt_mled)
Len Brown4be44fc2005-08-05 00:44:28 -04001040 remove_proc_entry(PROC_MLED, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (hotk->methods->mt_tled)
Len Brown4be44fc2005-08-05 00:44:28 -04001042 remove_proc_entry(PROC_TLED, acpi_device_dir(device));
Karol Kozimor42cb8912006-06-30 19:04:00 -04001043 if (hotk->methods->mt_ledd)
1044 remove_proc_entry(PROC_LEDD, acpi_device_dir(device));
Karol Kozimore067aaa2006-06-30 19:07:00 -04001045 if (hotk->methods->mt_bt_switch)
1046 remove_proc_entry(PROC_BT, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (hotk->methods->mt_lcd_switch && hotk->methods->lcd_status)
1048 remove_proc_entry(PROC_LCD, acpi_device_dir(device));
Len Brown4be44fc2005-08-05 00:44:28 -04001049 if ((hotk->methods->brightness_up
1050 && hotk->methods->brightness_down)
1051 || (hotk->methods->brightness_get
1052 && hotk->methods->brightness_set))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 remove_proc_entry(PROC_BRN, acpi_device_dir(device));
1054 if (hotk->methods->display_set)
1055 remove_proc_entry(PROC_DISP, acpi_device_dir(device));
1056 }
1057 return 0;
1058}
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060static void asus_hotk_notify(acpi_handle handle, u32 event, void *data)
1061{
Len Brown4be44fc2005-08-05 00:44:28 -04001062 /* TODO Find a better way to handle events count. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (!hotk)
1064 return;
1065
1066 if ((event & ~((u32) BR_UP)) < 16) {
1067 hotk->brightness = (event & ~((u32) BR_UP));
Len Brown4be44fc2005-08-05 00:44:28 -04001068 } else if ((event & ~((u32) BR_DOWN)) < 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 hotk->brightness = (event & ~((u32) BR_DOWN));
1070 }
1071
1072 acpi_bus_generate_event(hotk->device, event,
1073 hotk->event_count[event % 128]++);
1074
1075 return;
1076}
1077
1078/*
Karol Kozimorffab0d92006-06-30 19:11:00 -04001079 * Match the model string to the list of supported models. Return END_MODEL if
1080 * no match or model is NULL.
1081 */
1082static int asus_model_match(char *model)
1083{
1084 if (model == NULL)
1085 return END_MODEL;
1086
1087 if (strncmp(model, "L3D", 3) == 0)
1088 return L3D;
1089 else if (strncmp(model, "L2E", 3) == 0 ||
1090 strncmp(model, "L3H", 3) == 0 || strncmp(model, "L5D", 3) == 0)
1091 return L3H;
1092 else if (strncmp(model, "L3", 2) == 0 || strncmp(model, "L2B", 3) == 0)
1093 return L3C;
1094 else if (strncmp(model, "L8L", 3) == 0)
1095 return L8L;
1096 else if (strncmp(model, "L4R", 3) == 0)
1097 return L4R;
1098 else if (strncmp(model, "M6N", 3) == 0 || strncmp(model, "W3N", 3) == 0)
1099 return M6N;
1100 else if (strncmp(model, "M6R", 3) == 0 || strncmp(model, "A3G", 3) == 0)
1101 return M6R;
1102 else if (strncmp(model, "M2N", 3) == 0 ||
1103 strncmp(model, "M3N", 3) == 0 ||
1104 strncmp(model, "M5N", 3) == 0 ||
1105 strncmp(model, "M6N", 3) == 0 ||
1106 strncmp(model, "S1N", 3) == 0 ||
1107 strncmp(model, "S5N", 3) == 0 || strncmp(model, "W1N", 3) == 0)
1108 return xxN;
1109 else if (strncmp(model, "M1", 2) == 0)
1110 return M1A;
1111 else if (strncmp(model, "M2", 2) == 0 || strncmp(model, "L4E", 3) == 0)
1112 return M2E;
1113 else if (strncmp(model, "L2", 2) == 0)
1114 return L2D;
1115 else if (strncmp(model, "L8", 2) == 0)
1116 return S1x;
1117 else if (strncmp(model, "D1", 2) == 0)
1118 return D1x;
1119 else if (strncmp(model, "A1", 2) == 0)
1120 return A1x;
1121 else if (strncmp(model, "A2", 2) == 0)
1122 return A2x;
1123 else if (strncmp(model, "J1", 2) == 0)
1124 return S2x;
1125 else if (strncmp(model, "L5", 2) == 0)
1126 return L5x;
1127 else if (strncmp(model, "A4G", 3) == 0)
1128 return A4G;
1129 else if (strncmp(model, "W1N", 3) == 0)
1130 return W1N;
Marek W288f3ad2006-08-14 22:37:20 -07001131 else if (strncmp(model, "W3V", 3) == 0)
1132 return W3V;
Karol Kozimorffab0d92006-06-30 19:11:00 -04001133 else if (strncmp(model, "W5A", 3) == 0)
1134 return W5A;
Matthew C Campbell1c0f0572007-02-05 16:09:09 -08001135 else if (strncmp(model, "A4S", 3) == 0)
1136 return A4S;
Karol Kozimorffab0d92006-06-30 19:11:00 -04001137 else
1138 return END_MODEL;
1139}
1140
1141/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 * This function is used to initialize the hotk with right values. In this
1143 * method, we can make all the detection we want, and modify the hotk struct
1144 */
Bjorn Helgaas200739c2006-03-28 17:04:00 -05001145static int asus_hotk_get_info(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 union acpi_object *model = NULL;
1149 int bsts_result;
Karol Kozimorffab0d92006-06-30 19:11:00 -04001150 char *string = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 acpi_status status;
1152
1153 /*
1154 * Get DSDT headers early enough to allow for differentiating between
1155 * models, but late enough to allow acpi_bus_register_driver() to fail
1156 * before doing anything ACPI-specific. Should we encounter a machine,
1157 * which needs special handling (i.e. its hotkey device has a different
1158 * HID), this bit will be moved. A global variable asus_info contains
1159 * the DSDT header.
1160 */
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +03001161 status = acpi_get_table(ACPI_SIG_DSDT, 1, &asus_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (ACPI_FAILURE(status))
1163 printk(KERN_WARNING " Couldn't get the DSDT table header\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 /* We have to write 0 on init this far for all ASUS models */
1166 if (!write_acpi_int(hotk->handle, "INIT", 0, &buffer)) {
1167 printk(KERN_ERR " Hotkey initialization failed\n");
1168 return -ENODEV;
1169 }
1170
1171 /* This needs to be called for some laptops to init properly */
1172 if (!read_acpi_int(hotk->handle, "BSTS", &bsts_result))
1173 printk(KERN_WARNING " Error calling BSTS\n");
1174 else if (bsts_result)
Len Brown4be44fc2005-08-05 00:44:28 -04001175 printk(KERN_NOTICE " BSTS called, 0x%02x returned\n",
1176 bsts_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Karol Kozimorb697b532005-12-22 12:42:00 -05001178 /*
Karol Kozimorffab0d92006-06-30 19:11:00 -04001179 * Try to match the object returned by INIT to the specific model.
1180 * Handle every possible object (or the lack of thereof) the DSDT
1181 * writers might throw at us. When in trouble, we pass NULL to
1182 * asus_model_match() and try something completely different.
Karol Kozimorb697b532005-12-22 12:42:00 -05001183 */
Karol Kozimorffab0d92006-06-30 19:11:00 -04001184 if (buffer.pointer) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001185 model = buffer.pointer;
Karol Kozimorffab0d92006-06-30 19:11:00 -04001186 switch (model->type) {
1187 case ACPI_TYPE_STRING:
1188 string = model->string.pointer;
1189 break;
1190 case ACPI_TYPE_BUFFER:
1191 string = model->buffer.pointer;
1192 break;
1193 default:
1194 kfree(model);
1195 break;
1196 }
1197 }
1198 hotk->model = asus_model_match(string);
1199 if (hotk->model == END_MODEL) { /* match failed */
1200 if (asus_info &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 strncmp(asus_info->oem_table_id, "ODEM", 4) == 0) {
1202 hotk->model = P30;
Len Brown4be44fc2005-08-05 00:44:28 -04001203 printk(KERN_NOTICE
1204 " Samsung P30 detected, supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 } else {
1206 hotk->model = M2E;
Karol Kozimorffab0d92006-06-30 19:11:00 -04001207 printk(KERN_NOTICE " unsupported model %s, trying "
1208 "default values\n", string);
1209 printk(KERN_NOTICE
1210 " send /proc/acpi/dsdt to the developers\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 }
1212 hotk->methods = &model_conf[hotk->model];
Karol Kozimorb697b532005-12-22 12:42:00 -05001213 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 hotk->methods = &model_conf[hotk->model];
Karol Kozimorffab0d92006-06-30 19:11:00 -04001216 printk(KERN_NOTICE " %s model detected, supported\n", string);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /* Sort of per-model blacklist */
Karol Kozimorffab0d92006-06-30 19:11:00 -04001219 if (strncmp(string, "L2B", 3) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -04001220 hotk->methods->lcd_status = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /* L2B is similar enough to L3C to use its settings, with this only
1222 exception */
Karol Kozimorffab0d92006-06-30 19:11:00 -04001223 else if (strncmp(string, "A3G", 3) == 0)
Karol Kozimored2cb072006-06-30 19:03:00 -04001224 hotk->methods->lcd_status = "\\BLFG";
1225 /* A3G is like M6R */
Karol Kozimorffab0d92006-06-30 19:11:00 -04001226 else if (strncmp(string, "S5N", 3) == 0 ||
1227 strncmp(string, "M5N", 3) == 0 ||
1228 strncmp(string, "W3N", 3) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -04001229 hotk->methods->mt_mled = NULL;
Karol Kozimorc067a782006-06-30 19:05:00 -04001230 /* S5N, M5N and W3N have no MLED */
Karol Kozimorffab0d92006-06-30 19:11:00 -04001231 else if (strncmp(string, "L5D", 3) == 0)
Karol Kozimorebccb842006-06-30 19:08:00 -04001232 hotk->methods->mt_wled = NULL;
1233 /* L5D's WLED is not controlled by ACPI */
Karol Kozimor96d11422006-06-30 19:13:00 -04001234 else if (strncmp(string, "M2N", 3) == 0 ||
Marek W288f3ad2006-08-14 22:37:20 -07001235 strncmp(string, "W3V", 3) == 0 ||
Karol Kozimor96d11422006-06-30 19:13:00 -04001236 strncmp(string, "S1N", 3) == 0)
Len Brown4be44fc2005-08-05 00:44:28 -04001237 hotk->methods->mt_wled = "WLED";
Marek W288f3ad2006-08-14 22:37:20 -07001238 /* M2N, S1N and W3V have a usable WLED */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 else if (asus_info) {
1240 if (strncmp(asus_info->oem_table_id, "L1", 2) == 0)
1241 hotk->methods->mled_status = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001242 /* S1300A reports L84F, but L1400B too, account for that */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244
Len Brown02438d82006-06-30 03:19:10 -04001245 kfree(model);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 return AE_OK;
1248}
1249
Bjorn Helgaas200739c2006-03-28 17:04:00 -05001250static int asus_hotk_check(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 int result = 0;
1253
1254 result = acpi_bus_get_status(hotk->device);
1255 if (result)
1256 return result;
1257
1258 if (hotk->device->status.present) {
1259 result = asus_hotk_get_info();
1260 } else {
1261 printk(KERN_ERR " Hotkey device not present, aborting\n");
1262 return -EINVAL;
1263 }
1264
1265 return result;
1266}
1267
Bjorn Helgaas578b3332006-03-28 17:04:00 -05001268static int asus_hotk_found;
1269
Bjorn Helgaas200739c2006-03-28 17:04:00 -05001270static int asus_hotk_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
1272 acpi_status status = AE_OK;
1273 int result;
1274
1275 if (!device)
1276 return -EINVAL;
1277
1278 printk(KERN_NOTICE "Asus Laptop ACPI Extras version %s\n",
1279 ASUS_ACPI_VERSION);
1280
Burman Yan36bcbec2006-12-19 12:56:11 -08001281 hotk = kzalloc(sizeof(struct asus_hotk), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (!hotk)
1283 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 hotk->handle = device->handle;
1286 strcpy(acpi_device_name(device), ACPI_HOTK_DEVICE_NAME);
1287 strcpy(acpi_device_class(device), ACPI_HOTK_CLASS);
1288 acpi_driver_data(device) = hotk;
1289 hotk->device = device;
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 result = asus_hotk_check();
1292 if (result)
1293 goto end;
1294
1295 result = asus_hotk_add_fs(device);
1296 if (result)
1297 goto end;
1298
1299 /*
1300 * We install the handler, it will receive the hotk in parameter, so, we
1301 * could add other data to the hotk struct
1302 */
1303 status = acpi_install_notify_handler(hotk->handle, ACPI_SYSTEM_NOTIFY,
1304 asus_hotk_notify, hotk);
1305 if (ACPI_FAILURE(status))
1306 printk(KERN_ERR " Error installing notify handler\n");
1307
1308 /* For laptops without GPLV: init the hotk->brightness value */
Len Brown4be44fc2005-08-05 00:44:28 -04001309 if ((!hotk->methods->brightness_get)
1310 && (!hotk->methods->brightness_status)
Karol Kozimora170a532006-06-30 19:03:00 -04001311 && (hotk->methods->brightness_up && hotk->methods->brightness_down)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001312 status =
1313 acpi_evaluate_object(NULL, hotk->methods->brightness_down,
1314 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (ACPI_FAILURE(status))
1316 printk(KERN_WARNING " Error changing brightness\n");
1317 else {
Len Brown4be44fc2005-08-05 00:44:28 -04001318 status =
1319 acpi_evaluate_object(NULL,
1320 hotk->methods->brightness_up,
1321 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (ACPI_FAILURE(status))
Len Brown4be44fc2005-08-05 00:44:28 -04001323 printk(KERN_WARNING " Strange, error changing"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 " brightness\n");
1325 }
1326 }
1327
Bjorn Helgaas578b3332006-03-28 17:04:00 -05001328 asus_hotk_found = 1;
1329
Karol Kozimor42cb8912006-06-30 19:04:00 -04001330 /* LED display is off by default */
1331 hotk->ledd_status = 0xFFF;
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 end:
1334 if (result) {
1335 kfree(hotk);
1336 }
1337
1338 return result;
1339}
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341static int asus_hotk_remove(struct acpi_device *device, int type)
1342{
1343 acpi_status status = 0;
1344
1345 if (!device || !acpi_driver_data(device))
1346 return -EINVAL;
1347
1348 status = acpi_remove_notify_handler(hotk->handle, ACPI_SYSTEM_NOTIFY,
1349 asus_hotk_notify);
1350 if (ACPI_FAILURE(status))
1351 printk(KERN_ERR "Asus ACPI: Error removing notify handler\n");
1352
1353 asus_hotk_remove_fs(device);
1354
1355 kfree(hotk);
1356
1357 return 0;
1358}
1359
Richard Purdie599a52d2007-02-10 23:07:48 +00001360static struct backlight_ops asus_backlight_data = {
Holger Macht2039a6e2006-10-20 14:30:29 -07001361 .get_brightness = read_brightness,
1362 .update_status = set_brightness_status,
Holger Macht2039a6e2006-10-20 14:30:29 -07001363};
1364
Sam Ravnborgb2b77b22007-06-01 00:47:12 -07001365static void asus_acpi_exit(void)
Holger Macht2039a6e2006-10-20 14:30:29 -07001366{
1367 if (asus_backlight_device)
1368 backlight_device_unregister(asus_backlight_device);
1369
1370 acpi_bus_unregister_driver(&asus_hotk_driver);
1371 remove_proc_entry(PROC_ASUS, acpi_root_dir);
1372
Holger Macht2039a6e2006-10-20 14:30:29 -07001373 return;
1374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376static int __init asus_acpi_init(void)
1377{
1378 int result;
1379
1380 if (acpi_disabled)
1381 return -ENODEV;
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 asus_proc_dir = proc_mkdir(PROC_ASUS, acpi_root_dir);
1384 if (!asus_proc_dir) {
1385 printk(KERN_ERR "Asus ACPI: Unable to create /proc entry\n");
1386 return -ENODEV;
1387 }
1388 asus_proc_dir->owner = THIS_MODULE;
1389
1390 result = acpi_bus_register_driver(&asus_hotk_driver);
Bjorn Helgaas578b3332006-03-28 17:04:00 -05001391 if (result < 0) {
1392 remove_proc_entry(PROC_ASUS, acpi_root_dir);
Andrew Morton5e7d8812006-06-24 19:36:00 -04001393 return result;
Bjorn Helgaas578b3332006-03-28 17:04:00 -05001394 }
1395
1396 /*
1397 * This is a bit of a kludge. We only want this module loaded
1398 * for ASUS systems, but there's currently no way to probe the
1399 * ACPI namespace for ASUS HIDs. So we just return failure if
1400 * we didn't find one, which will cause the module to be
1401 * unloaded.
1402 */
1403 if (!asus_hotk_found) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 acpi_bus_unregister_driver(&asus_hotk_driver);
1405 remove_proc_entry(PROC_ASUS, acpi_root_dir);
Maxime Austruy5ebffd72007-07-01 12:06:38 -07001406 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
1408
Yu Luming519ab5f2006-12-19 12:56:15 -08001409 asus_backlight_device = backlight_device_register("asus",NULL,NULL,
Holger Macht2039a6e2006-10-20 14:30:29 -07001410 &asus_backlight_data);
1411 if (IS_ERR(asus_backlight_device)) {
1412 printk(KERN_ERR "Could not register asus backlight device\n");
1413 asus_backlight_device = NULL;
1414 asus_acpi_exit();
Maxime Austruy5ebffd72007-07-01 12:06:38 -07001415 return -ENODEV;
Holger Macht2039a6e2006-10-20 14:30:29 -07001416 }
Richard Purdie599a52d2007-02-10 23:07:48 +00001417 asus_backlight_device->props.max_brightness = 15;
Holger Macht2039a6e2006-10-20 14:30:29 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 return 0;
1420}
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422module_init(asus_acpi_init);
1423module_exit(asus_acpi_exit);