Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1 | /* |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 2 | * eeepc-laptop.c - Asus Eee PC extras |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 3 | * |
| 4 | * Based on asus_acpi.c as patched for the Eee PC by Asus: |
| 5 | * ftp://ftp.asus.com/pub/ASUS/EeePC/701/ASUS_ACPI_071126.rar |
| 6 | * Based on eee.c from eeepc-linux |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | */ |
| 18 | |
Joe Perches | 19b5328 | 2009-06-25 13:25:37 +0200 | [diff] [blame] | 19 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 20 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 21 | #include <linux/kernel.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/types.h> |
| 25 | #include <linux/platform_device.h> |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 26 | #include <linux/backlight.h> |
| 27 | #include <linux/fb.h> |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 28 | #include <linux/hwmon.h> |
| 29 | #include <linux/hwmon-sysfs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 31 | #include <linux/acpi.h> |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 32 | #include <linux/uaccess.h> |
Matthew Garrett | a195dcd | 2008-08-19 12:13:20 +0100 | [diff] [blame] | 33 | #include <linux/input.h> |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 34 | #include <linux/input/sparse-keymap.h> |
Matthew Garrett | a195dcd | 2008-08-19 12:13:20 +0100 | [diff] [blame] | 35 | #include <linux/rfkill.h> |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 36 | #include <linux/pci.h> |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 37 | #include <linux/pci_hotplug.h> |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 38 | #include <linux/leds.h> |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 39 | #include <linux/dmi.h> |
Hans de Goede | 21db4b1 | 2015-06-16 16:28:02 +0200 | [diff] [blame] | 40 | #include <acpi/video.h> |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 41 | |
| 42 | #define EEEPC_LAPTOP_VERSION "0.1" |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 43 | #define EEEPC_LAPTOP_NAME "Eee PC Hotkey Driver" |
| 44 | #define EEEPC_LAPTOP_FILE "eeepc" |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 45 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 46 | #define EEEPC_ACPI_CLASS "hotkey" |
| 47 | #define EEEPC_ACPI_DEVICE_NAME "Hotkey" |
| 48 | #define EEEPC_ACPI_HID "ASUS010" |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 49 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 50 | MODULE_AUTHOR("Corentin Chary, Eric Cooper"); |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 51 | MODULE_DESCRIPTION(EEEPC_LAPTOP_NAME); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 52 | MODULE_LICENSE("GPL"); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 53 | |
Corentin Chary | 322a135 | 2010-01-06 22:07:40 +0100 | [diff] [blame] | 54 | static bool hotplug_disabled; |
| 55 | |
Axel Lin | bfa4796 | 2010-07-20 15:19:55 -0700 | [diff] [blame] | 56 | module_param(hotplug_disabled, bool, 0444); |
Corentin Chary | 322a135 | 2010-01-06 22:07:40 +0100 | [diff] [blame] | 57 | MODULE_PARM_DESC(hotplug_disabled, |
| 58 | "Disable hotplug for wireless device. " |
| 59 | "If your laptop need that, please report to " |
| 60 | "acpi4asus-user@lists.sourceforge.net."); |
| 61 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 62 | /* |
| 63 | * Definitions for Asus EeePC |
| 64 | */ |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 65 | #define NOTIFY_BRN_MIN 0x20 |
| 66 | #define NOTIFY_BRN_MAX 0x2f |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 67 | |
| 68 | enum { |
| 69 | DISABLE_ASL_WLAN = 0x0001, |
| 70 | DISABLE_ASL_BLUETOOTH = 0x0002, |
| 71 | DISABLE_ASL_IRDA = 0x0004, |
| 72 | DISABLE_ASL_CAMERA = 0x0008, |
| 73 | DISABLE_ASL_TV = 0x0010, |
| 74 | DISABLE_ASL_GPS = 0x0020, |
| 75 | DISABLE_ASL_DISPLAYSWITCH = 0x0040, |
| 76 | DISABLE_ASL_MODEM = 0x0080, |
Corentin Chary | b7b700d | 2009-06-16 19:28:52 +0000 | [diff] [blame] | 77 | DISABLE_ASL_CARDREADER = 0x0100, |
| 78 | DISABLE_ASL_3G = 0x0200, |
| 79 | DISABLE_ASL_WIMAX = 0x0400, |
| 80 | DISABLE_ASL_HWCF = 0x0800 |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | enum { |
| 84 | CM_ASL_WLAN = 0, |
| 85 | CM_ASL_BLUETOOTH, |
| 86 | CM_ASL_IRDA, |
| 87 | CM_ASL_1394, |
| 88 | CM_ASL_CAMERA, |
| 89 | CM_ASL_TV, |
| 90 | CM_ASL_GPS, |
| 91 | CM_ASL_DVDROM, |
| 92 | CM_ASL_DISPLAYSWITCH, |
| 93 | CM_ASL_PANELBRIGHT, |
| 94 | CM_ASL_BIOSFLASH, |
| 95 | CM_ASL_ACPIFLASH, |
| 96 | CM_ASL_CPUFV, |
| 97 | CM_ASL_CPUTEMPERATURE, |
| 98 | CM_ASL_FANCPU, |
| 99 | CM_ASL_FANCHASSIS, |
| 100 | CM_ASL_USBPORT1, |
| 101 | CM_ASL_USBPORT2, |
| 102 | CM_ASL_USBPORT3, |
| 103 | CM_ASL_MODEM, |
| 104 | CM_ASL_CARDREADER, |
Corentin Chary | b7b700d | 2009-06-16 19:28:52 +0000 | [diff] [blame] | 105 | CM_ASL_3G, |
| 106 | CM_ASL_WIMAX, |
| 107 | CM_ASL_HWCF, |
| 108 | CM_ASL_LID, |
| 109 | CM_ASL_TYPE, |
| 110 | CM_ASL_PANELPOWER, /*P901*/ |
| 111 | CM_ASL_TPD |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 112 | }; |
| 113 | |
Adrian Bunk | 1410946 | 2008-06-25 19:25:47 +0300 | [diff] [blame] | 114 | static const char *cm_getv[] = { |
Jonathan McDowell | 3af9bfc | 2008-12-03 20:31:11 +0000 | [diff] [blame] | 115 | "WLDG", "BTHG", NULL, NULL, |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 116 | "CAMG", NULL, NULL, NULL, |
| 117 | NULL, "PBLG", NULL, NULL, |
| 118 | "CFVG", NULL, NULL, NULL, |
| 119 | "USBG", NULL, NULL, "MODG", |
Corentin Chary | b7b700d | 2009-06-16 19:28:52 +0000 | [diff] [blame] | 120 | "CRDG", "M3GG", "WIMG", "HWCF", |
| 121 | "LIDG", "TYPE", "PBPG", "TPDG" |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 122 | }; |
| 123 | |
Adrian Bunk | 1410946 | 2008-06-25 19:25:47 +0300 | [diff] [blame] | 124 | static const char *cm_setv[] = { |
Jonathan McDowell | 3af9bfc | 2008-12-03 20:31:11 +0000 | [diff] [blame] | 125 | "WLDS", "BTHS", NULL, NULL, |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 126 | "CAMS", NULL, NULL, NULL, |
| 127 | "SDSP", "PBLS", "HDPS", NULL, |
| 128 | "CFVS", NULL, NULL, NULL, |
| 129 | "USBG", NULL, NULL, "MODS", |
Corentin Chary | b7b700d | 2009-06-16 19:28:52 +0000 | [diff] [blame] | 130 | "CRDS", "M3GS", "WIMS", NULL, |
| 131 | NULL, NULL, "PBPS", "TPDS" |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 132 | }; |
| 133 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 134 | static const struct key_entry eeepc_keymap[] = { |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 135 | { KE_KEY, 0x10, { KEY_WLAN } }, |
| 136 | { KE_KEY, 0x11, { KEY_WLAN } }, |
| 137 | { KE_KEY, 0x12, { KEY_PROG1 } }, |
| 138 | { KE_KEY, 0x13, { KEY_MUTE } }, |
| 139 | { KE_KEY, 0x14, { KEY_VOLUMEDOWN } }, |
| 140 | { KE_KEY, 0x15, { KEY_VOLUMEUP } }, |
| 141 | { KE_KEY, 0x16, { KEY_DISPLAY_OFF } }, |
| 142 | { KE_KEY, 0x1a, { KEY_COFFEE } }, |
| 143 | { KE_KEY, 0x1b, { KEY_ZOOM } }, |
| 144 | { KE_KEY, 0x1c, { KEY_PROG2 } }, |
| 145 | { KE_KEY, 0x1d, { KEY_PROG3 } }, |
| 146 | { KE_KEY, NOTIFY_BRN_MIN, { KEY_BRIGHTNESSDOWN } }, |
| 147 | { KE_KEY, NOTIFY_BRN_MAX, { KEY_BRIGHTNESSUP } }, |
| 148 | { KE_KEY, 0x30, { KEY_SWITCHVIDEOMODE } }, |
| 149 | { KE_KEY, 0x31, { KEY_SWITCHVIDEOMODE } }, |
| 150 | { KE_KEY, 0x32, { KEY_SWITCHVIDEOMODE } }, |
| 151 | { KE_KEY, 0x37, { KEY_F13 } }, /* Disable Touchpad */ |
| 152 | { KE_KEY, 0x38, { KEY_F14 } }, |
Pau Espin Pedrol | 999ddbd | 2017-02-10 18:48:37 +0100 | [diff] [blame] | 153 | { KE_IGNORE, 0x50, { KEY_RESERVED } }, /* AC plugged */ |
| 154 | { KE_IGNORE, 0x51, { KEY_RESERVED } }, /* AC unplugged */ |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 155 | { KE_END, 0 }, |
Matthew Garrett | a195dcd | 2008-08-19 12:13:20 +0100 | [diff] [blame] | 156 | }; |
| 157 | |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 158 | /* |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 159 | * This is the main structure, we can use it to store useful information |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 160 | */ |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 161 | struct eeepc_laptop { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 162 | acpi_handle handle; /* the handle of the acpi device */ |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 163 | u32 cm_supported; /* the control methods supported |
| 164 | by this BIOS */ |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 165 | bool cpufv_disabled; |
Corentin Chary | 10ae4b5 | 2010-01-06 22:07:38 +0100 | [diff] [blame] | 166 | bool hotplug_disabled; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 167 | u16 event_count[128]; /* count for each event */ |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 168 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 169 | struct platform_device *platform_device; |
Corentin Chary | 71e687d | 2010-08-24 09:30:44 +0200 | [diff] [blame] | 170 | struct acpi_device *device; /* the device we are in */ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 171 | struct backlight_device *backlight_device; |
| 172 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 173 | struct input_dev *inputdev; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 174 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 175 | struct rfkill *wlan_rfkill; |
| 176 | struct rfkill *bluetooth_rfkill; |
| 177 | struct rfkill *wwan3g_rfkill; |
| 178 | struct rfkill *wimax_rfkill; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 179 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 180 | struct hotplug_slot hotplug_slot; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 181 | struct mutex hotplug_lock; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 182 | |
| 183 | struct led_classdev tpd_led; |
| 184 | int tpd_led_wk; |
| 185 | struct workqueue_struct *led_workqueue; |
| 186 | struct work_struct tpd_led_work; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 187 | }; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 188 | |
| 189 | /* |
| 190 | * ACPI Helpers |
| 191 | */ |
Alan Jenkins | 6b188a7 | 2009-12-03 07:45:02 +0000 | [diff] [blame] | 192 | static int write_acpi_int(acpi_handle handle, const char *method, int val) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 193 | { |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 194 | acpi_status status; |
| 195 | |
Zhang Rui | fca4199 | 2013-09-03 08:31:51 +0800 | [diff] [blame] | 196 | status = acpi_execute_simple_method(handle, (char *)method, val); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 197 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 198 | return (status == AE_OK ? 0 : -1); |
| 199 | } |
| 200 | |
| 201 | static int read_acpi_int(acpi_handle handle, const char *method, int *val) |
| 202 | { |
| 203 | acpi_status status; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 204 | unsigned long long result; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 205 | |
| 206 | status = acpi_evaluate_integer(handle, (char *)method, NULL, &result); |
| 207 | if (ACPI_FAILURE(status)) { |
| 208 | *val = -1; |
| 209 | return -1; |
| 210 | } else { |
| 211 | *val = result; |
| 212 | return 0; |
| 213 | } |
| 214 | } |
| 215 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 216 | static int set_acpi(struct eeepc_laptop *eeepc, int cm, int value) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 217 | { |
Alan Jenkins | 13f7002 | 2009-12-03 07:44:59 +0000 | [diff] [blame] | 218 | const char *method = cm_setv[cm]; |
| 219 | |
| 220 | if (method == NULL) |
| 221 | return -ENODEV; |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 222 | if ((eeepc->cm_supported & (0x1 << cm)) == 0) |
Alan Jenkins | 13f7002 | 2009-12-03 07:44:59 +0000 | [diff] [blame] | 223 | return -ENODEV; |
| 224 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 225 | if (write_acpi_int(eeepc->handle, method, value)) |
Joe Perches | 22441ff | 2011-03-29 15:21:38 -0700 | [diff] [blame] | 226 | pr_warn("Error writing %s\n", method); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 227 | return 0; |
| 228 | } |
| 229 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 230 | static int get_acpi(struct eeepc_laptop *eeepc, int cm) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 231 | { |
Alan Jenkins | 13f7002 | 2009-12-03 07:44:59 +0000 | [diff] [blame] | 232 | const char *method = cm_getv[cm]; |
| 233 | int value; |
| 234 | |
| 235 | if (method == NULL) |
| 236 | return -ENODEV; |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 237 | if ((eeepc->cm_supported & (0x1 << cm)) == 0) |
Alan Jenkins | 13f7002 | 2009-12-03 07:44:59 +0000 | [diff] [blame] | 238 | return -ENODEV; |
| 239 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 240 | if (read_acpi_int(eeepc->handle, method, &value)) |
Joe Perches | 22441ff | 2011-03-29 15:21:38 -0700 | [diff] [blame] | 241 | pr_warn("Error reading %s\n", method); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 242 | return value; |
| 243 | } |
| 244 | |
Corentin Chary | f90be87 | 2009-12-03 07:45:14 +0000 | [diff] [blame] | 245 | static int acpi_setter_handle(struct eeepc_laptop *eeepc, int cm, |
| 246 | acpi_handle *handle) |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 247 | { |
| 248 | const char *method = cm_setv[cm]; |
| 249 | acpi_status status; |
| 250 | |
| 251 | if (method == NULL) |
| 252 | return -ENODEV; |
| 253 | if ((eeepc->cm_supported & (0x1 << cm)) == 0) |
| 254 | return -ENODEV; |
| 255 | |
| 256 | status = acpi_get_handle(eeepc->handle, (char *)method, |
Corentin Chary | f90be87 | 2009-12-03 07:45:14 +0000 | [diff] [blame] | 257 | handle); |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 258 | if (status != AE_OK) { |
Joe Perches | 22441ff | 2011-03-29 15:21:38 -0700 | [diff] [blame] | 259 | pr_warn("Error finding %s\n", method); |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 260 | return -ENODEV; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 261 | } |
| 262 | return 0; |
| 263 | } |
| 264 | |
Pekka Enberg | cede2cb | 2009-06-16 19:28:45 +0000 | [diff] [blame] | 265 | |
Matthew Garrett | a195dcd | 2008-08-19 12:13:20 +0100 | [diff] [blame] | 266 | /* |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 267 | * Sys helpers |
| 268 | */ |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 269 | static int parse_arg(const char *buf, int *val) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 270 | { |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 271 | if (sscanf(buf, "%i", val) != 1) |
| 272 | return -EINVAL; |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 273 | return 0; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 274 | } |
| 275 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 276 | static ssize_t store_sys_acpi(struct device *dev, int cm, |
| 277 | const char *buf, size_t count) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 278 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 279 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 280 | int rv, value; |
| 281 | |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 282 | rv = parse_arg(buf, &value); |
| 283 | if (rv < 0) |
| 284 | return rv; |
| 285 | rv = set_acpi(eeepc, cm, value); |
| 286 | if (rv < 0) |
Alan Jenkins | 6dff29b | 2009-12-03 07:44:45 +0000 | [diff] [blame] | 287 | return -EIO; |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 288 | return count; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 289 | } |
| 290 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 291 | static ssize_t show_sys_acpi(struct device *dev, int cm, char *buf) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 292 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 293 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); |
| 294 | int value = get_acpi(eeepc, cm); |
Corentin Chary | f36509e | 2009-06-25 13:25:40 +0200 | [diff] [blame] | 295 | |
| 296 | if (value < 0) |
Alan Jenkins | 6dff29b | 2009-12-03 07:44:45 +0000 | [diff] [blame] | 297 | return -EIO; |
Corentin Chary | f36509e | 2009-06-25 13:25:40 +0200 | [diff] [blame] | 298 | return sprintf(buf, "%d\n", value); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 299 | } |
| 300 | |
Frans Klaver | 9797132 | 2014-09-17 23:47:22 +0200 | [diff] [blame] | 301 | #define EEEPC_ACPI_SHOW_FUNC(_name, _cm) \ |
Frans Klaver | 8c72fc8 | 2014-09-17 23:47:20 +0200 | [diff] [blame] | 302 | static ssize_t _name##_show(struct device *dev, \ |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 303 | struct device_attribute *attr, \ |
| 304 | char *buf) \ |
| 305 | { \ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 306 | return show_sys_acpi(dev, _cm, buf); \ |
Frans Klaver | 9797132 | 2014-09-17 23:47:22 +0200 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | #define EEEPC_ACPI_STORE_FUNC(_name, _cm) \ |
Frans Klaver | 8c72fc8 | 2014-09-17 23:47:20 +0200 | [diff] [blame] | 310 | static ssize_t _name##_store(struct device *dev, \ |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 311 | struct device_attribute *attr, \ |
| 312 | const char *buf, size_t count) \ |
| 313 | { \ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 314 | return store_sys_acpi(dev, _cm, buf, count); \ |
Frans Klaver | 9797132 | 2014-09-17 23:47:22 +0200 | [diff] [blame] | 315 | } |
| 316 | |
Frans Klaver | 6fe3a77 | 2014-09-17 23:47:23 +0200 | [diff] [blame] | 317 | #define EEEPC_CREATE_DEVICE_ATTR_RW(_name, _cm) \ |
Frans Klaver | 9797132 | 2014-09-17 23:47:22 +0200 | [diff] [blame] | 318 | EEEPC_ACPI_SHOW_FUNC(_name, _cm) \ |
| 319 | EEEPC_ACPI_STORE_FUNC(_name, _cm) \ |
Frans Klaver | 6fe3a77 | 2014-09-17 23:47:23 +0200 | [diff] [blame] | 320 | static DEVICE_ATTR_RW(_name) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 321 | |
Frans Klaver | 6fe3a77 | 2014-09-17 23:47:23 +0200 | [diff] [blame] | 322 | #define EEEPC_CREATE_DEVICE_ATTR_WO(_name, _cm) \ |
| 323 | EEEPC_ACPI_STORE_FUNC(_name, _cm) \ |
| 324 | static DEVICE_ATTR_WO(_name) |
| 325 | |
| 326 | EEEPC_CREATE_DEVICE_ATTR_RW(camera, CM_ASL_CAMERA); |
| 327 | EEEPC_CREATE_DEVICE_ATTR_RW(cardr, CM_ASL_CARDREADER); |
| 328 | EEEPC_CREATE_DEVICE_ATTR_WO(disp, CM_ASL_DISPLAYSWITCH); |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 329 | |
| 330 | struct eeepc_cpufv { |
| 331 | int num; |
| 332 | int cur; |
| 333 | }; |
| 334 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 335 | static int get_cpufv(struct eeepc_laptop *eeepc, struct eeepc_cpufv *c) |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 336 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 337 | c->cur = get_acpi(eeepc, CM_ASL_CPUFV); |
Frans Klaver | a5c155b | 2014-09-17 23:47:26 +0200 | [diff] [blame] | 338 | if (c->cur < 0) |
| 339 | return -ENODEV; |
| 340 | |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 341 | c->num = (c->cur >> 8) & 0xff; |
| 342 | c->cur &= 0xff; |
Frans Klaver | a5c155b | 2014-09-17 23:47:26 +0200 | [diff] [blame] | 343 | if (c->num == 0 || c->num > 12) |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 344 | return -ENODEV; |
| 345 | return 0; |
| 346 | } |
| 347 | |
Frans Klaver | 8c72fc8 | 2014-09-17 23:47:20 +0200 | [diff] [blame] | 348 | static ssize_t available_cpufv_show(struct device *dev, |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 349 | struct device_attribute *attr, |
| 350 | char *buf) |
| 351 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 352 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 353 | struct eeepc_cpufv c; |
| 354 | int i; |
| 355 | ssize_t len = 0; |
| 356 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 357 | if (get_cpufv(eeepc, &c)) |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 358 | return -ENODEV; |
| 359 | for (i = 0; i < c.num; i++) |
| 360 | len += sprintf(buf + len, "%d ", i); |
| 361 | len += sprintf(buf + len, "\n"); |
| 362 | return len; |
| 363 | } |
| 364 | |
Frans Klaver | 8c72fc8 | 2014-09-17 23:47:20 +0200 | [diff] [blame] | 365 | static ssize_t cpufv_show(struct device *dev, |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 366 | struct device_attribute *attr, |
| 367 | char *buf) |
| 368 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 369 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 370 | struct eeepc_cpufv c; |
| 371 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 372 | if (get_cpufv(eeepc, &c)) |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 373 | return -ENODEV; |
| 374 | return sprintf(buf, "%#x\n", (c.num << 8) | c.cur); |
| 375 | } |
| 376 | |
Frans Klaver | 8c72fc8 | 2014-09-17 23:47:20 +0200 | [diff] [blame] | 377 | static ssize_t cpufv_store(struct device *dev, |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 378 | struct device_attribute *attr, |
| 379 | const char *buf, size_t count) |
| 380 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 381 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 382 | struct eeepc_cpufv c; |
| 383 | int rv, value; |
| 384 | |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 385 | if (eeepc->cpufv_disabled) |
| 386 | return -EPERM; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 387 | if (get_cpufv(eeepc, &c)) |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 388 | return -ENODEV; |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 389 | rv = parse_arg(buf, &value); |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 390 | if (rv < 0) |
| 391 | return rv; |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 392 | if (value < 0 || value >= c.num) |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 393 | return -EINVAL; |
Frans Klaver | d486903 | 2014-09-17 23:47:27 +0200 | [diff] [blame] | 394 | rv = set_acpi(eeepc, CM_ASL_CPUFV, value); |
| 395 | if (rv) |
| 396 | return rv; |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 397 | return count; |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 398 | } |
| 399 | |
Frans Klaver | 8c72fc8 | 2014-09-17 23:47:20 +0200 | [diff] [blame] | 400 | static ssize_t cpufv_disabled_show(struct device *dev, |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 401 | struct device_attribute *attr, |
| 402 | char *buf) |
| 403 | { |
| 404 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); |
| 405 | |
| 406 | return sprintf(buf, "%d\n", eeepc->cpufv_disabled); |
| 407 | } |
| 408 | |
Frans Klaver | 8c72fc8 | 2014-09-17 23:47:20 +0200 | [diff] [blame] | 409 | static ssize_t cpufv_disabled_store(struct device *dev, |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 410 | struct device_attribute *attr, |
| 411 | const char *buf, size_t count) |
| 412 | { |
| 413 | struct eeepc_laptop *eeepc = dev_get_drvdata(dev); |
| 414 | int rv, value; |
| 415 | |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 416 | rv = parse_arg(buf, &value); |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 417 | if (rv < 0) |
| 418 | return rv; |
| 419 | |
| 420 | switch (value) { |
| 421 | case 0: |
| 422 | if (eeepc->cpufv_disabled) |
Frans Klaver | 9f662b2 | 2014-10-22 21:12:37 +0200 | [diff] [blame] | 423 | pr_warn("cpufv enabled (not officially supported on this model)\n"); |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 424 | eeepc->cpufv_disabled = false; |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 425 | return count; |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 426 | case 1: |
| 427 | return -EPERM; |
| 428 | default: |
| 429 | return -EINVAL; |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | |
Frans Klaver | bb382db | 2014-09-17 23:47:21 +0200 | [diff] [blame] | 434 | static DEVICE_ATTR_RW(cpufv); |
| 435 | static DEVICE_ATTR_RO(available_cpufv); |
| 436 | static DEVICE_ATTR_RW(cpufv_disabled); |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 437 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 438 | static struct attribute *platform_attributes[] = { |
| 439 | &dev_attr_camera.attr, |
| 440 | &dev_attr_cardr.attr, |
| 441 | &dev_attr_disp.attr, |
Grigori Goronzy | 158ca1d | 2009-04-27 09:23:40 +0200 | [diff] [blame] | 442 | &dev_attr_cpufv.attr, |
Corentin Chary | b31d0fd | 2009-06-16 19:28:56 +0000 | [diff] [blame] | 443 | &dev_attr_available_cpufv.attr, |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 444 | &dev_attr_cpufv_disabled.attr, |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 445 | NULL |
| 446 | }; |
| 447 | |
Arvind Yadav | 130bbe6 | 2017-06-23 14:40:51 +0530 | [diff] [blame] | 448 | static const struct attribute_group platform_attribute_group = { |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 449 | .attrs = platform_attributes |
| 450 | }; |
| 451 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 452 | static int eeepc_platform_init(struct eeepc_laptop *eeepc) |
Matthew Garrett | a195dcd | 2008-08-19 12:13:20 +0100 | [diff] [blame] | 453 | { |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 454 | int result; |
| 455 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 456 | eeepc->platform_device = platform_device_alloc(EEEPC_LAPTOP_FILE, -1); |
| 457 | if (!eeepc->platform_device) |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 458 | return -ENOMEM; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 459 | platform_set_drvdata(eeepc->platform_device, eeepc); |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 460 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 461 | result = platform_device_add(eeepc->platform_device); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 462 | if (result) |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 463 | goto fail_platform_device; |
| 464 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 465 | result = sysfs_create_group(&eeepc->platform_device->dev.kobj, |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 466 | &platform_attribute_group); |
| 467 | if (result) |
| 468 | goto fail_sysfs; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 469 | return 0; |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 470 | |
| 471 | fail_sysfs: |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 472 | platform_device_del(eeepc->platform_device); |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 473 | fail_platform_device: |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 474 | platform_device_put(eeepc->platform_device); |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 475 | return result; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 476 | } |
| 477 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 478 | static void eeepc_platform_exit(struct eeepc_laptop *eeepc) |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 479 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 480 | sysfs_remove_group(&eeepc->platform_device->dev.kobj, |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 481 | &platform_attribute_group); |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 482 | platform_device_unregister(eeepc->platform_device); |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 485 | /* |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 486 | * LEDs |
| 487 | */ |
| 488 | /* |
| 489 | * These functions actually update the LED's, and are called from a |
| 490 | * workqueue. By doing this as separate work rather than when the LED |
| 491 | * subsystem asks, we avoid messing with the Asus ACPI stuff during a |
| 492 | * potentially bad time, such as a timer interrupt. |
| 493 | */ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 494 | static void tpd_led_update(struct work_struct *work) |
Joe Perches | 447a564 | 2018-03-21 15:09:32 -0700 | [diff] [blame] | 495 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 496 | struct eeepc_laptop *eeepc; |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 497 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 498 | eeepc = container_of(work, struct eeepc_laptop, tpd_led_work); |
| 499 | |
| 500 | set_acpi(eeepc, CM_ASL_TPD, eeepc->tpd_led_wk); |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 503 | static void tpd_led_set(struct led_classdev *led_cdev, |
| 504 | enum led_brightness value) |
| 505 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 506 | struct eeepc_laptop *eeepc; |
| 507 | |
| 508 | eeepc = container_of(led_cdev, struct eeepc_laptop, tpd_led); |
| 509 | |
| 510 | eeepc->tpd_led_wk = (value > 0) ? 1 : 0; |
| 511 | queue_work(eeepc->led_workqueue, &eeepc->tpd_led_work); |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 512 | } |
| 513 | |
Corentin Chary | 62a75d83 | 2010-11-29 08:14:13 +0100 | [diff] [blame] | 514 | static enum led_brightness tpd_led_get(struct led_classdev *led_cdev) |
| 515 | { |
| 516 | struct eeepc_laptop *eeepc; |
| 517 | |
| 518 | eeepc = container_of(led_cdev, struct eeepc_laptop, tpd_led); |
| 519 | |
| 520 | return get_acpi(eeepc, CM_ASL_TPD); |
| 521 | } |
| 522 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 523 | static int eeepc_led_init(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 524 | { |
| 525 | int rv; |
| 526 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 527 | if (get_acpi(eeepc, CM_ASL_TPD) == -ENODEV) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 528 | return 0; |
| 529 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 530 | eeepc->led_workqueue = create_singlethread_workqueue("led_workqueue"); |
| 531 | if (!eeepc->led_workqueue) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 532 | return -ENOMEM; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 533 | INIT_WORK(&eeepc->tpd_led_work, tpd_led_update); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 534 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 535 | eeepc->tpd_led.name = "eeepc::touchpad"; |
| 536 | eeepc->tpd_led.brightness_set = tpd_led_set; |
Corentin Chary | 62a75d83 | 2010-11-29 08:14:13 +0100 | [diff] [blame] | 537 | if (get_acpi(eeepc, CM_ASL_TPD) >= 0) /* if method is available */ |
Frans Klaver | 39a3e17 | 2014-09-17 23:47:19 +0200 | [diff] [blame] | 538 | eeepc->tpd_led.brightness_get = tpd_led_get; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 539 | eeepc->tpd_led.max_brightness = 1; |
| 540 | |
| 541 | rv = led_classdev_register(&eeepc->platform_device->dev, |
| 542 | &eeepc->tpd_led); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 543 | if (rv) { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 544 | destroy_workqueue(eeepc->led_workqueue); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 545 | return rv; |
Darren Salt | 64b86b6 | 2009-04-27 09:23:38 +0200 | [diff] [blame] | 546 | } |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 551 | static void eeepc_led_exit(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 552 | { |
Axel Lin | 5d6afd15 | 2011-08-08 17:14:19 +0800 | [diff] [blame] | 553 | if (!IS_ERR_OR_NULL(eeepc->tpd_led.dev)) |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 554 | led_classdev_unregister(&eeepc->tpd_led); |
| 555 | if (eeepc->led_workqueue) |
| 556 | destroy_workqueue(eeepc->led_workqueue); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 560 | /* |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 561 | * PCI hotplug (for wlan rfkill) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 562 | */ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 563 | static bool eeepc_wlan_rfkill_blocked(struct eeepc_laptop *eeepc) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 564 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 565 | if (get_acpi(eeepc, CM_ASL_WLAN) == 1) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 566 | return false; |
| 567 | return true; |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 568 | } |
| 569 | |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 570 | static void eeepc_rfkill_hotplug(struct eeepc_laptop *eeepc, acpi_handle handle) |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 571 | { |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 572 | struct pci_dev *port; |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 573 | struct pci_dev *dev; |
Alan Jenkins | 6d41839 | 2009-08-28 12:56:32 +0000 | [diff] [blame] | 574 | struct pci_bus *bus; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 575 | bool blocked = eeepc_wlan_rfkill_blocked(eeepc); |
Alan Jenkins | bc9d24a | 2010-02-22 16:03:58 +0000 | [diff] [blame] | 576 | bool absent; |
| 577 | u32 l; |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 578 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 579 | if (eeepc->wlan_rfkill) |
| 580 | rfkill_set_sw_state(eeepc->wlan_rfkill, blocked); |
Alan Jenkins | 6d41839 | 2009-08-28 12:56:32 +0000 | [diff] [blame] | 581 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 582 | mutex_lock(&eeepc->hotplug_lock); |
Rafael J. Wysocki | 8b9ec1d | 2014-01-10 15:27:08 +0100 | [diff] [blame] | 583 | pci_lock_rescan_remove(); |
Alan Jenkins | dcf443b | 2009-08-28 12:56:33 +0000 | [diff] [blame] | 584 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 585 | if (!eeepc->hotplug_slot.ops) |
Frans Klaver | 248d490 | 2014-10-22 21:12:36 +0200 | [diff] [blame] | 586 | goto out_unlock; |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 587 | |
Frans Klaver | 248d490 | 2014-10-22 21:12:36 +0200 | [diff] [blame] | 588 | port = acpi_get_pci_dev(handle); |
| 589 | if (!port) { |
| 590 | pr_warning("Unable to find port\n"); |
| 591 | goto out_unlock; |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 592 | } |
Alan Jenkins | dcf443b | 2009-08-28 12:56:33 +0000 | [diff] [blame] | 593 | |
Frans Klaver | 248d490 | 2014-10-22 21:12:36 +0200 | [diff] [blame] | 594 | bus = port->subordinate; |
| 595 | |
| 596 | if (!bus) { |
| 597 | pr_warn("Unable to find PCI bus 1?\n"); |
| 598 | goto out_put_dev; |
| 599 | } |
| 600 | |
| 601 | if (pci_bus_read_config_dword(bus, 0, PCI_VENDOR_ID, &l)) { |
| 602 | pr_err("Unable to read PCI config space?\n"); |
| 603 | goto out_put_dev; |
| 604 | } |
| 605 | |
| 606 | absent = (l == 0xffffffff); |
| 607 | |
| 608 | if (blocked != absent) { |
Frans Klaver | 9f662b2 | 2014-10-22 21:12:37 +0200 | [diff] [blame] | 609 | pr_warn("BIOS says wireless lan is %s, but the pci device is %s\n", |
Frans Klaver | 248d490 | 2014-10-22 21:12:36 +0200 | [diff] [blame] | 610 | blocked ? "blocked" : "unblocked", |
| 611 | absent ? "absent" : "present"); |
Frans Klaver | 9f662b2 | 2014-10-22 21:12:37 +0200 | [diff] [blame] | 612 | pr_warn("skipped wireless hotplug as probably inappropriate for this model\n"); |
Frans Klaver | 248d490 | 2014-10-22 21:12:36 +0200 | [diff] [blame] | 613 | goto out_put_dev; |
| 614 | } |
| 615 | |
| 616 | if (!blocked) { |
| 617 | dev = pci_get_slot(bus, 0); |
| 618 | if (dev) { |
| 619 | /* Device already present */ |
| 620 | pci_dev_put(dev); |
| 621 | goto out_put_dev; |
| 622 | } |
| 623 | dev = pci_scan_single_device(bus, 0); |
| 624 | if (dev) { |
| 625 | pci_bus_assign_resources(bus); |
| 626 | pci_bus_add_device(dev); |
| 627 | } |
| 628 | } else { |
| 629 | dev = pci_get_slot(bus, 0); |
| 630 | if (dev) { |
| 631 | pci_stop_and_remove_bus_device(dev); |
| 632 | pci_dev_put(dev); |
| 633 | } |
| 634 | } |
| 635 | out_put_dev: |
| 636 | pci_dev_put(port); |
| 637 | |
Alan Jenkins | dcf443b | 2009-08-28 12:56:33 +0000 | [diff] [blame] | 638 | out_unlock: |
Rafael J. Wysocki | 8b9ec1d | 2014-01-10 15:27:08 +0100 | [diff] [blame] | 639 | pci_unlock_rescan_remove(); |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 640 | mutex_unlock(&eeepc->hotplug_lock); |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 641 | } |
| 642 | |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 643 | static void eeepc_rfkill_hotplug_update(struct eeepc_laptop *eeepc, char *node) |
| 644 | { |
| 645 | acpi_status status = AE_OK; |
| 646 | acpi_handle handle; |
| 647 | |
| 648 | status = acpi_get_handle(NULL, node, &handle); |
| 649 | |
| 650 | if (ACPI_SUCCESS(status)) |
| 651 | eeepc_rfkill_hotplug(eeepc, handle); |
| 652 | } |
| 653 | |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 654 | static void eeepc_rfkill_notify(acpi_handle handle, u32 event, void *data) |
| 655 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 656 | struct eeepc_laptop *eeepc = data; |
| 657 | |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 658 | if (event != ACPI_NOTIFY_BUS_CHECK) |
| 659 | return; |
| 660 | |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 661 | eeepc_rfkill_hotplug(eeepc, handle); |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 662 | } |
| 663 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 664 | static int eeepc_register_rfkill_notifier(struct eeepc_laptop *eeepc, |
| 665 | char *node) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 666 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 667 | acpi_status status; |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 668 | acpi_handle handle; |
| 669 | |
| 670 | status = acpi_get_handle(NULL, node, &handle); |
| 671 | |
Frans Klaver | 557b454 | 2014-09-21 00:22:17 +0200 | [diff] [blame] | 672 | if (ACPI_FAILURE(status)) |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 673 | return -ENODEV; |
| 674 | |
Frans Klaver | 557b454 | 2014-09-21 00:22:17 +0200 | [diff] [blame] | 675 | status = acpi_install_notify_handler(handle, |
| 676 | ACPI_SYSTEM_NOTIFY, |
| 677 | eeepc_rfkill_notify, |
| 678 | eeepc); |
| 679 | if (ACPI_FAILURE(status)) |
| 680 | pr_warn("Failed to register notify on %s\n", node); |
| 681 | |
| 682 | /* |
| 683 | * Refresh pci hotplug in case the rfkill state was |
| 684 | * changed during setup. |
| 685 | */ |
| 686 | eeepc_rfkill_hotplug(eeepc, handle); |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 687 | return 0; |
| 688 | } |
| 689 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 690 | static void eeepc_unregister_rfkill_notifier(struct eeepc_laptop *eeepc, |
| 691 | char *node) |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 692 | { |
| 693 | acpi_status status = AE_OK; |
| 694 | acpi_handle handle; |
| 695 | |
| 696 | status = acpi_get_handle(NULL, node, &handle); |
| 697 | |
Frans Klaver | 557b454 | 2014-09-21 00:22:17 +0200 | [diff] [blame] | 698 | if (ACPI_FAILURE(status)) |
| 699 | return; |
| 700 | |
| 701 | status = acpi_remove_notify_handler(handle, |
| 702 | ACPI_SYSTEM_NOTIFY, |
| 703 | eeepc_rfkill_notify); |
| 704 | if (ACPI_FAILURE(status)) |
| 705 | pr_err("Error removing rfkill notify handler %s\n", |
| 706 | node); |
| 707 | /* |
| 708 | * Refresh pci hotplug in case the rfkill |
| 709 | * state was changed after |
| 710 | * eeepc_unregister_rfkill_notifier() |
| 711 | */ |
| 712 | eeepc_rfkill_hotplug(eeepc, handle); |
Matthew Garrett | 5740294 | 2009-01-20 16:17:48 +0100 | [diff] [blame] | 713 | } |
| 714 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 715 | static int eeepc_get_adapter_status(struct hotplug_slot *hotplug_slot, |
| 716 | u8 *value) |
| 717 | { |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 718 | struct eeepc_laptop *eeepc; |
| 719 | int val; |
| 720 | |
| 721 | eeepc = container_of(hotplug_slot, struct eeepc_laptop, hotplug_slot); |
| 722 | val = get_acpi(eeepc, CM_ASL_WLAN); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 723 | |
| 724 | if (val == 1 || val == 0) |
| 725 | *value = val; |
| 726 | else |
| 727 | return -EINVAL; |
| 728 | |
| 729 | return 0; |
| 730 | } |
| 731 | |
Lukas Wunner | 81c4b5b | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 732 | static const struct hotplug_slot_ops eeepc_hotplug_slot_ops = { |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 733 | .get_adapter_status = eeepc_get_adapter_status, |
| 734 | .get_power_status = eeepc_get_adapter_status, |
| 735 | }; |
| 736 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 737 | static int eeepc_setup_pci_hotplug(struct eeepc_laptop *eeepc) |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 738 | { |
| 739 | int ret = -ENOMEM; |
| 740 | struct pci_bus *bus = pci_find_bus(0, 1); |
| 741 | |
| 742 | if (!bus) { |
Joe Perches | 19b5328 | 2009-06-25 13:25:37 +0200 | [diff] [blame] | 743 | pr_err("Unable to find wifi PCI bus\n"); |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 744 | return -ENODEV; |
| 745 | } |
| 746 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 747 | eeepc->hotplug_slot.ops = &eeepc_hotplug_slot_ops; |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 748 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 749 | ret = pci_hp_register(&eeepc->hotplug_slot, bus, 0, "eeepc-wifi"); |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 750 | if (ret) { |
Joe Perches | 19b5328 | 2009-06-25 13:25:37 +0200 | [diff] [blame] | 751 | pr_err("Unable to register hotplug slot - %d\n", ret); |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 752 | goto error_register; |
| 753 | } |
| 754 | |
| 755 | return 0; |
| 756 | |
| 757 | error_register: |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 758 | eeepc->hotplug_slot.ops = NULL; |
Corentin Chary | 2b121bc | 2009-06-25 13:25:36 +0200 | [diff] [blame] | 759 | return ret; |
| 760 | } |
| 761 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 762 | /* |
| 763 | * Rfkill devices |
| 764 | */ |
| 765 | static int eeepc_rfkill_set(void *data, bool blocked) |
| 766 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 767 | acpi_handle handle = data; |
| 768 | |
| 769 | return write_acpi_int(handle, NULL, !blocked); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | static const struct rfkill_ops eeepc_rfkill_ops = { |
| 773 | .set_block = eeepc_rfkill_set, |
| 774 | }; |
| 775 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 776 | static int eeepc_new_rfkill(struct eeepc_laptop *eeepc, |
| 777 | struct rfkill **rfkill, |
| 778 | const char *name, |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 779 | enum rfkill_type type, int cm) |
| 780 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 781 | acpi_handle handle; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 782 | int result; |
| 783 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 784 | result = acpi_setter_handle(eeepc, cm, &handle); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 785 | if (result < 0) |
| 786 | return result; |
| 787 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 788 | *rfkill = rfkill_alloc(name, &eeepc->platform_device->dev, type, |
| 789 | &eeepc_rfkill_ops, handle); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 790 | |
| 791 | if (!*rfkill) |
| 792 | return -EINVAL; |
| 793 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 794 | rfkill_init_sw_state(*rfkill, get_acpi(eeepc, cm) != 1); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 795 | result = rfkill_register(*rfkill); |
| 796 | if (result) { |
| 797 | rfkill_destroy(*rfkill); |
| 798 | *rfkill = NULL; |
| 799 | return result; |
| 800 | } |
| 801 | return 0; |
| 802 | } |
| 803 | |
Frans Klaver | 792bd2a | 2014-10-22 21:12:38 +0200 | [diff] [blame] | 804 | static char EEEPC_RFKILL_NODE_1[] = "\\_SB.PCI0.P0P5"; |
| 805 | static char EEEPC_RFKILL_NODE_2[] = "\\_SB.PCI0.P0P6"; |
| 806 | static char EEEPC_RFKILL_NODE_3[] = "\\_SB.PCI0.P0P7"; |
| 807 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 808 | static void eeepc_rfkill_exit(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 809 | { |
Frans Klaver | 792bd2a | 2014-10-22 21:12:38 +0200 | [diff] [blame] | 810 | eeepc_unregister_rfkill_notifier(eeepc, EEEPC_RFKILL_NODE_1); |
| 811 | eeepc_unregister_rfkill_notifier(eeepc, EEEPC_RFKILL_NODE_2); |
| 812 | eeepc_unregister_rfkill_notifier(eeepc, EEEPC_RFKILL_NODE_3); |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 813 | if (eeepc->wlan_rfkill) { |
| 814 | rfkill_unregister(eeepc->wlan_rfkill); |
| 815 | rfkill_destroy(eeepc->wlan_rfkill); |
| 816 | eeepc->wlan_rfkill = NULL; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 817 | } |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 818 | |
Lukas Wunner | 125450f | 2018-09-08 09:59:01 +0200 | [diff] [blame] | 819 | if (eeepc->hotplug_slot.ops) |
| 820 | pci_hp_deregister(&eeepc->hotplug_slot); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 821 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 822 | if (eeepc->bluetooth_rfkill) { |
| 823 | rfkill_unregister(eeepc->bluetooth_rfkill); |
| 824 | rfkill_destroy(eeepc->bluetooth_rfkill); |
| 825 | eeepc->bluetooth_rfkill = NULL; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 826 | } |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 827 | if (eeepc->wwan3g_rfkill) { |
| 828 | rfkill_unregister(eeepc->wwan3g_rfkill); |
| 829 | rfkill_destroy(eeepc->wwan3g_rfkill); |
| 830 | eeepc->wwan3g_rfkill = NULL; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 831 | } |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 832 | if (eeepc->wimax_rfkill) { |
| 833 | rfkill_unregister(eeepc->wimax_rfkill); |
| 834 | rfkill_destroy(eeepc->wimax_rfkill); |
| 835 | eeepc->wimax_rfkill = NULL; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 836 | } |
| 837 | } |
| 838 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 839 | static int eeepc_rfkill_init(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 840 | { |
| 841 | int result = 0; |
| 842 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 843 | mutex_init(&eeepc->hotplug_lock); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 844 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 845 | result = eeepc_new_rfkill(eeepc, &eeepc->wlan_rfkill, |
| 846 | "eeepc-wlan", RFKILL_TYPE_WLAN, |
| 847 | CM_ASL_WLAN); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 848 | |
| 849 | if (result && result != -ENODEV) |
| 850 | goto exit; |
| 851 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 852 | result = eeepc_new_rfkill(eeepc, &eeepc->bluetooth_rfkill, |
| 853 | "eeepc-bluetooth", RFKILL_TYPE_BLUETOOTH, |
| 854 | CM_ASL_BLUETOOTH); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 855 | |
| 856 | if (result && result != -ENODEV) |
| 857 | goto exit; |
| 858 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 859 | result = eeepc_new_rfkill(eeepc, &eeepc->wwan3g_rfkill, |
| 860 | "eeepc-wwan3g", RFKILL_TYPE_WWAN, |
| 861 | CM_ASL_3G); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 862 | |
| 863 | if (result && result != -ENODEV) |
| 864 | goto exit; |
| 865 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 866 | result = eeepc_new_rfkill(eeepc, &eeepc->wimax_rfkill, |
| 867 | "eeepc-wimax", RFKILL_TYPE_WIMAX, |
| 868 | CM_ASL_WIMAX); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 869 | |
| 870 | if (result && result != -ENODEV) |
| 871 | goto exit; |
| 872 | |
Corentin Chary | 10ae4b5 | 2010-01-06 22:07:38 +0100 | [diff] [blame] | 873 | if (eeepc->hotplug_disabled) |
| 874 | return 0; |
| 875 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 876 | result = eeepc_setup_pci_hotplug(eeepc); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 877 | /* |
| 878 | * If we get -EBUSY then something else is handling the PCI hotplug - |
| 879 | * don't fail in this case |
| 880 | */ |
| 881 | if (result == -EBUSY) |
| 882 | result = 0; |
| 883 | |
Frans Klaver | 792bd2a | 2014-10-22 21:12:38 +0200 | [diff] [blame] | 884 | eeepc_register_rfkill_notifier(eeepc, EEEPC_RFKILL_NODE_1); |
| 885 | eeepc_register_rfkill_notifier(eeepc, EEEPC_RFKILL_NODE_2); |
| 886 | eeepc_register_rfkill_notifier(eeepc, EEEPC_RFKILL_NODE_3); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 887 | |
| 888 | exit: |
| 889 | if (result && result != -ENODEV) |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 890 | eeepc_rfkill_exit(eeepc); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 891 | return result; |
| 892 | } |
| 893 | |
| 894 | /* |
| 895 | * Platform driver - hibernate/resume callbacks |
| 896 | */ |
Alan Jenkins | c200da5 | 2009-08-28 12:56:40 +0000 | [diff] [blame] | 897 | static int eeepc_hotk_thaw(struct device *device) |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 898 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 899 | struct eeepc_laptop *eeepc = dev_get_drvdata(device); |
| 900 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 901 | if (eeepc->wlan_rfkill) { |
Frans Klaver | efef872 | 2014-10-22 21:12:43 +0200 | [diff] [blame] | 902 | int wlan; |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 903 | |
Alan Jenkins | c1edd99 | 2009-08-28 12:56:39 +0000 | [diff] [blame] | 904 | /* |
| 905 | * Work around bios bug - acpi _PTS turns off the wireless led |
| 906 | * during suspend. Normally it restores it on resume, but |
Alan Jenkins | c200da5 | 2009-08-28 12:56:40 +0000 | [diff] [blame] | 907 | * we should kick it ourselves in case hibernation is aborted. |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 908 | */ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 909 | wlan = get_acpi(eeepc, CM_ASL_WLAN); |
Frans Klaver | efef872 | 2014-10-22 21:12:43 +0200 | [diff] [blame] | 910 | if (wlan >= 0) |
| 911 | set_acpi(eeepc, CM_ASL_WLAN, wlan); |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 912 | } |
| 913 | |
Alan Jenkins | c200da5 | 2009-08-28 12:56:40 +0000 | [diff] [blame] | 914 | return 0; |
| 915 | } |
| 916 | |
| 917 | static int eeepc_hotk_restore(struct device *device) |
| 918 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 919 | struct eeepc_laptop *eeepc = dev_get_drvdata(device); |
Alan Jenkins | c200da5 | 2009-08-28 12:56:40 +0000 | [diff] [blame] | 920 | |
Alan Jenkins | 96e9cfe | 2009-06-16 14:53:52 +0100 | [diff] [blame] | 921 | /* Refresh both wlan rfkill state and pci hotplug */ |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 922 | if (eeepc->wlan_rfkill) { |
Frans Klaver | 792bd2a | 2014-10-22 21:12:38 +0200 | [diff] [blame] | 923 | eeepc_rfkill_hotplug_update(eeepc, EEEPC_RFKILL_NODE_1); |
| 924 | eeepc_rfkill_hotplug_update(eeepc, EEEPC_RFKILL_NODE_2); |
| 925 | eeepc_rfkill_hotplug_update(eeepc, EEEPC_RFKILL_NODE_3); |
Matthew Garrett | 14fdb15 | 2011-05-09 10:44:01 -0400 | [diff] [blame] | 926 | } |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 927 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 928 | if (eeepc->bluetooth_rfkill) |
| 929 | rfkill_set_sw_state(eeepc->bluetooth_rfkill, |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 930 | get_acpi(eeepc, CM_ASL_BLUETOOTH) != 1); |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 931 | if (eeepc->wwan3g_rfkill) |
| 932 | rfkill_set_sw_state(eeepc->wwan3g_rfkill, |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 933 | get_acpi(eeepc, CM_ASL_3G) != 1); |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 934 | if (eeepc->wimax_rfkill) |
| 935 | rfkill_set_sw_state(eeepc->wimax_rfkill, |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 936 | get_acpi(eeepc, CM_ASL_WIMAX) != 1); |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 937 | |
| 938 | return 0; |
| 939 | } |
| 940 | |
Len Brown | 9a3bff2 | 2009-12-15 22:34:48 -0500 | [diff] [blame] | 941 | static const struct dev_pm_ops eeepc_pm_ops = { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 942 | .thaw = eeepc_hotk_thaw, |
| 943 | .restore = eeepc_hotk_restore, |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 944 | }; |
| 945 | |
| 946 | static struct platform_driver platform_driver = { |
| 947 | .driver = { |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 948 | .name = EEEPC_LAPTOP_FILE, |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 949 | .pm = &eeepc_pm_ops, |
| 950 | } |
| 951 | }; |
| 952 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 953 | /* |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 954 | * Hwmon device |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 955 | */ |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 956 | |
| 957 | #define EEEPC_EC_SC00 0x61 |
| 958 | #define EEEPC_EC_FAN_PWM (EEEPC_EC_SC00 + 2) /* Fan PWM duty cycle (%) */ |
| 959 | #define EEEPC_EC_FAN_HRPM (EEEPC_EC_SC00 + 5) /* High byte, fan speed (RPM) */ |
| 960 | #define EEEPC_EC_FAN_LRPM (EEEPC_EC_SC00 + 6) /* Low byte, fan speed (RPM) */ |
| 961 | |
| 962 | #define EEEPC_EC_SFB0 0xD0 |
| 963 | #define EEEPC_EC_FAN_CTRL (EEEPC_EC_SFB0 + 3) /* Byte containing SF25 */ |
| 964 | |
Frans Klaver | 148a5dd | 2014-10-22 21:12:42 +0200 | [diff] [blame] | 965 | static inline int eeepc_pwm_to_lmsensors(int value) |
| 966 | { |
| 967 | return value * 255 / 100; |
| 968 | } |
| 969 | |
| 970 | static inline int eeepc_lmsensors_to_pwm(int value) |
| 971 | { |
| 972 | value = clamp_val(value, 0, 255); |
| 973 | return value * 100 / 255; |
| 974 | } |
| 975 | |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 976 | static int eeepc_get_fan_pwm(void) |
| 977 | { |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 978 | u8 value = 0; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 979 | |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 980 | ec_read(EEEPC_EC_FAN_PWM, &value); |
Frans Klaver | 148a5dd | 2014-10-22 21:12:42 +0200 | [diff] [blame] | 981 | return eeepc_pwm_to_lmsensors(value); |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | static void eeepc_set_fan_pwm(int value) |
| 985 | { |
Frans Klaver | 148a5dd | 2014-10-22 21:12:42 +0200 | [diff] [blame] | 986 | value = eeepc_lmsensors_to_pwm(value); |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 987 | ec_write(EEEPC_EC_FAN_PWM, value); |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 988 | } |
| 989 | |
| 990 | static int eeepc_get_fan_rpm(void) |
| 991 | { |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 992 | u8 high = 0; |
| 993 | u8 low = 0; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 994 | |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 995 | ec_read(EEEPC_EC_FAN_HRPM, &high); |
| 996 | ec_read(EEEPC_EC_FAN_LRPM, &low); |
| 997 | return high << 8 | low; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 998 | } |
| 999 | |
Frans Klaver | a5de681 | 2014-10-22 21:12:41 +0200 | [diff] [blame] | 1000 | #define EEEPC_EC_FAN_CTRL_BIT 0x02 |
| 1001 | #define EEEPC_FAN_CTRL_MANUAL 1 |
| 1002 | #define EEEPC_FAN_CTRL_AUTO 2 |
| 1003 | |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1004 | static int eeepc_get_fan_ctrl(void) |
| 1005 | { |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 1006 | u8 value = 0; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1007 | |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 1008 | ec_read(EEEPC_EC_FAN_CTRL, &value); |
Frans Klaver | a5de681 | 2014-10-22 21:12:41 +0200 | [diff] [blame] | 1009 | if (value & EEEPC_EC_FAN_CTRL_BIT) |
| 1010 | return EEEPC_FAN_CTRL_MANUAL; |
Alan Jenkins | 4871868 | 2009-12-03 07:44:56 +0000 | [diff] [blame] | 1011 | else |
Frans Klaver | a5de681 | 2014-10-22 21:12:41 +0200 | [diff] [blame] | 1012 | return EEEPC_FAN_CTRL_AUTO; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | static void eeepc_set_fan_ctrl(int manual) |
| 1016 | { |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 1017 | u8 value = 0; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1018 | |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 1019 | ec_read(EEEPC_EC_FAN_CTRL, &value); |
Frans Klaver | a5de681 | 2014-10-22 21:12:41 +0200 | [diff] [blame] | 1020 | if (manual == EEEPC_FAN_CTRL_MANUAL) |
| 1021 | value |= EEEPC_EC_FAN_CTRL_BIT; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1022 | else |
Frans Klaver | a5de681 | 2014-10-22 21:12:41 +0200 | [diff] [blame] | 1023 | value &= ~EEEPC_EC_FAN_CTRL_BIT; |
Alan Jenkins | 463b4e4 | 2009-12-03 07:45:03 +0000 | [diff] [blame] | 1024 | ec_write(EEEPC_EC_FAN_CTRL, value); |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | static ssize_t store_sys_hwmon(void (*set)(int), const char *buf, size_t count) |
| 1028 | { |
| 1029 | int rv, value; |
| 1030 | |
Paul Bolle | 95369a7 | 2014-09-17 21:02:51 +0200 | [diff] [blame] | 1031 | rv = parse_arg(buf, &value); |
| 1032 | if (rv < 0) |
| 1033 | return rv; |
| 1034 | set(value); |
| 1035 | return count; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | static ssize_t show_sys_hwmon(int (*get)(void), char *buf) |
| 1039 | { |
| 1040 | return sprintf(buf, "%d\n", get()); |
| 1041 | } |
| 1042 | |
Frans Klaver | 28ac85f | 2014-09-17 23:47:24 +0200 | [diff] [blame] | 1043 | #define EEEPC_SENSOR_SHOW_FUNC(_name, _get) \ |
Frans Klaver | 48d4a5b | 2014-09-17 23:47:25 +0200 | [diff] [blame] | 1044 | static ssize_t _name##_show(struct device *dev, \ |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1045 | struct device_attribute *attr, \ |
| 1046 | char *buf) \ |
| 1047 | { \ |
Paul Bolle | 1ec9d39 | 2014-06-17 14:06:30 +0200 | [diff] [blame] | 1048 | return show_sys_hwmon(_get, buf); \ |
Frans Klaver | 28ac85f | 2014-09-17 23:47:24 +0200 | [diff] [blame] | 1049 | } |
| 1050 | |
| 1051 | #define EEEPC_SENSOR_STORE_FUNC(_name, _set) \ |
Frans Klaver | 48d4a5b | 2014-09-17 23:47:25 +0200 | [diff] [blame] | 1052 | static ssize_t _name##_store(struct device *dev, \ |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1053 | struct device_attribute *attr, \ |
| 1054 | const char *buf, size_t count) \ |
| 1055 | { \ |
Paul Bolle | 1ec9d39 | 2014-06-17 14:06:30 +0200 | [diff] [blame] | 1056 | return store_sys_hwmon(_set, buf, count); \ |
Frans Klaver | 28ac85f | 2014-09-17 23:47:24 +0200 | [diff] [blame] | 1057 | } |
| 1058 | |
Frans Klaver | 48d4a5b | 2014-09-17 23:47:25 +0200 | [diff] [blame] | 1059 | #define EEEPC_CREATE_SENSOR_ATTR_RW(_name, _get, _set) \ |
Frans Klaver | 28ac85f | 2014-09-17 23:47:24 +0200 | [diff] [blame] | 1060 | EEEPC_SENSOR_SHOW_FUNC(_name, _get) \ |
| 1061 | EEEPC_SENSOR_STORE_FUNC(_name, _set) \ |
Frans Klaver | 48d4a5b | 2014-09-17 23:47:25 +0200 | [diff] [blame] | 1062 | static DEVICE_ATTR_RW(_name) |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1063 | |
Frans Klaver | 48d4a5b | 2014-09-17 23:47:25 +0200 | [diff] [blame] | 1064 | #define EEEPC_CREATE_SENSOR_ATTR_RO(_name, _get) \ |
| 1065 | EEEPC_SENSOR_SHOW_FUNC(_name, _get) \ |
| 1066 | static DEVICE_ATTR_RO(_name) |
| 1067 | |
| 1068 | EEEPC_CREATE_SENSOR_ATTR_RO(fan1_input, eeepc_get_fan_rpm); |
| 1069 | EEEPC_CREATE_SENSOR_ATTR_RW(pwm1, eeepc_get_fan_pwm, |
| 1070 | eeepc_set_fan_pwm); |
| 1071 | EEEPC_CREATE_SENSOR_ATTR_RW(pwm1_enable, eeepc_get_fan_ctrl, |
| 1072 | eeepc_set_fan_ctrl); |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1073 | |
Guenter Roeck | f0c34c9 | 2013-11-23 11:03:21 -0800 | [diff] [blame] | 1074 | static struct attribute *hwmon_attrs[] = { |
| 1075 | &dev_attr_pwm1.attr, |
| 1076 | &dev_attr_fan1_input.attr, |
| 1077 | &dev_attr_pwm1_enable.attr, |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1078 | NULL |
| 1079 | }; |
Guenter Roeck | f0c34c9 | 2013-11-23 11:03:21 -0800 | [diff] [blame] | 1080 | ATTRIBUTE_GROUPS(hwmon); |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1081 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1082 | static int eeepc_hwmon_init(struct eeepc_laptop *eeepc) |
Corentin Chary | 7de3938 | 2009-06-25 13:25:38 +0200 | [diff] [blame] | 1083 | { |
Guenter Roeck | f0c34c9 | 2013-11-23 11:03:21 -0800 | [diff] [blame] | 1084 | struct device *dev = &eeepc->platform_device->dev; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1085 | struct device *hwmon; |
Corentin Chary | 7de3938 | 2009-06-25 13:25:38 +0200 | [diff] [blame] | 1086 | |
Guenter Roeck | f0c34c9 | 2013-11-23 11:03:21 -0800 | [diff] [blame] | 1087 | hwmon = devm_hwmon_device_register_with_groups(dev, "eeepc", NULL, |
| 1088 | hwmon_groups); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1089 | if (IS_ERR(hwmon)) { |
| 1090 | pr_err("Could not register eeepc hwmon device\n"); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1091 | return PTR_ERR(hwmon); |
Corentin Chary | 7de3938 | 2009-06-25 13:25:38 +0200 | [diff] [blame] | 1092 | } |
Guenter Roeck | f0c34c9 | 2013-11-23 11:03:21 -0800 | [diff] [blame] | 1093 | return 0; |
Corentin Chary | 7de3938 | 2009-06-25 13:25:38 +0200 | [diff] [blame] | 1094 | } |
| 1095 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1096 | /* |
| 1097 | * Backlight device |
| 1098 | */ |
| 1099 | static int read_brightness(struct backlight_device *bd) |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1100 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1101 | struct eeepc_laptop *eeepc = bl_get_data(bd); |
| 1102 | |
| 1103 | return get_acpi(eeepc, CM_ASL_PANELBRIGHT); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1104 | } |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1105 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1106 | static int set_brightness(struct backlight_device *bd, int value) |
| 1107 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1108 | struct eeepc_laptop *eeepc = bl_get_data(bd); |
| 1109 | |
| 1110 | return set_acpi(eeepc, CM_ASL_PANELBRIGHT, value); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1111 | } |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1112 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1113 | static int update_bl_status(struct backlight_device *bd) |
| 1114 | { |
| 1115 | return set_brightness(bd, bd->props.brightness); |
| 1116 | } |
Corentin Chary | a9df80c | 2009-01-20 16:17:40 +0100 | [diff] [blame] | 1117 | |
Lionel Debroux | acc2472 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 1118 | static const struct backlight_ops eeepcbl_ops = { |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1119 | .get_brightness = read_brightness, |
| 1120 | .update_status = update_bl_status, |
| 1121 | }; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1122 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1123 | static int eeepc_backlight_notify(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1124 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1125 | struct backlight_device *bd = eeepc->backlight_device; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1126 | int old = bd->props.brightness; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1127 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1128 | backlight_force_update(bd, BACKLIGHT_UPDATE_HOTKEY); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1129 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1130 | return old; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1131 | } |
| 1132 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1133 | static int eeepc_backlight_init(struct eeepc_laptop *eeepc) |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1134 | { |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1135 | struct backlight_properties props; |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1136 | struct backlight_device *bd; |
| 1137 | |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1138 | memset(&props, 0, sizeof(struct backlight_properties)); |
Matthew Garrett | bb7ca74 | 2011-03-22 16:30:21 -0700 | [diff] [blame] | 1139 | props.type = BACKLIGHT_PLATFORM; |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1140 | props.max_brightness = 15; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1141 | bd = backlight_device_register(EEEPC_LAPTOP_FILE, |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1142 | &eeepc->platform_device->dev, eeepc, |
| 1143 | &eeepcbl_ops, &props); |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1144 | if (IS_ERR(bd)) { |
Joe Perches | 19b5328 | 2009-06-25 13:25:37 +0200 | [diff] [blame] | 1145 | pr_err("Could not register eeepc backlight device\n"); |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1146 | eeepc->backlight_device = NULL; |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1147 | return PTR_ERR(bd); |
| 1148 | } |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1149 | eeepc->backlight_device = bd; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1150 | bd->props.brightness = read_brightness(bd); |
Corentin Chary | a5fa429 | 2008-03-13 12:56:37 +0100 | [diff] [blame] | 1151 | bd->props.power = FB_BLANK_UNBLANK; |
| 1152 | backlight_update_status(bd); |
| 1153 | return 0; |
| 1154 | } |
| 1155 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1156 | static void eeepc_backlight_exit(struct eeepc_laptop *eeepc) |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1157 | { |
Markus Elfring | 0098181 | 2014-11-24 20:30:29 +0100 | [diff] [blame] | 1158 | backlight_device_unregister(eeepc->backlight_device); |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1159 | eeepc->backlight_device = NULL; |
Corentin Chary | e1faa9d | 2008-03-13 12:57:18 +0100 | [diff] [blame] | 1160 | } |
| 1161 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1162 | |
| 1163 | /* |
| 1164 | * Input device (i.e. hotkeys) |
| 1165 | */ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1166 | static int eeepc_input_init(struct eeepc_laptop *eeepc) |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1167 | { |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1168 | struct input_dev *input; |
| 1169 | int error; |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1170 | |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1171 | input = input_allocate_device(); |
Joe Perches | b222cca | 2013-10-23 12:14:52 -0700 | [diff] [blame] | 1172 | if (!input) |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1173 | return -ENOMEM; |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1174 | |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1175 | input->name = "Asus EeePC extra buttons"; |
| 1176 | input->phys = EEEPC_LAPTOP_FILE "/input0"; |
| 1177 | input->id.bustype = BUS_HOST; |
| 1178 | input->dev.parent = &eeepc->platform_device->dev; |
| 1179 | |
| 1180 | error = sparse_keymap_setup(input, eeepc_keymap, NULL); |
| 1181 | if (error) { |
| 1182 | pr_err("Unable to setup input device keymap\n"); |
| 1183 | goto err_free_dev; |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1184 | } |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1185 | |
| 1186 | error = input_register_device(input); |
| 1187 | if (error) { |
| 1188 | pr_err("Unable to register input device\n"); |
Michał Kępień | de3c91c | 2017-03-09 13:11:42 +0100 | [diff] [blame] | 1189 | goto err_free_dev; |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1190 | } |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1191 | |
| 1192 | eeepc->inputdev = input; |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1193 | return 0; |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1194 | |
Corentin Chary | 71e687d | 2010-08-24 09:30:44 +0200 | [diff] [blame] | 1195 | err_free_dev: |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1196 | input_free_device(input); |
| 1197 | return error; |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1198 | } |
| 1199 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1200 | static void eeepc_input_exit(struct eeepc_laptop *eeepc) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1201 | { |
Michał Kępień | de3c91c | 2017-03-09 13:11:42 +0100 | [diff] [blame] | 1202 | if (eeepc->inputdev) |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1203 | input_unregister_device(eeepc->inputdev); |
Corentin Chary | 71e687d | 2010-08-24 09:30:44 +0200 | [diff] [blame] | 1204 | eeepc->inputdev = NULL; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1205 | } |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 1206 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1207 | /* |
| 1208 | * ACPI driver |
| 1209 | */ |
Corentin Chary | ce6c468 | 2011-12-15 08:27:32 +0100 | [diff] [blame] | 1210 | static void eeepc_input_notify(struct eeepc_laptop *eeepc, int event) |
| 1211 | { |
| 1212 | if (!eeepc->inputdev) |
Frans Klaver | fb1d97a | 2014-11-02 22:14:58 +0100 | [diff] [blame] | 1213 | return; |
Corentin Chary | ce6c468 | 2011-12-15 08:27:32 +0100 | [diff] [blame] | 1214 | if (!sparse_keymap_report_event(eeepc->inputdev, event, 1, true)) |
| 1215 | pr_info("Unknown key %x pressed\n", event); |
| 1216 | } |
| 1217 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1218 | static void eeepc_acpi_notify(struct acpi_device *device, u32 event) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1219 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1220 | struct eeepc_laptop *eeepc = acpi_driver_data(device); |
Frans Klaver | fb1d97a | 2014-11-02 22:14:58 +0100 | [diff] [blame] | 1221 | int old_brightness, new_brightness; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1222 | u16 count; |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 1223 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1224 | if (event > ACPI_MAX_SYS_NOTIFY) |
| 1225 | return; |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1226 | count = eeepc->event_count[event % 128]++; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1227 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
| 1228 | dev_name(&device->dev), event, |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1229 | count); |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 1230 | |
Alan Jenkins | 325fb8e | 2009-12-03 07:45:15 +0000 | [diff] [blame] | 1231 | /* Brightness events are special */ |
Frans Klaver | fb1d97a | 2014-11-02 22:14:58 +0100 | [diff] [blame] | 1232 | if (event < NOTIFY_BRN_MIN || event > NOTIFY_BRN_MAX) { |
Corentin Chary | ce6c468 | 2011-12-15 08:27:32 +0100 | [diff] [blame] | 1233 | eeepc_input_notify(eeepc, event); |
Frans Klaver | fb1d97a | 2014-11-02 22:14:58 +0100 | [diff] [blame] | 1234 | return; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1235 | } |
Frans Klaver | fb1d97a | 2014-11-02 22:14:58 +0100 | [diff] [blame] | 1236 | |
| 1237 | /* Ignore them completely if the acpi video driver is used */ |
| 1238 | if (!eeepc->backlight_device) |
| 1239 | return; |
| 1240 | |
| 1241 | /* Update the backlight device. */ |
| 1242 | old_brightness = eeepc_backlight_notify(eeepc); |
| 1243 | |
| 1244 | /* Convert event to keypress (obsolescent hack) */ |
| 1245 | new_brightness = event - NOTIFY_BRN_MIN; |
| 1246 | |
| 1247 | if (new_brightness < old_brightness) { |
| 1248 | event = NOTIFY_BRN_MIN; /* brightness down */ |
| 1249 | } else if (new_brightness > old_brightness) { |
| 1250 | event = NOTIFY_BRN_MAX; /* brightness up */ |
| 1251 | } else { |
| 1252 | /* |
| 1253 | * no change in brightness - already at min/max, |
| 1254 | * event will be desired value (or else ignored) |
| 1255 | */ |
| 1256 | } |
| 1257 | eeepc_input_notify(eeepc, event); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1258 | } |
| 1259 | |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 1260 | static void eeepc_dmi_check(struct eeepc_laptop *eeepc) |
| 1261 | { |
| 1262 | const char *model; |
| 1263 | |
Corentin Chary | 10ae4b5 | 2010-01-06 22:07:38 +0100 | [diff] [blame] | 1264 | model = dmi_get_system_info(DMI_PRODUCT_NAME); |
| 1265 | if (!model) |
| 1266 | return; |
| 1267 | |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 1268 | /* |
| 1269 | * Blacklist for setting cpufv (cpu speed). |
| 1270 | * |
| 1271 | * EeePC 4G ("701") implements CFVS, but it is not supported |
| 1272 | * by the pre-installed OS, and the original option to change it |
| 1273 | * in the BIOS setup screen was removed in later versions. |
| 1274 | * |
| 1275 | * Judging by the lack of "Super Hybrid Engine" on Asus product pages, |
| 1276 | * this applies to all "701" models (4G/4G Surf/2G Surf). |
| 1277 | * |
| 1278 | * So Asus made a deliberate decision not to support it on this model. |
| 1279 | * We have several reports that using it can cause the system to hang |
| 1280 | * |
| 1281 | * The hang has also been reported on a "702" (Model name "8G"?). |
| 1282 | * |
| 1283 | * We avoid dmi_check_system() / dmi_match(), because they use |
| 1284 | * substring matching. We don't want to affect the "701SD" |
| 1285 | * and "701SDX" models, because they do support S.H.E. |
| 1286 | */ |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 1287 | if (strcmp(model, "701") == 0 || strcmp(model, "702") == 0) { |
| 1288 | eeepc->cpufv_disabled = true; |
Frans Klaver | 9f662b2 | 2014-10-22 21:12:37 +0200 | [diff] [blame] | 1289 | pr_info("model %s does not officially support setting cpu speed\n", |
| 1290 | model); |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 1291 | pr_info("cpufv disabled to avoid instability\n"); |
| 1292 | } |
Corentin Chary | 10ae4b5 | 2010-01-06 22:07:38 +0100 | [diff] [blame] | 1293 | |
| 1294 | /* |
| 1295 | * Blacklist for wlan hotplug |
| 1296 | * |
| 1297 | * Eeepc 1005HA doesn't work like others models and don't need the |
| 1298 | * hotplug code. In fact, current hotplug code seems to unplug another |
| 1299 | * device... |
| 1300 | */ |
Alan Jenkins | ced69c5 | 2010-02-20 11:02:24 +0000 | [diff] [blame] | 1301 | if (strcmp(model, "1005HA") == 0 || strcmp(model, "1201N") == 0 || |
| 1302 | strcmp(model, "1005PE") == 0) { |
Corentin Chary | 10ae4b5 | 2010-01-06 22:07:38 +0100 | [diff] [blame] | 1303 | eeepc->hotplug_disabled = true; |
| 1304 | pr_info("wlan hotplug disabled\n"); |
| 1305 | } |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 1306 | } |
| 1307 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1308 | static void cmsg_quirk(struct eeepc_laptop *eeepc, int cm, const char *name) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1309 | { |
| 1310 | int dummy; |
| 1311 | |
Lucas De Marchi | c844033 | 2011-03-17 17:18:22 -0300 | [diff] [blame] | 1312 | /* Some BIOSes do not report cm although it is available. |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1313 | Check if cm_getv[cm] works and, if yes, assume cm should be set. */ |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1314 | if (!(eeepc->cm_supported & (1 << cm)) |
| 1315 | && !read_acpi_int(eeepc->handle, cm_getv[cm], &dummy)) { |
Frans Klaver | 9f662b2 | 2014-10-22 21:12:37 +0200 | [diff] [blame] | 1316 | pr_info("%s (%x) not reported by BIOS, enabling anyway\n", |
| 1317 | name, 1 << cm); |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1318 | eeepc->cm_supported |= 1 << cm; |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1319 | } |
| 1320 | } |
| 1321 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1322 | static void cmsg_quirks(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1323 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1324 | cmsg_quirk(eeepc, CM_ASL_LID, "LID"); |
| 1325 | cmsg_quirk(eeepc, CM_ASL_TYPE, "TYPE"); |
| 1326 | cmsg_quirk(eeepc, CM_ASL_PANELPOWER, "PANELPOWER"); |
| 1327 | cmsg_quirk(eeepc, CM_ASL_TPD, "TPD"); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1328 | } |
| 1329 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1330 | static int eeepc_acpi_init(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1331 | { |
| 1332 | unsigned int init_flags; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1333 | int result; |
| 1334 | |
Corentin Chary | 71e687d | 2010-08-24 09:30:44 +0200 | [diff] [blame] | 1335 | result = acpi_bus_get_status(eeepc->device); |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1336 | if (result) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1337 | return result; |
Corentin Chary | 71e687d | 2010-08-24 09:30:44 +0200 | [diff] [blame] | 1338 | if (!eeepc->device->status.present) { |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1339 | pr_err("Hotkey device not present, aborting\n"); |
| 1340 | return -ENODEV; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1341 | } |
Corentin Chary | 7de3938 | 2009-06-25 13:25:38 +0200 | [diff] [blame] | 1342 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1343 | init_flags = DISABLE_ASL_WLAN | DISABLE_ASL_DISPLAYSWITCH; |
| 1344 | pr_notice("Hotkey init flags 0x%x\n", init_flags); |
| 1345 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1346 | if (write_acpi_int(eeepc->handle, "INIT", init_flags)) { |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1347 | pr_err("Hotkey initialization failed\n"); |
| 1348 | return -ENODEV; |
| 1349 | } |
| 1350 | |
| 1351 | /* get control methods supported */ |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1352 | if (read_acpi_int(eeepc->handle, "CMSG", &eeepc->cm_supported)) { |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1353 | pr_err("Get control methods supported failed\n"); |
| 1354 | return -ENODEV; |
| 1355 | } |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1356 | cmsg_quirks(eeepc); |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1357 | pr_info("Get control methods supported: 0x%x\n", eeepc->cm_supported); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1358 | |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 1359 | return 0; |
| 1360 | } |
| 1361 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1362 | static void eeepc_enable_camera(struct eeepc_laptop *eeepc) |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1363 | { |
| 1364 | /* |
| 1365 | * If the following call to set_acpi() fails, it's because there's no |
| 1366 | * camera so we can ignore the error. |
| 1367 | */ |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1368 | if (get_acpi(eeepc, CM_ASL_CAMERA) == 0) |
| 1369 | set_acpi(eeepc, CM_ASL_CAMERA, 1); |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1370 | } |
| 1371 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1372 | static bool eeepc_device_present; |
| 1373 | |
Greg Kroah-Hartman | b859f15 | 2012-12-21 13:18:33 -0800 | [diff] [blame] | 1374 | static int eeepc_acpi_add(struct acpi_device *device) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1375 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1376 | struct eeepc_laptop *eeepc; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1377 | int result; |
| 1378 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1379 | pr_notice(EEEPC_LAPTOP_NAME "\n"); |
| 1380 | eeepc = kzalloc(sizeof(struct eeepc_laptop), GFP_KERNEL); |
| 1381 | if (!eeepc) |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1382 | return -ENOMEM; |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1383 | eeepc->handle = device->handle; |
| 1384 | strcpy(acpi_device_name(device), EEEPC_ACPI_DEVICE_NAME); |
| 1385 | strcpy(acpi_device_class(device), EEEPC_ACPI_CLASS); |
| 1386 | device->driver_data = eeepc; |
Corentin Chary | 71e687d | 2010-08-24 09:30:44 +0200 | [diff] [blame] | 1387 | eeepc->device = device; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1388 | |
Corentin Chary | 322a135 | 2010-01-06 22:07:40 +0100 | [diff] [blame] | 1389 | eeepc->hotplug_disabled = hotplug_disabled; |
| 1390 | |
Alan Jenkins | da8ba01 | 2010-01-06 22:07:37 +0100 | [diff] [blame] | 1391 | eeepc_dmi_check(eeepc); |
| 1392 | |
Corentin Chary | 71e687d | 2010-08-24 09:30:44 +0200 | [diff] [blame] | 1393 | result = eeepc_acpi_init(eeepc); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1394 | if (result) |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 1395 | goto fail_platform; |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1396 | eeepc_enable_camera(eeepc); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1397 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1398 | /* |
| 1399 | * Register the platform device first. It is used as a parent for the |
| 1400 | * sub-devices below. |
| 1401 | * |
| 1402 | * Note that if there are multiple instances of this ACPI device it |
| 1403 | * will bail out, because the platform device is registered with a |
| 1404 | * fixed name. Of course it doesn't make sense to have more than one, |
| 1405 | * and machine-specific scripts find the fixed name convenient. But |
| 1406 | * It's also good for us to exclude multiple instances because both |
| 1407 | * our hwmon and our wlan rfkill subdevice use global ACPI objects |
| 1408 | * (the EC and the wlan PCI slot respectively). |
| 1409 | */ |
| 1410 | result = eeepc_platform_init(eeepc); |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1411 | if (result) |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 1412 | goto fail_platform; |
Corentin Chary | 1ddec2f | 2009-06-25 13:25:39 +0200 | [diff] [blame] | 1413 | |
Hans de Goede | 21db4b1 | 2015-06-16 16:28:02 +0200 | [diff] [blame] | 1414 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1415 | result = eeepc_backlight_init(eeepc); |
Corentin Chary | 1ddec2f | 2009-06-25 13:25:39 +0200 | [diff] [blame] | 1416 | if (result) |
| 1417 | goto fail_backlight; |
Frans Klaver | 39a3e17 | 2014-09-17 23:47:19 +0200 | [diff] [blame] | 1418 | } |
Corentin Chary | 1ddec2f | 2009-06-25 13:25:39 +0200 | [diff] [blame] | 1419 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1420 | result = eeepc_input_init(eeepc); |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1421 | if (result) |
| 1422 | goto fail_input; |
| 1423 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1424 | result = eeepc_hwmon_init(eeepc); |
Corentin Chary | 1ddec2f | 2009-06-25 13:25:39 +0200 | [diff] [blame] | 1425 | if (result) |
| 1426 | goto fail_hwmon; |
| 1427 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1428 | result = eeepc_led_init(eeepc); |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 1429 | if (result) |
| 1430 | goto fail_led; |
| 1431 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1432 | result = eeepc_rfkill_init(eeepc); |
Corentin Chary | 7de3938 | 2009-06-25 13:25:38 +0200 | [diff] [blame] | 1433 | if (result) |
| 1434 | goto fail_rfkill; |
| 1435 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1436 | eeepc_device_present = true; |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1437 | return 0; |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1438 | |
Corentin Chary | 7de3938 | 2009-06-25 13:25:38 +0200 | [diff] [blame] | 1439 | fail_rfkill: |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1440 | eeepc_led_exit(eeepc); |
Corentin Chary | 3c0eb51 | 2009-12-03 07:44:52 +0000 | [diff] [blame] | 1441 | fail_led: |
Corentin Chary | 1ddec2f | 2009-06-25 13:25:39 +0200 | [diff] [blame] | 1442 | fail_hwmon: |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1443 | eeepc_input_exit(eeepc); |
Alan Jenkins | f2a9d5e | 2009-08-28 12:56:36 +0000 | [diff] [blame] | 1444 | fail_input: |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1445 | eeepc_backlight_exit(eeepc); |
Corentin Chary | 1ddec2f | 2009-06-25 13:25:39 +0200 | [diff] [blame] | 1446 | fail_backlight: |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1447 | eeepc_platform_exit(eeepc); |
Alan Jenkins | 9db106b | 2009-12-03 07:45:06 +0000 | [diff] [blame] | 1448 | fail_platform: |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1449 | kfree(eeepc); |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1450 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1451 | return result; |
| 1452 | } |
| 1453 | |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 1454 | static int eeepc_acpi_remove(struct acpi_device *device) |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1455 | { |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1456 | struct eeepc_laptop *eeepc = acpi_driver_data(device); |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1457 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1458 | eeepc_backlight_exit(eeepc); |
| 1459 | eeepc_rfkill_exit(eeepc); |
| 1460 | eeepc_input_exit(eeepc); |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1461 | eeepc_led_exit(eeepc); |
| 1462 | eeepc_platform_exit(eeepc); |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1463 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1464 | kfree(eeepc); |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1465 | return 0; |
| 1466 | } |
| 1467 | |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1468 | |
| 1469 | static const struct acpi_device_id eeepc_device_ids[] = { |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1470 | {EEEPC_ACPI_HID, 0}, |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1471 | {"", 0}, |
| 1472 | }; |
| 1473 | MODULE_DEVICE_TABLE(acpi, eeepc_device_ids); |
| 1474 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1475 | static struct acpi_driver eeepc_acpi_driver = { |
| 1476 | .name = EEEPC_LAPTOP_NAME, |
| 1477 | .class = EEEPC_ACPI_CLASS, |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1478 | .owner = THIS_MODULE, |
| 1479 | .ids = eeepc_device_ids, |
| 1480 | .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS, |
| 1481 | .ops = { |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1482 | .add = eeepc_acpi_add, |
| 1483 | .remove = eeepc_acpi_remove, |
| 1484 | .notify = eeepc_acpi_notify, |
Alan Jenkins | 52bbe3c | 2009-12-03 07:45:07 +0000 | [diff] [blame] | 1485 | }, |
| 1486 | }; |
| 1487 | |
| 1488 | |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1489 | static int __init eeepc_laptop_init(void) |
| 1490 | { |
| 1491 | int result; |
| 1492 | |
Alan Jenkins | 22072e9 | 2009-12-03 07:45:05 +0000 | [diff] [blame] | 1493 | result = platform_driver_register(&platform_driver); |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1494 | if (result < 0) |
| 1495 | return result; |
Alan Jenkins | 22072e9 | 2009-12-03 07:45:05 +0000 | [diff] [blame] | 1496 | |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1497 | result = acpi_bus_register_driver(&eeepc_acpi_driver); |
Alan Jenkins | 22072e9 | 2009-12-03 07:45:05 +0000 | [diff] [blame] | 1498 | if (result < 0) |
| 1499 | goto fail_acpi_driver; |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1500 | |
Alan Jenkins | 854c783 | 2009-12-03 07:45:09 +0000 | [diff] [blame] | 1501 | if (!eeepc_device_present) { |
Alan Jenkins | 22072e9 | 2009-12-03 07:45:05 +0000 | [diff] [blame] | 1502 | result = -ENODEV; |
| 1503 | goto fail_no_device; |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1504 | } |
Dmitry Torokhov | 642e044 | 2010-01-06 22:07:39 +0100 | [diff] [blame] | 1505 | |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1506 | return 0; |
Alan Jenkins | 22072e9 | 2009-12-03 07:45:05 +0000 | [diff] [blame] | 1507 | |
| 1508 | fail_no_device: |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1509 | acpi_bus_unregister_driver(&eeepc_acpi_driver); |
Alan Jenkins | 22072e9 | 2009-12-03 07:45:05 +0000 | [diff] [blame] | 1510 | fail_acpi_driver: |
| 1511 | platform_driver_unregister(&platform_driver); |
| 1512 | return result; |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1513 | } |
| 1514 | |
| 1515 | static void __exit eeepc_laptop_exit(void) |
| 1516 | { |
Alan Jenkins | a7624b6 | 2009-12-03 07:45:08 +0000 | [diff] [blame] | 1517 | acpi_bus_unregister_driver(&eeepc_acpi_driver); |
Alan Jenkins | 22072e9 | 2009-12-03 07:45:05 +0000 | [diff] [blame] | 1518 | platform_driver_unregister(&platform_driver); |
Alan Jenkins | 1e77985 | 2009-08-28 12:56:35 +0000 | [diff] [blame] | 1519 | } |
| 1520 | |
Eric Cooper | e59f879 | 2008-03-13 12:55:46 +0100 | [diff] [blame] | 1521 | module_init(eeepc_laptop_init); |
| 1522 | module_exit(eeepc_laptop_exit); |