blob: 8b72061d8f0e4b4e86034ffc0c8e2aea60940107 [file] [log] [blame]
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -03001/*
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -03002 * thinkpad_acpi.h - ThinkPad ACPI Extras
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -03003 *
4 *
5 * Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
6 * Copyright (C) 2006-2007 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301, USA.
22 */
23
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030024#ifndef __THINKPAD_ACPI_H__
25#define __THINKPAD_ACPI_H__
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -030026
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/string.h>
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -030032#include <linux/list.h>
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -030033
34#include <linux/proc_fs.h>
35#include <linux/backlight.h>
36#include <linux/fb.h>
37#include <asm/uaccess.h>
38
39#include <linux/dmi.h>
40#include <linux/jiffies.h>
41#include <linux/workqueue.h>
42
43#include <acpi/acpi_drivers.h>
44#include <acpi/acnamesp.h>
45
46
47/****************************************************************************
48 * Main driver
49 */
50
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030051#define IBM_NAME "thinkpad"
52#define IBM_DESC "ThinkPad ACPI Extras"
53#define IBM_FILE "thinkpad_acpi"
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -030054#define IBM_URL "http://ibm-acpi.sf.net/"
55
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -030056#define IBM_DIR "ibm"
57#define IBM_ACPI_EVENT_PREFIX "ibm"
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -030058
59#define IBM_LOG IBM_FILE ": "
60#define IBM_ERR KERN_ERR IBM_LOG
61#define IBM_NOTICE KERN_NOTICE IBM_LOG
62#define IBM_INFO KERN_INFO IBM_LOG
63#define IBM_DEBUG KERN_DEBUG IBM_LOG
64
65#define IBM_MAX_ACPI_ARGS 3
66
67/* ThinkPad CMOS commands */
68#define TP_CMOS_VOLUME_DOWN 0
69#define TP_CMOS_VOLUME_UP 1
70#define TP_CMOS_VOLUME_MUTE 2
71#define TP_CMOS_BRIGHTNESS_UP 4
72#define TP_CMOS_BRIGHTNESS_DOWN 5
73
74#define onoff(status,bit) ((status) & (1 << (bit)) ? "on" : "off")
75#define enabled(status,bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
76#define strlencmp(a,b) (strncmp((a), (b), strlen(b)))
77
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -030078/* Debugging */
79#define TPACPI_DBG_ALL 0xffff
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -030080#define TPACPI_DBG_ALL 0xffff
81#define TPACPI_DBG_INIT 0x0001
82#define TPACPI_DBG_EXIT 0x0002
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -030083#define dbg_printk(a_dbg_level, format, arg...) \
84 do { if (dbg_level & a_dbg_level) \
85 printk(IBM_DEBUG "%s: " format, __func__ , ## arg); } while (0)
86#ifdef CONFIG_THINKPAD_ACPI_DEBUG
87#define vdbg_printk(a_dbg_level, format, arg...) \
88 dbg_printk(a_dbg_level, format, ## arg)
Henrique de Moraes Holschuhfe08bc42007-04-21 11:08:32 -030089static const char *str_supported(int is_supported);
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -030090#else
91#define vdbg_printk(a_dbg_level, format, arg...)
92#endif
93
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -030094/* ACPI HIDs */
95#define IBM_HKEY_HID "IBM0068"
96#define IBM_PCI_HID "PNP0A03"
97
98/* ACPI helpers */
99static int acpi_evalf(acpi_handle handle,
100 void *res, char *method, char *fmt, ...);
101static int acpi_ec_read(int i, u8 * p);
102static int acpi_ec_write(int i, u8 v);
103static int _sta(acpi_handle handle);
104
105/* ACPI handles */
106static acpi_handle root_handle; /* root namespace */
107static acpi_handle ec_handle; /* EC */
108static acpi_handle ecrd_handle, ecwr_handle; /* 570 EC access */
109static acpi_handle cmos_handle, hkey_handle; /* basic thinkpad handles */
110
111static void ibm_handle_init(char *name,
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300112 acpi_handle *handle, acpi_handle parent,
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300113 char **paths, int num_paths, char **path);
114#define IBM_HANDLE_INIT(object) \
115 ibm_handle_init(#object, &object##_handle, *object##_parent, \
116 object##_paths, ARRAY_SIZE(object##_paths), &object##_path)
117
118/* procfs support */
119static struct proc_dir_entry *proc_dir;
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300120
121/* procfs helpers */
122static int dispatch_read(char *page, char **start, off_t off, int count,
123 int *eof, void *data);
124static int dispatch_write(struct file *file, const char __user * userbuf,
125 unsigned long count, void *data);
126static char *next_cmd(char **cmds);
127
128/* Module */
129static int experimental;
Henrique de Moraes Holschuh132ce092007-04-21 11:08:30 -0300130static u32 dbg_level;
Henrique de Moraes Holschuh0dcef772007-04-21 11:08:34 -0300131static int force_load;
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300132static char *ibm_thinkpad_ec_found;
133
134static char* check_dmi_for_ec(void);
Henrique de Moraes Holschuh1def7112007-04-21 11:08:27 -0300135static int thinkpad_acpi_module_init(void);
136static void thinkpad_acpi_module_exit(void);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300137
138
139/****************************************************************************
140 * Subdrivers
141 */
142
143struct ibm_struct {
144 char *name;
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300145
146 char *hid;
147 struct acpi_driver *driver;
148
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300149 int (*read) (char *);
150 int (*write) (char *);
151 void (*exit) (void);
152
153 void (*notify) (struct ibm_struct *, u32);
154 acpi_handle *handle;
155 int type;
156 struct acpi_device *device;
157
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300158 struct list_head all_drivers;
159
Henrique de Moraes Holschuh92641172007-04-21 11:08:35 -0300160 struct {
161 u8 driver_registered:1;
162 u8 proc_created:1;
163 u8 init_called:1;
164 u8 notify_installed:1;
165 u8 experimental:1;
166 } flags;
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300167};
168
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300169struct ibm_init_struct {
170 char param[32];
171
172 int (*init) (struct ibm_init_struct *);
173 struct ibm_struct *data;
174};
175
176static struct list_head tpacpi_all_drivers;
177
178static struct ibm_init_struct ibms_init[];
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300179static int set_ibm_param(const char *val, struct kernel_param *kp);
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300180static int ibm_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300181static void ibm_exit(struct ibm_struct *ibm);
182
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300183
184/*
185 * procfs master subdriver
186 */
187static int thinkpad_acpi_driver_init(struct ibm_init_struct *iibm);
188static int thinkpad_acpi_driver_read(char *p);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300189
190
191/*
192 * Bay subdriver
193 */
194
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -0300195#ifdef CONFIG_THINKPAD_ACPI_BAY
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300196static int bay_status_supported, bay_eject_supported;
197static int bay_status2_supported, bay_eject2_supported;
198
199static acpi_handle bay_handle, bay_ej_handle;
200static acpi_handle bay2_handle, bay2_ej_handle;
201
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300202static int bay_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300203static void bay_notify(struct ibm_struct *ibm, u32 event);
204static int bay_read(char *p);
205static int bay_write(char *buf);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -0300206#endif /* CONFIG_THINKPAD_ACPI_BAY */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300207
208
209/*
210 * Beep subdriver
211 */
212
213static acpi_handle beep_handle;
214
215static int beep_read(char *p);
216static int beep_write(char *buf);
217
218
219/*
220 * Bluetooth subdriver
221 */
222
223static int bluetooth_supported;
224
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300225static int bluetooth_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300226static int bluetooth_status(void);
227static int bluetooth_read(char *p);
228static int bluetooth_write(char *buf);
229
230
231/*
232 * Brightness (backlight) subdriver
233 */
234
235static struct backlight_device *ibm_backlight_device;
236static int brightness_offset = 0x31;
237
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300238static int brightness_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300239static void brightness_exit(void);
240static int brightness_get(struct backlight_device *bd);
241static int brightness_set(int value);
242static int brightness_update_status(struct backlight_device *bd);
243static int brightness_read(char *p);
244static int brightness_write(char *buf);
245
246
247/*
248 * CMOS subdriver
249 */
250
251static int cmos_eval(int cmos_cmd);
252static int cmos_read(char *p);
253static int cmos_write(char *buf);
254
255
256/*
257 * Dock subdriver
258 */
259
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -0300260#ifdef CONFIG_THINKPAD_ACPI_DOCK
Henrique de Moraes Holschuh5fba3442007-04-21 11:08:31 -0300261static acpi_handle pci_handle;
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300262static acpi_handle dock_handle;
263
264static void dock_notify(struct ibm_struct *ibm, u32 event);
265static int dock_read(char *p);
266static int dock_write(char *buf);
Henrique de Moraes Holschuh85998242007-03-29 01:58:41 -0300267#endif /* CONFIG_THINKPAD_ACPI_DOCK */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300268
269
270/*
271 * EC dump subdriver
272 */
273
274static int ecdump_read(char *p) ;
275static int ecdump_write(char *buf);
276
277
278/*
279 * Fan subdriver
280 */
281
282enum { /* Fan control constants */
283 fan_status_offset = 0x2f, /* EC register 0x2f */
284 fan_rpm_offset = 0x84, /* EC register 0x84: LSB, 0x85 MSB (RPM)
285 * 0x84 must be read before 0x85 */
286
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300287 TP_EC_FAN_FULLSPEED = 0x40, /* EC fan mode: full speed */
288 TP_EC_FAN_AUTO = 0x80, /* EC fan mode: auto fan control */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300289};
290
291enum fan_status_access_mode {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300292 TPACPI_FAN_NONE = 0, /* No fan status or control */
293 TPACPI_FAN_RD_ACPI_GFAN, /* Use ACPI GFAN */
294 TPACPI_FAN_RD_TPEC, /* Use ACPI EC regs 0x2f, 0x84-0x85 */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300295};
296
297enum fan_control_access_mode {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300298 TPACPI_FAN_WR_NONE = 0, /* No fan control */
299 TPACPI_FAN_WR_ACPI_SFAN, /* Use ACPI SFAN */
300 TPACPI_FAN_WR_TPEC, /* Use ACPI EC reg 0x2f */
301 TPACPI_FAN_WR_ACPI_FANS, /* Use ACPI FANS and EC reg 0x2f */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300302};
303
304enum fan_control_commands {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300305 TPACPI_FAN_CMD_SPEED = 0x0001, /* speed command */
306 TPACPI_FAN_CMD_LEVEL = 0x0002, /* level command */
307 TPACPI_FAN_CMD_ENABLE = 0x0004, /* enable/disable cmd,
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300308 * and also watchdog cmd */
309};
310
311static enum fan_status_access_mode fan_status_access_mode;
312static enum fan_control_access_mode fan_control_access_mode;
313static enum fan_control_commands fan_control_commands;
314static int fan_control_status_known;
315static u8 fan_control_initial_status;
316static int fan_watchdog_maxinterval;
317
318static acpi_handle fans_handle, gfan_handle, sfan_handle;
319
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300320static int fan_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300321static void fan_exit(void);
322static int fan_get_status(u8 *status);
323static int fan_get_speed(unsigned int *speed);
324static void fan_watchdog_fire(struct work_struct *ignored);
325static void fan_watchdog_reset(void);
326static int fan_set_level(int level);
327static int fan_set_enable(void);
328static int fan_set_disable(void);
329static int fan_set_speed(int speed);
330static int fan_read(char *p);
331static int fan_write(char *buf);
332static int fan_write_cmd_level(const char *cmd, int *rc);
333static int fan_write_cmd_enable(const char *cmd, int *rc);
334static int fan_write_cmd_disable(const char *cmd, int *rc);
335static int fan_write_cmd_speed(const char *cmd, int *rc);
336static int fan_write_cmd_watchdog(const char *cmd, int *rc);
337
338
339/*
340 * Hotkey subdriver
341 */
342
343static int hotkey_supported;
344static int hotkey_mask_supported;
345static int hotkey_orig_status;
346static int hotkey_orig_mask;
347
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300348static int hotkey_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300349static void hotkey_exit(void);
350static int hotkey_get(int *status, int *mask);
351static int hotkey_set(int status, int mask);
352static void hotkey_notify(struct ibm_struct *ibm, u32 event);
353static int hotkey_read(char *p);
354static int hotkey_write(char *buf);
355
356
357/*
358 * LED subdriver
359 */
360
361enum led_access_mode {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300362 TPACPI_LED_NONE = 0,
363 TPACPI_LED_570, /* 570 */
364 TPACPI_LED_OLD, /* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
365 TPACPI_LED_NEW, /* all others */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300366};
367
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300368enum { /* For TPACPI_LED_OLD */
369 TPACPI_LED_EC_HLCL = 0x0c, /* EC reg to get led to power on */
370 TPACPI_LED_EC_HLBL = 0x0d, /* EC reg to blink a lit led */
371 TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300372};
373
374static enum led_access_mode led_supported;
375static acpi_handle led_handle;
376
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300377static int led_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300378static int led_read(char *p);
379static int led_write(char *buf);
380
381/*
382 * Light (thinklight) subdriver
383 */
384
385static int light_supported;
386static int light_status_supported;
387static acpi_handle lght_handle, ledb_handle;
388
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300389static int light_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300390static int light_read(char *p);
391static int light_write(char *buf);
392
393
394/*
395 * Thermal subdriver
396 */
397
398enum thermal_access_mode {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300399 TPACPI_THERMAL_NONE = 0, /* No thermal support */
400 TPACPI_THERMAL_ACPI_TMP07, /* Use ACPI TMP0-7 */
401 TPACPI_THERMAL_ACPI_UPDT, /* Use ACPI TMP0-7 with UPDT */
402 TPACPI_THERMAL_TPEC_8, /* Use ACPI EC regs, 8 sensors */
403 TPACPI_THERMAL_TPEC_16, /* Use ACPI EC regs, 16 sensors */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300404};
405
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300406#define TPACPI_MAX_THERMAL_SENSORS 16 /* Max thermal sensors supported */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300407struct ibm_thermal_sensors_struct {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300408 s32 temp[TPACPI_MAX_THERMAL_SENSORS];
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300409};
410
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300411static int thermal_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300412static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s);
413static int thermal_read(char *p);
414
415
416/*
417 * Video subdriver
418 */
419
420enum video_access_mode {
Henrique de Moraes Holschuhefa27142007-04-21 11:08:28 -0300421 TPACPI_VIDEO_NONE = 0,
422 TPACPI_VIDEO_570, /* 570 */
423 TPACPI_VIDEO_770, /* 600e/x, 770e, 770x */
424 TPACPI_VIDEO_NEW, /* all others */
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300425};
426
427static enum video_access_mode video_supported;
428static int video_orig_autosw;
429static acpi_handle vid_handle, vid2_handle;
430
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300431static int video_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300432static void video_exit(void);
433static int video_status(void);
434static int video_autosw(void);
435static int video_switch(void);
436static int video_switch2(int status);
437static int video_expand(void);
438static int video_read(char *p);
439static int video_write(char *buf);
440
441
442/*
443 * Volume subdriver
444 */
445
446static int volume_offset = 0x30;
447
448static int volume_read(char *p);
449static int volume_write(char *buf);
450
451
452/*
453 * Wan subdriver
454 */
455
456static int wan_supported;
457
Henrique de Moraes Holschuha5763f22007-04-21 11:08:33 -0300458static int wan_init(struct ibm_init_struct *iibm);
Henrique de Moraes Holschuh1406cdd2007-03-23 17:33:56 -0300459static int wan_status(void);
460static int wan_read(char *p);
461static int wan_write(char *buf);
462
463
Henrique de Moraes Holschuh643f12d2007-03-29 01:58:43 -0300464#endif /* __THINKPAD_ACPI_H */