Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1 | /*-*-linux-c-*-*/ |
| 2 | |
| 3 | /* |
| 4 | Copyright (C) 2006 Lennart Poettering <mzxreary (at) 0pointer (dot) de> |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2 of the License, or |
| 9 | (at your option) any later version. |
| 10 | |
| 11 | This program is distributed in the hope that it will be useful, but |
| 12 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program; if not, write to the Free Software |
| 18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 19 | 02110-1301, USA. |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * msi-laptop.c - MSI S270 laptop support. This laptop is sold under |
| 24 | * various brands, including "Cytron/TCM/Medion/Tchibo MD96100". |
| 25 | * |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 26 | * Driver also supports S271, S420 models. |
| 27 | * |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 28 | * This driver exports a few files in /sys/devices/platform/msi-laptop-pf/: |
| 29 | * |
| 30 | * lcd_level - Screen brightness: contains a single integer in the |
| 31 | * range 0..8. (rw) |
| 32 | * |
| 33 | * auto_brightness - Enable automatic brightness control: contains |
| 34 | * either 0 or 1. If set to 1 the hardware adjusts the screen |
| 35 | * brightness automatically when the power cord is |
| 36 | * plugged/unplugged. (rw) |
| 37 | * |
| 38 | * wlan - WLAN subsystem enabled: contains either 0 or 1. (ro) |
| 39 | * |
| 40 | * bluetooth - Bluetooth subsystem enabled: contains either 0 or 1 |
| 41 | * Please note that this file is constantly 0 if no Bluetooth |
| 42 | * hardware is available. (ro) |
| 43 | * |
| 44 | * In addition to these platform device attributes the driver |
| 45 | * registers itself in the Linux backlight control subsystem and is |
| 46 | * available to userspace under /sys/class/backlight/msi-laptop-bl/. |
| 47 | * |
| 48 | * This driver might work on other laptops produced by MSI. If you |
| 49 | * want to try it you can pass force=1 as argument to the module which |
| 50 | * will force it to load even when the DMI data doesn't identify the |
| 51 | * laptop as MSI S270. YMMV. |
| 52 | */ |
| 53 | |
Joey Lee | bbe24fe | 2011-03-16 01:55:19 -0600 | [diff] [blame] | 54 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 55 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 56 | #include <linux/module.h> |
| 57 | #include <linux/kernel.h> |
| 58 | #include <linux/init.h> |
| 59 | #include <linux/acpi.h> |
| 60 | #include <linux/dmi.h> |
| 61 | #include <linux/backlight.h> |
| 62 | #include <linux/platform_device.h> |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 63 | #include <linux/rfkill.h> |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 64 | #include <linux/i8042.h> |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 65 | #include <linux/input.h> |
| 66 | #include <linux/input/sparse-keymap.h> |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 67 | |
| 68 | #define MSI_DRIVER_VERSION "0.5" |
| 69 | |
| 70 | #define MSI_LCD_LEVEL_MAX 9 |
| 71 | |
| 72 | #define MSI_EC_COMMAND_WIRELESS 0x10 |
| 73 | #define MSI_EC_COMMAND_LCD_LEVEL 0x11 |
| 74 | |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 75 | #define MSI_STANDARD_EC_COMMAND_ADDRESS 0x2e |
| 76 | #define MSI_STANDARD_EC_BLUETOOTH_MASK (1 << 0) |
| 77 | #define MSI_STANDARD_EC_WEBCAM_MASK (1 << 1) |
| 78 | #define MSI_STANDARD_EC_WLAN_MASK (1 << 3) |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 79 | #define MSI_STANDARD_EC_3G_MASK (1 << 4) |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 80 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 81 | /* For set SCM load flag to disable BIOS fn key */ |
| 82 | #define MSI_STANDARD_EC_SCM_LOAD_ADDRESS 0x2d |
| 83 | #define MSI_STANDARD_EC_SCM_LOAD_MASK (1 << 0) |
| 84 | |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 85 | #define MSI_STANDARD_EC_FUNCTIONS_ADDRESS 0xe4 |
| 86 | /* Power LED is orange - Turbo mode */ |
| 87 | #define MSI_STANDARD_EC_TURBO_MASK (1 << 1) |
| 88 | /* Power LED is green - ECO mode */ |
| 89 | #define MSI_STANDARD_EC_ECO_MASK (1 << 3) |
| 90 | /* Touchpad is turned on */ |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 91 | #define MSI_STANDARD_EC_TOUCHPAD_MASK (1 << 4) |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 92 | /* If this bit != bit 1, turbo mode can't be toggled */ |
| 93 | #define MSI_STANDARD_EC_TURBO_COOLDOWN_MASK (1 << 7) |
| 94 | |
| 95 | #define MSI_STANDARD_EC_FAN_ADDRESS 0x33 |
| 96 | /* If zero, fan rotates at maximal speed */ |
| 97 | #define MSI_STANDARD_EC_AUTOFAN_MASK (1 << 0) |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 98 | |
Rafael J. Wysocki | 3567a4e2 | 2012-08-09 23:00:13 +0200 | [diff] [blame] | 99 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | 9033132 | 2012-07-06 19:06:19 +0200 | [diff] [blame] | 100 | static int msi_laptop_resume(struct device *device); |
Rafael J. Wysocki | 3567a4e2 | 2012-08-09 23:00:13 +0200 | [diff] [blame] | 101 | #endif |
Rafael J. Wysocki | 9033132 | 2012-07-06 19:06:19 +0200 | [diff] [blame] | 102 | static SIMPLE_DEV_PM_OPS(msi_laptop_pm, NULL, msi_laptop_resume); |
Lee, Chun-Yi | ec76627 | 2010-01-27 00:13:45 +0800 | [diff] [blame] | 103 | |
Lee, Chun-Yi | e22388e | 2010-01-27 12:23:00 +0800 | [diff] [blame] | 104 | #define MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS 0x2f |
| 105 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 106 | static bool force; |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 107 | module_param(force, bool, 0); |
| 108 | MODULE_PARM_DESC(force, "Force driver load, ignore DMI data"); |
| 109 | |
| 110 | static int auto_brightness; |
| 111 | module_param(auto_brightness, int, 0); |
| 112 | MODULE_PARM_DESC(auto_brightness, "Enable automatic brightness control (0: disabled; 1: enabled; 2: don't touch)"); |
| 113 | |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 114 | static const struct key_entry msi_laptop_keymap[] = { |
| 115 | {KE_KEY, KEY_TOUCHPAD_ON, {KEY_TOUCHPAD_ON} }, /* Touch Pad On */ |
| 116 | {KE_KEY, KEY_TOUCHPAD_OFF, {KEY_TOUCHPAD_OFF} },/* Touch Pad On */ |
| 117 | {KE_END, 0} |
| 118 | }; |
| 119 | |
| 120 | static struct input_dev *msi_laptop_input_dev; |
| 121 | |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 122 | static int wlan_s, bluetooth_s, threeg_s; |
Lee, Chun-Yi | e22388e | 2010-01-27 12:23:00 +0800 | [diff] [blame] | 123 | static int threeg_exists; |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 124 | static struct rfkill *rfk_wlan, *rfk_bluetooth, *rfk_threeg; |
| 125 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 126 | /* MSI laptop quirks */ |
| 127 | struct quirk_entry { |
| 128 | bool old_ec_model; |
| 129 | |
| 130 | /* Some MSI 3G netbook only have one fn key to control |
| 131 | * Wlan/Bluetooth/3G, those netbook will load the SCM (windows app) to |
| 132 | * disable the original Wlan/Bluetooth control by BIOS when user press |
| 133 | * fn key, then control Wlan/Bluetooth/3G by SCM (software control by |
| 134 | * OS). Without SCM, user cann't on/off 3G module on those 3G netbook. |
| 135 | * On Linux, msi-laptop driver will do the same thing to disable the |
| 136 | * original BIOS control, then might need use HAL or other userland |
| 137 | * application to do the software control that simulate with SCM. |
| 138 | * e.g. MSI N034 netbook |
| 139 | */ |
| 140 | bool load_scm_model; |
| 141 | |
| 142 | /* Some MSI laptops need delay before reading from EC */ |
| 143 | bool ec_delay; |
| 144 | |
| 145 | /* Some MSI Wind netbooks (e.g. MSI Wind U100) need loading SCM to get |
| 146 | * some features working (e.g. ECO mode), but we cannot change |
| 147 | * Wlan/Bluetooth state in software and we can only read its state. |
| 148 | */ |
| 149 | bool ec_read_only; |
| 150 | }; |
| 151 | |
| 152 | static struct quirk_entry *quirks; |
| 153 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 154 | /* Hardware access */ |
| 155 | |
| 156 | static int set_lcd_level(int level) |
| 157 | { |
| 158 | u8 buf[2]; |
| 159 | |
| 160 | if (level < 0 || level >= MSI_LCD_LEVEL_MAX) |
| 161 | return -EINVAL; |
| 162 | |
| 163 | buf[0] = 0x80; |
| 164 | buf[1] = (u8) (level*31); |
| 165 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 166 | return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, buf, sizeof(buf), |
Thomas Renninger | 1cb7b1e | 2011-03-31 13:36:38 +0200 | [diff] [blame] | 167 | NULL, 0); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static int get_lcd_level(void) |
| 171 | { |
| 172 | u8 wdata = 0, rdata; |
| 173 | int result; |
| 174 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 175 | result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1, |
Thomas Renninger | 1cb7b1e | 2011-03-31 13:36:38 +0200 | [diff] [blame] | 176 | &rdata, 1); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 177 | if (result < 0) |
| 178 | return result; |
| 179 | |
| 180 | return (int) rdata / 31; |
| 181 | } |
| 182 | |
| 183 | static int get_auto_brightness(void) |
| 184 | { |
| 185 | u8 wdata = 4, rdata; |
| 186 | int result; |
| 187 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 188 | result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, &wdata, 1, |
Thomas Renninger | 1cb7b1e | 2011-03-31 13:36:38 +0200 | [diff] [blame] | 189 | &rdata, 1); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 190 | if (result < 0) |
| 191 | return result; |
| 192 | |
| 193 | return !!(rdata & 8); |
| 194 | } |
| 195 | |
| 196 | static int set_auto_brightness(int enable) |
| 197 | { |
| 198 | u8 wdata[2], rdata; |
| 199 | int result; |
| 200 | |
| 201 | wdata[0] = 4; |
| 202 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 203 | result = ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 1, |
Thomas Renninger | 1cb7b1e | 2011-03-31 13:36:38 +0200 | [diff] [blame] | 204 | &rdata, 1); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 205 | if (result < 0) |
| 206 | return result; |
| 207 | |
| 208 | wdata[0] = 0x84; |
| 209 | wdata[1] = (rdata & 0xF7) | (enable ? 8 : 0); |
| 210 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 211 | return ec_transaction(MSI_EC_COMMAND_LCD_LEVEL, wdata, 2, |
Thomas Renninger | 1cb7b1e | 2011-03-31 13:36:38 +0200 | [diff] [blame] | 212 | NULL, 0); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 213 | } |
| 214 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 215 | static ssize_t set_device_state(const char *buf, size_t count, u8 mask) |
| 216 | { |
| 217 | int status; |
| 218 | u8 wdata = 0, rdata; |
| 219 | int result; |
| 220 | |
| 221 | if (sscanf(buf, "%i", &status) != 1 || (status < 0 || status > 1)) |
| 222 | return -EINVAL; |
| 223 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 224 | if (quirks->ec_read_only) |
| 225 | return -EOPNOTSUPP; |
| 226 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 227 | /* read current device state */ |
| 228 | result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata); |
| 229 | if (result < 0) |
Maxim Mikityanskiy | 27eb9e7 | 2012-12-15 19:31:25 +0200 | [diff] [blame] | 230 | return result; |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 231 | |
| 232 | if (!!(rdata & mask) != status) { |
| 233 | /* reverse device bit */ |
| 234 | if (rdata & mask) |
| 235 | wdata = rdata & ~mask; |
| 236 | else |
| 237 | wdata = rdata | mask; |
| 238 | |
| 239 | result = ec_write(MSI_STANDARD_EC_COMMAND_ADDRESS, wdata); |
| 240 | if (result < 0) |
Maxim Mikityanskiy | 27eb9e7 | 2012-12-15 19:31:25 +0200 | [diff] [blame] | 241 | return result; |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | return count; |
| 245 | } |
| 246 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 247 | static int get_wireless_state(int *wlan, int *bluetooth) |
| 248 | { |
| 249 | u8 wdata = 0, rdata; |
| 250 | int result; |
| 251 | |
Thomas Renninger | 1cb7b1e | 2011-03-31 13:36:38 +0200 | [diff] [blame] | 252 | result = ec_transaction(MSI_EC_COMMAND_WIRELESS, &wdata, 1, &rdata, 1); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 253 | if (result < 0) |
Maxim Mikityanskiy | 27eb9e7 | 2012-12-15 19:31:25 +0200 | [diff] [blame] | 254 | return result; |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 255 | |
| 256 | if (wlan) |
| 257 | *wlan = !!(rdata & 8); |
| 258 | |
| 259 | if (bluetooth) |
| 260 | *bluetooth = !!(rdata & 128); |
| 261 | |
| 262 | return 0; |
| 263 | } |
| 264 | |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 265 | static int get_wireless_state_ec_standard(void) |
| 266 | { |
| 267 | u8 rdata; |
| 268 | int result; |
| 269 | |
| 270 | result = ec_read(MSI_STANDARD_EC_COMMAND_ADDRESS, &rdata); |
| 271 | if (result < 0) |
Maxim Mikityanskiy | 27eb9e7 | 2012-12-15 19:31:25 +0200 | [diff] [blame] | 272 | return result; |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 273 | |
| 274 | wlan_s = !!(rdata & MSI_STANDARD_EC_WLAN_MASK); |
| 275 | |
| 276 | bluetooth_s = !!(rdata & MSI_STANDARD_EC_BLUETOOTH_MASK); |
| 277 | |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 278 | threeg_s = !!(rdata & MSI_STANDARD_EC_3G_MASK); |
| 279 | |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 280 | return 0; |
| 281 | } |
| 282 | |
Lee, Chun-Yi | e22388e | 2010-01-27 12:23:00 +0800 | [diff] [blame] | 283 | static int get_threeg_exists(void) |
| 284 | { |
| 285 | u8 rdata; |
| 286 | int result; |
| 287 | |
| 288 | result = ec_read(MSI_STANDARD_EC_DEVICES_EXISTS_ADDRESS, &rdata); |
| 289 | if (result < 0) |
Maxim Mikityanskiy | 27eb9e7 | 2012-12-15 19:31:25 +0200 | [diff] [blame] | 290 | return result; |
Lee, Chun-Yi | e22388e | 2010-01-27 12:23:00 +0800 | [diff] [blame] | 291 | |
| 292 | threeg_exists = !!(rdata & MSI_STANDARD_EC_3G_MASK); |
| 293 | |
| 294 | return 0; |
| 295 | } |
| 296 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 297 | /* Backlight device stuff */ |
| 298 | |
| 299 | static int bl_get_brightness(struct backlight_device *b) |
| 300 | { |
| 301 | return get_lcd_level(); |
| 302 | } |
| 303 | |
| 304 | |
| 305 | static int bl_update_status(struct backlight_device *b) |
| 306 | { |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 307 | return set_lcd_level(b->props.brightness); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 308 | } |
| 309 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 310 | static const struct backlight_ops msibl_ops = { |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 311 | .get_brightness = bl_get_brightness, |
| 312 | .update_status = bl_update_status, |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 313 | }; |
| 314 | |
| 315 | static struct backlight_device *msibl_device; |
| 316 | |
| 317 | /* Platform device */ |
| 318 | |
| 319 | static ssize_t show_wlan(struct device *dev, |
| 320 | struct device_attribute *attr, char *buf) |
| 321 | { |
| 322 | |
Maxim Mikityanskiy | 1b6517a | 2012-12-15 19:31:26 +0200 | [diff] [blame] | 323 | int ret, enabled = 0; |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 324 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 325 | if (quirks->old_ec_model) { |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 326 | ret = get_wireless_state(&enabled, NULL); |
| 327 | } else { |
| 328 | ret = get_wireless_state_ec_standard(); |
| 329 | enabled = wlan_s; |
| 330 | } |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 331 | if (ret < 0) |
| 332 | return ret; |
| 333 | |
| 334 | return sprintf(buf, "%i\n", enabled); |
| 335 | } |
| 336 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 337 | static ssize_t store_wlan(struct device *dev, |
| 338 | struct device_attribute *attr, const char *buf, size_t count) |
| 339 | { |
| 340 | return set_device_state(buf, count, MSI_STANDARD_EC_WLAN_MASK); |
| 341 | } |
| 342 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 343 | static ssize_t show_bluetooth(struct device *dev, |
| 344 | struct device_attribute *attr, char *buf) |
| 345 | { |
| 346 | |
Maxim Mikityanskiy | 1b6517a | 2012-12-15 19:31:26 +0200 | [diff] [blame] | 347 | int ret, enabled = 0; |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 348 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 349 | if (quirks->old_ec_model) { |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 350 | ret = get_wireless_state(NULL, &enabled); |
| 351 | } else { |
| 352 | ret = get_wireless_state_ec_standard(); |
| 353 | enabled = bluetooth_s; |
| 354 | } |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 355 | if (ret < 0) |
| 356 | return ret; |
| 357 | |
| 358 | return sprintf(buf, "%i\n", enabled); |
| 359 | } |
| 360 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 361 | static ssize_t store_bluetooth(struct device *dev, |
| 362 | struct device_attribute *attr, const char *buf, size_t count) |
| 363 | { |
| 364 | return set_device_state(buf, count, MSI_STANDARD_EC_BLUETOOTH_MASK); |
| 365 | } |
| 366 | |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 367 | static ssize_t show_threeg(struct device *dev, |
| 368 | struct device_attribute *attr, char *buf) |
| 369 | { |
| 370 | |
| 371 | int ret; |
| 372 | |
| 373 | /* old msi ec not support 3G */ |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 374 | if (quirks->old_ec_model) |
Maxim Mikityanskiy | 27eb9e7 | 2012-12-15 19:31:25 +0200 | [diff] [blame] | 375 | return -ENODEV; |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 376 | |
| 377 | ret = get_wireless_state_ec_standard(); |
| 378 | if (ret < 0) |
| 379 | return ret; |
| 380 | |
| 381 | return sprintf(buf, "%i\n", threeg_s); |
| 382 | } |
| 383 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 384 | static ssize_t store_threeg(struct device *dev, |
| 385 | struct device_attribute *attr, const char *buf, size_t count) |
| 386 | { |
| 387 | return set_device_state(buf, count, MSI_STANDARD_EC_3G_MASK); |
| 388 | } |
| 389 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 390 | static ssize_t show_lcd_level(struct device *dev, |
| 391 | struct device_attribute *attr, char *buf) |
| 392 | { |
| 393 | |
| 394 | int ret; |
| 395 | |
| 396 | ret = get_lcd_level(); |
| 397 | if (ret < 0) |
| 398 | return ret; |
| 399 | |
| 400 | return sprintf(buf, "%i\n", ret); |
| 401 | } |
| 402 | |
| 403 | static ssize_t store_lcd_level(struct device *dev, |
| 404 | struct device_attribute *attr, const char *buf, size_t count) |
| 405 | { |
| 406 | |
| 407 | int level, ret; |
| 408 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 409 | if (sscanf(buf, "%i", &level) != 1 || |
| 410 | (level < 0 || level >= MSI_LCD_LEVEL_MAX)) |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 411 | return -EINVAL; |
| 412 | |
| 413 | ret = set_lcd_level(level); |
| 414 | if (ret < 0) |
| 415 | return ret; |
| 416 | |
| 417 | return count; |
| 418 | } |
| 419 | |
| 420 | static ssize_t show_auto_brightness(struct device *dev, |
| 421 | struct device_attribute *attr, char *buf) |
| 422 | { |
| 423 | |
| 424 | int ret; |
| 425 | |
| 426 | ret = get_auto_brightness(); |
| 427 | if (ret < 0) |
| 428 | return ret; |
| 429 | |
| 430 | return sprintf(buf, "%i\n", ret); |
| 431 | } |
| 432 | |
| 433 | static ssize_t store_auto_brightness(struct device *dev, |
| 434 | struct device_attribute *attr, const char *buf, size_t count) |
| 435 | { |
| 436 | |
| 437 | int enable, ret; |
| 438 | |
| 439 | if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1))) |
| 440 | return -EINVAL; |
| 441 | |
| 442 | ret = set_auto_brightness(enable); |
| 443 | if (ret < 0) |
| 444 | return ret; |
| 445 | |
| 446 | return count; |
| 447 | } |
| 448 | |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 449 | static ssize_t show_touchpad(struct device *dev, |
| 450 | struct device_attribute *attr, char *buf) |
| 451 | { |
| 452 | |
| 453 | u8 rdata; |
| 454 | int result; |
| 455 | |
| 456 | result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata); |
| 457 | if (result < 0) |
| 458 | return result; |
| 459 | |
| 460 | return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_TOUCHPAD_MASK)); |
| 461 | } |
| 462 | |
| 463 | static ssize_t show_turbo(struct device *dev, |
| 464 | struct device_attribute *attr, char *buf) |
| 465 | { |
| 466 | |
| 467 | u8 rdata; |
| 468 | int result; |
| 469 | |
| 470 | result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata); |
| 471 | if (result < 0) |
| 472 | return result; |
| 473 | |
| 474 | return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_TURBO_MASK)); |
| 475 | } |
| 476 | |
| 477 | static ssize_t show_eco(struct device *dev, |
| 478 | struct device_attribute *attr, char *buf) |
| 479 | { |
| 480 | |
| 481 | u8 rdata; |
| 482 | int result; |
| 483 | |
| 484 | result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata); |
| 485 | if (result < 0) |
| 486 | return result; |
| 487 | |
| 488 | return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_ECO_MASK)); |
| 489 | } |
| 490 | |
| 491 | static ssize_t show_turbo_cooldown(struct device *dev, |
| 492 | struct device_attribute *attr, char *buf) |
| 493 | { |
| 494 | |
| 495 | u8 rdata; |
| 496 | int result; |
| 497 | |
| 498 | result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata); |
| 499 | if (result < 0) |
| 500 | return result; |
| 501 | |
| 502 | return sprintf(buf, "%i\n", (!!(rdata & MSI_STANDARD_EC_TURBO_MASK)) | |
| 503 | (!!(rdata & MSI_STANDARD_EC_TURBO_COOLDOWN_MASK) << 1)); |
| 504 | } |
| 505 | |
| 506 | static ssize_t show_auto_fan(struct device *dev, |
| 507 | struct device_attribute *attr, char *buf) |
| 508 | { |
| 509 | |
| 510 | u8 rdata; |
| 511 | int result; |
| 512 | |
| 513 | result = ec_read(MSI_STANDARD_EC_FAN_ADDRESS, &rdata); |
| 514 | if (result < 0) |
| 515 | return result; |
| 516 | |
| 517 | return sprintf(buf, "%i\n", !!(rdata & MSI_STANDARD_EC_AUTOFAN_MASK)); |
| 518 | } |
| 519 | |
| 520 | static ssize_t store_auto_fan(struct device *dev, |
| 521 | struct device_attribute *attr, const char *buf, size_t count) |
| 522 | { |
| 523 | |
| 524 | int enable, result; |
| 525 | |
| 526 | if (sscanf(buf, "%i", &enable) != 1 || (enable != (enable & 1))) |
| 527 | return -EINVAL; |
| 528 | |
| 529 | result = ec_write(MSI_STANDARD_EC_FAN_ADDRESS, enable); |
| 530 | if (result < 0) |
| 531 | return result; |
| 532 | |
| 533 | return count; |
| 534 | } |
| 535 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 536 | static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level); |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 537 | static DEVICE_ATTR(auto_brightness, 0644, show_auto_brightness, |
| 538 | store_auto_brightness); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 539 | static DEVICE_ATTR(bluetooth, 0444, show_bluetooth, NULL); |
| 540 | static DEVICE_ATTR(wlan, 0444, show_wlan, NULL); |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 541 | static DEVICE_ATTR(threeg, 0444, show_threeg, NULL); |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 542 | static DEVICE_ATTR(touchpad, 0444, show_touchpad, NULL); |
| 543 | static DEVICE_ATTR(turbo_mode, 0444, show_turbo, NULL); |
| 544 | static DEVICE_ATTR(eco_mode, 0444, show_eco, NULL); |
| 545 | static DEVICE_ATTR(turbo_cooldown, 0444, show_turbo_cooldown, NULL); |
| 546 | static DEVICE_ATTR(auto_fan, 0644, show_auto_fan, store_auto_fan); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 547 | |
| 548 | static struct attribute *msipf_attributes[] = { |
| 549 | &dev_attr_lcd_level.attr, |
| 550 | &dev_attr_auto_brightness.attr, |
| 551 | &dev_attr_bluetooth.attr, |
| 552 | &dev_attr_wlan.attr, |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 553 | &dev_attr_touchpad.attr, |
| 554 | &dev_attr_turbo_mode.attr, |
| 555 | &dev_attr_eco_mode.attr, |
| 556 | &dev_attr_turbo_cooldown.attr, |
| 557 | &dev_attr_auto_fan.attr, |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 558 | NULL |
| 559 | }; |
| 560 | |
| 561 | static struct attribute_group msipf_attribute_group = { |
| 562 | .attrs = msipf_attributes |
| 563 | }; |
| 564 | |
| 565 | static struct platform_driver msipf_driver = { |
| 566 | .driver = { |
| 567 | .name = "msi-laptop-pf", |
| 568 | .owner = THIS_MODULE, |
Rafael J. Wysocki | 9033132 | 2012-07-06 19:06:19 +0200 | [diff] [blame] | 569 | .pm = &msi_laptop_pm, |
Lee, Chun-Yi | ec76627 | 2010-01-27 00:13:45 +0800 | [diff] [blame] | 570 | }, |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 571 | }; |
| 572 | |
| 573 | static struct platform_device *msipf_device; |
| 574 | |
| 575 | /* Initialization */ |
| 576 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 577 | static struct quirk_entry quirk_old_ec_model = { |
| 578 | .old_ec_model = true, |
| 579 | }; |
| 580 | |
| 581 | static struct quirk_entry quirk_load_scm_model = { |
| 582 | .load_scm_model = true, |
| 583 | .ec_delay = true, |
| 584 | }; |
| 585 | |
| 586 | static struct quirk_entry quirk_load_scm_ro_model = { |
| 587 | .load_scm_model = true, |
| 588 | .ec_read_only = true, |
| 589 | }; |
| 590 | |
| 591 | static int dmi_check_cb(const struct dmi_system_id *dmi) |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 592 | { |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 593 | pr_info("Identified laptop model '%s'\n", dmi->ident); |
| 594 | |
| 595 | quirks = dmi->driver_data; |
| 596 | |
Axel Lin | 80183a4 | 2010-07-20 15:19:40 -0700 | [diff] [blame] | 597 | return 1; |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 598 | } |
| 599 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 600 | static struct dmi_system_id __initdata msi_dmi_table[] = { |
| 601 | { |
| 602 | .ident = "MSI S270", |
| 603 | .matches = { |
| 604 | DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT'L CO.,LTD"), |
| 605 | DMI_MATCH(DMI_PRODUCT_NAME, "MS-1013"), |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 606 | DMI_MATCH(DMI_PRODUCT_VERSION, "0131"), |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 607 | DMI_MATCH(DMI_CHASSIS_VENDOR, |
| 608 | "MICRO-STAR INT'L CO.,LTD") |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 609 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 610 | .driver_data = &quirk_old_ec_model, |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 611 | .callback = dmi_check_cb |
| 612 | }, |
| 613 | { |
| 614 | .ident = "MSI S271", |
| 615 | .matches = { |
| 616 | DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"), |
| 617 | DMI_MATCH(DMI_PRODUCT_NAME, "MS-1058"), |
| 618 | DMI_MATCH(DMI_PRODUCT_VERSION, "0581"), |
| 619 | DMI_MATCH(DMI_BOARD_NAME, "MS-1058") |
| 620 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 621 | .driver_data = &quirk_old_ec_model, |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 622 | .callback = dmi_check_cb |
| 623 | }, |
| 624 | { |
| 625 | .ident = "MSI S420", |
| 626 | .matches = { |
| 627 | DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"), |
| 628 | DMI_MATCH(DMI_PRODUCT_NAME, "MS-1412"), |
| 629 | DMI_MATCH(DMI_BOARD_VENDOR, "MSI"), |
| 630 | DMI_MATCH(DMI_BOARD_NAME, "MS-1412") |
| 631 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 632 | .driver_data = &quirk_old_ec_model, |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 633 | .callback = dmi_check_cb |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 634 | }, |
| 635 | { |
| 636 | .ident = "Medion MD96100", |
| 637 | .matches = { |
| 638 | DMI_MATCH(DMI_SYS_VENDOR, "NOTEBOOK"), |
| 639 | DMI_MATCH(DMI_PRODUCT_NAME, "SAM2000"), |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 640 | DMI_MATCH(DMI_PRODUCT_VERSION, "0131"), |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 641 | DMI_MATCH(DMI_CHASSIS_VENDOR, |
| 642 | "MICRO-STAR INT'L CO.,LTD") |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 643 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 644 | .driver_data = &quirk_old_ec_model, |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 645 | .callback = dmi_check_cb |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 646 | }, |
Lee, Chun-Yi | 785cfc0 | 2010-05-19 20:03:05 +0800 | [diff] [blame] | 647 | { |
| 648 | .ident = "MSI N034", |
| 649 | .matches = { |
| 650 | DMI_MATCH(DMI_SYS_VENDOR, |
| 651 | "MICRO-STAR INTERNATIONAL CO., LTD"), |
| 652 | DMI_MATCH(DMI_PRODUCT_NAME, "MS-N034"), |
| 653 | DMI_MATCH(DMI_CHASSIS_VENDOR, |
| 654 | "MICRO-STAR INTERNATIONAL CO., LTD") |
| 655 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 656 | .driver_data = &quirk_load_scm_model, |
Lee, Chun-Yi | 785cfc0 | 2010-05-19 20:03:05 +0800 | [diff] [blame] | 657 | .callback = dmi_check_cb |
| 658 | }, |
Lee, Chun-Yi | d0a4aa2 | 2010-05-12 09:58:07 -0700 | [diff] [blame] | 659 | { |
| 660 | .ident = "MSI N051", |
| 661 | .matches = { |
| 662 | DMI_MATCH(DMI_SYS_VENDOR, |
| 663 | "MICRO-STAR INTERNATIONAL CO., LTD"), |
| 664 | DMI_MATCH(DMI_PRODUCT_NAME, "MS-N051"), |
| 665 | DMI_MATCH(DMI_CHASSIS_VENDOR, |
| 666 | "MICRO-STAR INTERNATIONAL CO., LTD") |
| 667 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 668 | .driver_data = &quirk_load_scm_model, |
Lee, Chun-Yi | d0a4aa2 | 2010-05-12 09:58:07 -0700 | [diff] [blame] | 669 | .callback = dmi_check_cb |
| 670 | }, |
| 671 | { |
| 672 | .ident = "MSI N014", |
| 673 | .matches = { |
| 674 | DMI_MATCH(DMI_SYS_VENDOR, |
| 675 | "MICRO-STAR INTERNATIONAL CO., LTD"), |
| 676 | DMI_MATCH(DMI_PRODUCT_NAME, "MS-N014"), |
| 677 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 678 | .driver_data = &quirk_load_scm_model, |
Lee, Chun-Yi | d0a4aa2 | 2010-05-12 09:58:07 -0700 | [diff] [blame] | 679 | .callback = dmi_check_cb |
| 680 | }, |
Lee, Chun-Yi | 1f27e17 | 2010-05-12 09:58:08 -0700 | [diff] [blame] | 681 | { |
| 682 | .ident = "MSI CR620", |
| 683 | .matches = { |
| 684 | DMI_MATCH(DMI_SYS_VENDOR, |
| 685 | "Micro-Star International"), |
| 686 | DMI_MATCH(DMI_PRODUCT_NAME, "CR620"), |
| 687 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 688 | .driver_data = &quirk_load_scm_model, |
Lee, Chun-Yi | 1f27e17 | 2010-05-12 09:58:08 -0700 | [diff] [blame] | 689 | .callback = dmi_check_cb |
| 690 | }, |
Lee, Chun-Yi | 3880314 | 2011-06-10 15:24:26 +0800 | [diff] [blame] | 691 | { |
| 692 | .ident = "MSI U270", |
| 693 | .matches = { |
| 694 | DMI_MATCH(DMI_SYS_VENDOR, |
| 695 | "Micro-Star International Co., Ltd."), |
| 696 | DMI_MATCH(DMI_PRODUCT_NAME, "U270 series"), |
| 697 | }, |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 698 | .driver_data = &quirk_load_scm_model, |
Lee, Chun-Yi | 3880314 | 2011-06-10 15:24:26 +0800 | [diff] [blame] | 699 | .callback = dmi_check_cb |
| 700 | }, |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 701 | { |
| 702 | .ident = "MSI U90/U100", |
| 703 | .matches = { |
| 704 | DMI_MATCH(DMI_SYS_VENDOR, |
| 705 | "MICRO-STAR INTERNATIONAL CO., LTD"), |
| 706 | DMI_MATCH(DMI_PRODUCT_NAME, "U90/U100"), |
| 707 | }, |
| 708 | .driver_data = &quirk_load_scm_ro_model, |
| 709 | .callback = dmi_check_cb |
| 710 | }, |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 711 | { } |
| 712 | }; |
| 713 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 714 | static int rfkill_bluetooth_set(void *data, bool blocked) |
| 715 | { |
| 716 | /* Do something with blocked...*/ |
| 717 | /* |
| 718 | * blocked == false is on |
| 719 | * blocked == true is off |
| 720 | */ |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 721 | int result = set_device_state(blocked ? "0" : "1", 0, |
| 722 | MSI_STANDARD_EC_BLUETOOTH_MASK); |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 723 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 724 | return min(result, 0); |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | static int rfkill_wlan_set(void *data, bool blocked) |
| 728 | { |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 729 | int result = set_device_state(blocked ? "0" : "1", 0, |
| 730 | MSI_STANDARD_EC_WLAN_MASK); |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 731 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 732 | return min(result, 0); |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | static int rfkill_threeg_set(void *data, bool blocked) |
| 736 | { |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 737 | int result = set_device_state(blocked ? "0" : "1", 0, |
| 738 | MSI_STANDARD_EC_3G_MASK); |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 739 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 740 | return min(result, 0); |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 741 | } |
| 742 | |
Axel Lin | e38f052 | 2010-07-20 15:19:46 -0700 | [diff] [blame] | 743 | static const struct rfkill_ops rfkill_bluetooth_ops = { |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 744 | .set_block = rfkill_bluetooth_set |
| 745 | }; |
| 746 | |
Axel Lin | e38f052 | 2010-07-20 15:19:46 -0700 | [diff] [blame] | 747 | static const struct rfkill_ops rfkill_wlan_ops = { |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 748 | .set_block = rfkill_wlan_set |
| 749 | }; |
| 750 | |
Axel Lin | e38f052 | 2010-07-20 15:19:46 -0700 | [diff] [blame] | 751 | static const struct rfkill_ops rfkill_threeg_ops = { |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 752 | .set_block = rfkill_threeg_set |
| 753 | }; |
| 754 | |
| 755 | static void rfkill_cleanup(void) |
| 756 | { |
| 757 | if (rfk_bluetooth) { |
| 758 | rfkill_unregister(rfk_bluetooth); |
| 759 | rfkill_destroy(rfk_bluetooth); |
| 760 | } |
| 761 | |
| 762 | if (rfk_threeg) { |
| 763 | rfkill_unregister(rfk_threeg); |
| 764 | rfkill_destroy(rfk_threeg); |
| 765 | } |
| 766 | |
| 767 | if (rfk_wlan) { |
| 768 | rfkill_unregister(rfk_wlan); |
| 769 | rfkill_destroy(rfk_wlan); |
| 770 | } |
| 771 | } |
| 772 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 773 | static bool msi_rfkill_set_state(struct rfkill *rfkill, bool blocked) |
| 774 | { |
| 775 | if (quirks->ec_read_only) |
| 776 | return rfkill_set_hw_state(rfkill, blocked); |
| 777 | else |
| 778 | return rfkill_set_sw_state(rfkill, blocked); |
| 779 | } |
| 780 | |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 781 | static void msi_update_rfkill(struct work_struct *ignored) |
| 782 | { |
| 783 | get_wireless_state_ec_standard(); |
| 784 | |
| 785 | if (rfk_wlan) |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 786 | msi_rfkill_set_state(rfk_wlan, !wlan_s); |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 787 | if (rfk_bluetooth) |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 788 | msi_rfkill_set_state(rfk_bluetooth, !bluetooth_s); |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 789 | if (rfk_threeg) |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 790 | msi_rfkill_set_state(rfk_threeg, !threeg_s); |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 791 | } |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 792 | static DECLARE_DELAYED_WORK(msi_rfkill_dwork, msi_update_rfkill); |
| 793 | static DECLARE_WORK(msi_rfkill_work, msi_update_rfkill); |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 794 | |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 795 | static void msi_send_touchpad_key(struct work_struct *ignored) |
| 796 | { |
| 797 | u8 rdata; |
| 798 | int result; |
| 799 | |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 800 | result = ec_read(MSI_STANDARD_EC_FUNCTIONS_ADDRESS, &rdata); |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 801 | if (result < 0) |
| 802 | return; |
| 803 | |
| 804 | sparse_keymap_report_event(msi_laptop_input_dev, |
| 805 | (rdata & MSI_STANDARD_EC_TOUCHPAD_MASK) ? |
| 806 | KEY_TOUCHPAD_ON : KEY_TOUCHPAD_OFF, 1, true); |
| 807 | } |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 808 | static DECLARE_DELAYED_WORK(msi_touchpad_dwork, msi_send_touchpad_key); |
| 809 | static DECLARE_WORK(msi_touchpad_work, msi_send_touchpad_key); |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 810 | |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 811 | static bool msi_laptop_i8042_filter(unsigned char data, unsigned char str, |
| 812 | struct serio *port) |
| 813 | { |
| 814 | static bool extended; |
| 815 | |
| 816 | if (str & 0x20) |
| 817 | return false; |
| 818 | |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 819 | /* 0x54 wwan, 0x62 bluetooth, 0x76 wlan, 0xE4 touchpad toggle*/ |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 820 | if (unlikely(data == 0xe0)) { |
| 821 | extended = true; |
| 822 | return false; |
| 823 | } else if (unlikely(extended)) { |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 824 | extended = false; |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 825 | switch (data) { |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 826 | case 0xE4: |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 827 | if (quirks->ec_delay) { |
| 828 | schedule_delayed_work(&msi_touchpad_dwork, |
| 829 | round_jiffies_relative(0.5 * HZ)); |
| 830 | } else |
| 831 | schedule_work(&msi_touchpad_work); |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 832 | break; |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 833 | case 0x54: |
| 834 | case 0x62: |
| 835 | case 0x76: |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 836 | if (quirks->ec_delay) { |
| 837 | schedule_delayed_work(&msi_rfkill_dwork, |
| 838 | round_jiffies_relative(0.5 * HZ)); |
| 839 | } else |
| 840 | schedule_work(&msi_rfkill_work); |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 841 | break; |
| 842 | } |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 843 | } |
| 844 | |
| 845 | return false; |
| 846 | } |
| 847 | |
Lee, Chun-Yi | 3bb9702 | 2010-05-12 09:58:09 -0700 | [diff] [blame] | 848 | static void msi_init_rfkill(struct work_struct *ignored) |
| 849 | { |
| 850 | if (rfk_wlan) { |
| 851 | rfkill_set_sw_state(rfk_wlan, !wlan_s); |
| 852 | rfkill_wlan_set(NULL, !wlan_s); |
| 853 | } |
| 854 | if (rfk_bluetooth) { |
| 855 | rfkill_set_sw_state(rfk_bluetooth, !bluetooth_s); |
| 856 | rfkill_bluetooth_set(NULL, !bluetooth_s); |
| 857 | } |
| 858 | if (rfk_threeg) { |
| 859 | rfkill_set_sw_state(rfk_threeg, !threeg_s); |
| 860 | rfkill_threeg_set(NULL, !threeg_s); |
| 861 | } |
| 862 | } |
| 863 | static DECLARE_DELAYED_WORK(msi_rfkill_init, msi_init_rfkill); |
| 864 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 865 | static int rfkill_init(struct platform_device *sdev) |
| 866 | { |
| 867 | /* add rfkill */ |
| 868 | int retval; |
| 869 | |
Lee, Chun-Yi | 3bb9702 | 2010-05-12 09:58:09 -0700 | [diff] [blame] | 870 | /* keep the hardware wireless state */ |
| 871 | get_wireless_state_ec_standard(); |
| 872 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 873 | rfk_bluetooth = rfkill_alloc("msi-bluetooth", &sdev->dev, |
| 874 | RFKILL_TYPE_BLUETOOTH, |
| 875 | &rfkill_bluetooth_ops, NULL); |
| 876 | if (!rfk_bluetooth) { |
| 877 | retval = -ENOMEM; |
| 878 | goto err_bluetooth; |
| 879 | } |
| 880 | retval = rfkill_register(rfk_bluetooth); |
| 881 | if (retval) |
| 882 | goto err_bluetooth; |
| 883 | |
| 884 | rfk_wlan = rfkill_alloc("msi-wlan", &sdev->dev, RFKILL_TYPE_WLAN, |
| 885 | &rfkill_wlan_ops, NULL); |
| 886 | if (!rfk_wlan) { |
| 887 | retval = -ENOMEM; |
| 888 | goto err_wlan; |
| 889 | } |
| 890 | retval = rfkill_register(rfk_wlan); |
| 891 | if (retval) |
| 892 | goto err_wlan; |
| 893 | |
Lee, Chun-Yi | e22388e | 2010-01-27 12:23:00 +0800 | [diff] [blame] | 894 | if (threeg_exists) { |
| 895 | rfk_threeg = rfkill_alloc("msi-threeg", &sdev->dev, |
| 896 | RFKILL_TYPE_WWAN, &rfkill_threeg_ops, NULL); |
| 897 | if (!rfk_threeg) { |
| 898 | retval = -ENOMEM; |
| 899 | goto err_threeg; |
| 900 | } |
| 901 | retval = rfkill_register(rfk_threeg); |
| 902 | if (retval) |
| 903 | goto err_threeg; |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 904 | } |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 905 | |
Lee, Chun-Yi | 3bb9702 | 2010-05-12 09:58:09 -0700 | [diff] [blame] | 906 | /* schedule to run rfkill state initial */ |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 907 | if (quirks->ec_delay) { |
| 908 | schedule_delayed_work(&msi_rfkill_init, |
| 909 | round_jiffies_relative(1 * HZ)); |
| 910 | } else |
| 911 | schedule_work(&msi_rfkill_work); |
Lee, Chun-Yi | 3bb9702 | 2010-05-12 09:58:09 -0700 | [diff] [blame] | 912 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 913 | return 0; |
| 914 | |
| 915 | err_threeg: |
| 916 | rfkill_destroy(rfk_threeg); |
| 917 | if (rfk_wlan) |
| 918 | rfkill_unregister(rfk_wlan); |
| 919 | err_wlan: |
| 920 | rfkill_destroy(rfk_wlan); |
| 921 | if (rfk_bluetooth) |
| 922 | rfkill_unregister(rfk_bluetooth); |
| 923 | err_bluetooth: |
| 924 | rfkill_destroy(rfk_bluetooth); |
| 925 | |
| 926 | return retval; |
| 927 | } |
| 928 | |
Rafael J. Wysocki | 3567a4e2 | 2012-08-09 23:00:13 +0200 | [diff] [blame] | 929 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | 9033132 | 2012-07-06 19:06:19 +0200 | [diff] [blame] | 930 | static int msi_laptop_resume(struct device *device) |
Lee, Chun-Yi | ec76627 | 2010-01-27 00:13:45 +0800 | [diff] [blame] | 931 | { |
| 932 | u8 data; |
| 933 | int result; |
| 934 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 935 | if (!quirks->load_scm_model) |
Lee, Chun-Yi | ec76627 | 2010-01-27 00:13:45 +0800 | [diff] [blame] | 936 | return 0; |
| 937 | |
| 938 | /* set load SCM to disable hardware control by fn key */ |
| 939 | result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data); |
| 940 | if (result < 0) |
| 941 | return result; |
| 942 | |
| 943 | result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, |
| 944 | data | MSI_STANDARD_EC_SCM_LOAD_MASK); |
| 945 | if (result < 0) |
| 946 | return result; |
| 947 | |
| 948 | return 0; |
| 949 | } |
Rafael J. Wysocki | 3567a4e2 | 2012-08-09 23:00:13 +0200 | [diff] [blame] | 950 | #endif |
Lee, Chun-Yi | ec76627 | 2010-01-27 00:13:45 +0800 | [diff] [blame] | 951 | |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 952 | static int __init msi_laptop_input_setup(void) |
| 953 | { |
| 954 | int err; |
| 955 | |
| 956 | msi_laptop_input_dev = input_allocate_device(); |
| 957 | if (!msi_laptop_input_dev) |
| 958 | return -ENOMEM; |
| 959 | |
| 960 | msi_laptop_input_dev->name = "MSI Laptop hotkeys"; |
| 961 | msi_laptop_input_dev->phys = "msi-laptop/input0"; |
| 962 | msi_laptop_input_dev->id.bustype = BUS_HOST; |
| 963 | |
| 964 | err = sparse_keymap_setup(msi_laptop_input_dev, |
| 965 | msi_laptop_keymap, NULL); |
| 966 | if (err) |
| 967 | goto err_free_dev; |
| 968 | |
| 969 | err = input_register_device(msi_laptop_input_dev); |
| 970 | if (err) |
| 971 | goto err_free_keymap; |
| 972 | |
| 973 | return 0; |
| 974 | |
| 975 | err_free_keymap: |
| 976 | sparse_keymap_free(msi_laptop_input_dev); |
| 977 | err_free_dev: |
| 978 | input_free_device(msi_laptop_input_dev); |
| 979 | return err; |
| 980 | } |
| 981 | |
| 982 | static void msi_laptop_input_destroy(void) |
| 983 | { |
| 984 | sparse_keymap_free(msi_laptop_input_dev); |
| 985 | input_unregister_device(msi_laptop_input_dev); |
| 986 | } |
| 987 | |
Lee, Chun-Yi | d436514 | 2011-05-26 11:09:19 +0800 | [diff] [blame] | 988 | static int __init load_scm_model_init(struct platform_device *sdev) |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 989 | { |
| 990 | u8 data; |
| 991 | int result; |
| 992 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 993 | if (!quirks->ec_read_only) { |
| 994 | /* allow userland write sysfs file */ |
| 995 | dev_attr_bluetooth.store = store_bluetooth; |
| 996 | dev_attr_wlan.store = store_wlan; |
| 997 | dev_attr_threeg.store = store_threeg; |
| 998 | dev_attr_bluetooth.attr.mode |= S_IWUSR; |
| 999 | dev_attr_wlan.attr.mode |= S_IWUSR; |
| 1000 | dev_attr_threeg.attr.mode |= S_IWUSR; |
| 1001 | } |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 1002 | |
| 1003 | /* disable hardware control by fn key */ |
| 1004 | result = ec_read(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, &data); |
| 1005 | if (result < 0) |
| 1006 | return result; |
| 1007 | |
| 1008 | result = ec_write(MSI_STANDARD_EC_SCM_LOAD_ADDRESS, |
| 1009 | data | MSI_STANDARD_EC_SCM_LOAD_MASK); |
| 1010 | if (result < 0) |
| 1011 | return result; |
| 1012 | |
| 1013 | /* initial rfkill */ |
| 1014 | result = rfkill_init(sdev); |
| 1015 | if (result < 0) |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 1016 | goto fail_rfkill; |
| 1017 | |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 1018 | /* setup input device */ |
| 1019 | result = msi_laptop_input_setup(); |
| 1020 | if (result) |
| 1021 | goto fail_input; |
| 1022 | |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 1023 | result = i8042_install_filter(msi_laptop_i8042_filter); |
| 1024 | if (result) { |
Joey Lee | bbe24fe | 2011-03-16 01:55:19 -0600 | [diff] [blame] | 1025 | pr_err("Unable to install key filter\n"); |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 1026 | goto fail_filter; |
| 1027 | } |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 1028 | |
| 1029 | return 0; |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 1030 | |
| 1031 | fail_filter: |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 1032 | msi_laptop_input_destroy(); |
| 1033 | |
| 1034 | fail_input: |
Lee, Chun-Yi | 339e753 | 2010-05-12 09:58:10 -0700 | [diff] [blame] | 1035 | rfkill_cleanup(); |
| 1036 | |
| 1037 | fail_rfkill: |
| 1038 | |
| 1039 | return result; |
| 1040 | |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 1041 | } |
| 1042 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1043 | static int __init msi_init(void) |
| 1044 | { |
| 1045 | int ret; |
| 1046 | |
| 1047 | if (acpi_disabled) |
| 1048 | return -ENODEV; |
| 1049 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1050 | dmi_check_system(msi_dmi_table); |
| 1051 | if (!quirks) |
| 1052 | /* quirks may be NULL if no match in DMI table */ |
| 1053 | quirks = &quirk_load_scm_model; |
| 1054 | if (force) |
| 1055 | quirks = &quirk_old_ec_model; |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1056 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1057 | if (!quirks->old_ec_model) |
Lee, Chun-Yi | e22388e | 2010-01-27 12:23:00 +0800 | [diff] [blame] | 1058 | get_threeg_exists(); |
| 1059 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1060 | if (auto_brightness < 0 || auto_brightness > 2) |
| 1061 | return -EINVAL; |
| 1062 | |
| 1063 | /* Register backlight stuff */ |
| 1064 | |
Thomas Renninger | a598c82 | 2008-08-01 17:38:01 +0200 | [diff] [blame] | 1065 | if (acpi_video_backlight_support()) { |
Joe Perches | f9dcf19 | 2011-03-29 15:21:46 -0700 | [diff] [blame] | 1066 | pr_info("Brightness ignored, must be controlled by ACPI video driver\n"); |
Thomas Renninger | a598c82 | 2008-08-01 17:38:01 +0200 | [diff] [blame] | 1067 | } else { |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1068 | struct backlight_properties props; |
| 1069 | memset(&props, 0, sizeof(struct backlight_properties)); |
Matthew Garrett | bb7ca74 | 2011-03-22 16:30:21 -0700 | [diff] [blame] | 1070 | props.type = BACKLIGHT_PLATFORM; |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1071 | props.max_brightness = MSI_LCD_LEVEL_MAX - 1; |
Thomas Renninger | a598c82 | 2008-08-01 17:38:01 +0200 | [diff] [blame] | 1072 | msibl_device = backlight_device_register("msi-laptop-bl", NULL, |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1073 | NULL, &msibl_ops, |
| 1074 | &props); |
Thomas Renninger | a598c82 | 2008-08-01 17:38:01 +0200 | [diff] [blame] | 1075 | if (IS_ERR(msibl_device)) |
| 1076 | return PTR_ERR(msibl_device); |
Thomas Renninger | a598c82 | 2008-08-01 17:38:01 +0200 | [diff] [blame] | 1077 | } |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 1078 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1079 | ret = platform_driver_register(&msipf_driver); |
| 1080 | if (ret) |
| 1081 | goto fail_backlight; |
| 1082 | |
| 1083 | /* Register platform stuff */ |
| 1084 | |
| 1085 | msipf_device = platform_device_alloc("msi-laptop-pf", -1); |
| 1086 | if (!msipf_device) { |
| 1087 | ret = -ENOMEM; |
| 1088 | goto fail_platform_driver; |
| 1089 | } |
| 1090 | |
| 1091 | ret = platform_device_add(msipf_device); |
| 1092 | if (ret) |
| 1093 | goto fail_platform_device1; |
| 1094 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1095 | if (quirks->load_scm_model && (load_scm_model_init(msipf_device) < 0)) { |
Lee, Chun-Yi | 472ea12 | 2010-01-22 00:15:59 +0800 | [diff] [blame] | 1096 | ret = -EINVAL; |
| 1097 | goto fail_platform_device1; |
| 1098 | } |
| 1099 | |
Greg Kroah-Hartman | 1ac3407 | 2010-05-12 12:03:00 -0700 | [diff] [blame] | 1100 | ret = sysfs_create_group(&msipf_device->dev.kobj, |
| 1101 | &msipf_attribute_group); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1102 | if (ret) |
| 1103 | goto fail_platform_device2; |
| 1104 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1105 | if (!quirks->old_ec_model) { |
Lee, Chun-Yi | e22388e | 2010-01-27 12:23:00 +0800 | [diff] [blame] | 1106 | if (threeg_exists) |
| 1107 | ret = device_create_file(&msipf_device->dev, |
| 1108 | &dev_attr_threeg); |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 1109 | if (ret) |
| 1110 | goto fail_platform_device2; |
| 1111 | } |
| 1112 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1113 | /* Disable automatic brightness control by default because |
| 1114 | * this module was probably loaded to do brightness control in |
| 1115 | * software. */ |
| 1116 | |
| 1117 | if (auto_brightness != 2) |
| 1118 | set_auto_brightness(auto_brightness); |
| 1119 | |
Joe Perches | f9dcf19 | 2011-03-29 15:21:46 -0700 | [diff] [blame] | 1120 | pr_info("driver " MSI_DRIVER_VERSION " successfully loaded\n"); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1121 | |
| 1122 | return 0; |
| 1123 | |
| 1124 | fail_platform_device2: |
| 1125 | |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1126 | if (quirks->load_scm_model) { |
Lee, Chun-Yi | 7ab5252 | 2010-05-15 06:18:54 +0800 | [diff] [blame] | 1127 | i8042_remove_filter(msi_laptop_i8042_filter); |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1128 | cancel_delayed_work_sync(&msi_rfkill_dwork); |
| 1129 | cancel_work_sync(&msi_rfkill_work); |
Lee, Chun-Yi | 7ab5252 | 2010-05-15 06:18:54 +0800 | [diff] [blame] | 1130 | rfkill_cleanup(); |
| 1131 | } |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1132 | platform_device_del(msipf_device); |
| 1133 | |
| 1134 | fail_platform_device1: |
| 1135 | |
| 1136 | platform_device_put(msipf_device); |
| 1137 | |
| 1138 | fail_platform_driver: |
| 1139 | |
| 1140 | platform_driver_unregister(&msipf_driver); |
| 1141 | |
| 1142 | fail_backlight: |
| 1143 | |
| 1144 | backlight_device_unregister(msibl_device); |
| 1145 | |
| 1146 | return ret; |
| 1147 | } |
| 1148 | |
| 1149 | static void __exit msi_cleanup(void) |
| 1150 | { |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1151 | if (quirks->load_scm_model) { |
Lee, Chun-Yi | 7ab5252 | 2010-05-15 06:18:54 +0800 | [diff] [blame] | 1152 | i8042_remove_filter(msi_laptop_i8042_filter); |
Lee, Chun-Yi | 143a4c0 | 2011-03-07 15:46:28 +0800 | [diff] [blame] | 1153 | msi_laptop_input_destroy(); |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1154 | cancel_delayed_work_sync(&msi_rfkill_dwork); |
| 1155 | cancel_work_sync(&msi_rfkill_work); |
Lee, Chun-Yi | 7ab5252 | 2010-05-15 06:18:54 +0800 | [diff] [blame] | 1156 | rfkill_cleanup(); |
| 1157 | } |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1158 | |
| 1159 | sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group); |
Lee, Chun-Yi | 0816392 | 2012-12-15 19:31:27 +0200 | [diff] [blame] | 1160 | if (!quirks->old_ec_model && threeg_exists) |
Lee, Chun-Yi | fc0dc4c | 2010-01-09 23:17:07 +0800 | [diff] [blame] | 1161 | device_remove_file(&msipf_device->dev, &dev_attr_threeg); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1162 | platform_device_unregister(msipf_device); |
| 1163 | platform_driver_unregister(&msipf_driver); |
| 1164 | backlight_device_unregister(msibl_device); |
| 1165 | |
| 1166 | /* Enable automatic brightness control again */ |
| 1167 | if (auto_brightness != 2) |
| 1168 | set_auto_brightness(1); |
| 1169 | |
Joe Perches | f9dcf19 | 2011-03-29 15:21:46 -0700 | [diff] [blame] | 1170 | pr_info("driver unloaded\n"); |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | module_init(msi_init); |
| 1174 | module_exit(msi_cleanup); |
| 1175 | |
| 1176 | MODULE_AUTHOR("Lennart Poettering"); |
| 1177 | MODULE_DESCRIPTION("MSI Laptop Support"); |
| 1178 | MODULE_VERSION(MSI_DRIVER_VERSION); |
| 1179 | MODULE_LICENSE("GPL"); |
Lennart Poettering | 4f5c791 | 2007-05-08 22:07:02 +0200 | [diff] [blame] | 1180 | |
| 1181 | MODULE_ALIAS("dmi:*:svnMICRO-STARINT'LCO.,LTD:pnMS-1013:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*"); |
| 1182 | MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1058:pvr0581:rvnMSI:rnMS-1058:*:ct10:*"); |
| 1183 | MODULE_ALIAS("dmi:*:svnMicro-StarInternational:pnMS-1412:*:rvnMSI:rnMS-1412:*:cvnMICRO-STARINT'LCO.,LTD:ct10:*"); |
| 1184 | MODULE_ALIAS("dmi:*:svnNOTEBOOK:pnSAM2000:pvr0131*:cvnMICRO-STARINT'LCO.,LTD:ct10:*"); |
Lee, Chun-Yi | 46d0e9e | 2010-01-09 21:16:52 +0800 | [diff] [blame] | 1185 | MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N034:*"); |
Lee, Chun-Yi | d0a4aa2 | 2010-05-12 09:58:07 -0700 | [diff] [blame] | 1186 | MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N051:*"); |
| 1187 | MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnMS-N014:*"); |
Lee, Chun-Yi | 1f27e17 | 2010-05-12 09:58:08 -0700 | [diff] [blame] | 1188 | MODULE_ALIAS("dmi:*:svnMicro-StarInternational*:pnCR620:*"); |
Lee, Chun-Yi | 3880314 | 2011-06-10 15:24:26 +0800 | [diff] [blame] | 1189 | MODULE_ALIAS("dmi:*:svnMicro-StarInternational*:pnU270series:*"); |
Maxim Mikityanskiy | 0de6575 | 2012-12-15 19:31:28 +0200 | [diff] [blame^] | 1190 | MODULE_ALIAS("dmi:*:svnMICRO-STARINTERNATIONAL*:pnU90/U100:*"); |