aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/thinkpad_acpi.h
diff options
context:
space:
mode:
authorHenrique de Moraes Holschuh <hmh@hmh.eng.br>2007-07-18 22:45:29 -0400
committerLen Brown <len.brown@intel.com>2007-07-21 23:37:50 -0400
commitae92bd17ff703b3703562148c73b4d6833e6a326 (patch)
tree8e987e553f7c4d4a54be326e2b5310c32a6c1faf /drivers/misc/thinkpad_acpi.h
parentb8b26402cb711de5d3bbd4515b91b6d863fea259 (diff)
ACPI: thinkpad-acpi: enable more hotkeys
Revise ACPI HKEY functionality to better interface with the firmware, and enable up to 32 regular hotkeys, instead of just 16 of them. Ouch. This takes care of most keys one used to have to do CMOS NVRAM polling on, and should drop the need for tpb, thinkpad-keys, and other such 5Hz NVRAM polling power vampires on most modern ThinkPads ;-) And, just to add insult to injury, this was sort of working since forever through the procfs interface, but nobody noticed or tried an echo 0xffffffff > /proc/acpi/ibm/hotkey and told me it would generate weird events. ARGH! Thanks to Richard Hughes for kicking off the work that ended up with this discovery, and to Matthew Garret for calling my attention to the fact that newer ThinkPads were indeed generating ACPI GPEs when such hot keys were pressed. Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br> Cc: Richard Hughes <hughsient@gmail.com> Cc: Matthew Garrett <mjg59@srcf.ucam.org> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/misc/thinkpad_acpi.h')
-rw-r--r--drivers/misc/thinkpad_acpi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/thinkpad_acpi.h b/drivers/misc/thinkpad_acpi.h
index 72d62f2dabb9..e1a64f0aada9 100644
--- a/drivers/misc/thinkpad_acpi.h
+++ b/drivers/misc/thinkpad_acpi.h
@@ -415,14 +415,14 @@ static int fan_write_cmd_watchdog(const char *cmd, int *rc);
415 */ 415 */
416 416
417static int hotkey_orig_status; 417static int hotkey_orig_status;
418static int hotkey_orig_mask; 418static u32 hotkey_orig_mask;
419 419
420static struct mutex hotkey_mutex; 420static struct mutex hotkey_mutex;
421 421
422static int hotkey_init(struct ibm_init_struct *iibm); 422static int hotkey_init(struct ibm_init_struct *iibm);
423static void hotkey_exit(void); 423static void hotkey_exit(void);
424static int hotkey_get(int *status, int *mask); 424static int hotkey_get(int *status, u32 *mask);
425static int hotkey_set(int status, int mask); 425static int hotkey_set(int status, u32 mask);
426static void hotkey_notify(struct ibm_struct *ibm, u32 event); 426static void hotkey_notify(struct ibm_struct *ibm, u32 event);
427static int hotkey_read(char *p); 427static int hotkey_read(char *p);
428static int hotkey_write(char *buf); 428static int hotkey_write(char *buf);