Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Acer WMI Laptop Extras |
| 3 | * |
Carlos Corbacho | 4f0175d | 2009-04-04 09:33:39 +0100 | [diff] [blame] | 4 | * Copyright (C) 2007-2009 Carlos Corbacho <carlos@strangeworlds.co.uk> |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 5 | * |
| 6 | * Based on acer_acpi: |
| 7 | * Copyright (C) 2005-2007 E.M. Smith |
| 8 | * Copyright (C) 2007-2008 Carlos Corbacho <cathectic@gmail.com> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | */ |
| 24 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 25 | #include <linux/kernel.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/types.h> |
| 29 | #include <linux/dmi.h> |
Carlos Corbacho | f2b585b | 2008-06-21 09:09:27 +0100 | [diff] [blame] | 30 | #include <linux/fb.h> |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 31 | #include <linux/backlight.h> |
| 32 | #include <linux/leds.h> |
| 33 | #include <linux/platform_device.h> |
| 34 | #include <linux/acpi.h> |
| 35 | #include <linux/i8042.h> |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 36 | #include <linux/rfkill.h> |
| 37 | #include <linux/workqueue.h> |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 38 | #include <linux/debugfs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 40 | #include <linux/input.h> |
| 41 | #include <linux/input/sparse-keymap.h> |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 42 | |
| 43 | #include <acpi/acpi_drivers.h> |
| 44 | |
| 45 | MODULE_AUTHOR("Carlos Corbacho"); |
| 46 | MODULE_DESCRIPTION("Acer Laptop WMI Extras Driver"); |
| 47 | MODULE_LICENSE("GPL"); |
| 48 | |
| 49 | #define ACER_LOGPREFIX "acer-wmi: " |
| 50 | #define ACER_ERR KERN_ERR ACER_LOGPREFIX |
| 51 | #define ACER_NOTICE KERN_NOTICE ACER_LOGPREFIX |
| 52 | #define ACER_INFO KERN_INFO ACER_LOGPREFIX |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 53 | #define ACER_WARNING KERN_WARNING ACER_LOGPREFIX |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 54 | |
| 55 | /* |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 56 | * Magic Number |
| 57 | * Meaning is unknown - this number is required for writing to ACPI for AMW0 |
| 58 | * (it's also used in acerhk when directly accessing the BIOS) |
| 59 | */ |
| 60 | #define ACER_AMW0_WRITE 0x9610 |
| 61 | |
| 62 | /* |
| 63 | * Bit masks for the AMW0 interface |
| 64 | */ |
| 65 | #define ACER_AMW0_WIRELESS_MASK 0x35 |
| 66 | #define ACER_AMW0_BLUETOOTH_MASK 0x34 |
| 67 | #define ACER_AMW0_MAILLED_MASK 0x31 |
| 68 | |
| 69 | /* |
| 70 | * Method IDs for WMID interface |
| 71 | */ |
| 72 | #define ACER_WMID_GET_WIRELESS_METHODID 1 |
| 73 | #define ACER_WMID_GET_BLUETOOTH_METHODID 2 |
| 74 | #define ACER_WMID_GET_BRIGHTNESS_METHODID 3 |
| 75 | #define ACER_WMID_SET_WIRELESS_METHODID 4 |
| 76 | #define ACER_WMID_SET_BLUETOOTH_METHODID 5 |
| 77 | #define ACER_WMID_SET_BRIGHTNESS_METHODID 6 |
| 78 | #define ACER_WMID_GET_THREEG_METHODID 10 |
| 79 | #define ACER_WMID_SET_THREEG_METHODID 11 |
| 80 | |
| 81 | /* |
| 82 | * Acer ACPI method GUIDs |
| 83 | */ |
| 84 | #define AMW0_GUID1 "67C3371D-95A3-4C37-BB61-DD47B491DAAB" |
Carlos Corbacho | 5753dd5 | 2008-06-21 09:09:48 +0100 | [diff] [blame] | 85 | #define AMW0_GUID2 "431F16ED-0C2B-444C-B267-27DEB140CF9C" |
Matthew Garrett | bbb7060 | 2011-02-09 16:39:40 -0500 | [diff] [blame] | 86 | #define WMID_GUID1 "6AF4F258-B401-42FD-BE91-3D4AC2D7C0D3" |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 87 | #define WMID_GUID2 "95764E09-FB56-4e83-B31A-37761F60994A" |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 88 | #define WMID_GUID3 "61EF69EA-865C-4BC3-A502-A0DEBA0CB531" |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 89 | |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 90 | /* |
| 91 | * Acer ACPI event GUIDs |
| 92 | */ |
| 93 | #define ACERWMID_EVENT_GUID "676AA15E-6A47-4D9F-A2CC-1E6D18D14026" |
| 94 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 95 | MODULE_ALIAS("wmi:67C3371D-95A3-4C37-BB61-DD47B491DAAB"); |
| 96 | MODULE_ALIAS("wmi:6AF4F258-B401-42fd-BE91-3D4AC2D7C0D3"); |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 97 | MODULE_ALIAS("wmi:676AA15E-6A47-4D9F-A2CC-1E6D18D14026"); |
| 98 | |
| 99 | enum acer_wmi_event_ids { |
| 100 | WMID_HOTKEY_EVENT = 0x1, |
| 101 | }; |
| 102 | |
| 103 | static const struct key_entry acer_wmi_keymap[] = { |
| 104 | {KE_KEY, 0x01, {KEY_WLAN} }, /* WiFi */ |
| 105 | {KE_KEY, 0x12, {KEY_BLUETOOTH} }, /* BT */ |
| 106 | {KE_KEY, 0x21, {KEY_PROG1} }, /* Backup */ |
| 107 | {KE_KEY, 0x22, {KEY_PROG2} }, /* Arcade */ |
| 108 | {KE_KEY, 0x23, {KEY_PROG3} }, /* P_Key */ |
| 109 | {KE_KEY, 0x24, {KEY_PROG4} }, /* Social networking_Key */ |
| 110 | {KE_KEY, 0x64, {KEY_SWITCHVIDEOMODE} }, /* Display Switch */ |
Lee, Chun-Yi | 8941178 | 2011-03-02 01:07:11 +0800 | [diff] [blame^] | 111 | {KE_KEY, 0x82, {KEY_TOUCHPAD_TOGGLE} }, /* Touch Pad On/Off */ |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 112 | {KE_END, 0} |
| 113 | }; |
| 114 | |
| 115 | static struct input_dev *acer_wmi_input_dev; |
| 116 | |
| 117 | struct event_return_value { |
| 118 | u8 function; |
| 119 | u8 key_num; |
| 120 | u16 device_state; |
| 121 | u32 reserved; |
| 122 | } __attribute__((packed)); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 123 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 124 | /* |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 125 | * GUID3 Get Device Status device flags |
| 126 | */ |
Lee, Chun-Yi | 6c3df88 | 2010-12-07 10:29:23 +0800 | [diff] [blame] | 127 | #define ACER_WMID3_GDS_WIRELESS (1<<0) /* WiFi */ |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 128 | #define ACER_WMID3_GDS_THREEG (1<<6) /* 3G */ |
Lee, Chun-Yi | 6c3df88 | 2010-12-07 10:29:23 +0800 | [diff] [blame] | 129 | #define ACER_WMID3_GDS_BLUETOOTH (1<<11) /* BT */ |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 130 | |
From: Lee, Chun-Yi | 59ccf2f | 2011-01-07 17:25:14 -0500 | [diff] [blame] | 131 | struct lm_input_params { |
| 132 | u8 function_num; /* Function Number */ |
| 133 | u16 commun_devices; /* Communication type devices default status */ |
| 134 | u16 devices; /* Other type devices default status */ |
| 135 | u8 lm_status; /* Launch Manager Status */ |
| 136 | u16 reserved; |
| 137 | } __attribute__((packed)); |
| 138 | |
| 139 | struct lm_return_value { |
| 140 | u8 error_code; /* Error Code */ |
| 141 | u8 ec_return_value; /* EC Return Value */ |
| 142 | u16 reserved; |
| 143 | } __attribute__((packed)); |
| 144 | |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 145 | struct wmid3_gds_input_param { /* Get Device Status input parameter */ |
| 146 | u8 function_num; /* Function Number */ |
| 147 | u8 hotkey_number; /* Hotkey Number */ |
| 148 | u16 devices; /* Get Device */ |
| 149 | } __attribute__((packed)); |
| 150 | |
| 151 | struct wmid3_gds_return_value { /* Get Device Status return value*/ |
| 152 | u8 error_code; /* Error Code */ |
| 153 | u8 ec_return_value; /* EC Return Value */ |
| 154 | u16 devices; /* Current Device Status */ |
| 155 | u32 reserved; |
| 156 | } __attribute__((packed)); |
| 157 | |
Lee, Chun-Yi | 6c3df88 | 2010-12-07 10:29:23 +0800 | [diff] [blame] | 158 | struct hotkey_function_type_aa { |
| 159 | u8 type; |
| 160 | u8 length; |
| 161 | u16 handle; |
| 162 | u16 commun_func_bitmap; |
| 163 | } __attribute__((packed)); |
| 164 | |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 165 | /* |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 166 | * Interface capability flags |
| 167 | */ |
| 168 | #define ACER_CAP_MAILLED (1<<0) |
| 169 | #define ACER_CAP_WIRELESS (1<<1) |
| 170 | #define ACER_CAP_BLUETOOTH (1<<2) |
| 171 | #define ACER_CAP_BRIGHTNESS (1<<3) |
| 172 | #define ACER_CAP_THREEG (1<<4) |
| 173 | #define ACER_CAP_ANY (0xFFFFFFFF) |
| 174 | |
| 175 | /* |
| 176 | * Interface type flags |
| 177 | */ |
| 178 | enum interface_flags { |
| 179 | ACER_AMW0, |
| 180 | ACER_AMW0_V2, |
| 181 | ACER_WMID, |
| 182 | }; |
| 183 | |
| 184 | #define ACER_DEFAULT_WIRELESS 0 |
| 185 | #define ACER_DEFAULT_BLUETOOTH 0 |
| 186 | #define ACER_DEFAULT_MAILLED 0 |
| 187 | #define ACER_DEFAULT_THREEG 0 |
| 188 | |
| 189 | static int max_brightness = 0xF; |
| 190 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 191 | static int mailled = -1; |
| 192 | static int brightness = -1; |
| 193 | static int threeg = -1; |
| 194 | static int force_series; |
From: Lee, Chun-Yi | 59ccf2f | 2011-01-07 17:25:14 -0500 | [diff] [blame] | 195 | static bool ec_raw_mode; |
Lee, Chun-Yi | 6c3df88 | 2010-12-07 10:29:23 +0800 | [diff] [blame] | 196 | static bool has_type_aa; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 197 | |
| 198 | module_param(mailled, int, 0444); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 199 | module_param(brightness, int, 0444); |
| 200 | module_param(threeg, int, 0444); |
| 201 | module_param(force_series, int, 0444); |
From: Lee, Chun-Yi | 59ccf2f | 2011-01-07 17:25:14 -0500 | [diff] [blame] | 202 | module_param(ec_raw_mode, bool, 0444); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 203 | MODULE_PARM_DESC(mailled, "Set initial state of Mail LED"); |
| 204 | MODULE_PARM_DESC(brightness, "Set initial LCD backlight brightness"); |
| 205 | MODULE_PARM_DESC(threeg, "Set initial state of 3G hardware"); |
| 206 | MODULE_PARM_DESC(force_series, "Force a different laptop series"); |
From: Lee, Chun-Yi | 59ccf2f | 2011-01-07 17:25:14 -0500 | [diff] [blame] | 207 | MODULE_PARM_DESC(ec_raw_mode, "Enable EC raw mode"); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 208 | |
| 209 | struct acer_data { |
| 210 | int mailled; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 211 | int threeg; |
| 212 | int brightness; |
| 213 | }; |
| 214 | |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 215 | struct acer_debug { |
| 216 | struct dentry *root; |
| 217 | struct dentry *devices; |
| 218 | u32 wmid_devices; |
| 219 | }; |
| 220 | |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 221 | static struct rfkill *wireless_rfkill; |
| 222 | static struct rfkill *bluetooth_rfkill; |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 223 | static struct rfkill *threeg_rfkill; |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 224 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 225 | /* Each low-level interface must define at least some of the following */ |
| 226 | struct wmi_interface { |
| 227 | /* The WMI device type */ |
| 228 | u32 type; |
| 229 | |
| 230 | /* The capabilities this interface provides */ |
| 231 | u32 capability; |
| 232 | |
| 233 | /* Private data for the current interface */ |
| 234 | struct acer_data data; |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 235 | |
| 236 | /* debugfs entries associated with this interface */ |
| 237 | struct acer_debug debug; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 238 | }; |
| 239 | |
| 240 | /* The static interface pointer, points to the currently detected interface */ |
| 241 | static struct wmi_interface *interface; |
| 242 | |
| 243 | /* |
| 244 | * Embedded Controller quirks |
| 245 | * Some laptops require us to directly access the EC to either enable or query |
| 246 | * features that are not available through WMI. |
| 247 | */ |
| 248 | |
| 249 | struct quirk_entry { |
| 250 | u8 wireless; |
| 251 | u8 mailled; |
Carlos Corbacho | 9991d9f | 2008-06-21 09:09:22 +0100 | [diff] [blame] | 252 | s8 brightness; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 253 | u8 bluetooth; |
| 254 | }; |
| 255 | |
| 256 | static struct quirk_entry *quirks; |
| 257 | |
| 258 | static void set_quirks(void) |
| 259 | { |
Arjan van de Ven | 83097ac | 2008-08-23 21:45:21 -0700 | [diff] [blame] | 260 | if (!interface) |
| 261 | return; |
| 262 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 263 | if (quirks->mailled) |
| 264 | interface->capability |= ACER_CAP_MAILLED; |
| 265 | |
| 266 | if (quirks->brightness) |
| 267 | interface->capability |= ACER_CAP_BRIGHTNESS; |
| 268 | } |
| 269 | |
| 270 | static int dmi_matched(const struct dmi_system_id *dmi) |
| 271 | { |
| 272 | quirks = dmi->driver_data; |
Axel Lin | d53bf0f | 2010-06-30 13:32:16 +0800 | [diff] [blame] | 273 | return 1; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | static struct quirk_entry quirk_unknown = { |
| 277 | }; |
| 278 | |
Carlos Corbacho | 9991d9f | 2008-06-21 09:09:22 +0100 | [diff] [blame] | 279 | static struct quirk_entry quirk_acer_aspire_1520 = { |
| 280 | .brightness = -1, |
| 281 | }; |
| 282 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 283 | static struct quirk_entry quirk_acer_travelmate_2490 = { |
| 284 | .mailled = 1, |
| 285 | }; |
| 286 | |
| 287 | /* This AMW0 laptop has no bluetooth */ |
| 288 | static struct quirk_entry quirk_medion_md_98300 = { |
| 289 | .wireless = 1, |
| 290 | }; |
| 291 | |
Carlos Corbacho | 6f061ab | 2008-06-21 09:09:38 +0100 | [diff] [blame] | 292 | static struct quirk_entry quirk_fujitsu_amilo_li_1718 = { |
| 293 | .wireless = 2, |
| 294 | }; |
| 295 | |
Carlos Corbacho | a74dd5f | 2009-04-04 09:33:29 +0100 | [diff] [blame] | 296 | /* The Aspire One has a dummy ACPI-WMI interface - disable it */ |
| 297 | static struct dmi_system_id __devinitdata acer_blacklist[] = { |
| 298 | { |
| 299 | .ident = "Acer Aspire One (SSD)", |
| 300 | .matches = { |
| 301 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 302 | DMI_MATCH(DMI_PRODUCT_NAME, "AOA110"), |
| 303 | }, |
| 304 | }, |
| 305 | { |
| 306 | .ident = "Acer Aspire One (HDD)", |
| 307 | .matches = { |
| 308 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 309 | DMI_MATCH(DMI_PRODUCT_NAME, "AOA150"), |
| 310 | }, |
| 311 | }, |
| 312 | {} |
| 313 | }; |
| 314 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 315 | static struct dmi_system_id acer_quirks[] = { |
| 316 | { |
| 317 | .callback = dmi_matched, |
Carlos Corbacho | 9991d9f | 2008-06-21 09:09:22 +0100 | [diff] [blame] | 318 | .ident = "Acer Aspire 1360", |
| 319 | .matches = { |
| 320 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 321 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"), |
| 322 | }, |
| 323 | .driver_data = &quirk_acer_aspire_1520, |
| 324 | }, |
| 325 | { |
| 326 | .callback = dmi_matched, |
| 327 | .ident = "Acer Aspire 1520", |
| 328 | .matches = { |
| 329 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 330 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1520"), |
| 331 | }, |
| 332 | .driver_data = &quirk_acer_aspire_1520, |
| 333 | }, |
| 334 | { |
| 335 | .callback = dmi_matched, |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 336 | .ident = "Acer Aspire 3100", |
| 337 | .matches = { |
| 338 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 339 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3100"), |
| 340 | }, |
| 341 | .driver_data = &quirk_acer_travelmate_2490, |
| 342 | }, |
| 343 | { |
| 344 | .callback = dmi_matched, |
Carlos Corbacho | ed9cfe9 | 2008-03-12 20:13:00 +0000 | [diff] [blame] | 345 | .ident = "Acer Aspire 3610", |
| 346 | .matches = { |
| 347 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 348 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3610"), |
| 349 | }, |
| 350 | .driver_data = &quirk_acer_travelmate_2490, |
| 351 | }, |
| 352 | { |
| 353 | .callback = dmi_matched, |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 354 | .ident = "Acer Aspire 5100", |
| 355 | .matches = { |
| 356 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 357 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5100"), |
| 358 | }, |
| 359 | .driver_data = &quirk_acer_travelmate_2490, |
| 360 | }, |
| 361 | { |
| 362 | .callback = dmi_matched, |
Carlos Corbacho | ed9cfe9 | 2008-03-12 20:13:00 +0000 | [diff] [blame] | 363 | .ident = "Acer Aspire 5610", |
| 364 | .matches = { |
| 365 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 366 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5610"), |
| 367 | }, |
| 368 | .driver_data = &quirk_acer_travelmate_2490, |
| 369 | }, |
| 370 | { |
| 371 | .callback = dmi_matched, |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 372 | .ident = "Acer Aspire 5630", |
| 373 | .matches = { |
| 374 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 375 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"), |
| 376 | }, |
| 377 | .driver_data = &quirk_acer_travelmate_2490, |
| 378 | }, |
| 379 | { |
| 380 | .callback = dmi_matched, |
| 381 | .ident = "Acer Aspire 5650", |
| 382 | .matches = { |
| 383 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 384 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"), |
| 385 | }, |
| 386 | .driver_data = &quirk_acer_travelmate_2490, |
| 387 | }, |
| 388 | { |
| 389 | .callback = dmi_matched, |
| 390 | .ident = "Acer Aspire 5680", |
| 391 | .matches = { |
| 392 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 393 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"), |
| 394 | }, |
| 395 | .driver_data = &quirk_acer_travelmate_2490, |
| 396 | }, |
| 397 | { |
| 398 | .callback = dmi_matched, |
| 399 | .ident = "Acer Aspire 9110", |
| 400 | .matches = { |
| 401 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 402 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"), |
| 403 | }, |
| 404 | .driver_data = &quirk_acer_travelmate_2490, |
| 405 | }, |
| 406 | { |
| 407 | .callback = dmi_matched, |
| 408 | .ident = "Acer TravelMate 2490", |
| 409 | .matches = { |
| 410 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 411 | DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"), |
| 412 | }, |
| 413 | .driver_data = &quirk_acer_travelmate_2490, |
| 414 | }, |
| 415 | { |
| 416 | .callback = dmi_matched, |
Carlos Corbacho | 262ee35 | 2008-02-16 00:02:56 +0000 | [diff] [blame] | 417 | .ident = "Acer TravelMate 4200", |
| 418 | .matches = { |
| 419 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 420 | DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4200"), |
| 421 | }, |
| 422 | .driver_data = &quirk_acer_travelmate_2490, |
| 423 | }, |
| 424 | { |
| 425 | .callback = dmi_matched, |
Carlos Corbacho | 6f061ab | 2008-06-21 09:09:38 +0100 | [diff] [blame] | 426 | .ident = "Fujitsu Siemens Amilo Li 1718", |
| 427 | .matches = { |
| 428 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 429 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Li 1718"), |
| 430 | }, |
| 431 | .driver_data = &quirk_fujitsu_amilo_li_1718, |
| 432 | }, |
| 433 | { |
| 434 | .callback = dmi_matched, |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 435 | .ident = "Medion MD 98300", |
| 436 | .matches = { |
| 437 | DMI_MATCH(DMI_SYS_VENDOR, "MEDION"), |
| 438 | DMI_MATCH(DMI_PRODUCT_NAME, "WAM2030"), |
| 439 | }, |
| 440 | .driver_data = &quirk_medion_md_98300, |
| 441 | }, |
| 442 | {} |
| 443 | }; |
| 444 | |
| 445 | /* Find which quirks are needed for a particular vendor/ model pair */ |
| 446 | static void find_quirks(void) |
| 447 | { |
| 448 | if (!force_series) { |
| 449 | dmi_check_system(acer_quirks); |
| 450 | } else if (force_series == 2490) { |
| 451 | quirks = &quirk_acer_travelmate_2490; |
| 452 | } |
| 453 | |
| 454 | if (quirks == NULL) |
| 455 | quirks = &quirk_unknown; |
| 456 | |
| 457 | set_quirks(); |
| 458 | } |
| 459 | |
| 460 | /* |
| 461 | * General interface convenience methods |
| 462 | */ |
| 463 | |
| 464 | static bool has_cap(u32 cap) |
| 465 | { |
| 466 | if ((interface->capability & cap) != 0) |
| 467 | return 1; |
| 468 | |
| 469 | return 0; |
| 470 | } |
| 471 | |
| 472 | /* |
| 473 | * AMW0 (V1) interface |
| 474 | */ |
| 475 | struct wmab_args { |
| 476 | u32 eax; |
| 477 | u32 ebx; |
| 478 | u32 ecx; |
| 479 | u32 edx; |
| 480 | }; |
| 481 | |
| 482 | struct wmab_ret { |
| 483 | u32 eax; |
| 484 | u32 ebx; |
| 485 | u32 ecx; |
| 486 | u32 edx; |
| 487 | u32 eex; |
| 488 | }; |
| 489 | |
| 490 | static acpi_status wmab_execute(struct wmab_args *regbuf, |
| 491 | struct acpi_buffer *result) |
| 492 | { |
| 493 | struct acpi_buffer input; |
| 494 | acpi_status status; |
| 495 | input.length = sizeof(struct wmab_args); |
| 496 | input.pointer = (u8 *)regbuf; |
| 497 | |
| 498 | status = wmi_evaluate_method(AMW0_GUID1, 1, 1, &input, result); |
| 499 | |
| 500 | return status; |
| 501 | } |
| 502 | |
| 503 | static acpi_status AMW0_get_u32(u32 *value, u32 cap, |
| 504 | struct wmi_interface *iface) |
| 505 | { |
| 506 | int err; |
| 507 | u8 result; |
| 508 | |
| 509 | switch (cap) { |
| 510 | case ACER_CAP_MAILLED: |
| 511 | switch (quirks->mailled) { |
| 512 | default: |
| 513 | err = ec_read(0xA, &result); |
| 514 | if (err) |
| 515 | return AE_ERROR; |
| 516 | *value = (result >> 7) & 0x1; |
| 517 | return AE_OK; |
| 518 | } |
| 519 | break; |
| 520 | case ACER_CAP_WIRELESS: |
| 521 | switch (quirks->wireless) { |
| 522 | case 1: |
| 523 | err = ec_read(0x7B, &result); |
| 524 | if (err) |
| 525 | return AE_ERROR; |
| 526 | *value = result & 0x1; |
| 527 | return AE_OK; |
Carlos Corbacho | 6f061ab | 2008-06-21 09:09:38 +0100 | [diff] [blame] | 528 | case 2: |
| 529 | err = ec_read(0x71, &result); |
| 530 | if (err) |
| 531 | return AE_ERROR; |
| 532 | *value = result & 0x1; |
| 533 | return AE_OK; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 534 | default: |
| 535 | err = ec_read(0xA, &result); |
| 536 | if (err) |
| 537 | return AE_ERROR; |
| 538 | *value = (result >> 2) & 0x1; |
| 539 | return AE_OK; |
| 540 | } |
| 541 | break; |
| 542 | case ACER_CAP_BLUETOOTH: |
| 543 | switch (quirks->bluetooth) { |
| 544 | default: |
| 545 | err = ec_read(0xA, &result); |
| 546 | if (err) |
| 547 | return AE_ERROR; |
| 548 | *value = (result >> 4) & 0x1; |
| 549 | return AE_OK; |
| 550 | } |
| 551 | break; |
| 552 | case ACER_CAP_BRIGHTNESS: |
| 553 | switch (quirks->brightness) { |
| 554 | default: |
| 555 | err = ec_read(0x83, &result); |
| 556 | if (err) |
| 557 | return AE_ERROR; |
| 558 | *value = result; |
| 559 | return AE_OK; |
| 560 | } |
| 561 | break; |
| 562 | default: |
Lin Ming | 0823797 | 2008-08-08 11:57:11 +0800 | [diff] [blame] | 563 | return AE_ERROR; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 564 | } |
| 565 | return AE_OK; |
| 566 | } |
| 567 | |
| 568 | static acpi_status AMW0_set_u32(u32 value, u32 cap, struct wmi_interface *iface) |
| 569 | { |
| 570 | struct wmab_args args; |
| 571 | |
| 572 | args.eax = ACER_AMW0_WRITE; |
| 573 | args.ebx = value ? (1<<8) : 0; |
| 574 | args.ecx = args.edx = 0; |
| 575 | |
| 576 | switch (cap) { |
| 577 | case ACER_CAP_MAILLED: |
| 578 | if (value > 1) |
| 579 | return AE_BAD_PARAMETER; |
| 580 | args.ebx |= ACER_AMW0_MAILLED_MASK; |
| 581 | break; |
| 582 | case ACER_CAP_WIRELESS: |
| 583 | if (value > 1) |
| 584 | return AE_BAD_PARAMETER; |
| 585 | args.ebx |= ACER_AMW0_WIRELESS_MASK; |
| 586 | break; |
| 587 | case ACER_CAP_BLUETOOTH: |
| 588 | if (value > 1) |
| 589 | return AE_BAD_PARAMETER; |
| 590 | args.ebx |= ACER_AMW0_BLUETOOTH_MASK; |
| 591 | break; |
| 592 | case ACER_CAP_BRIGHTNESS: |
| 593 | if (value > max_brightness) |
| 594 | return AE_BAD_PARAMETER; |
| 595 | switch (quirks->brightness) { |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 596 | default: |
Carlos Corbacho | 4609d02 | 2008-02-08 23:51:49 +0000 | [diff] [blame] | 597 | return ec_write(0x83, value); |
| 598 | break; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 599 | } |
| 600 | default: |
Lin Ming | 0823797 | 2008-08-08 11:57:11 +0800 | [diff] [blame] | 601 | return AE_ERROR; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | /* Actually do the set */ |
| 605 | return wmab_execute(&args, NULL); |
| 606 | } |
| 607 | |
| 608 | static acpi_status AMW0_find_mailled(void) |
| 609 | { |
| 610 | struct wmab_args args; |
| 611 | struct wmab_ret ret; |
| 612 | acpi_status status = AE_OK; |
| 613 | struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 614 | union acpi_object *obj; |
| 615 | |
| 616 | args.eax = 0x86; |
| 617 | args.ebx = args.ecx = args.edx = 0; |
| 618 | |
| 619 | status = wmab_execute(&args, &out); |
| 620 | if (ACPI_FAILURE(status)) |
| 621 | return status; |
| 622 | |
| 623 | obj = (union acpi_object *) out.pointer; |
| 624 | if (obj && obj->type == ACPI_TYPE_BUFFER && |
| 625 | obj->buffer.length == sizeof(struct wmab_ret)) { |
| 626 | ret = *((struct wmab_ret *) obj->buffer.pointer); |
| 627 | } else { |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 628 | kfree(out.pointer); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 629 | return AE_ERROR; |
| 630 | } |
| 631 | |
| 632 | if (ret.eex & 0x1) |
| 633 | interface->capability |= ACER_CAP_MAILLED; |
| 634 | |
| 635 | kfree(out.pointer); |
| 636 | |
| 637 | return AE_OK; |
| 638 | } |
| 639 | |
| 640 | static acpi_status AMW0_set_capabilities(void) |
| 641 | { |
| 642 | struct wmab_args args; |
| 643 | struct wmab_ret ret; |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 644 | acpi_status status; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 645 | struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 646 | union acpi_object *obj; |
| 647 | |
Carlos Corbacho | 5753dd5 | 2008-06-21 09:09:48 +0100 | [diff] [blame] | 648 | /* |
| 649 | * On laptops with this strange GUID (non Acer), normal probing doesn't |
| 650 | * work. |
| 651 | */ |
| 652 | if (wmi_has_guid(AMW0_GUID2)) { |
| 653 | interface->capability |= ACER_CAP_WIRELESS; |
| 654 | return AE_OK; |
| 655 | } |
| 656 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 657 | args.eax = ACER_AMW0_WRITE; |
| 658 | args.ecx = args.edx = 0; |
| 659 | |
| 660 | args.ebx = 0xa2 << 8; |
| 661 | args.ebx |= ACER_AMW0_WIRELESS_MASK; |
| 662 | |
| 663 | status = wmab_execute(&args, &out); |
| 664 | if (ACPI_FAILURE(status)) |
| 665 | return status; |
| 666 | |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 667 | obj = out.pointer; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 668 | if (obj && obj->type == ACPI_TYPE_BUFFER && |
| 669 | obj->buffer.length == sizeof(struct wmab_ret)) { |
| 670 | ret = *((struct wmab_ret *) obj->buffer.pointer); |
| 671 | } else { |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 672 | status = AE_ERROR; |
| 673 | goto out; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | if (ret.eax & 0x1) |
| 677 | interface->capability |= ACER_CAP_WIRELESS; |
| 678 | |
| 679 | args.ebx = 2 << 8; |
| 680 | args.ebx |= ACER_AMW0_BLUETOOTH_MASK; |
| 681 | |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 682 | /* |
| 683 | * It's ok to use existing buffer for next wmab_execute call. |
| 684 | * But we need to kfree(out.pointer) if next wmab_execute fail. |
| 685 | */ |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 686 | status = wmab_execute(&args, &out); |
| 687 | if (ACPI_FAILURE(status)) |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 688 | goto out; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 689 | |
| 690 | obj = (union acpi_object *) out.pointer; |
| 691 | if (obj && obj->type == ACPI_TYPE_BUFFER |
| 692 | && obj->buffer.length == sizeof(struct wmab_ret)) { |
| 693 | ret = *((struct wmab_ret *) obj->buffer.pointer); |
| 694 | } else { |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 695 | status = AE_ERROR; |
| 696 | goto out; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | if (ret.eax & 0x1) |
| 700 | interface->capability |= ACER_CAP_BLUETOOTH; |
| 701 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 702 | /* |
| 703 | * This appears to be safe to enable, since all Wistron based laptops |
| 704 | * appear to use the same EC register for brightness, even if they |
| 705 | * differ for wireless, etc |
| 706 | */ |
Carlos Corbacho | 9991d9f | 2008-06-21 09:09:22 +0100 | [diff] [blame] | 707 | if (quirks->brightness >= 0) |
| 708 | interface->capability |= ACER_CAP_BRIGHTNESS; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 709 | |
Axel Lin | 7677fbd | 2010-07-20 15:19:53 -0700 | [diff] [blame] | 710 | status = AE_OK; |
| 711 | out: |
| 712 | kfree(out.pointer); |
| 713 | return status; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | static struct wmi_interface AMW0_interface = { |
| 717 | .type = ACER_AMW0, |
| 718 | }; |
| 719 | |
| 720 | static struct wmi_interface AMW0_V2_interface = { |
| 721 | .type = ACER_AMW0_V2, |
| 722 | }; |
| 723 | |
| 724 | /* |
| 725 | * New interface (The WMID interface) |
| 726 | */ |
| 727 | static acpi_status |
| 728 | WMI_execute_u32(u32 method_id, u32 in, u32 *out) |
| 729 | { |
| 730 | struct acpi_buffer input = { (acpi_size) sizeof(u32), (void *)(&in) }; |
| 731 | struct acpi_buffer result = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 732 | union acpi_object *obj; |
| 733 | u32 tmp; |
| 734 | acpi_status status; |
| 735 | |
| 736 | status = wmi_evaluate_method(WMID_GUID1, 1, method_id, &input, &result); |
| 737 | |
| 738 | if (ACPI_FAILURE(status)) |
| 739 | return status; |
| 740 | |
| 741 | obj = (union acpi_object *) result.pointer; |
| 742 | if (obj && obj->type == ACPI_TYPE_BUFFER && |
| 743 | obj->buffer.length == sizeof(u32)) { |
| 744 | tmp = *((u32 *) obj->buffer.pointer); |
| 745 | } else { |
| 746 | tmp = 0; |
| 747 | } |
| 748 | |
| 749 | if (out) |
| 750 | *out = tmp; |
| 751 | |
| 752 | kfree(result.pointer); |
| 753 | |
| 754 | return status; |
| 755 | } |
| 756 | |
| 757 | static acpi_status WMID_get_u32(u32 *value, u32 cap, |
| 758 | struct wmi_interface *iface) |
| 759 | { |
| 760 | acpi_status status; |
| 761 | u8 tmp; |
| 762 | u32 result, method_id = 0; |
| 763 | |
| 764 | switch (cap) { |
| 765 | case ACER_CAP_WIRELESS: |
| 766 | method_id = ACER_WMID_GET_WIRELESS_METHODID; |
| 767 | break; |
| 768 | case ACER_CAP_BLUETOOTH: |
| 769 | method_id = ACER_WMID_GET_BLUETOOTH_METHODID; |
| 770 | break; |
| 771 | case ACER_CAP_BRIGHTNESS: |
| 772 | method_id = ACER_WMID_GET_BRIGHTNESS_METHODID; |
| 773 | break; |
| 774 | case ACER_CAP_THREEG: |
| 775 | method_id = ACER_WMID_GET_THREEG_METHODID; |
| 776 | break; |
| 777 | case ACER_CAP_MAILLED: |
| 778 | if (quirks->mailled == 1) { |
| 779 | ec_read(0x9f, &tmp); |
| 780 | *value = tmp & 0x1; |
| 781 | return 0; |
| 782 | } |
| 783 | default: |
Lin Ming | 0823797 | 2008-08-08 11:57:11 +0800 | [diff] [blame] | 784 | return AE_ERROR; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 785 | } |
| 786 | status = WMI_execute_u32(method_id, 0, &result); |
| 787 | |
| 788 | if (ACPI_SUCCESS(status)) |
| 789 | *value = (u8)result; |
| 790 | |
| 791 | return status; |
| 792 | } |
| 793 | |
| 794 | static acpi_status WMID_set_u32(u32 value, u32 cap, struct wmi_interface *iface) |
| 795 | { |
| 796 | u32 method_id = 0; |
| 797 | char param; |
| 798 | |
| 799 | switch (cap) { |
| 800 | case ACER_CAP_BRIGHTNESS: |
| 801 | if (value > max_brightness) |
| 802 | return AE_BAD_PARAMETER; |
| 803 | method_id = ACER_WMID_SET_BRIGHTNESS_METHODID; |
| 804 | break; |
| 805 | case ACER_CAP_WIRELESS: |
| 806 | if (value > 1) |
| 807 | return AE_BAD_PARAMETER; |
| 808 | method_id = ACER_WMID_SET_WIRELESS_METHODID; |
| 809 | break; |
| 810 | case ACER_CAP_BLUETOOTH: |
| 811 | if (value > 1) |
| 812 | return AE_BAD_PARAMETER; |
| 813 | method_id = ACER_WMID_SET_BLUETOOTH_METHODID; |
| 814 | break; |
| 815 | case ACER_CAP_THREEG: |
| 816 | if (value > 1) |
| 817 | return AE_BAD_PARAMETER; |
| 818 | method_id = ACER_WMID_SET_THREEG_METHODID; |
| 819 | break; |
| 820 | case ACER_CAP_MAILLED: |
| 821 | if (value > 1) |
| 822 | return AE_BAD_PARAMETER; |
| 823 | if (quirks->mailled == 1) { |
| 824 | param = value ? 0x92 : 0x93; |
Dmitry Torokhov | 181d683 | 2009-09-16 01:06:43 -0700 | [diff] [blame] | 825 | i8042_lock_chip(); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 826 | i8042_command(¶m, 0x1059); |
Dmitry Torokhov | 181d683 | 2009-09-16 01:06:43 -0700 | [diff] [blame] | 827 | i8042_unlock_chip(); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 828 | return 0; |
| 829 | } |
| 830 | break; |
| 831 | default: |
Lin Ming | 0823797 | 2008-08-08 11:57:11 +0800 | [diff] [blame] | 832 | return AE_ERROR; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 833 | } |
| 834 | return WMI_execute_u32(method_id, (u32)value, NULL); |
| 835 | } |
| 836 | |
Lee, Chun-Yi | 6c3df88 | 2010-12-07 10:29:23 +0800 | [diff] [blame] | 837 | static void type_aa_dmi_decode(const struct dmi_header *header, void *dummy) |
| 838 | { |
| 839 | struct hotkey_function_type_aa *type_aa; |
| 840 | |
| 841 | /* We are looking for OEM-specific Type AAh */ |
| 842 | if (header->type != 0xAA) |
| 843 | return; |
| 844 | |
| 845 | has_type_aa = true; |
| 846 | type_aa = (struct hotkey_function_type_aa *) header; |
| 847 | |
| 848 | printk(ACER_INFO "Function bitmap for Communication Button: 0x%x\n", |
| 849 | type_aa->commun_func_bitmap); |
| 850 | |
| 851 | if (type_aa->commun_func_bitmap & ACER_WMID3_GDS_WIRELESS) |
| 852 | interface->capability |= ACER_CAP_WIRELESS; |
| 853 | if (type_aa->commun_func_bitmap & ACER_WMID3_GDS_THREEG) |
| 854 | interface->capability |= ACER_CAP_THREEG; |
| 855 | if (type_aa->commun_func_bitmap & ACER_WMID3_GDS_BLUETOOTH) |
| 856 | interface->capability |= ACER_CAP_BLUETOOTH; |
| 857 | } |
| 858 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 859 | static acpi_status WMID_set_capabilities(void) |
| 860 | { |
| 861 | struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 862 | union acpi_object *obj; |
| 863 | acpi_status status; |
| 864 | u32 devices; |
| 865 | |
| 866 | status = wmi_query_block(WMID_GUID2, 1, &out); |
| 867 | if (ACPI_FAILURE(status)) |
| 868 | return status; |
| 869 | |
| 870 | obj = (union acpi_object *) out.pointer; |
| 871 | if (obj && obj->type == ACPI_TYPE_BUFFER && |
| 872 | obj->buffer.length == sizeof(u32)) { |
| 873 | devices = *((u32 *) obj->buffer.pointer); |
| 874 | } else { |
Axel Lin | 6690486 | 2010-07-20 15:19:52 -0700 | [diff] [blame] | 875 | kfree(out.pointer); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 876 | return AE_ERROR; |
| 877 | } |
| 878 | |
Lee, Chun-Yi | 6c3df88 | 2010-12-07 10:29:23 +0800 | [diff] [blame] | 879 | dmi_walk(type_aa_dmi_decode, NULL); |
| 880 | if (!has_type_aa) { |
| 881 | interface->capability |= ACER_CAP_WIRELESS; |
| 882 | interface->capability |= ACER_CAP_THREEG; |
| 883 | if (devices & 0x10) |
| 884 | interface->capability |= ACER_CAP_BLUETOOTH; |
| 885 | } |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 886 | |
| 887 | /* WMID always provides brightness methods */ |
| 888 | interface->capability |= ACER_CAP_BRIGHTNESS; |
| 889 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 890 | if (!(devices & 0x20)) |
| 891 | max_brightness = 0x9; |
| 892 | |
Axel Lin | 6690486 | 2010-07-20 15:19:52 -0700 | [diff] [blame] | 893 | kfree(out.pointer); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 894 | return status; |
| 895 | } |
| 896 | |
| 897 | static struct wmi_interface wmid_interface = { |
| 898 | .type = ACER_WMID, |
| 899 | }; |
| 900 | |
| 901 | /* |
| 902 | * Generic Device (interface-independent) |
| 903 | */ |
| 904 | |
| 905 | static acpi_status get_u32(u32 *value, u32 cap) |
| 906 | { |
Lin Ming | 0823797 | 2008-08-08 11:57:11 +0800 | [diff] [blame] | 907 | acpi_status status = AE_ERROR; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 908 | |
| 909 | switch (interface->type) { |
| 910 | case ACER_AMW0: |
| 911 | status = AMW0_get_u32(value, cap, interface); |
| 912 | break; |
| 913 | case ACER_AMW0_V2: |
| 914 | if (cap == ACER_CAP_MAILLED) { |
| 915 | status = AMW0_get_u32(value, cap, interface); |
| 916 | break; |
| 917 | } |
| 918 | case ACER_WMID: |
| 919 | status = WMID_get_u32(value, cap, interface); |
| 920 | break; |
| 921 | } |
| 922 | |
| 923 | return status; |
| 924 | } |
| 925 | |
| 926 | static acpi_status set_u32(u32 value, u32 cap) |
| 927 | { |
Carlos Corbacho | 5c742b4 | 2008-08-06 19:13:56 +0100 | [diff] [blame] | 928 | acpi_status status; |
| 929 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 930 | if (interface->capability & cap) { |
| 931 | switch (interface->type) { |
| 932 | case ACER_AMW0: |
| 933 | return AMW0_set_u32(value, cap, interface); |
| 934 | case ACER_AMW0_V2: |
Carlos Corbacho | 5c742b4 | 2008-08-06 19:13:56 +0100 | [diff] [blame] | 935 | if (cap == ACER_CAP_MAILLED) |
| 936 | return AMW0_set_u32(value, cap, interface); |
| 937 | |
| 938 | /* |
| 939 | * On some models, some WMID methods don't toggle |
| 940 | * properly. For those cases, we want to run the AMW0 |
| 941 | * method afterwards to be certain we've really toggled |
| 942 | * the device state. |
| 943 | */ |
| 944 | if (cap == ACER_CAP_WIRELESS || |
| 945 | cap == ACER_CAP_BLUETOOTH) { |
| 946 | status = WMID_set_u32(value, cap, interface); |
| 947 | if (ACPI_FAILURE(status)) |
| 948 | return status; |
| 949 | |
| 950 | return AMW0_set_u32(value, cap, interface); |
| 951 | } |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 952 | case ACER_WMID: |
| 953 | return WMID_set_u32(value, cap, interface); |
| 954 | default: |
| 955 | return AE_BAD_PARAMETER; |
| 956 | } |
| 957 | } |
| 958 | return AE_BAD_PARAMETER; |
| 959 | } |
| 960 | |
| 961 | static void __init acer_commandline_init(void) |
| 962 | { |
| 963 | /* |
| 964 | * These will all fail silently if the value given is invalid, or the |
| 965 | * capability isn't available on the given interface |
| 966 | */ |
| 967 | set_u32(mailled, ACER_CAP_MAILLED); |
Lee, Chun-Yi | 6c3df88 | 2010-12-07 10:29:23 +0800 | [diff] [blame] | 968 | if (!has_type_aa) |
| 969 | set_u32(threeg, ACER_CAP_THREEG); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 970 | set_u32(brightness, ACER_CAP_BRIGHTNESS); |
| 971 | } |
| 972 | |
| 973 | /* |
| 974 | * LED device (Mail LED only, no other LEDs known yet) |
| 975 | */ |
| 976 | static void mail_led_set(struct led_classdev *led_cdev, |
| 977 | enum led_brightness value) |
| 978 | { |
| 979 | set_u32(value, ACER_CAP_MAILLED); |
| 980 | } |
| 981 | |
| 982 | static struct led_classdev mail_led = { |
Carlos Corbacho | 343c004 | 2008-02-24 13:34:18 +0000 | [diff] [blame] | 983 | .name = "acer-wmi::mail", |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 984 | .brightness_set = mail_led_set, |
| 985 | }; |
| 986 | |
Sam Ravnborg | 7560e38 | 2008-02-17 13:22:54 +0100 | [diff] [blame] | 987 | static int __devinit acer_led_init(struct device *dev) |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 988 | { |
| 989 | return led_classdev_register(dev, &mail_led); |
| 990 | } |
| 991 | |
| 992 | static void acer_led_exit(void) |
| 993 | { |
| 994 | led_classdev_unregister(&mail_led); |
| 995 | } |
| 996 | |
| 997 | /* |
| 998 | * Backlight device |
| 999 | */ |
| 1000 | static struct backlight_device *acer_backlight_device; |
| 1001 | |
| 1002 | static int read_brightness(struct backlight_device *bd) |
| 1003 | { |
| 1004 | u32 value; |
| 1005 | get_u32(&value, ACER_CAP_BRIGHTNESS); |
| 1006 | return value; |
| 1007 | } |
| 1008 | |
| 1009 | static int update_bl_status(struct backlight_device *bd) |
| 1010 | { |
Carlos Corbacho | f2b585b | 2008-06-21 09:09:27 +0100 | [diff] [blame] | 1011 | int intensity = bd->props.brightness; |
| 1012 | |
| 1013 | if (bd->props.power != FB_BLANK_UNBLANK) |
| 1014 | intensity = 0; |
| 1015 | if (bd->props.fb_blank != FB_BLANK_UNBLANK) |
| 1016 | intensity = 0; |
| 1017 | |
| 1018 | set_u32(intensity, ACER_CAP_BRIGHTNESS); |
| 1019 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1020 | return 0; |
| 1021 | } |
| 1022 | |
Lionel Debroux | acc2472 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 1023 | static const struct backlight_ops acer_bl_ops = { |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1024 | .get_brightness = read_brightness, |
| 1025 | .update_status = update_bl_status, |
| 1026 | }; |
| 1027 | |
Sam Ravnborg | 7560e38 | 2008-02-17 13:22:54 +0100 | [diff] [blame] | 1028 | static int __devinit acer_backlight_init(struct device *dev) |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1029 | { |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1030 | struct backlight_properties props; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1031 | struct backlight_device *bd; |
| 1032 | |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1033 | memset(&props, 0, sizeof(struct backlight_properties)); |
Matthew Garrett | bb7ca74 | 2011-03-22 16:30:21 -0700 | [diff] [blame] | 1034 | props.type = BACKLIGHT_PLATFORM; |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1035 | props.max_brightness = max_brightness; |
| 1036 | bd = backlight_device_register("acer-wmi", dev, NULL, &acer_bl_ops, |
| 1037 | &props); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1038 | if (IS_ERR(bd)) { |
| 1039 | printk(ACER_ERR "Could not register Acer backlight device\n"); |
| 1040 | acer_backlight_device = NULL; |
| 1041 | return PTR_ERR(bd); |
| 1042 | } |
| 1043 | |
| 1044 | acer_backlight_device = bd; |
| 1045 | |
Carlos Corbacho | f2b585b | 2008-06-21 09:09:27 +0100 | [diff] [blame] | 1046 | bd->props.power = FB_BLANK_UNBLANK; |
Carlos Corbacho | 6f6ef82 | 2009-12-26 19:24:31 +0000 | [diff] [blame] | 1047 | bd->props.brightness = read_brightness(bd); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1048 | backlight_update_status(bd); |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
Sam Ravnborg | 7560e38 | 2008-02-17 13:22:54 +0100 | [diff] [blame] | 1052 | static void acer_backlight_exit(void) |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1053 | { |
| 1054 | backlight_device_unregister(acer_backlight_device); |
| 1055 | } |
| 1056 | |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 1057 | static acpi_status wmid3_get_device_status(u32 *value, u16 device) |
| 1058 | { |
| 1059 | struct wmid3_gds_return_value return_value; |
| 1060 | acpi_status status; |
| 1061 | union acpi_object *obj; |
| 1062 | struct wmid3_gds_input_param params = { |
| 1063 | .function_num = 0x1, |
| 1064 | .hotkey_number = 0x01, |
| 1065 | .devices = device, |
| 1066 | }; |
| 1067 | struct acpi_buffer input = { |
| 1068 | sizeof(struct wmid3_gds_input_param), |
| 1069 | ¶ms |
| 1070 | }; |
| 1071 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1072 | |
| 1073 | status = wmi_evaluate_method(WMID_GUID3, 0, 0x2, &input, &output); |
| 1074 | if (ACPI_FAILURE(status)) |
| 1075 | return status; |
| 1076 | |
| 1077 | obj = output.pointer; |
| 1078 | |
| 1079 | if (!obj) |
| 1080 | return AE_ERROR; |
| 1081 | else if (obj->type != ACPI_TYPE_BUFFER) { |
| 1082 | kfree(obj); |
| 1083 | return AE_ERROR; |
| 1084 | } |
| 1085 | if (obj->buffer.length != 8) { |
| 1086 | printk(ACER_WARNING "Unknown buffer length %d\n", |
| 1087 | obj->buffer.length); |
| 1088 | kfree(obj); |
| 1089 | return AE_ERROR; |
| 1090 | } |
| 1091 | |
| 1092 | return_value = *((struct wmid3_gds_return_value *)obj->buffer.pointer); |
| 1093 | kfree(obj); |
| 1094 | |
| 1095 | if (return_value.error_code || return_value.ec_return_value) |
| 1096 | printk(ACER_WARNING "Get Device Status failed: " |
| 1097 | "0x%x - 0x%x\n", return_value.error_code, |
| 1098 | return_value.ec_return_value); |
| 1099 | else |
| 1100 | *value = !!(return_value.devices & device); |
| 1101 | |
| 1102 | return status; |
| 1103 | } |
| 1104 | |
Lee, Chun-Yi | 466449c | 2010-12-13 10:02:41 +0800 | [diff] [blame] | 1105 | static acpi_status get_device_status(u32 *value, u32 cap) |
| 1106 | { |
| 1107 | if (wmi_has_guid(WMID_GUID3)) { |
| 1108 | u16 device; |
| 1109 | |
| 1110 | switch (cap) { |
| 1111 | case ACER_CAP_WIRELESS: |
| 1112 | device = ACER_WMID3_GDS_WIRELESS; |
| 1113 | break; |
| 1114 | case ACER_CAP_BLUETOOTH: |
| 1115 | device = ACER_WMID3_GDS_BLUETOOTH; |
| 1116 | break; |
| 1117 | case ACER_CAP_THREEG: |
| 1118 | device = ACER_WMID3_GDS_THREEG; |
| 1119 | break; |
| 1120 | default: |
| 1121 | return AE_ERROR; |
| 1122 | } |
| 1123 | return wmid3_get_device_status(value, device); |
| 1124 | |
| 1125 | } else { |
| 1126 | return get_u32(value, cap); |
| 1127 | } |
| 1128 | } |
| 1129 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1130 | /* |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1131 | * Rfkill devices |
| 1132 | */ |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1133 | static void acer_rfkill_update(struct work_struct *ignored); |
| 1134 | static DECLARE_DELAYED_WORK(acer_rfkill_work, acer_rfkill_update); |
| 1135 | static void acer_rfkill_update(struct work_struct *ignored) |
| 1136 | { |
| 1137 | u32 state; |
| 1138 | acpi_status status; |
| 1139 | |
| 1140 | status = get_u32(&state, ACER_CAP_WIRELESS); |
| 1141 | if (ACPI_SUCCESS(status)) |
Troy Moure | a878417 | 2009-06-17 11:51:56 +0100 | [diff] [blame] | 1142 | rfkill_set_sw_state(wireless_rfkill, !state); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1143 | |
| 1144 | if (has_cap(ACER_CAP_BLUETOOTH)) { |
| 1145 | status = get_u32(&state, ACER_CAP_BLUETOOTH); |
| 1146 | if (ACPI_SUCCESS(status)) |
Troy Moure | a878417 | 2009-06-17 11:51:56 +0100 | [diff] [blame] | 1147 | rfkill_set_sw_state(bluetooth_rfkill, !state); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1148 | } |
| 1149 | |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 1150 | if (has_cap(ACER_CAP_THREEG) && wmi_has_guid(WMID_GUID3)) { |
| 1151 | status = wmid3_get_device_status(&state, |
| 1152 | ACER_WMID3_GDS_THREEG); |
| 1153 | if (ACPI_SUCCESS(status)) |
| 1154 | rfkill_set_sw_state(threeg_rfkill, !state); |
| 1155 | } |
| 1156 | |
Carlos Corbacho | ae3a1b4 | 2008-10-10 17:33:35 +0100 | [diff] [blame] | 1157 | schedule_delayed_work(&acer_rfkill_work, round_jiffies_relative(HZ)); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1158 | } |
| 1159 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1160 | static int acer_rfkill_set(void *data, bool blocked) |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1161 | { |
| 1162 | acpi_status status; |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1163 | u32 cap = (unsigned long)data; |
Alan Jenkins | ed5c8ef | 2009-07-19 09:48:28 +0100 | [diff] [blame] | 1164 | status = set_u32(!blocked, cap); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1165 | if (ACPI_FAILURE(status)) |
| 1166 | return -ENODEV; |
| 1167 | return 0; |
| 1168 | } |
| 1169 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1170 | static const struct rfkill_ops acer_rfkill_ops = { |
| 1171 | .set_block = acer_rfkill_set, |
| 1172 | }; |
| 1173 | |
| 1174 | static struct rfkill *acer_rfkill_register(struct device *dev, |
| 1175 | enum rfkill_type type, |
| 1176 | char *name, u32 cap) |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1177 | { |
| 1178 | int err; |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1179 | struct rfkill *rfkill_dev; |
Lee, Chun-Yi | 466449c | 2010-12-13 10:02:41 +0800 | [diff] [blame] | 1180 | u32 state; |
| 1181 | acpi_status status; |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1182 | |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1183 | rfkill_dev = rfkill_alloc(name, dev, type, |
| 1184 | &acer_rfkill_ops, |
| 1185 | (void *)(unsigned long)cap); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1186 | if (!rfkill_dev) |
| 1187 | return ERR_PTR(-ENOMEM); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1188 | |
Lee, Chun-Yi | 466449c | 2010-12-13 10:02:41 +0800 | [diff] [blame] | 1189 | status = get_device_status(&state, cap); |
| 1190 | if (ACPI_SUCCESS(status)) |
| 1191 | rfkill_init_sw_state(rfkill_dev, !state); |
| 1192 | |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1193 | err = rfkill_register(rfkill_dev); |
| 1194 | if (err) { |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1195 | rfkill_destroy(rfkill_dev); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1196 | return ERR_PTR(err); |
| 1197 | } |
| 1198 | return rfkill_dev; |
| 1199 | } |
| 1200 | |
| 1201 | static int acer_rfkill_init(struct device *dev) |
| 1202 | { |
| 1203 | wireless_rfkill = acer_rfkill_register(dev, RFKILL_TYPE_WLAN, |
| 1204 | "acer-wireless", ACER_CAP_WIRELESS); |
| 1205 | if (IS_ERR(wireless_rfkill)) |
| 1206 | return PTR_ERR(wireless_rfkill); |
| 1207 | |
| 1208 | if (has_cap(ACER_CAP_BLUETOOTH)) { |
| 1209 | bluetooth_rfkill = acer_rfkill_register(dev, |
| 1210 | RFKILL_TYPE_BLUETOOTH, "acer-bluetooth", |
| 1211 | ACER_CAP_BLUETOOTH); |
| 1212 | if (IS_ERR(bluetooth_rfkill)) { |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1213 | rfkill_unregister(wireless_rfkill); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1214 | rfkill_destroy(wireless_rfkill); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1215 | return PTR_ERR(bluetooth_rfkill); |
| 1216 | } |
| 1217 | } |
| 1218 | |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 1219 | if (has_cap(ACER_CAP_THREEG)) { |
| 1220 | threeg_rfkill = acer_rfkill_register(dev, |
| 1221 | RFKILL_TYPE_WWAN, "acer-threeg", |
| 1222 | ACER_CAP_THREEG); |
| 1223 | if (IS_ERR(threeg_rfkill)) { |
| 1224 | rfkill_unregister(wireless_rfkill); |
| 1225 | rfkill_destroy(wireless_rfkill); |
| 1226 | rfkill_unregister(bluetooth_rfkill); |
| 1227 | rfkill_destroy(bluetooth_rfkill); |
| 1228 | return PTR_ERR(threeg_rfkill); |
| 1229 | } |
| 1230 | } |
| 1231 | |
Carlos Corbacho | ae3a1b4 | 2008-10-10 17:33:35 +0100 | [diff] [blame] | 1232 | schedule_delayed_work(&acer_rfkill_work, round_jiffies_relative(HZ)); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1233 | |
| 1234 | return 0; |
| 1235 | } |
| 1236 | |
| 1237 | static void acer_rfkill_exit(void) |
| 1238 | { |
| 1239 | cancel_delayed_work_sync(&acer_rfkill_work); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1240 | |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1241 | rfkill_unregister(wireless_rfkill); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1242 | rfkill_destroy(wireless_rfkill); |
| 1243 | |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1244 | if (has_cap(ACER_CAP_BLUETOOTH)) { |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1245 | rfkill_unregister(bluetooth_rfkill); |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 1246 | rfkill_destroy(bluetooth_rfkill); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1247 | } |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 1248 | |
| 1249 | if (has_cap(ACER_CAP_THREEG)) { |
| 1250 | rfkill_unregister(threeg_rfkill); |
| 1251 | rfkill_destroy(threeg_rfkill); |
| 1252 | } |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1253 | return; |
| 1254 | } |
| 1255 | |
| 1256 | /* |
Carlos Corbacho | 7d9a06d | 2008-10-08 21:40:26 +0100 | [diff] [blame] | 1257 | * sysfs interface |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1258 | */ |
Carlos Corbacho | 7d9a06d | 2008-10-08 21:40:26 +0100 | [diff] [blame] | 1259 | static ssize_t show_bool_threeg(struct device *dev, |
| 1260 | struct device_attribute *attr, char *buf) |
| 1261 | { |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1262 | u32 result; \ |
Lee, Chun-Yi | b3c9092 | 2010-12-07 10:29:22 +0800 | [diff] [blame] | 1263 | acpi_status status; |
| 1264 | if (wmi_has_guid(WMID_GUID3)) |
| 1265 | status = wmid3_get_device_status(&result, |
| 1266 | ACER_WMID3_GDS_THREEG); |
| 1267 | else |
| 1268 | status = get_u32(&result, ACER_CAP_THREEG); |
Carlos Corbacho | 7d9a06d | 2008-10-08 21:40:26 +0100 | [diff] [blame] | 1269 | if (ACPI_SUCCESS(status)) |
| 1270 | return sprintf(buf, "%u\n", result); |
| 1271 | return sprintf(buf, "Read error\n"); |
| 1272 | } |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1273 | |
Carlos Corbacho | 7d9a06d | 2008-10-08 21:40:26 +0100 | [diff] [blame] | 1274 | static ssize_t set_bool_threeg(struct device *dev, |
| 1275 | struct device_attribute *attr, const char *buf, size_t count) |
| 1276 | { |
| 1277 | u32 tmp = simple_strtoul(buf, NULL, 10); |
| 1278 | acpi_status status = set_u32(tmp, ACER_CAP_THREEG); |
| 1279 | if (ACPI_FAILURE(status)) |
| 1280 | return -EINVAL; |
| 1281 | return count; |
| 1282 | } |
Vasiliy Kulikov | b80b168 | 2011-02-04 15:23:56 +0300 | [diff] [blame] | 1283 | static DEVICE_ATTR(threeg, S_IRUGO | S_IWUSR, show_bool_threeg, |
Carlos Corbacho | 7d9a06d | 2008-10-08 21:40:26 +0100 | [diff] [blame] | 1284 | set_bool_threeg); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1285 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1286 | static ssize_t show_interface(struct device *dev, struct device_attribute *attr, |
| 1287 | char *buf) |
| 1288 | { |
| 1289 | switch (interface->type) { |
| 1290 | case ACER_AMW0: |
| 1291 | return sprintf(buf, "AMW0\n"); |
| 1292 | case ACER_AMW0_V2: |
| 1293 | return sprintf(buf, "AMW0 v2\n"); |
| 1294 | case ACER_WMID: |
| 1295 | return sprintf(buf, "WMID\n"); |
| 1296 | default: |
| 1297 | return sprintf(buf, "Error!\n"); |
| 1298 | } |
| 1299 | } |
| 1300 | |
Axel Lin | 370525d | 2010-06-30 10:20:23 +0800 | [diff] [blame] | 1301 | static DEVICE_ATTR(interface, S_IRUGO, show_interface, NULL); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1302 | |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 1303 | static void acer_wmi_notify(u32 value, void *context) |
| 1304 | { |
| 1305 | struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1306 | union acpi_object *obj; |
| 1307 | struct event_return_value return_value; |
| 1308 | acpi_status status; |
| 1309 | |
| 1310 | status = wmi_get_event_data(value, &response); |
| 1311 | if (status != AE_OK) { |
| 1312 | printk(ACER_WARNING "bad event status 0x%x\n", status); |
| 1313 | return; |
| 1314 | } |
| 1315 | |
| 1316 | obj = (union acpi_object *)response.pointer; |
| 1317 | |
| 1318 | if (!obj) |
| 1319 | return; |
| 1320 | if (obj->type != ACPI_TYPE_BUFFER) { |
| 1321 | printk(ACER_WARNING "Unknown response received %d\n", |
| 1322 | obj->type); |
| 1323 | kfree(obj); |
| 1324 | return; |
| 1325 | } |
| 1326 | if (obj->buffer.length != 8) { |
| 1327 | printk(ACER_WARNING "Unknown buffer length %d\n", |
| 1328 | obj->buffer.length); |
| 1329 | kfree(obj); |
| 1330 | return; |
| 1331 | } |
| 1332 | |
| 1333 | return_value = *((struct event_return_value *)obj->buffer.pointer); |
| 1334 | kfree(obj); |
| 1335 | |
| 1336 | switch (return_value.function) { |
| 1337 | case WMID_HOTKEY_EVENT: |
| 1338 | if (!sparse_keymap_report_event(acer_wmi_input_dev, |
| 1339 | return_value.key_num, 1, true)) |
| 1340 | printk(ACER_WARNING "Unknown key number - 0x%x\n", |
| 1341 | return_value.key_num); |
| 1342 | break; |
| 1343 | default: |
| 1344 | printk(ACER_WARNING "Unknown function number - %d - %d\n", |
| 1345 | return_value.function, return_value.key_num); |
| 1346 | break; |
| 1347 | } |
| 1348 | } |
| 1349 | |
From: Lee, Chun-Yi | 59ccf2f | 2011-01-07 17:25:14 -0500 | [diff] [blame] | 1350 | static acpi_status |
| 1351 | wmid3_set_lm_mode(struct lm_input_params *params, |
| 1352 | struct lm_return_value *return_value) |
| 1353 | { |
| 1354 | acpi_status status; |
| 1355 | union acpi_object *obj; |
| 1356 | |
| 1357 | struct acpi_buffer input = { sizeof(struct lm_input_params), params }; |
| 1358 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1359 | |
| 1360 | status = wmi_evaluate_method(WMID_GUID3, 0, 0x1, &input, &output); |
| 1361 | if (ACPI_FAILURE(status)) |
| 1362 | return status; |
| 1363 | |
| 1364 | obj = output.pointer; |
| 1365 | |
| 1366 | if (!obj) |
| 1367 | return AE_ERROR; |
| 1368 | else if (obj->type != ACPI_TYPE_BUFFER) { |
| 1369 | kfree(obj); |
| 1370 | return AE_ERROR; |
| 1371 | } |
| 1372 | if (obj->buffer.length != 4) { |
| 1373 | printk(ACER_WARNING "Unknown buffer length %d\n", |
| 1374 | obj->buffer.length); |
| 1375 | kfree(obj); |
| 1376 | return AE_ERROR; |
| 1377 | } |
| 1378 | |
| 1379 | *return_value = *((struct lm_return_value *)obj->buffer.pointer); |
| 1380 | kfree(obj); |
| 1381 | |
| 1382 | return status; |
| 1383 | } |
| 1384 | |
| 1385 | static int acer_wmi_enable_ec_raw(void) |
| 1386 | { |
| 1387 | struct lm_return_value return_value; |
| 1388 | acpi_status status; |
| 1389 | struct lm_input_params params = { |
| 1390 | .function_num = 0x1, |
| 1391 | .commun_devices = 0xFFFF, |
| 1392 | .devices = 0xFFFF, |
| 1393 | .lm_status = 0x00, /* Launch Manager Deactive */ |
| 1394 | }; |
| 1395 | |
| 1396 | status = wmid3_set_lm_mode(¶ms, &return_value); |
| 1397 | |
| 1398 | if (return_value.error_code || return_value.ec_return_value) |
| 1399 | printk(ACER_WARNING "Enabling EC raw mode failed: " |
| 1400 | "0x%x - 0x%x\n", return_value.error_code, |
| 1401 | return_value.ec_return_value); |
| 1402 | else |
| 1403 | printk(ACER_INFO "Enabled EC raw mode"); |
| 1404 | |
| 1405 | return status; |
| 1406 | } |
| 1407 | |
| 1408 | static int acer_wmi_enable_lm(void) |
| 1409 | { |
| 1410 | struct lm_return_value return_value; |
| 1411 | acpi_status status; |
| 1412 | struct lm_input_params params = { |
| 1413 | .function_num = 0x1, |
| 1414 | .commun_devices = 0xFFFF, |
| 1415 | .devices = 0xFFFF, |
| 1416 | .lm_status = 0x01, /* Launch Manager Active */ |
| 1417 | }; |
| 1418 | |
| 1419 | status = wmid3_set_lm_mode(¶ms, &return_value); |
| 1420 | |
| 1421 | if (return_value.error_code || return_value.ec_return_value) |
| 1422 | printk(ACER_WARNING "Enabling Launch Manager failed: " |
| 1423 | "0x%x - 0x%x\n", return_value.error_code, |
| 1424 | return_value.ec_return_value); |
| 1425 | |
| 1426 | return status; |
| 1427 | } |
| 1428 | |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 1429 | static int __init acer_wmi_input_setup(void) |
| 1430 | { |
| 1431 | acpi_status status; |
| 1432 | int err; |
| 1433 | |
| 1434 | acer_wmi_input_dev = input_allocate_device(); |
| 1435 | if (!acer_wmi_input_dev) |
| 1436 | return -ENOMEM; |
| 1437 | |
| 1438 | acer_wmi_input_dev->name = "Acer WMI hotkeys"; |
| 1439 | acer_wmi_input_dev->phys = "wmi/input0"; |
| 1440 | acer_wmi_input_dev->id.bustype = BUS_HOST; |
| 1441 | |
| 1442 | err = sparse_keymap_setup(acer_wmi_input_dev, acer_wmi_keymap, NULL); |
| 1443 | if (err) |
| 1444 | goto err_free_dev; |
| 1445 | |
| 1446 | status = wmi_install_notify_handler(ACERWMID_EVENT_GUID, |
| 1447 | acer_wmi_notify, NULL); |
| 1448 | if (ACPI_FAILURE(status)) { |
| 1449 | err = -EIO; |
| 1450 | goto err_free_keymap; |
| 1451 | } |
| 1452 | |
| 1453 | err = input_register_device(acer_wmi_input_dev); |
| 1454 | if (err) |
| 1455 | goto err_uninstall_notifier; |
| 1456 | |
| 1457 | return 0; |
| 1458 | |
| 1459 | err_uninstall_notifier: |
| 1460 | wmi_remove_notify_handler(ACERWMID_EVENT_GUID); |
| 1461 | err_free_keymap: |
| 1462 | sparse_keymap_free(acer_wmi_input_dev); |
| 1463 | err_free_dev: |
| 1464 | input_free_device(acer_wmi_input_dev); |
| 1465 | return err; |
| 1466 | } |
| 1467 | |
| 1468 | static void acer_wmi_input_destroy(void) |
| 1469 | { |
| 1470 | wmi_remove_notify_handler(ACERWMID_EVENT_GUID); |
| 1471 | sparse_keymap_free(acer_wmi_input_dev); |
| 1472 | input_unregister_device(acer_wmi_input_dev); |
| 1473 | } |
| 1474 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1475 | /* |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1476 | * debugfs functions |
| 1477 | */ |
| 1478 | static u32 get_wmid_devices(void) |
| 1479 | { |
| 1480 | struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 1481 | union acpi_object *obj; |
| 1482 | acpi_status status; |
Axel Lin | 6690486 | 2010-07-20 15:19:52 -0700 | [diff] [blame] | 1483 | u32 devices = 0; |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1484 | |
| 1485 | status = wmi_query_block(WMID_GUID2, 1, &out); |
| 1486 | if (ACPI_FAILURE(status)) |
| 1487 | return 0; |
| 1488 | |
| 1489 | obj = (union acpi_object *) out.pointer; |
| 1490 | if (obj && obj->type == ACPI_TYPE_BUFFER && |
| 1491 | obj->buffer.length == sizeof(u32)) { |
Axel Lin | 6690486 | 2010-07-20 15:19:52 -0700 | [diff] [blame] | 1492 | devices = *((u32 *) obj->buffer.pointer); |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1493 | } |
Axel Lin | 6690486 | 2010-07-20 15:19:52 -0700 | [diff] [blame] | 1494 | |
| 1495 | kfree(out.pointer); |
| 1496 | return devices; |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | /* |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1500 | * Platform device |
| 1501 | */ |
| 1502 | static int __devinit acer_platform_probe(struct platform_device *device) |
| 1503 | { |
| 1504 | int err; |
| 1505 | |
| 1506 | if (has_cap(ACER_CAP_MAILLED)) { |
| 1507 | err = acer_led_init(&device->dev); |
| 1508 | if (err) |
| 1509 | goto error_mailled; |
| 1510 | } |
| 1511 | |
| 1512 | if (has_cap(ACER_CAP_BRIGHTNESS)) { |
| 1513 | err = acer_backlight_init(&device->dev); |
| 1514 | if (err) |
| 1515 | goto error_brightness; |
| 1516 | } |
| 1517 | |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1518 | err = acer_rfkill_init(&device->dev); |
Andy Whitcroft | 350e329 | 2009-04-04 09:33:34 +0100 | [diff] [blame] | 1519 | if (err) |
| 1520 | goto error_rfkill; |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1521 | |
| 1522 | return err; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1523 | |
Andy Whitcroft | 350e329 | 2009-04-04 09:33:34 +0100 | [diff] [blame] | 1524 | error_rfkill: |
| 1525 | if (has_cap(ACER_CAP_BRIGHTNESS)) |
| 1526 | acer_backlight_exit(); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1527 | error_brightness: |
Andy Whitcroft | 350e329 | 2009-04-04 09:33:34 +0100 | [diff] [blame] | 1528 | if (has_cap(ACER_CAP_MAILLED)) |
| 1529 | acer_led_exit(); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1530 | error_mailled: |
| 1531 | return err; |
| 1532 | } |
| 1533 | |
| 1534 | static int acer_platform_remove(struct platform_device *device) |
| 1535 | { |
| 1536 | if (has_cap(ACER_CAP_MAILLED)) |
| 1537 | acer_led_exit(); |
| 1538 | if (has_cap(ACER_CAP_BRIGHTNESS)) |
| 1539 | acer_backlight_exit(); |
Carlos Corbacho | 0606e1a | 2008-10-08 21:40:21 +0100 | [diff] [blame] | 1540 | |
| 1541 | acer_rfkill_exit(); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1542 | return 0; |
| 1543 | } |
| 1544 | |
| 1545 | static int acer_platform_suspend(struct platform_device *dev, |
| 1546 | pm_message_t state) |
| 1547 | { |
| 1548 | u32 value; |
| 1549 | struct acer_data *data = &interface->data; |
| 1550 | |
| 1551 | if (!data) |
| 1552 | return -ENOMEM; |
| 1553 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1554 | if (has_cap(ACER_CAP_MAILLED)) { |
| 1555 | get_u32(&value, ACER_CAP_MAILLED); |
| 1556 | data->mailled = value; |
| 1557 | } |
| 1558 | |
| 1559 | if (has_cap(ACER_CAP_BRIGHTNESS)) { |
| 1560 | get_u32(&value, ACER_CAP_BRIGHTNESS); |
| 1561 | data->brightness = value; |
| 1562 | } |
| 1563 | |
| 1564 | return 0; |
| 1565 | } |
| 1566 | |
| 1567 | static int acer_platform_resume(struct platform_device *device) |
| 1568 | { |
| 1569 | struct acer_data *data = &interface->data; |
| 1570 | |
| 1571 | if (!data) |
| 1572 | return -ENOMEM; |
| 1573 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1574 | if (has_cap(ACER_CAP_MAILLED)) |
| 1575 | set_u32(data->mailled, ACER_CAP_MAILLED); |
| 1576 | |
| 1577 | if (has_cap(ACER_CAP_BRIGHTNESS)) |
| 1578 | set_u32(data->brightness, ACER_CAP_BRIGHTNESS); |
| 1579 | |
| 1580 | return 0; |
| 1581 | } |
| 1582 | |
| 1583 | static struct platform_driver acer_platform_driver = { |
| 1584 | .driver = { |
| 1585 | .name = "acer-wmi", |
| 1586 | .owner = THIS_MODULE, |
| 1587 | }, |
| 1588 | .probe = acer_platform_probe, |
| 1589 | .remove = acer_platform_remove, |
| 1590 | .suspend = acer_platform_suspend, |
| 1591 | .resume = acer_platform_resume, |
| 1592 | }; |
| 1593 | |
| 1594 | static struct platform_device *acer_platform_device; |
| 1595 | |
| 1596 | static int remove_sysfs(struct platform_device *device) |
| 1597 | { |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1598 | if (has_cap(ACER_CAP_THREEG)) |
| 1599 | device_remove_file(&device->dev, &dev_attr_threeg); |
| 1600 | |
| 1601 | device_remove_file(&device->dev, &dev_attr_interface); |
| 1602 | |
| 1603 | return 0; |
| 1604 | } |
| 1605 | |
| 1606 | static int create_sysfs(void) |
| 1607 | { |
| 1608 | int retval = -ENOMEM; |
| 1609 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1610 | if (has_cap(ACER_CAP_THREEG)) { |
| 1611 | retval = device_create_file(&acer_platform_device->dev, |
| 1612 | &dev_attr_threeg); |
| 1613 | if (retval) |
| 1614 | goto error_sysfs; |
| 1615 | } |
| 1616 | |
| 1617 | retval = device_create_file(&acer_platform_device->dev, |
| 1618 | &dev_attr_interface); |
| 1619 | if (retval) |
| 1620 | goto error_sysfs; |
| 1621 | |
| 1622 | return 0; |
| 1623 | |
| 1624 | error_sysfs: |
| 1625 | remove_sysfs(acer_platform_device); |
| 1626 | return retval; |
| 1627 | } |
| 1628 | |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1629 | static void remove_debugfs(void) |
| 1630 | { |
| 1631 | debugfs_remove(interface->debug.devices); |
| 1632 | debugfs_remove(interface->debug.root); |
| 1633 | } |
| 1634 | |
| 1635 | static int create_debugfs(void) |
| 1636 | { |
| 1637 | interface->debug.root = debugfs_create_dir("acer-wmi", NULL); |
| 1638 | if (!interface->debug.root) { |
| 1639 | printk(ACER_ERR "Failed to create debugfs directory"); |
| 1640 | return -ENOMEM; |
| 1641 | } |
| 1642 | |
| 1643 | interface->debug.devices = debugfs_create_u32("devices", S_IRUGO, |
| 1644 | interface->debug.root, |
| 1645 | &interface->debug.wmid_devices); |
| 1646 | if (!interface->debug.devices) |
| 1647 | goto error_debugfs; |
| 1648 | |
| 1649 | return 0; |
| 1650 | |
| 1651 | error_debugfs: |
Russ Dill | 39dbbb4 | 2008-09-02 14:35:40 -0700 | [diff] [blame] | 1652 | remove_debugfs(); |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1653 | return -ENOMEM; |
| 1654 | } |
| 1655 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1656 | static int __init acer_wmi_init(void) |
| 1657 | { |
| 1658 | int err; |
| 1659 | |
Carlos Corbacho | 860f0c6 | 2008-06-21 09:09:58 +0100 | [diff] [blame] | 1660 | printk(ACER_INFO "Acer Laptop ACPI-WMI Extras\n"); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1661 | |
Carlos Corbacho | a74dd5f | 2009-04-04 09:33:29 +0100 | [diff] [blame] | 1662 | if (dmi_check_system(acer_blacklist)) { |
| 1663 | printk(ACER_INFO "Blacklisted hardware detected - " |
| 1664 | "not loading\n"); |
| 1665 | return -ENODEV; |
| 1666 | } |
| 1667 | |
Carlos Corbacho | 9991d9f | 2008-06-21 09:09:22 +0100 | [diff] [blame] | 1668 | find_quirks(); |
| 1669 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1670 | /* |
| 1671 | * Detect which ACPI-WMI interface we're using. |
| 1672 | */ |
| 1673 | if (wmi_has_guid(AMW0_GUID1) && wmi_has_guid(WMID_GUID1)) |
| 1674 | interface = &AMW0_V2_interface; |
| 1675 | |
| 1676 | if (!wmi_has_guid(AMW0_GUID1) && wmi_has_guid(WMID_GUID1)) |
| 1677 | interface = &wmid_interface; |
| 1678 | |
| 1679 | if (wmi_has_guid(WMID_GUID2) && interface) { |
| 1680 | if (ACPI_FAILURE(WMID_set_capabilities())) { |
Carlos Corbacho | 8d039bc | 2008-03-12 20:12:50 +0000 | [diff] [blame] | 1681 | printk(ACER_ERR "Unable to detect available WMID " |
| 1682 | "devices\n"); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1683 | return -ENODEV; |
| 1684 | } |
| 1685 | } else if (!wmi_has_guid(WMID_GUID2) && interface) { |
Carlos Corbacho | 8d039bc | 2008-03-12 20:12:50 +0000 | [diff] [blame] | 1686 | printk(ACER_ERR "No WMID device detection method found\n"); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1687 | return -ENODEV; |
| 1688 | } |
| 1689 | |
| 1690 | if (wmi_has_guid(AMW0_GUID1) && !wmi_has_guid(WMID_GUID1)) { |
| 1691 | interface = &AMW0_interface; |
| 1692 | |
| 1693 | if (ACPI_FAILURE(AMW0_set_capabilities())) { |
Carlos Corbacho | 8d039bc | 2008-03-12 20:12:50 +0000 | [diff] [blame] | 1694 | printk(ACER_ERR "Unable to detect available AMW0 " |
| 1695 | "devices\n"); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1696 | return -ENODEV; |
| 1697 | } |
| 1698 | } |
| 1699 | |
Carlos Corbacho | 9b963c4 | 2008-02-24 13:34:29 +0000 | [diff] [blame] | 1700 | if (wmi_has_guid(AMW0_GUID1)) |
| 1701 | AMW0_find_mailled(); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1702 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1703 | if (!interface) { |
Pascal de Bruijn | af9902e | 2010-08-30 09:09:53 +0200 | [diff] [blame] | 1704 | printk(ACER_INFO "No or unsupported WMI interface, unable to " |
Carlos Corbacho | 8d039bc | 2008-03-12 20:12:50 +0000 | [diff] [blame] | 1705 | "load\n"); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1706 | return -ENODEV; |
| 1707 | } |
| 1708 | |
Arjan van de Ven | 83097ac | 2008-08-23 21:45:21 -0700 | [diff] [blame] | 1709 | set_quirks(); |
| 1710 | |
Michael Spang | 1ba869e | 2009-03-12 14:31:34 -0700 | [diff] [blame] | 1711 | if (acpi_video_backlight_support() && has_cap(ACER_CAP_BRIGHTNESS)) { |
Thomas Renninger | febf2d9 | 2008-08-01 17:37:56 +0200 | [diff] [blame] | 1712 | interface->capability &= ~ACER_CAP_BRIGHTNESS; |
| 1713 | printk(ACER_INFO "Brightness must be controlled by " |
| 1714 | "generic video driver\n"); |
| 1715 | } |
| 1716 | |
From: Lee, Chun-Yi | 59ccf2f | 2011-01-07 17:25:14 -0500 | [diff] [blame] | 1717 | if (wmi_has_guid(WMID_GUID3)) { |
| 1718 | if (ec_raw_mode) { |
| 1719 | if (ACPI_FAILURE(acer_wmi_enable_ec_raw())) { |
| 1720 | printk(ACER_ERR "Cannot enable EC raw mode\n"); |
| 1721 | return -ENODEV; |
| 1722 | } |
| 1723 | } else if (ACPI_FAILURE(acer_wmi_enable_lm())) { |
| 1724 | printk(ACER_ERR "Cannot enable Launch Manager mode\n"); |
| 1725 | return -ENODEV; |
| 1726 | } |
| 1727 | } else if (ec_raw_mode) { |
| 1728 | printk(ACER_INFO "No WMID EC raw mode enable method\n"); |
| 1729 | } |
| 1730 | |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 1731 | if (wmi_has_guid(ACERWMID_EVENT_GUID)) { |
| 1732 | err = acer_wmi_input_setup(); |
| 1733 | if (err) |
| 1734 | return err; |
| 1735 | } |
| 1736 | |
Axel Lin | 1c79632 | 2010-06-22 16:17:38 +0800 | [diff] [blame] | 1737 | err = platform_driver_register(&acer_platform_driver); |
| 1738 | if (err) { |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1739 | printk(ACER_ERR "Unable to register platform driver.\n"); |
| 1740 | goto error_platform_register; |
| 1741 | } |
Axel Lin | 1c79632 | 2010-06-22 16:17:38 +0800 | [diff] [blame] | 1742 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1743 | acer_platform_device = platform_device_alloc("acer-wmi", -1); |
Axel Lin | 1c79632 | 2010-06-22 16:17:38 +0800 | [diff] [blame] | 1744 | if (!acer_platform_device) { |
| 1745 | err = -ENOMEM; |
| 1746 | goto error_device_alloc; |
| 1747 | } |
| 1748 | |
| 1749 | err = platform_device_add(acer_platform_device); |
| 1750 | if (err) |
| 1751 | goto error_device_add; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1752 | |
| 1753 | err = create_sysfs(); |
| 1754 | if (err) |
Axel Lin | 1c79632 | 2010-06-22 16:17:38 +0800 | [diff] [blame] | 1755 | goto error_create_sys; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1756 | |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1757 | if (wmi_has_guid(WMID_GUID2)) { |
| 1758 | interface->debug.wmid_devices = get_wmid_devices(); |
| 1759 | err = create_debugfs(); |
| 1760 | if (err) |
Axel Lin | 1c79632 | 2010-06-22 16:17:38 +0800 | [diff] [blame] | 1761 | goto error_create_debugfs; |
Carlos Corbacho | 8114352 | 2008-06-21 09:09:53 +0100 | [diff] [blame] | 1762 | } |
| 1763 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1764 | /* Override any initial settings with values from the commandline */ |
| 1765 | acer_commandline_init(); |
| 1766 | |
| 1767 | return 0; |
| 1768 | |
Axel Lin | 1c79632 | 2010-06-22 16:17:38 +0800 | [diff] [blame] | 1769 | error_create_debugfs: |
| 1770 | remove_sysfs(acer_platform_device); |
| 1771 | error_create_sys: |
| 1772 | platform_device_del(acer_platform_device); |
| 1773 | error_device_add: |
| 1774 | platform_device_put(acer_platform_device); |
| 1775 | error_device_alloc: |
| 1776 | platform_driver_unregister(&acer_platform_driver); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1777 | error_platform_register: |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 1778 | if (wmi_has_guid(ACERWMID_EVENT_GUID)) |
| 1779 | acer_wmi_input_destroy(); |
| 1780 | |
Axel Lin | 1c79632 | 2010-06-22 16:17:38 +0800 | [diff] [blame] | 1781 | return err; |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1782 | } |
| 1783 | |
| 1784 | static void __exit acer_wmi_exit(void) |
| 1785 | { |
Lee, Chun-Yi | 3fdca87 | 2010-12-07 10:29:20 +0800 | [diff] [blame] | 1786 | if (wmi_has_guid(ACERWMID_EVENT_GUID)) |
| 1787 | acer_wmi_input_destroy(); |
| 1788 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1789 | remove_sysfs(acer_platform_device); |
Russ Dill | 39dbbb4 | 2008-09-02 14:35:40 -0700 | [diff] [blame] | 1790 | remove_debugfs(); |
Axel Lin | 97ba0af | 2010-06-03 15:18:03 +0800 | [diff] [blame] | 1791 | platform_device_unregister(acer_platform_device); |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 1792 | platform_driver_unregister(&acer_platform_driver); |
| 1793 | |
| 1794 | printk(ACER_INFO "Acer Laptop WMI Extras unloaded\n"); |
| 1795 | return; |
| 1796 | } |
| 1797 | |
| 1798 | module_init(acer_wmi_init); |
| 1799 | module_exit(acer_wmi_exit); |