Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1 | /* |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2 | * ACPI Sony Notebook Control Driver (SNC and SPIC) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2004-2005 Stelian Pop <stelian@popies.net> |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 5 | * Copyright (C) 2007 Mattia Dongili <malattia@linux.it> |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 6 | * |
| 7 | * Parts of this driver inspired from asus_acpi.c and ibm_acpi.c |
| 8 | * which are copyrighted by their respective authors. |
| 9 | * |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 10 | * The SNY6001 driver part is based on the sonypi driver which includes |
| 11 | * material from: |
| 12 | * |
| 13 | * Copyright (C) 2001-2005 Stelian Pop <stelian@popies.net> |
| 14 | * |
| 15 | * Copyright (C) 2005 Narayanan R S <nars@kadamba.org> |
| 16 | * |
| 17 | * Copyright (C) 2001-2002 AlcĂ´ve <www.alcove.com> |
| 18 | * |
| 19 | * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au> |
| 20 | * |
| 21 | * Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp> |
| 22 | * |
| 23 | * Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp> |
| 24 | * |
| 25 | * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com> |
| 26 | * |
| 27 | * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras. |
| 28 | * |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 29 | * This program is free software; you can redistribute it and/or modify |
| 30 | * it under the terms of the GNU General Public License as published by |
| 31 | * the Free Software Foundation; either version 2 of the License, or |
| 32 | * (at your option) any later version. |
| 33 | * |
| 34 | * This program is distributed in the hope that it will be useful, |
| 35 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 36 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 37 | * GNU General Public License for more details. |
| 38 | * |
| 39 | * You should have received a copy of the GNU General Public License |
| 40 | * along with this program; if not, write to the Free Software |
| 41 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 42 | * |
| 43 | */ |
| 44 | |
| 45 | #include <linux/kernel.h> |
| 46 | #include <linux/module.h> |
| 47 | #include <linux/moduleparam.h> |
| 48 | #include <linux/init.h> |
| 49 | #include <linux/types.h> |
Alessandro Guido | 50f62af | 2007-01-13 23:04:34 +0100 | [diff] [blame] | 50 | #include <linux/backlight.h> |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 51 | #include <linux/platform_device.h> |
Alessandro Guido | 50f62af | 2007-01-13 23:04:34 +0100 | [diff] [blame] | 52 | #include <linux/err.h> |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 53 | #include <linux/dmi.h> |
| 54 | #include <linux/pci.h> |
| 55 | #include <linux/interrupt.h> |
| 56 | #include <linux/delay.h> |
| 57 | #include <linux/input.h> |
| 58 | #include <linux/kfifo.h> |
| 59 | #include <linux/workqueue.h> |
| 60 | #include <linux/acpi.h> |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 61 | #include <acpi/acpi_drivers.h> |
| 62 | #include <acpi/acpi_bus.h> |
| 63 | #include <asm/uaccess.h> |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 64 | #include <linux/sonypi.h> |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 65 | #include <linux/sony-laptop.h> |
Mattia Dongili | a64e62a | 2007-05-01 11:19:53 +0900 | [diff] [blame] | 66 | #ifdef CONFIG_SONYPI_COMPAT |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 67 | #include <linux/poll.h> |
| 68 | #include <linux/miscdevice.h> |
| 69 | #endif |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 70 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 71 | #define DRV_PFX "sony-laptop: " |
malattia@linux.it | b9a218b | 2007-04-09 10:19:06 +0200 | [diff] [blame] | 72 | #define dprintk(msg...) do { \ |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 73 | if (debug) printk(KERN_WARNING DRV_PFX msg); \ |
malattia@linux.it | b9a218b | 2007-04-09 10:19:06 +0200 | [diff] [blame] | 74 | } while (0) |
| 75 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 76 | #define SONY_LAPTOP_DRIVER_VERSION "0.5" |
Alessandro Guido | 50f62af | 2007-01-13 23:04:34 +0100 | [diff] [blame] | 77 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 78 | #define SONY_NC_CLASS "sony-nc" |
| 79 | #define SONY_NC_HID "SNY5001" |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 80 | #define SONY_NC_DRIVER_NAME "Sony Notebook Control Driver" |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 81 | |
| 82 | #define SONY_PIC_CLASS "sony-pic" |
| 83 | #define SONY_PIC_HID "SNY6001" |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 84 | #define SONY_PIC_DRIVER_NAME "Sony Programmable IO Control Driver" |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 85 | |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 86 | MODULE_AUTHOR("Stelian Pop, Mattia Dongili"); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 87 | MODULE_DESCRIPTION("Sony laptop extras driver (SPIC and SNC ACPI device)"); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 88 | MODULE_LICENSE("GPL"); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 89 | MODULE_VERSION(SONY_LAPTOP_DRIVER_VERSION); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 90 | |
| 91 | static int debug; |
| 92 | module_param(debug, int, 0); |
| 93 | MODULE_PARM_DESC(debug, "set this to 1 (and RTFM) if you want to help " |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 94 | "the development of this driver"); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 95 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 96 | static int no_spic; /* = 0 */ |
| 97 | module_param(no_spic, int, 0444); |
| 98 | MODULE_PARM_DESC(no_spic, |
| 99 | "set this if you don't want to enable the SPIC device"); |
| 100 | |
| 101 | static int compat; /* = 0 */ |
| 102 | module_param(compat, int, 0444); |
| 103 | MODULE_PARM_DESC(compat, |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 104 | "set this if you want to enable backward compatibility mode"); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 105 | |
| 106 | static unsigned long mask = 0xffffffff; |
| 107 | module_param(mask, ulong, 0644); |
| 108 | MODULE_PARM_DESC(mask, |
| 109 | "set this to the mask of event you want to enable (see doc)"); |
| 110 | |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 111 | static int camera; /* = 0 */ |
| 112 | module_param(camera, int, 0444); |
| 113 | MODULE_PARM_DESC(camera, |
| 114 | "set this to 1 to enable Motion Eye camera controls " |
| 115 | "(only use it if you have a C1VE or C1VN model)"); |
| 116 | |
Mattia Dongili | a64e62a | 2007-05-01 11:19:53 +0900 | [diff] [blame] | 117 | #ifdef CONFIG_SONYPI_COMPAT |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 118 | static int minor = -1; |
| 119 | module_param(minor, int, 0); |
| 120 | MODULE_PARM_DESC(minor, |
| 121 | "minor number of the misc device for the SPIC compatibility code, " |
| 122 | "default is -1 (automatic)"); |
| 123 | #endif |
| 124 | |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 125 | /*********** Input Devices ***********/ |
| 126 | |
| 127 | #define SONY_LAPTOP_BUF_SIZE 128 |
| 128 | struct sony_laptop_input_s { |
| 129 | atomic_t users; |
| 130 | struct input_dev *jog_dev; |
| 131 | struct input_dev *key_dev; |
| 132 | struct kfifo *fifo; |
| 133 | spinlock_t fifo_lock; |
| 134 | struct workqueue_struct *wq; |
| 135 | }; |
| 136 | static struct sony_laptop_input_s sony_laptop_input = { |
| 137 | .users = ATOMIC_INIT(0), |
| 138 | }; |
| 139 | |
| 140 | struct sony_laptop_keypress { |
| 141 | struct input_dev *dev; |
| 142 | int key; |
| 143 | }; |
| 144 | |
Mattia Dongili | bc57f86 | 2007-07-20 02:01:57 +0900 | [diff] [blame] | 145 | /* Correspondance table between sonypi events |
| 146 | * and input layer indexes in the keymap |
| 147 | */ |
| 148 | static int sony_laptop_input_index[] = { |
| 149 | -1, /* no event */ |
| 150 | -1, /* SONYPI_EVENT_JOGDIAL_DOWN */ |
| 151 | -1, /* SONYPI_EVENT_JOGDIAL_UP */ |
| 152 | -1, /* SONYPI_EVENT_JOGDIAL_DOWN_PRESSED */ |
| 153 | -1, /* SONYPI_EVENT_JOGDIAL_UP_PRESSED */ |
| 154 | -1, /* SONYPI_EVENT_JOGDIAL_PRESSED */ |
| 155 | -1, /* SONYPI_EVENT_JOGDIAL_RELEASED */ |
| 156 | 0, /* SONYPI_EVENT_CAPTURE_PRESSED */ |
| 157 | 1, /* SONYPI_EVENT_CAPTURE_RELEASED */ |
| 158 | 2, /* SONYPI_EVENT_CAPTURE_PARTIALPRESSED */ |
| 159 | 3, /* SONYPI_EVENT_CAPTURE_PARTIALRELEASED */ |
| 160 | 4, /* SONYPI_EVENT_FNKEY_ESC */ |
| 161 | 5, /* SONYPI_EVENT_FNKEY_F1 */ |
| 162 | 6, /* SONYPI_EVENT_FNKEY_F2 */ |
| 163 | 7, /* SONYPI_EVENT_FNKEY_F3 */ |
| 164 | 8, /* SONYPI_EVENT_FNKEY_F4 */ |
| 165 | 9, /* SONYPI_EVENT_FNKEY_F5 */ |
| 166 | 10, /* SONYPI_EVENT_FNKEY_F6 */ |
| 167 | 11, /* SONYPI_EVENT_FNKEY_F7 */ |
| 168 | 12, /* SONYPI_EVENT_FNKEY_F8 */ |
| 169 | 13, /* SONYPI_EVENT_FNKEY_F9 */ |
| 170 | 14, /* SONYPI_EVENT_FNKEY_F10 */ |
| 171 | 15, /* SONYPI_EVENT_FNKEY_F11 */ |
| 172 | 16, /* SONYPI_EVENT_FNKEY_F12 */ |
| 173 | 17, /* SONYPI_EVENT_FNKEY_1 */ |
| 174 | 18, /* SONYPI_EVENT_FNKEY_2 */ |
| 175 | 19, /* SONYPI_EVENT_FNKEY_D */ |
| 176 | 20, /* SONYPI_EVENT_FNKEY_E */ |
| 177 | 21, /* SONYPI_EVENT_FNKEY_F */ |
| 178 | 22, /* SONYPI_EVENT_FNKEY_S */ |
| 179 | 23, /* SONYPI_EVENT_FNKEY_B */ |
| 180 | 24, /* SONYPI_EVENT_BLUETOOTH_PRESSED */ |
| 181 | 25, /* SONYPI_EVENT_PKEY_P1 */ |
| 182 | 26, /* SONYPI_EVENT_PKEY_P2 */ |
| 183 | 27, /* SONYPI_EVENT_PKEY_P3 */ |
| 184 | 28, /* SONYPI_EVENT_BACK_PRESSED */ |
| 185 | -1, /* SONYPI_EVENT_LID_CLOSED */ |
| 186 | -1, /* SONYPI_EVENT_LID_OPENED */ |
| 187 | 29, /* SONYPI_EVENT_BLUETOOTH_ON */ |
| 188 | 30, /* SONYPI_EVENT_BLUETOOTH_OFF */ |
| 189 | 31, /* SONYPI_EVENT_HELP_PRESSED */ |
| 190 | 32, /* SONYPI_EVENT_FNKEY_ONLY */ |
| 191 | 33, /* SONYPI_EVENT_JOGDIAL_FAST_DOWN */ |
| 192 | 34, /* SONYPI_EVENT_JOGDIAL_FAST_UP */ |
| 193 | 35, /* SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */ |
| 194 | 36, /* SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */ |
| 195 | 37, /* SONYPI_EVENT_JOGDIAL_VFAST_DOWN */ |
| 196 | 38, /* SONYPI_EVENT_JOGDIAL_VFAST_UP */ |
| 197 | 39, /* SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */ |
| 198 | 40, /* SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */ |
| 199 | 41, /* SONYPI_EVENT_ZOOM_PRESSED */ |
| 200 | 42, /* SONYPI_EVENT_THUMBPHRASE_PRESSED */ |
| 201 | 43, /* SONYPI_EVENT_MEYE_FACE */ |
| 202 | 44, /* SONYPI_EVENT_MEYE_OPPOSITE */ |
| 203 | 45, /* SONYPI_EVENT_MEMORYSTICK_INSERT */ |
| 204 | 46, /* SONYPI_EVENT_MEMORYSTICK_EJECT */ |
| 205 | -1, /* SONYPI_EVENT_ANYBUTTON_RELEASED */ |
| 206 | -1, /* SONYPI_EVENT_BATTERY_INSERT */ |
| 207 | -1, /* SONYPI_EVENT_BATTERY_REMOVE */ |
| 208 | -1, /* SONYPI_EVENT_FNKEY_RELEASED */ |
| 209 | 47, /* SONYPI_EVENT_WIRELESS_ON */ |
| 210 | 48, /* SONYPI_EVENT_WIRELESS_OFF */ |
| 211 | }; |
| 212 | |
| 213 | static int sony_laptop_input_keycode_map[] = { |
| 214 | KEY_CAMERA, /* 0 SONYPI_EVENT_CAPTURE_PRESSED */ |
| 215 | KEY_RESERVED, /* 1 SONYPI_EVENT_CAPTURE_RELEASED */ |
| 216 | KEY_RESERVED, /* 2 SONYPI_EVENT_CAPTURE_PARTIALPRESSED */ |
| 217 | KEY_RESERVED, /* 3 SONYPI_EVENT_CAPTURE_PARTIALRELEASED */ |
| 218 | KEY_FN_ESC, /* 4 SONYPI_EVENT_FNKEY_ESC */ |
| 219 | KEY_FN_F1, /* 5 SONYPI_EVENT_FNKEY_F1 */ |
| 220 | KEY_FN_F2, /* 6 SONYPI_EVENT_FNKEY_F2 */ |
| 221 | KEY_FN_F3, /* 7 SONYPI_EVENT_FNKEY_F3 */ |
| 222 | KEY_FN_F4, /* 8 SONYPI_EVENT_FNKEY_F4 */ |
| 223 | KEY_FN_F5, /* 9 SONYPI_EVENT_FNKEY_F5 */ |
| 224 | KEY_FN_F6, /* 10 SONYPI_EVENT_FNKEY_F6 */ |
| 225 | KEY_FN_F7, /* 11 SONYPI_EVENT_FNKEY_F7 */ |
| 226 | KEY_FN_F8, /* 12 SONYPI_EVENT_FNKEY_F8 */ |
| 227 | KEY_FN_F9, /* 13 SONYPI_EVENT_FNKEY_F9 */ |
| 228 | KEY_FN_F10, /* 14 SONYPI_EVENT_FNKEY_F10 */ |
| 229 | KEY_FN_F11, /* 15 SONYPI_EVENT_FNKEY_F11 */ |
| 230 | KEY_FN_F12, /* 16 SONYPI_EVENT_FNKEY_F12 */ |
| 231 | KEY_FN_F1, /* 17 SONYPI_EVENT_FNKEY_1 */ |
| 232 | KEY_FN_F2, /* 18 SONYPI_EVENT_FNKEY_2 */ |
| 233 | KEY_FN_D, /* 19 SONYPI_EVENT_FNKEY_D */ |
| 234 | KEY_FN_E, /* 20 SONYPI_EVENT_FNKEY_E */ |
| 235 | KEY_FN_F, /* 21 SONYPI_EVENT_FNKEY_F */ |
| 236 | KEY_FN_S, /* 22 SONYPI_EVENT_FNKEY_S */ |
| 237 | KEY_FN_B, /* 23 SONYPI_EVENT_FNKEY_B */ |
| 238 | KEY_BLUETOOTH, /* 24 SONYPI_EVENT_BLUETOOTH_PRESSED */ |
| 239 | KEY_PROG1, /* 25 SONYPI_EVENT_PKEY_P1 */ |
| 240 | KEY_PROG2, /* 26 SONYPI_EVENT_PKEY_P2 */ |
| 241 | KEY_PROG3, /* 27 SONYPI_EVENT_PKEY_P3 */ |
| 242 | KEY_BACK, /* 28 SONYPI_EVENT_BACK_PRESSED */ |
| 243 | KEY_BLUETOOTH, /* 29 SONYPI_EVENT_BLUETOOTH_ON */ |
| 244 | KEY_BLUETOOTH, /* 30 SONYPI_EVENT_BLUETOOTH_OFF */ |
| 245 | KEY_HELP, /* 31 SONYPI_EVENT_HELP_PRESSED */ |
| 246 | KEY_FN, /* 32 SONYPI_EVENT_FNKEY_ONLY */ |
| 247 | KEY_RESERVED, /* 33 SONYPI_EVENT_JOGDIAL_FAST_DOWN */ |
| 248 | KEY_RESERVED, /* 34 SONYPI_EVENT_JOGDIAL_FAST_UP */ |
| 249 | KEY_RESERVED, /* 35 SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */ |
| 250 | KEY_RESERVED, /* 36 SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */ |
| 251 | KEY_RESERVED, /* 37 SONYPI_EVENT_JOGDIAL_VFAST_DOWN */ |
| 252 | KEY_RESERVED, /* 38 SONYPI_EVENT_JOGDIAL_VFAST_UP */ |
| 253 | KEY_RESERVED, /* 39 SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */ |
| 254 | KEY_RESERVED, /* 40 SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */ |
| 255 | KEY_ZOOM, /* 41 SONYPI_EVENT_ZOOM_PRESSED */ |
| 256 | BTN_THUMB, /* 42 SONYPI_EVENT_THUMBPHRASE_PRESSED */ |
| 257 | KEY_RESERVED, /* 43 SONYPI_EVENT_MEYE_FACE */ |
| 258 | KEY_RESERVED, /* 44 SONYPI_EVENT_MEYE_OPPOSITE */ |
| 259 | KEY_RESERVED, /* 45 SONYPI_EVENT_MEMORYSTICK_INSERT */ |
| 260 | KEY_RESERVED, /* 46 SONYPI_EVENT_MEMORYSTICK_EJECT */ |
| 261 | KEY_WLAN, /* 47 SONYPI_EVENT_WIRELESS_ON */ |
| 262 | KEY_WLAN, /* 48 SONYPI_EVENT_WIRELESS_OFF */ |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | /* release buttons after a short delay if pressed */ |
| 266 | static void do_sony_laptop_release_key(struct work_struct *work) |
| 267 | { |
| 268 | struct sony_laptop_keypress kp; |
| 269 | |
| 270 | while (kfifo_get(sony_laptop_input.fifo, (unsigned char *)&kp, |
| 271 | sizeof(kp)) == sizeof(kp)) { |
| 272 | msleep(10); |
| 273 | input_report_key(kp.dev, kp.key, 0); |
| 274 | input_sync(kp.dev); |
| 275 | } |
| 276 | } |
| 277 | static DECLARE_WORK(sony_laptop_release_key_work, |
| 278 | do_sony_laptop_release_key); |
| 279 | |
| 280 | /* forward event to the input subsytem */ |
| 281 | static void sony_laptop_report_input_event(u8 event) |
| 282 | { |
| 283 | struct input_dev *jog_dev = sony_laptop_input.jog_dev; |
| 284 | struct input_dev *key_dev = sony_laptop_input.key_dev; |
| 285 | struct sony_laptop_keypress kp = { NULL }; |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 286 | |
| 287 | if (event == SONYPI_EVENT_FNKEY_RELEASED) { |
| 288 | /* Nothing, not all VAIOs generate this event */ |
| 289 | return; |
| 290 | } |
| 291 | |
| 292 | /* report events */ |
| 293 | switch (event) { |
| 294 | /* jog_dev events */ |
| 295 | case SONYPI_EVENT_JOGDIAL_UP: |
| 296 | case SONYPI_EVENT_JOGDIAL_UP_PRESSED: |
| 297 | input_report_rel(jog_dev, REL_WHEEL, 1); |
| 298 | input_sync(jog_dev); |
| 299 | return; |
| 300 | |
| 301 | case SONYPI_EVENT_JOGDIAL_DOWN: |
| 302 | case SONYPI_EVENT_JOGDIAL_DOWN_PRESSED: |
| 303 | input_report_rel(jog_dev, REL_WHEEL, -1); |
| 304 | input_sync(jog_dev); |
| 305 | return; |
| 306 | |
| 307 | /* key_dev events */ |
| 308 | case SONYPI_EVENT_JOGDIAL_PRESSED: |
| 309 | kp.key = BTN_MIDDLE; |
| 310 | kp.dev = jog_dev; |
| 311 | break; |
| 312 | |
| 313 | default: |
Mattia Dongili | bc57f86 | 2007-07-20 02:01:57 +0900 | [diff] [blame] | 314 | if (event > ARRAY_SIZE (sony_laptop_input_keycode_map)) { |
| 315 | dprintk("sony_laptop_report_input_event, event not known: %d\n", event); |
| 316 | break; |
| 317 | } |
| 318 | if (sony_laptop_input_index[event] != -1) { |
| 319 | kp.key = sony_laptop_input_keycode_map[sony_laptop_input_index[event]]; |
| 320 | if (kp.key != KEY_UNKNOWN) |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 321 | kp.dev = key_dev; |
Mattia Dongili | bc57f86 | 2007-07-20 02:01:57 +0900 | [diff] [blame] | 322 | } |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 323 | break; |
| 324 | } |
| 325 | |
| 326 | if (kp.dev) { |
| 327 | input_report_key(kp.dev, kp.key, 1); |
Mattia Dongili | bc57f86 | 2007-07-20 02:01:57 +0900 | [diff] [blame] | 328 | /* we emit the scancode so we can always remap the key */ |
| 329 | input_event(kp.dev, EV_MSC, MSC_SCAN, event); |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 330 | input_sync(kp.dev); |
| 331 | kfifo_put(sony_laptop_input.fifo, |
| 332 | (unsigned char *)&kp, sizeof(kp)); |
| 333 | |
| 334 | if (!work_pending(&sony_laptop_release_key_work)) |
| 335 | queue_work(sony_laptop_input.wq, |
| 336 | &sony_laptop_release_key_work); |
| 337 | } else |
| 338 | dprintk("unknown input event %.2x\n", event); |
| 339 | } |
| 340 | |
| 341 | static int sony_laptop_setup_input(void) |
| 342 | { |
| 343 | struct input_dev *jog_dev; |
| 344 | struct input_dev *key_dev; |
| 345 | int i; |
| 346 | int error; |
| 347 | |
| 348 | /* don't run again if already initialized */ |
| 349 | if (atomic_add_return(1, &sony_laptop_input.users) > 1) |
| 350 | return 0; |
| 351 | |
| 352 | /* kfifo */ |
| 353 | spin_lock_init(&sony_laptop_input.fifo_lock); |
| 354 | sony_laptop_input.fifo = |
| 355 | kfifo_alloc(SONY_LAPTOP_BUF_SIZE, GFP_KERNEL, |
| 356 | &sony_laptop_input.fifo_lock); |
| 357 | if (IS_ERR(sony_laptop_input.fifo)) { |
| 358 | printk(KERN_ERR DRV_PFX "kfifo_alloc failed\n"); |
| 359 | error = PTR_ERR(sony_laptop_input.fifo); |
| 360 | goto err_dec_users; |
| 361 | } |
| 362 | |
| 363 | /* init workqueue */ |
| 364 | sony_laptop_input.wq = create_singlethread_workqueue("sony-laptop"); |
| 365 | if (!sony_laptop_input.wq) { |
| 366 | printk(KERN_ERR DRV_PFX |
| 367 | "Unabe to create workqueue.\n"); |
| 368 | error = -ENXIO; |
| 369 | goto err_free_kfifo; |
| 370 | } |
| 371 | |
| 372 | /* input keys */ |
| 373 | key_dev = input_allocate_device(); |
| 374 | if (!key_dev) { |
| 375 | error = -ENOMEM; |
| 376 | goto err_destroy_wq; |
| 377 | } |
| 378 | |
| 379 | key_dev->name = "Sony Vaio Keys"; |
| 380 | key_dev->id.bustype = BUS_ISA; |
| 381 | key_dev->id.vendor = PCI_VENDOR_ID_SONY; |
| 382 | |
| 383 | /* Initialize the Input Drivers: special keys */ |
Mattia Dongili | bc57f86 | 2007-07-20 02:01:57 +0900 | [diff] [blame] | 384 | set_bit(EV_KEY, key_dev->evbit); |
| 385 | set_bit(EV_MSC, key_dev->evbit); |
| 386 | set_bit(MSC_SCAN, key_dev->mscbit); |
| 387 | key_dev->keycodesize = sizeof(sony_laptop_input_keycode_map[0]); |
| 388 | key_dev->keycodemax = ARRAY_SIZE(sony_laptop_input_keycode_map); |
| 389 | key_dev->keycode = &sony_laptop_input_keycode_map; |
| 390 | for (i = 0; i < ARRAY_SIZE(sony_laptop_input_keycode_map); i++) { |
| 391 | if (sony_laptop_input_keycode_map[i] != KEY_RESERVED) { |
| 392 | set_bit(sony_laptop_input_keycode_map[i], |
| 393 | key_dev->keybit); |
| 394 | } |
| 395 | } |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 396 | |
| 397 | error = input_register_device(key_dev); |
| 398 | if (error) |
| 399 | goto err_free_keydev; |
| 400 | |
| 401 | sony_laptop_input.key_dev = key_dev; |
| 402 | |
| 403 | /* jogdial */ |
| 404 | jog_dev = input_allocate_device(); |
| 405 | if (!jog_dev) { |
| 406 | error = -ENOMEM; |
| 407 | goto err_unregister_keydev; |
| 408 | } |
| 409 | |
| 410 | jog_dev->name = "Sony Vaio Jogdial"; |
| 411 | jog_dev->id.bustype = BUS_ISA; |
| 412 | jog_dev->id.vendor = PCI_VENDOR_ID_SONY; |
| 413 | |
| 414 | jog_dev->evbit[0] = BIT(EV_KEY) | BIT(EV_REL); |
| 415 | jog_dev->keybit[LONG(BTN_MOUSE)] = BIT(BTN_MIDDLE); |
| 416 | jog_dev->relbit[0] = BIT(REL_WHEEL); |
| 417 | |
| 418 | error = input_register_device(jog_dev); |
| 419 | if (error) |
| 420 | goto err_free_jogdev; |
| 421 | |
| 422 | sony_laptop_input.jog_dev = jog_dev; |
| 423 | |
| 424 | return 0; |
| 425 | |
| 426 | err_free_jogdev: |
| 427 | input_free_device(jog_dev); |
| 428 | |
| 429 | err_unregister_keydev: |
| 430 | input_unregister_device(key_dev); |
| 431 | /* to avoid kref underflow below at input_free_device */ |
| 432 | key_dev = NULL; |
| 433 | |
| 434 | err_free_keydev: |
| 435 | input_free_device(key_dev); |
| 436 | |
| 437 | err_destroy_wq: |
| 438 | destroy_workqueue(sony_laptop_input.wq); |
| 439 | |
| 440 | err_free_kfifo: |
| 441 | kfifo_free(sony_laptop_input.fifo); |
| 442 | |
| 443 | err_dec_users: |
| 444 | atomic_dec(&sony_laptop_input.users); |
| 445 | return error; |
| 446 | } |
| 447 | |
| 448 | static void sony_laptop_remove_input(void) |
| 449 | { |
| 450 | /* cleanup only after the last user has gone */ |
| 451 | if (!atomic_dec_and_test(&sony_laptop_input.users)) |
| 452 | return; |
| 453 | |
| 454 | /* flush workqueue first */ |
| 455 | flush_workqueue(sony_laptop_input.wq); |
| 456 | |
| 457 | /* destroy input devs */ |
| 458 | input_unregister_device(sony_laptop_input.key_dev); |
| 459 | sony_laptop_input.key_dev = NULL; |
| 460 | |
| 461 | if (sony_laptop_input.jog_dev) { |
| 462 | input_unregister_device(sony_laptop_input.jog_dev); |
| 463 | sony_laptop_input.jog_dev = NULL; |
| 464 | } |
| 465 | |
| 466 | destroy_workqueue(sony_laptop_input.wq); |
| 467 | kfifo_free(sony_laptop_input.fifo); |
| 468 | } |
| 469 | |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 470 | /*********** Platform Device ***********/ |
| 471 | |
| 472 | static atomic_t sony_pf_users = ATOMIC_INIT(0); |
| 473 | static struct platform_driver sony_pf_driver = { |
| 474 | .driver = { |
| 475 | .name = "sony-laptop", |
| 476 | .owner = THIS_MODULE, |
| 477 | } |
| 478 | }; |
| 479 | static struct platform_device *sony_pf_device; |
| 480 | |
| 481 | static int sony_pf_add(void) |
| 482 | { |
| 483 | int ret = 0; |
| 484 | |
| 485 | /* don't run again if already initialized */ |
| 486 | if (atomic_add_return(1, &sony_pf_users) > 1) |
| 487 | return 0; |
| 488 | |
| 489 | ret = platform_driver_register(&sony_pf_driver); |
| 490 | if (ret) |
| 491 | goto out; |
| 492 | |
| 493 | sony_pf_device = platform_device_alloc("sony-laptop", -1); |
| 494 | if (!sony_pf_device) { |
| 495 | ret = -ENOMEM; |
| 496 | goto out_platform_registered; |
| 497 | } |
| 498 | |
| 499 | ret = platform_device_add(sony_pf_device); |
| 500 | if (ret) |
| 501 | goto out_platform_alloced; |
| 502 | |
| 503 | return 0; |
| 504 | |
| 505 | out_platform_alloced: |
| 506 | platform_device_put(sony_pf_device); |
| 507 | sony_pf_device = NULL; |
| 508 | out_platform_registered: |
| 509 | platform_driver_unregister(&sony_pf_driver); |
| 510 | out: |
| 511 | atomic_dec(&sony_pf_users); |
| 512 | return ret; |
| 513 | } |
| 514 | |
| 515 | static void sony_pf_remove(void) |
| 516 | { |
| 517 | /* deregister only after the last user has gone */ |
| 518 | if (!atomic_dec_and_test(&sony_pf_users)) |
| 519 | return; |
| 520 | |
| 521 | platform_device_del(sony_pf_device); |
| 522 | platform_device_put(sony_pf_device); |
| 523 | platform_driver_unregister(&sony_pf_driver); |
| 524 | } |
| 525 | |
| 526 | /*********** SNC (SNY5001) Device ***********/ |
| 527 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 528 | /* the device uses 1-based values, while the backlight subsystem uses |
| 529 | 0-based values */ |
| 530 | #define SONY_MAX_BRIGHTNESS 8 |
| 531 | |
| 532 | #define SNC_VALIDATE_IN 0 |
| 533 | #define SNC_VALIDATE_OUT 1 |
| 534 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 535 | static ssize_t sony_nc_sysfs_show(struct device *, struct device_attribute *, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 536 | char *); |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 537 | static ssize_t sony_nc_sysfs_store(struct device *, struct device_attribute *, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 538 | const char *, size_t); |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 539 | static int boolean_validate(const int, const int); |
| 540 | static int brightness_default_validate(const int, const int); |
| 541 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 542 | struct sony_nc_value { |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 543 | char *name; /* name of the entry */ |
| 544 | char **acpiget; /* names of the ACPI get function */ |
| 545 | char **acpiset; /* names of the ACPI set function */ |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 546 | int (*validate)(const int, const int); /* input/output validation */ |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 547 | int value; /* current setting */ |
| 548 | int valid; /* Has ever been set */ |
| 549 | int debug; /* active only in debug mode ? */ |
| 550 | struct device_attribute devattr; /* sysfs atribute */ |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 551 | }; |
| 552 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 553 | #define SNC_HANDLE_NAMES(_name, _values...) \ |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 554 | static char *snc_##_name[] = { _values, NULL } |
| 555 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 556 | #define SNC_HANDLE(_name, _getters, _setters, _validate, _debug) \ |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 557 | { \ |
| 558 | .name = __stringify(_name), \ |
| 559 | .acpiget = _getters, \ |
| 560 | .acpiset = _setters, \ |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 561 | .validate = _validate, \ |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 562 | .debug = _debug, \ |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 563 | .devattr = __ATTR(_name, 0, sony_nc_sysfs_show, sony_nc_sysfs_store), \ |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 564 | } |
| 565 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 566 | #define SNC_HANDLE_NULL { .name = NULL } |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 567 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 568 | SNC_HANDLE_NAMES(fnkey_get, "GHKE"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 569 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 570 | SNC_HANDLE_NAMES(brightness_def_get, "GPBR"); |
| 571 | SNC_HANDLE_NAMES(brightness_def_set, "SPBR"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 572 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 573 | SNC_HANDLE_NAMES(cdpower_get, "GCDP"); |
| 574 | SNC_HANDLE_NAMES(cdpower_set, "SCDP", "CDPW"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 575 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 576 | SNC_HANDLE_NAMES(audiopower_get, "GAZP"); |
| 577 | SNC_HANDLE_NAMES(audiopower_set, "AZPW"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 578 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 579 | SNC_HANDLE_NAMES(lanpower_get, "GLNP"); |
| 580 | SNC_HANDLE_NAMES(lanpower_set, "LNPW"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 581 | |
Mattia Dongili | 044847e | 2007-07-16 02:34:33 +0900 | [diff] [blame] | 582 | SNC_HANDLE_NAMES(lidstate_get, "GLID"); |
| 583 | |
| 584 | SNC_HANDLE_NAMES(indicatorlamp_get, "GILS"); |
| 585 | SNC_HANDLE_NAMES(indicatorlamp_set, "SILS"); |
| 586 | |
| 587 | SNC_HANDLE_NAMES(gainbass_get, "GMGB"); |
| 588 | SNC_HANDLE_NAMES(gainbass_set, "CMGB"); |
| 589 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 590 | SNC_HANDLE_NAMES(PID_get, "GPID"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 591 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 592 | SNC_HANDLE_NAMES(CTR_get, "GCTR"); |
| 593 | SNC_HANDLE_NAMES(CTR_set, "SCTR"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 594 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 595 | SNC_HANDLE_NAMES(PCR_get, "GPCR"); |
| 596 | SNC_HANDLE_NAMES(PCR_set, "SPCR"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 597 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 598 | SNC_HANDLE_NAMES(CMI_get, "GCMI"); |
| 599 | SNC_HANDLE_NAMES(CMI_set, "SCMI"); |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 600 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 601 | static struct sony_nc_value sony_nc_values[] = { |
| 602 | SNC_HANDLE(brightness_default, snc_brightness_def_get, |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 603 | snc_brightness_def_set, brightness_default_validate, 0), |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 604 | SNC_HANDLE(fnkey, snc_fnkey_get, NULL, NULL, 0), |
| 605 | SNC_HANDLE(cdpower, snc_cdpower_get, snc_cdpower_set, boolean_validate, 0), |
| 606 | SNC_HANDLE(audiopower, snc_audiopower_get, snc_audiopower_set, |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 607 | boolean_validate, 0), |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 608 | SNC_HANDLE(lanpower, snc_lanpower_get, snc_lanpower_set, |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 609 | boolean_validate, 1), |
Mattia Dongili | 044847e | 2007-07-16 02:34:33 +0900 | [diff] [blame] | 610 | SNC_HANDLE(lidstate, snc_lidstate_get, NULL, |
| 611 | boolean_validate, 0), |
| 612 | SNC_HANDLE(indicatorlamp, snc_indicatorlamp_get, snc_indicatorlamp_set, |
| 613 | boolean_validate, 0), |
| 614 | SNC_HANDLE(gainbass, snc_gainbass_get, snc_gainbass_set, |
| 615 | boolean_validate, 0), |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 616 | /* unknown methods */ |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 617 | SNC_HANDLE(PID, snc_PID_get, NULL, NULL, 1), |
| 618 | SNC_HANDLE(CTR, snc_CTR_get, snc_CTR_set, NULL, 1), |
| 619 | SNC_HANDLE(PCR, snc_PCR_get, snc_PCR_set, NULL, 1), |
| 620 | SNC_HANDLE(CMI, snc_CMI_get, snc_CMI_set, NULL, 1), |
| 621 | SNC_HANDLE_NULL |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 622 | }; |
| 623 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 624 | static acpi_handle sony_nc_acpi_handle; |
| 625 | static struct acpi_device *sony_nc_acpi_device = NULL; |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 626 | |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 627 | /* |
| 628 | * acpi_evaluate_object wrappers |
| 629 | */ |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 630 | static int acpi_callgetfunc(acpi_handle handle, char *name, int *result) |
| 631 | { |
| 632 | struct acpi_buffer output; |
| 633 | union acpi_object out_obj; |
| 634 | acpi_status status; |
| 635 | |
| 636 | output.length = sizeof(out_obj); |
| 637 | output.pointer = &out_obj; |
| 638 | |
| 639 | status = acpi_evaluate_object(handle, name, NULL, &output); |
| 640 | if ((status == AE_OK) && (out_obj.type == ACPI_TYPE_INTEGER)) { |
| 641 | *result = out_obj.integer.value; |
| 642 | return 0; |
| 643 | } |
| 644 | |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 645 | printk(KERN_WARNING DRV_PFX "acpi_callreadfunc failed\n"); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 646 | |
| 647 | return -1; |
| 648 | } |
| 649 | |
| 650 | static int acpi_callsetfunc(acpi_handle handle, char *name, int value, |
| 651 | int *result) |
| 652 | { |
| 653 | struct acpi_object_list params; |
| 654 | union acpi_object in_obj; |
| 655 | struct acpi_buffer output; |
| 656 | union acpi_object out_obj; |
| 657 | acpi_status status; |
| 658 | |
| 659 | params.count = 1; |
| 660 | params.pointer = &in_obj; |
| 661 | in_obj.type = ACPI_TYPE_INTEGER; |
| 662 | in_obj.integer.value = value; |
| 663 | |
| 664 | output.length = sizeof(out_obj); |
| 665 | output.pointer = &out_obj; |
| 666 | |
| 667 | status = acpi_evaluate_object(handle, name, ¶ms, &output); |
| 668 | if (status == AE_OK) { |
| 669 | if (result != NULL) { |
| 670 | if (out_obj.type != ACPI_TYPE_INTEGER) { |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 671 | printk(KERN_WARNING DRV_PFX "acpi_evaluate_object bad " |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 672 | "return type\n"); |
| 673 | return -1; |
| 674 | } |
| 675 | *result = out_obj.integer.value; |
| 676 | } |
| 677 | return 0; |
| 678 | } |
| 679 | |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 680 | printk(KERN_WARNING DRV_PFX "acpi_evaluate_object failed\n"); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 681 | |
| 682 | return -1; |
| 683 | } |
| 684 | |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 685 | /* |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 686 | * sony_nc_values input/output validate functions |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 687 | */ |
| 688 | |
| 689 | /* brightness_default_validate: |
| 690 | * |
| 691 | * manipulate input output values to keep consistency with the |
| 692 | * backlight framework for which brightness values are 0-based. |
| 693 | */ |
| 694 | static int brightness_default_validate(const int direction, const int value) |
| 695 | { |
| 696 | switch (direction) { |
| 697 | case SNC_VALIDATE_OUT: |
| 698 | return value - 1; |
| 699 | case SNC_VALIDATE_IN: |
| 700 | if (value >= 0 && value < SONY_MAX_BRIGHTNESS) |
| 701 | return value + 1; |
| 702 | } |
| 703 | return -EINVAL; |
| 704 | } |
| 705 | |
| 706 | /* boolean_validate: |
| 707 | * |
| 708 | * on input validate boolean values 0/1, on output just pass the |
| 709 | * received value. |
| 710 | */ |
| 711 | static int boolean_validate(const int direction, const int value) |
| 712 | { |
| 713 | if (direction == SNC_VALIDATE_IN) { |
| 714 | if (value != 0 && value != 1) |
| 715 | return -EINVAL; |
| 716 | } |
| 717 | return value; |
| 718 | } |
| 719 | |
| 720 | /* |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 721 | * Sysfs show/store common to all sony_nc_values |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 722 | */ |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 723 | static ssize_t sony_nc_sysfs_show(struct device *dev, struct device_attribute *attr, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 724 | char *buffer) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 725 | { |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 726 | int value; |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 727 | struct sony_nc_value *item = |
| 728 | container_of(attr, struct sony_nc_value, devattr); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 729 | |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 730 | if (!*item->acpiget) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 731 | return -EIO; |
| 732 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 733 | if (acpi_callgetfunc(sony_nc_acpi_handle, *item->acpiget, &value) < 0) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 734 | return -EIO; |
| 735 | |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 736 | if (item->validate) |
| 737 | value = item->validate(SNC_VALIDATE_OUT, value); |
| 738 | |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 739 | return snprintf(buffer, PAGE_SIZE, "%d\n", value); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 740 | } |
| 741 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 742 | static ssize_t sony_nc_sysfs_store(struct device *dev, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 743 | struct device_attribute *attr, |
| 744 | const char *buffer, size_t count) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 745 | { |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 746 | int value; |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 747 | struct sony_nc_value *item = |
| 748 | container_of(attr, struct sony_nc_value, devattr); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 749 | |
| 750 | if (!item->acpiset) |
| 751 | return -EIO; |
| 752 | |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 753 | if (count > 31) |
| 754 | return -EINVAL; |
| 755 | |
| 756 | value = simple_strtoul(buffer, NULL, 10); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 757 | |
Mattia Dongili | 156c221 | 2007-02-12 22:01:07 +0100 | [diff] [blame] | 758 | if (item->validate) |
| 759 | value = item->validate(SNC_VALIDATE_IN, value); |
| 760 | |
| 761 | if (value < 0) |
| 762 | return value; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 763 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 764 | if (acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset, value, NULL) < 0) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 765 | return -EIO; |
Andrew Morton | 3f4f461 | 2007-01-13 23:04:32 +0100 | [diff] [blame] | 766 | item->value = value; |
| 767 | item->valid = 1; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 768 | return count; |
| 769 | } |
| 770 | |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 771 | |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 772 | /* |
| 773 | * Backlight device |
| 774 | */ |
| 775 | static int sony_backlight_update_status(struct backlight_device *bd) |
Andrew Morton | 3f4f461 | 2007-01-13 23:04:32 +0100 | [diff] [blame] | 776 | { |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 777 | return acpi_callsetfunc(sony_nc_acpi_handle, "SBRT", |
Richard Purdie | 321709c | 2007-02-10 15:04:08 +0000 | [diff] [blame] | 778 | bd->props.brightness + 1, NULL); |
Andrew Morton | 3f4f461 | 2007-01-13 23:04:32 +0100 | [diff] [blame] | 779 | } |
| 780 | |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 781 | static int sony_backlight_get_brightness(struct backlight_device *bd) |
| 782 | { |
| 783 | int value; |
| 784 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 785 | if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value)) |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 786 | return 0; |
| 787 | /* brightness levels are 1-based, while backlight ones are 0-based */ |
| 788 | return value - 1; |
| 789 | } |
| 790 | |
| 791 | static struct backlight_device *sony_backlight_device; |
Richard Purdie | 321709c | 2007-02-10 15:04:08 +0000 | [diff] [blame] | 792 | static struct backlight_ops sony_backlight_ops = { |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 793 | .update_status = sony_backlight_update_status, |
| 794 | .get_brightness = sony_backlight_get_brightness, |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 795 | }; |
| 796 | |
| 797 | /* |
Mattia Dongili | 6315fd1 | 2007-07-16 02:34:35 +0900 | [diff] [blame] | 798 | * New SNC-only Vaios event mapping to driver known keys |
| 799 | */ |
| 800 | struct sony_nc_event { |
| 801 | u8 data; |
| 802 | u8 event; |
| 803 | }; |
| 804 | |
| 805 | static struct sony_nc_event *sony_nc_events; |
| 806 | |
| 807 | /* Vaio C* --maybe also FE*, N* and AR* ?-- special init sequence |
| 808 | * for Fn keys |
| 809 | */ |
| 810 | static int sony_nc_C_enable(struct dmi_system_id *id) |
| 811 | { |
| 812 | int result = 0; |
| 813 | |
| 814 | printk(KERN_NOTICE DRV_PFX "detected %s\n", id->ident); |
| 815 | |
| 816 | sony_nc_events = id->driver_data; |
| 817 | |
| 818 | if (acpi_callsetfunc(sony_nc_acpi_handle, "SN02", 0x4, &result) < 0 |
| 819 | || acpi_callsetfunc(sony_nc_acpi_handle, "SN07", 0x2, &result) < 0 |
| 820 | || acpi_callsetfunc(sony_nc_acpi_handle, "SN02", 0x10, &result) < 0 |
| 821 | || acpi_callsetfunc(sony_nc_acpi_handle, "SN07", 0x0, &result) < 0 |
| 822 | || acpi_callsetfunc(sony_nc_acpi_handle, "SN03", 0x2, &result) < 0 |
| 823 | || acpi_callsetfunc(sony_nc_acpi_handle, "SN07", 0x101, &result) < 0) { |
| 824 | printk(KERN_WARNING DRV_PFX "failed to initialize SNC, some " |
| 825 | "functionalities may be missing\n"); |
| 826 | return 1; |
| 827 | } |
| 828 | return 0; |
| 829 | } |
| 830 | |
| 831 | static struct sony_nc_event sony_C_events[] = { |
| 832 | { 0x81, SONYPI_EVENT_FNKEY_F1 }, |
| 833 | { 0x01, SONYPI_EVENT_FNKEY_RELEASED }, |
| 834 | { 0x85, SONYPI_EVENT_FNKEY_F5 }, |
| 835 | { 0x05, SONYPI_EVENT_FNKEY_RELEASED }, |
| 836 | { 0x86, SONYPI_EVENT_FNKEY_F6 }, |
| 837 | { 0x06, SONYPI_EVENT_FNKEY_RELEASED }, |
| 838 | { 0x87, SONYPI_EVENT_FNKEY_F7 }, |
| 839 | { 0x07, SONYPI_EVENT_FNKEY_RELEASED }, |
| 840 | { 0x8A, SONYPI_EVENT_FNKEY_F10 }, |
| 841 | { 0x0A, SONYPI_EVENT_FNKEY_RELEASED }, |
| 842 | { 0x8C, SONYPI_EVENT_FNKEY_F12 }, |
| 843 | { 0x0C, SONYPI_EVENT_FNKEY_RELEASED }, |
| 844 | { 0, 0 }, |
| 845 | }; |
| 846 | |
| 847 | /* SNC-only model map */ |
| 848 | struct dmi_system_id sony_nc_ids[] = { |
| 849 | { |
Mattia Dongili | 89892d1 | 2007-07-16 02:34:38 +0900 | [diff] [blame^] | 850 | .ident = "Sony Vaio FE Series", |
| 851 | .callback = sony_nc_C_enable, |
| 852 | .driver_data = sony_C_events, |
| 853 | .matches = { |
| 854 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 855 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FE"), |
| 856 | }, |
| 857 | }, |
| 858 | { |
Mattia Dongili | 6315fd1 | 2007-07-16 02:34:35 +0900 | [diff] [blame] | 859 | .ident = "Sony Vaio C Series", |
| 860 | .callback = sony_nc_C_enable, |
| 861 | .driver_data = sony_C_events, |
| 862 | .matches = { |
| 863 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 864 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-C"), |
| 865 | }, |
| 866 | }, |
| 867 | { } |
| 868 | }; |
| 869 | |
| 870 | /* |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 871 | * ACPI callbacks |
| 872 | */ |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 873 | static void sony_acpi_notify(acpi_handle handle, u32 event, void *data) |
| 874 | { |
Mattia Dongili | 6315fd1 | 2007-07-16 02:34:35 +0900 | [diff] [blame] | 875 | struct sony_nc_event *evmap; |
| 876 | u32 ev = event; |
| 877 | int result; |
| 878 | |
| 879 | if (ev == 0x92) { |
| 880 | /* read the key pressed from EC.GECR |
| 881 | * A call to SN07 with 0x0202 will do it as well respecting |
| 882 | * the current protocol on different OSes |
| 883 | * |
| 884 | * Note: the path for GECR may be |
| 885 | * \_SB.PCI0.LPCB.EC (C, FE, AR, N and friends) |
| 886 | * \_SB.PCI0.PIB.EC0 (VGN-FR notifications are sent directly, no GECR) |
| 887 | * |
| 888 | * TODO: we may want to do the same for the older GHKE -need |
| 889 | * dmi list- so this snippet may become one more callback. |
| 890 | */ |
| 891 | if (acpi_callsetfunc(handle, "SN07", 0x0202, &result) < 0) |
| 892 | dprintk("sony_acpi_notify, unable to decode event 0x%.2x\n", ev); |
| 893 | else |
| 894 | ev = result & 0xFF; |
| 895 | } |
| 896 | |
| 897 | if (sony_nc_events) |
| 898 | for (evmap = sony_nc_events; evmap->event; evmap++) { |
| 899 | if (evmap->data == ev) { |
| 900 | ev = evmap->event; |
| 901 | break; |
| 902 | } |
| 903 | } |
| 904 | |
| 905 | dprintk("sony_acpi_notify, event: 0x%.2x\n", ev); |
| 906 | sony_laptop_report_input_event(ev); |
| 907 | acpi_bus_generate_event(sony_nc_acpi_device, 1, ev); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 908 | } |
| 909 | |
| 910 | static acpi_status sony_walk_callback(acpi_handle handle, u32 level, |
| 911 | void *context, void **return_value) |
| 912 | { |
| 913 | struct acpi_namespace_node *node; |
| 914 | union acpi_operand_object *operand; |
| 915 | |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 916 | node = (struct acpi_namespace_node *)handle; |
| 917 | operand = (union acpi_operand_object *)node->object; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 918 | |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 919 | printk(KERN_WARNING DRV_PFX "method: name: %4.4s, args %X\n", node->name.ascii, |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 920 | (u32) operand->method.param_count); |
| 921 | |
| 922 | return AE_OK; |
| 923 | } |
| 924 | |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 925 | /* |
| 926 | * ACPI device |
| 927 | */ |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 928 | static int sony_nc_resume(struct acpi_device *device) |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 929 | { |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 930 | struct sony_nc_value *item; |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 931 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 932 | for (item = sony_nc_values; item->name; item++) { |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 933 | int ret; |
| 934 | |
| 935 | if (!item->valid) |
| 936 | continue; |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 937 | ret = acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 938 | item->value, NULL); |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 939 | if (ret < 0) { |
| 940 | printk("%s: %d\n", __FUNCTION__, ret); |
| 941 | break; |
| 942 | } |
| 943 | } |
Mattia Dongili | 6315fd1 | 2007-07-16 02:34:35 +0900 | [diff] [blame] | 944 | |
| 945 | /* re-initialize models with specific requirements */ |
| 946 | dmi_check_system(sony_nc_ids); |
| 947 | |
Mattia Dongili | d78865c | 2007-02-07 20:01:56 +0100 | [diff] [blame] | 948 | return 0; |
| 949 | } |
| 950 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 951 | static int sony_nc_add(struct acpi_device *device) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 952 | { |
| 953 | acpi_status status; |
Andrew Morton | 8607c67 | 2007-03-06 02:29:42 -0800 | [diff] [blame] | 954 | int result = 0; |
Alessandro Guido | 50f62af | 2007-01-13 23:04:34 +0100 | [diff] [blame] | 955 | acpi_handle handle; |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 956 | struct sony_nc_value *item; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 957 | |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 958 | printk(KERN_INFO DRV_PFX "%s v%s.\n", |
| 959 | SONY_NC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION); |
| 960 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 961 | sony_nc_acpi_device = device; |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 962 | strcpy(acpi_device_class(device), "sony/hotkey"); |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 963 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 964 | sony_nc_acpi_handle = device->handle; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 965 | |
Mattia Dongili | b25b732 | 2007-07-16 02:34:36 +0900 | [diff] [blame] | 966 | /* read device status */ |
| 967 | result = acpi_bus_get_status(device); |
| 968 | /* bail IFF the above call was successful and the device is not present */ |
| 969 | if (!result && !device->status.present) { |
| 970 | dprintk("Device not present\n"); |
| 971 | result = -ENODEV; |
| 972 | goto outwalk; |
| 973 | } |
| 974 | |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 975 | if (debug) { |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 976 | status = acpi_walk_namespace(ACPI_TYPE_METHOD, sony_nc_acpi_handle, |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 977 | 1, sony_walk_callback, NULL, NULL); |
| 978 | if (ACPI_FAILURE(status)) { |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 979 | printk(KERN_WARNING DRV_PFX "unable to walk acpi resources\n"); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 980 | result = -ENODEV; |
| 981 | goto outwalk; |
| 982 | } |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 983 | } |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 984 | |
Mattia Dongili | b25b732 | 2007-07-16 02:34:36 +0900 | [diff] [blame] | 985 | /* try to _INI the device if such method exists (ACPI spec 3.0-6.5.1 |
| 986 | * should be respected as we already checked for the device presence above */ |
| 987 | if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, METHOD_NAME__INI, &handle))) { |
| 988 | dprintk("Invoking _INI\n"); |
| 989 | if (ACPI_FAILURE(acpi_evaluate_object(sony_nc_acpi_handle, METHOD_NAME__INI, |
| 990 | NULL, NULL))) |
| 991 | dprintk("_INI Method failed\n"); |
| 992 | } |
| 993 | |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 994 | /* setup input devices and helper fifo */ |
| 995 | result = sony_laptop_setup_input(); |
| 996 | if (result) { |
| 997 | printk(KERN_ERR DRV_PFX |
| 998 | "Unabe to create input devices.\n"); |
| 999 | goto outwalk; |
| 1000 | } |
| 1001 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1002 | status = acpi_install_notify_handler(sony_nc_acpi_handle, |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 1003 | ACPI_DEVICE_NOTIFY, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1004 | sony_acpi_notify, NULL); |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 1005 | if (ACPI_FAILURE(status)) { |
Mattia Dongili | b25b732 | 2007-07-16 02:34:36 +0900 | [diff] [blame] | 1006 | printk(KERN_WARNING DRV_PFX "unable to install notify handler (%u)\n", status); |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 1007 | result = -ENODEV; |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 1008 | goto outinput; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1009 | } |
| 1010 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1011 | if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT", &handle))) { |
Alessandro Guido | 50f62af | 2007-01-13 23:04:34 +0100 | [diff] [blame] | 1012 | sony_backlight_device = backlight_device_register("sony", NULL, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1013 | NULL, |
Richard Purdie | 321709c | 2007-02-10 15:04:08 +0000 | [diff] [blame] | 1014 | &sony_backlight_ops); |
Mattia Dongili | 7df03b82 | 2007-01-13 23:04:41 +0100 | [diff] [blame] | 1015 | |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1016 | if (IS_ERR(sony_backlight_device)) { |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 1017 | printk(KERN_WARNING DRV_PFX "unable to register backlight device\n"); |
Mattia Dongili | 7df03b82 | 2007-01-13 23:04:41 +0100 | [diff] [blame] | 1018 | sony_backlight_device = NULL; |
Richard Purdie | 321709c | 2007-02-10 15:04:08 +0000 | [diff] [blame] | 1019 | } else { |
| 1020 | sony_backlight_device->props.brightness = |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1021 | sony_backlight_get_brightness |
| 1022 | (sony_backlight_device); |
Richard Purdie | 321709c | 2007-02-10 15:04:08 +0000 | [diff] [blame] | 1023 | sony_backlight_device->props.max_brightness = |
| 1024 | SONY_MAX_BRIGHTNESS - 1; |
| 1025 | } |
| 1026 | |
Alessandro Guido | 50f62af | 2007-01-13 23:04:34 +0100 | [diff] [blame] | 1027 | } |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1028 | |
Mattia Dongili | 6315fd1 | 2007-07-16 02:34:35 +0900 | [diff] [blame] | 1029 | /* initialize models with specific requirements */ |
| 1030 | dmi_check_system(sony_nc_ids); |
| 1031 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1032 | result = sony_pf_add(); |
| 1033 | if (result) |
Mattia Dongili | ed3aa4b | 2007-02-07 20:01:54 +0100 | [diff] [blame] | 1034 | goto outbacklight; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1035 | |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 1036 | /* create sony_pf sysfs attributes related to the SNC device */ |
| 1037 | for (item = sony_nc_values; item->name; ++item) { |
| 1038 | |
| 1039 | if (!debug && item->debug) |
| 1040 | continue; |
| 1041 | |
| 1042 | /* find the available acpiget as described in the DSDT */ |
| 1043 | for (; item->acpiget && *item->acpiget; ++item->acpiget) { |
| 1044 | if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, |
| 1045 | *item->acpiget, |
| 1046 | &handle))) { |
malattia@linux.it | b9a218b | 2007-04-09 10:19:06 +0200 | [diff] [blame] | 1047 | dprintk("Found %s getter: %s\n", |
| 1048 | item->name, *item->acpiget); |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 1049 | item->devattr.attr.mode |= S_IRUGO; |
| 1050 | break; |
| 1051 | } |
| 1052 | } |
| 1053 | |
| 1054 | /* find the available acpiset as described in the DSDT */ |
| 1055 | for (; item->acpiset && *item->acpiset; ++item->acpiset) { |
| 1056 | if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, |
| 1057 | *item->acpiset, |
| 1058 | &handle))) { |
malattia@linux.it | b9a218b | 2007-04-09 10:19:06 +0200 | [diff] [blame] | 1059 | dprintk("Found %s setter: %s\n", |
| 1060 | item->name, *item->acpiset); |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 1061 | item->devattr.attr.mode |= S_IWUSR; |
| 1062 | break; |
| 1063 | } |
| 1064 | } |
| 1065 | |
| 1066 | if (item->devattr.attr.mode != 0) { |
| 1067 | result = |
| 1068 | device_create_file(&sony_pf_device->dev, |
| 1069 | &item->devattr); |
| 1070 | if (result) |
| 1071 | goto out_sysfs; |
| 1072 | } |
| 1073 | } |
| 1074 | |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1075 | return 0; |
| 1076 | |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 1077 | out_sysfs: |
| 1078 | for (item = sony_nc_values; item->name; ++item) { |
| 1079 | device_remove_file(&sony_pf_device->dev, &item->devattr); |
| 1080 | } |
| 1081 | sony_pf_remove(); |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 1082 | |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1083 | outbacklight: |
Mattia Dongili | 7df03b82 | 2007-01-13 23:04:41 +0100 | [diff] [blame] | 1084 | if (sony_backlight_device) |
| 1085 | backlight_device_unregister(sony_backlight_device); |
| 1086 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1087 | status = acpi_remove_notify_handler(sony_nc_acpi_handle, |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 1088 | ACPI_DEVICE_NOTIFY, |
| 1089 | sony_acpi_notify); |
| 1090 | if (ACPI_FAILURE(status)) |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 1091 | printk(KERN_WARNING DRV_PFX "unable to remove notify handler\n"); |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 1092 | |
| 1093 | outinput: |
| 1094 | sony_laptop_remove_input(); |
| 1095 | |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1096 | outwalk: |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1097 | return result; |
| 1098 | } |
| 1099 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1100 | static int sony_nc_remove(struct acpi_device *device, int type) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1101 | { |
| 1102 | acpi_status status; |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 1103 | struct sony_nc_value *item; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1104 | |
Alessandro Guido | 50f62af | 2007-01-13 23:04:34 +0100 | [diff] [blame] | 1105 | if (sony_backlight_device) |
| 1106 | backlight_device_unregister(sony_backlight_device); |
| 1107 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1108 | sony_nc_acpi_device = NULL; |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 1109 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1110 | status = acpi_remove_notify_handler(sony_nc_acpi_handle, |
Stelian Pop | c561162 | 2007-01-13 23:04:37 +0100 | [diff] [blame] | 1111 | ACPI_DEVICE_NOTIFY, |
| 1112 | sony_acpi_notify); |
| 1113 | if (ACPI_FAILURE(status)) |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 1114 | printk(KERN_WARNING DRV_PFX "unable to remove notify handler\n"); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1115 | |
malattia@linux.it | 56b8756 | 2007-04-09 10:19:05 +0200 | [diff] [blame] | 1116 | for (item = sony_nc_values; item->name; ++item) { |
| 1117 | device_remove_file(&sony_pf_device->dev, &item->devattr); |
| 1118 | } |
| 1119 | |
| 1120 | sony_pf_remove(); |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 1121 | sony_laptop_remove_input(); |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 1122 | dprintk(SONY_NC_DRIVER_NAME " removed.\n"); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 1123 | |
| 1124 | return 0; |
| 1125 | } |
| 1126 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1127 | static struct acpi_driver sony_nc_driver = { |
| 1128 | .name = SONY_NC_DRIVER_NAME, |
| 1129 | .class = SONY_NC_CLASS, |
| 1130 | .ids = SONY_NC_HID, |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 1131 | .owner = THIS_MODULE, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1132 | .ops = { |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 1133 | .add = sony_nc_add, |
| 1134 | .remove = sony_nc_remove, |
| 1135 | .resume = sony_nc_resume, |
Len Brown | a02d1c1 | 2007-02-07 15:34:02 -0500 | [diff] [blame] | 1136 | }, |
Andrew Morton | 3f4f461 | 2007-01-13 23:04:32 +0100 | [diff] [blame] | 1137 | }; |
| 1138 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 1139 | /*********** SPIC (SNY6001) Device ***********/ |
| 1140 | |
| 1141 | #define SONYPI_DEVICE_TYPE1 0x00000001 |
| 1142 | #define SONYPI_DEVICE_TYPE2 0x00000002 |
| 1143 | #define SONYPI_DEVICE_TYPE3 0x00000004 |
| 1144 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 1145 | #define SONY_PIC_EV_MASK 0xff |
| 1146 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 1147 | struct sony_pic_ioport { |
| 1148 | struct acpi_resource_io io; |
| 1149 | struct list_head list; |
| 1150 | }; |
| 1151 | |
| 1152 | struct sony_pic_irq { |
| 1153 | struct acpi_resource_irq irq; |
| 1154 | struct list_head list; |
| 1155 | }; |
| 1156 | |
| 1157 | struct sony_pic_dev { |
| 1158 | int model; |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1159 | u8 camera_power; |
| 1160 | u8 bluetooth_power; |
malattia@linux.it | 9476cdf | 2007-04-28 23:21:42 +0900 | [diff] [blame] | 1161 | u8 wwan_power; |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 1162 | struct acpi_device *acpi_dev; |
| 1163 | struct sony_pic_irq *cur_irq; |
| 1164 | struct sony_pic_ioport *cur_ioport; |
| 1165 | struct list_head interrupts; |
| 1166 | struct list_head ioports; |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1167 | struct mutex lock; |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 1168 | }; |
| 1169 | |
| 1170 | static struct sony_pic_dev spic_dev = { |
| 1171 | .interrupts = LIST_HEAD_INIT(spic_dev.interrupts), |
| 1172 | .ioports = LIST_HEAD_INIT(spic_dev.ioports), |
| 1173 | }; |
| 1174 | |
| 1175 | /* Event masks */ |
| 1176 | #define SONYPI_JOGGER_MASK 0x00000001 |
| 1177 | #define SONYPI_CAPTURE_MASK 0x00000002 |
| 1178 | #define SONYPI_FNKEY_MASK 0x00000004 |
| 1179 | #define SONYPI_BLUETOOTH_MASK 0x00000008 |
| 1180 | #define SONYPI_PKEY_MASK 0x00000010 |
| 1181 | #define SONYPI_BACK_MASK 0x00000020 |
| 1182 | #define SONYPI_HELP_MASK 0x00000040 |
| 1183 | #define SONYPI_LID_MASK 0x00000080 |
| 1184 | #define SONYPI_ZOOM_MASK 0x00000100 |
| 1185 | #define SONYPI_THUMBPHRASE_MASK 0x00000200 |
| 1186 | #define SONYPI_MEYE_MASK 0x00000400 |
| 1187 | #define SONYPI_MEMORYSTICK_MASK 0x00000800 |
| 1188 | #define SONYPI_BATTERY_MASK 0x00001000 |
| 1189 | #define SONYPI_WIRELESS_MASK 0x00002000 |
| 1190 | |
| 1191 | struct sonypi_event { |
| 1192 | u8 data; |
| 1193 | u8 event; |
| 1194 | }; |
| 1195 | |
| 1196 | /* The set of possible button release events */ |
| 1197 | static struct sonypi_event sonypi_releaseev[] = { |
| 1198 | { 0x00, SONYPI_EVENT_ANYBUTTON_RELEASED }, |
| 1199 | { 0, 0 } |
| 1200 | }; |
| 1201 | |
| 1202 | /* The set of possible jogger events */ |
| 1203 | static struct sonypi_event sonypi_joggerev[] = { |
| 1204 | { 0x1f, SONYPI_EVENT_JOGDIAL_UP }, |
| 1205 | { 0x01, SONYPI_EVENT_JOGDIAL_DOWN }, |
| 1206 | { 0x5f, SONYPI_EVENT_JOGDIAL_UP_PRESSED }, |
| 1207 | { 0x41, SONYPI_EVENT_JOGDIAL_DOWN_PRESSED }, |
| 1208 | { 0x1e, SONYPI_EVENT_JOGDIAL_FAST_UP }, |
| 1209 | { 0x02, SONYPI_EVENT_JOGDIAL_FAST_DOWN }, |
| 1210 | { 0x5e, SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED }, |
| 1211 | { 0x42, SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED }, |
| 1212 | { 0x1d, SONYPI_EVENT_JOGDIAL_VFAST_UP }, |
| 1213 | { 0x03, SONYPI_EVENT_JOGDIAL_VFAST_DOWN }, |
| 1214 | { 0x5d, SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED }, |
| 1215 | { 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED }, |
| 1216 | { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED }, |
| 1217 | { 0, 0 } |
| 1218 | }; |
| 1219 | |
| 1220 | /* The set of possible capture button events */ |
| 1221 | static struct sonypi_event sonypi_captureev[] = { |
| 1222 | { 0x05, SONYPI_EVENT_CAPTURE_PARTIALPRESSED }, |
| 1223 | { 0x07, SONYPI_EVENT_CAPTURE_PRESSED }, |
| 1224 | { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED }, |
| 1225 | { 0, 0 } |
| 1226 | }; |
| 1227 | |
| 1228 | /* The set of possible fnkeys events */ |
| 1229 | static struct sonypi_event sonypi_fnkeyev[] = { |
| 1230 | { 0x10, SONYPI_EVENT_FNKEY_ESC }, |
| 1231 | { 0x11, SONYPI_EVENT_FNKEY_F1 }, |
| 1232 | { 0x12, SONYPI_EVENT_FNKEY_F2 }, |
| 1233 | { 0x13, SONYPI_EVENT_FNKEY_F3 }, |
| 1234 | { 0x14, SONYPI_EVENT_FNKEY_F4 }, |
| 1235 | { 0x15, SONYPI_EVENT_FNKEY_F5 }, |
| 1236 | { 0x16, SONYPI_EVENT_FNKEY_F6 }, |
| 1237 | { 0x17, SONYPI_EVENT_FNKEY_F7 }, |
| 1238 | { 0x18, SONYPI_EVENT_FNKEY_F8 }, |
| 1239 | { 0x19, SONYPI_EVENT_FNKEY_F9 }, |
| 1240 | { 0x1a, SONYPI_EVENT_FNKEY_F10 }, |
| 1241 | { 0x1b, SONYPI_EVENT_FNKEY_F11 }, |
| 1242 | { 0x1c, SONYPI_EVENT_FNKEY_F12 }, |
| 1243 | { 0x1f, SONYPI_EVENT_FNKEY_RELEASED }, |
| 1244 | { 0x21, SONYPI_EVENT_FNKEY_1 }, |
| 1245 | { 0x22, SONYPI_EVENT_FNKEY_2 }, |
| 1246 | { 0x31, SONYPI_EVENT_FNKEY_D }, |
| 1247 | { 0x32, SONYPI_EVENT_FNKEY_E }, |
| 1248 | { 0x33, SONYPI_EVENT_FNKEY_F }, |
| 1249 | { 0x34, SONYPI_EVENT_FNKEY_S }, |
| 1250 | { 0x35, SONYPI_EVENT_FNKEY_B }, |
| 1251 | { 0x36, SONYPI_EVENT_FNKEY_ONLY }, |
| 1252 | { 0, 0 } |
| 1253 | }; |
| 1254 | |
| 1255 | /* The set of possible program key events */ |
| 1256 | static struct sonypi_event sonypi_pkeyev[] = { |
| 1257 | { 0x01, SONYPI_EVENT_PKEY_P1 }, |
| 1258 | { 0x02, SONYPI_EVENT_PKEY_P2 }, |
| 1259 | { 0x04, SONYPI_EVENT_PKEY_P3 }, |
| 1260 | { 0x5c, SONYPI_EVENT_PKEY_P1 }, |
| 1261 | { 0, 0 } |
| 1262 | }; |
| 1263 | |
| 1264 | /* The set of possible bluetooth events */ |
| 1265 | static struct sonypi_event sonypi_blueev[] = { |
| 1266 | { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED }, |
| 1267 | { 0x59, SONYPI_EVENT_BLUETOOTH_ON }, |
| 1268 | { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF }, |
| 1269 | { 0, 0 } |
| 1270 | }; |
| 1271 | |
| 1272 | /* The set of possible wireless events */ |
| 1273 | static struct sonypi_event sonypi_wlessev[] = { |
| 1274 | { 0x59, SONYPI_EVENT_WIRELESS_ON }, |
| 1275 | { 0x5a, SONYPI_EVENT_WIRELESS_OFF }, |
| 1276 | { 0, 0 } |
| 1277 | }; |
| 1278 | |
| 1279 | /* The set of possible back button events */ |
| 1280 | static struct sonypi_event sonypi_backev[] = { |
| 1281 | { 0x20, SONYPI_EVENT_BACK_PRESSED }, |
| 1282 | { 0, 0 } |
| 1283 | }; |
| 1284 | |
| 1285 | /* The set of possible help button events */ |
| 1286 | static struct sonypi_event sonypi_helpev[] = { |
| 1287 | { 0x3b, SONYPI_EVENT_HELP_PRESSED }, |
| 1288 | { 0, 0 } |
| 1289 | }; |
| 1290 | |
| 1291 | |
| 1292 | /* The set of possible lid events */ |
| 1293 | static struct sonypi_event sonypi_lidev[] = { |
| 1294 | { 0x51, SONYPI_EVENT_LID_CLOSED }, |
| 1295 | { 0x50, SONYPI_EVENT_LID_OPENED }, |
| 1296 | { 0, 0 } |
| 1297 | }; |
| 1298 | |
| 1299 | /* The set of possible zoom events */ |
| 1300 | static struct sonypi_event sonypi_zoomev[] = { |
| 1301 | { 0x39, SONYPI_EVENT_ZOOM_PRESSED }, |
| 1302 | { 0, 0 } |
| 1303 | }; |
| 1304 | |
| 1305 | /* The set of possible thumbphrase events */ |
| 1306 | static struct sonypi_event sonypi_thumbphraseev[] = { |
| 1307 | { 0x3a, SONYPI_EVENT_THUMBPHRASE_PRESSED }, |
| 1308 | { 0, 0 } |
| 1309 | }; |
| 1310 | |
| 1311 | /* The set of possible motioneye camera events */ |
| 1312 | static struct sonypi_event sonypi_meyeev[] = { |
| 1313 | { 0x00, SONYPI_EVENT_MEYE_FACE }, |
| 1314 | { 0x01, SONYPI_EVENT_MEYE_OPPOSITE }, |
| 1315 | { 0, 0 } |
| 1316 | }; |
| 1317 | |
| 1318 | /* The set of possible memorystick events */ |
| 1319 | static struct sonypi_event sonypi_memorystickev[] = { |
| 1320 | { 0x53, SONYPI_EVENT_MEMORYSTICK_INSERT }, |
| 1321 | { 0x54, SONYPI_EVENT_MEMORYSTICK_EJECT }, |
| 1322 | { 0, 0 } |
| 1323 | }; |
| 1324 | |
| 1325 | /* The set of possible battery events */ |
| 1326 | static struct sonypi_event sonypi_batteryev[] = { |
| 1327 | { 0x20, SONYPI_EVENT_BATTERY_INSERT }, |
| 1328 | { 0x30, SONYPI_EVENT_BATTERY_REMOVE }, |
| 1329 | { 0, 0 } |
| 1330 | }; |
| 1331 | |
| 1332 | static struct sonypi_eventtypes { |
| 1333 | int model; |
| 1334 | u8 data; |
| 1335 | unsigned long mask; |
| 1336 | struct sonypi_event * events; |
| 1337 | } sony_pic_eventtypes[] = { |
| 1338 | { SONYPI_DEVICE_TYPE1, 0, 0xffffffff, sonypi_releaseev }, |
| 1339 | { SONYPI_DEVICE_TYPE1, 0x70, SONYPI_MEYE_MASK, sonypi_meyeev }, |
| 1340 | { SONYPI_DEVICE_TYPE1, 0x30, SONYPI_LID_MASK, sonypi_lidev }, |
| 1341 | { SONYPI_DEVICE_TYPE1, 0x60, SONYPI_CAPTURE_MASK, sonypi_captureev }, |
| 1342 | { SONYPI_DEVICE_TYPE1, 0x10, SONYPI_JOGGER_MASK, sonypi_joggerev }, |
| 1343 | { SONYPI_DEVICE_TYPE1, 0x20, SONYPI_FNKEY_MASK, sonypi_fnkeyev }, |
| 1344 | { SONYPI_DEVICE_TYPE1, 0x30, SONYPI_BLUETOOTH_MASK, sonypi_blueev }, |
| 1345 | { SONYPI_DEVICE_TYPE1, 0x40, SONYPI_PKEY_MASK, sonypi_pkeyev }, |
| 1346 | { SONYPI_DEVICE_TYPE1, 0x30, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev }, |
| 1347 | { SONYPI_DEVICE_TYPE1, 0x40, SONYPI_BATTERY_MASK, sonypi_batteryev }, |
| 1348 | |
| 1349 | { SONYPI_DEVICE_TYPE2, 0, 0xffffffff, sonypi_releaseev }, |
| 1350 | { SONYPI_DEVICE_TYPE2, 0x38, SONYPI_LID_MASK, sonypi_lidev }, |
| 1351 | { SONYPI_DEVICE_TYPE2, 0x11, SONYPI_JOGGER_MASK, sonypi_joggerev }, |
| 1352 | { SONYPI_DEVICE_TYPE2, 0x61, SONYPI_CAPTURE_MASK, sonypi_captureev }, |
| 1353 | { SONYPI_DEVICE_TYPE2, 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev }, |
| 1354 | { SONYPI_DEVICE_TYPE2, 0x31, SONYPI_BLUETOOTH_MASK, sonypi_blueev }, |
| 1355 | { SONYPI_DEVICE_TYPE2, 0x08, SONYPI_PKEY_MASK, sonypi_pkeyev }, |
| 1356 | { SONYPI_DEVICE_TYPE2, 0x11, SONYPI_BACK_MASK, sonypi_backev }, |
| 1357 | { SONYPI_DEVICE_TYPE2, 0x21, SONYPI_HELP_MASK, sonypi_helpev }, |
| 1358 | { SONYPI_DEVICE_TYPE2, 0x21, SONYPI_ZOOM_MASK, sonypi_zoomev }, |
| 1359 | { SONYPI_DEVICE_TYPE2, 0x20, SONYPI_THUMBPHRASE_MASK, sonypi_thumbphraseev }, |
| 1360 | { SONYPI_DEVICE_TYPE2, 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev }, |
| 1361 | { SONYPI_DEVICE_TYPE2, 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev }, |
| 1362 | { SONYPI_DEVICE_TYPE2, 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev }, |
| 1363 | |
| 1364 | { SONYPI_DEVICE_TYPE3, 0, 0xffffffff, sonypi_releaseev }, |
| 1365 | { SONYPI_DEVICE_TYPE3, 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev }, |
| 1366 | { SONYPI_DEVICE_TYPE3, 0x31, SONYPI_WIRELESS_MASK, sonypi_wlessev }, |
| 1367 | { SONYPI_DEVICE_TYPE3, 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev }, |
| 1368 | { SONYPI_DEVICE_TYPE3, 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev }, |
| 1369 | { SONYPI_DEVICE_TYPE3, 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev }, |
| 1370 | { 0 } |
| 1371 | }; |
| 1372 | |
| 1373 | static int sony_pic_detect_device_type(void) |
| 1374 | { |
| 1375 | struct pci_dev *pcidev; |
| 1376 | int model = 0; |
| 1377 | |
| 1378 | if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL, |
| 1379 | PCI_DEVICE_ID_INTEL_82371AB_3, NULL))) |
| 1380 | model = SONYPI_DEVICE_TYPE1; |
| 1381 | |
| 1382 | else if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL, |
| 1383 | PCI_DEVICE_ID_INTEL_ICH6_1, NULL))) |
| 1384 | model = SONYPI_DEVICE_TYPE3; |
| 1385 | |
| 1386 | else if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL, |
| 1387 | PCI_DEVICE_ID_INTEL_ICH7_1, NULL))) |
| 1388 | model = SONYPI_DEVICE_TYPE3; |
| 1389 | |
| 1390 | else |
| 1391 | model = SONYPI_DEVICE_TYPE2; |
| 1392 | |
| 1393 | if (pcidev) |
| 1394 | pci_dev_put(pcidev); |
| 1395 | |
| 1396 | printk(KERN_INFO DRV_PFX "detected Type%d model\n", |
| 1397 | model == SONYPI_DEVICE_TYPE1 ? 1 : |
| 1398 | model == SONYPI_DEVICE_TYPE2 ? 2 : 3); |
| 1399 | return model; |
| 1400 | } |
| 1401 | |
| 1402 | #define ITERATIONS_LONG 10000 |
| 1403 | #define ITERATIONS_SHORT 10 |
| 1404 | #define wait_on_command(command, iterations) { \ |
| 1405 | unsigned int n = iterations; \ |
| 1406 | while (--n && (command)) \ |
| 1407 | udelay(1); \ |
| 1408 | if (!n) \ |
| 1409 | dprintk("command failed at %s : %s (line %d)\n", \ |
| 1410 | __FILE__, __FUNCTION__, __LINE__); \ |
| 1411 | } |
| 1412 | |
| 1413 | static u8 sony_pic_call1(u8 dev) |
| 1414 | { |
| 1415 | u8 v1, v2; |
| 1416 | |
| 1417 | wait_on_command(inb_p(spic_dev.cur_ioport->io.minimum + 4) & 2, |
| 1418 | ITERATIONS_LONG); |
| 1419 | outb(dev, spic_dev.cur_ioport->io.minimum + 4); |
| 1420 | v1 = inb_p(spic_dev.cur_ioport->io.minimum + 4); |
| 1421 | v2 = inb_p(spic_dev.cur_ioport->io.minimum); |
| 1422 | dprintk("sony_pic_call1: 0x%.4x\n", (v2 << 8) | v1); |
| 1423 | return v2; |
| 1424 | } |
| 1425 | |
| 1426 | static u8 sony_pic_call2(u8 dev, u8 fn) |
| 1427 | { |
| 1428 | u8 v1; |
| 1429 | |
| 1430 | wait_on_command(inb_p(spic_dev.cur_ioport->io.minimum + 4) & 2, |
| 1431 | ITERATIONS_LONG); |
| 1432 | outb(dev, spic_dev.cur_ioport->io.minimum + 4); |
| 1433 | wait_on_command(inb_p(spic_dev.cur_ioport->io.minimum + 4) & 2, |
| 1434 | ITERATIONS_LONG); |
| 1435 | outb(fn, spic_dev.cur_ioport->io.minimum); |
| 1436 | v1 = inb_p(spic_dev.cur_ioport->io.minimum); |
| 1437 | dprintk("sony_pic_call2: 0x%.4x\n", v1); |
| 1438 | return v1; |
| 1439 | } |
| 1440 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1441 | static u8 sony_pic_call3(u8 dev, u8 fn, u8 v) |
| 1442 | { |
| 1443 | u8 v1; |
| 1444 | |
| 1445 | wait_on_command(inb_p(spic_dev.cur_ioport->io.minimum + 4) & 2, ITERATIONS_LONG); |
| 1446 | outb(dev, spic_dev.cur_ioport->io.minimum + 4); |
| 1447 | wait_on_command(inb_p(spic_dev.cur_ioport->io.minimum + 4) & 2, ITERATIONS_LONG); |
| 1448 | outb(fn, spic_dev.cur_ioport->io.minimum); |
| 1449 | wait_on_command(inb_p(spic_dev.cur_ioport->io.minimum + 4) & 2, ITERATIONS_LONG); |
| 1450 | outb(v, spic_dev.cur_ioport->io.minimum); |
| 1451 | v1 = inb_p(spic_dev.cur_ioport->io.minimum); |
| 1452 | dprintk("sony_pic_call3: 0x%.4x\n", v1); |
| 1453 | return v1; |
| 1454 | } |
| 1455 | |
| 1456 | /* camera tests and poweron/poweroff */ |
| 1457 | #define SONYPI_CAMERA_PICTURE 5 |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1458 | #define SONYPI_CAMERA_CONTROL 0x10 |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1459 | |
| 1460 | #define SONYPI_CAMERA_BRIGHTNESS 0 |
| 1461 | #define SONYPI_CAMERA_CONTRAST 1 |
| 1462 | #define SONYPI_CAMERA_HUE 2 |
| 1463 | #define SONYPI_CAMERA_COLOR 3 |
| 1464 | #define SONYPI_CAMERA_SHARPNESS 4 |
| 1465 | |
| 1466 | #define SONYPI_CAMERA_EXPOSURE_MASK 0xC |
| 1467 | #define SONYPI_CAMERA_WHITE_BALANCE_MASK 0x3 |
| 1468 | #define SONYPI_CAMERA_PICTURE_MODE_MASK 0x30 |
| 1469 | #define SONYPI_CAMERA_MUTE_MASK 0x40 |
| 1470 | |
| 1471 | /* the rest don't need a loop until not 0xff */ |
| 1472 | #define SONYPI_CAMERA_AGC 6 |
| 1473 | #define SONYPI_CAMERA_AGC_MASK 0x30 |
| 1474 | #define SONYPI_CAMERA_SHUTTER_MASK 0x7 |
| 1475 | |
| 1476 | #define SONYPI_CAMERA_SHUTDOWN_REQUEST 7 |
| 1477 | #define SONYPI_CAMERA_CONTROL 0x10 |
| 1478 | |
| 1479 | #define SONYPI_CAMERA_STATUS 7 |
| 1480 | #define SONYPI_CAMERA_STATUS_READY 0x2 |
| 1481 | #define SONYPI_CAMERA_STATUS_POSITION 0x4 |
| 1482 | |
| 1483 | #define SONYPI_DIRECTION_BACKWARDS 0x4 |
| 1484 | |
| 1485 | #define SONYPI_CAMERA_REVISION 8 |
| 1486 | #define SONYPI_CAMERA_ROMVERSION 9 |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1487 | |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1488 | static int __sony_pic_camera_ready(void) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1489 | { |
| 1490 | u8 v; |
| 1491 | |
| 1492 | v = sony_pic_call2(0x8f, SONYPI_CAMERA_STATUS); |
| 1493 | return (v != 0xff && (v & SONYPI_CAMERA_STATUS_READY)); |
| 1494 | } |
| 1495 | |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1496 | static int __sony_pic_camera_off(void) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1497 | { |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 1498 | if (!camera) { |
| 1499 | printk(KERN_WARNING DRV_PFX "camera control not enabled\n"); |
| 1500 | return -ENODEV; |
| 1501 | } |
| 1502 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1503 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, |
| 1504 | SONYPI_CAMERA_MUTE_MASK), |
| 1505 | ITERATIONS_SHORT); |
| 1506 | |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 1507 | if (spic_dev.camera_power) { |
| 1508 | sony_pic_call2(0x91, 0); |
| 1509 | spic_dev.camera_power = 0; |
| 1510 | } |
| 1511 | return 0; |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1512 | } |
| 1513 | |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1514 | static int __sony_pic_camera_on(void) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1515 | { |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 1516 | int i, j, x; |
| 1517 | |
| 1518 | if (!camera) { |
| 1519 | printk(KERN_WARNING DRV_PFX "camera control not enabled\n"); |
| 1520 | return -ENODEV; |
| 1521 | } |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1522 | |
| 1523 | if (spic_dev.camera_power) |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1524 | return 0; |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1525 | |
| 1526 | for (j = 5; j > 0; j--) { |
| 1527 | |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 1528 | for (x = 0; x < 100 && sony_pic_call2(0x91, 0x1); x++) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1529 | msleep(10); |
| 1530 | sony_pic_call1(0x93); |
| 1531 | |
| 1532 | for (i = 400; i > 0; i--) { |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1533 | if (__sony_pic_camera_ready()) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1534 | break; |
| 1535 | msleep(10); |
| 1536 | } |
| 1537 | if (i) |
| 1538 | break; |
| 1539 | } |
| 1540 | |
| 1541 | if (j == 0) { |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 1542 | printk(KERN_WARNING DRV_PFX "failed to power on camera\n"); |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1543 | return -ENODEV; |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1544 | } |
| 1545 | |
| 1546 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTROL, |
| 1547 | 0x5a), |
| 1548 | ITERATIONS_SHORT); |
| 1549 | |
| 1550 | spic_dev.camera_power = 1; |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 1551 | return 0; |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1552 | } |
| 1553 | |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1554 | /* External camera command (exported to the motion eye v4l driver) */ |
| 1555 | int sony_pic_camera_command(int command, u8 value) |
| 1556 | { |
| 1557 | if (!camera) |
| 1558 | return -EIO; |
| 1559 | |
| 1560 | mutex_lock(&spic_dev.lock); |
| 1561 | |
| 1562 | switch (command) { |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1563 | case SONY_PIC_COMMAND_SETCAMERA: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1564 | if (value) |
| 1565 | __sony_pic_camera_on(); |
| 1566 | else |
| 1567 | __sony_pic_camera_off(); |
| 1568 | break; |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1569 | case SONY_PIC_COMMAND_SETCAMERABRIGHTNESS: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1570 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_BRIGHTNESS, value), |
| 1571 | ITERATIONS_SHORT); |
| 1572 | break; |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1573 | case SONY_PIC_COMMAND_SETCAMERACONTRAST: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1574 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTRAST, value), |
| 1575 | ITERATIONS_SHORT); |
| 1576 | break; |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1577 | case SONY_PIC_COMMAND_SETCAMERAHUE: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1578 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_HUE, value), |
| 1579 | ITERATIONS_SHORT); |
| 1580 | break; |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1581 | case SONY_PIC_COMMAND_SETCAMERACOLOR: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1582 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_COLOR, value), |
| 1583 | ITERATIONS_SHORT); |
| 1584 | break; |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1585 | case SONY_PIC_COMMAND_SETCAMERASHARPNESS: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1586 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_SHARPNESS, value), |
| 1587 | ITERATIONS_SHORT); |
| 1588 | break; |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1589 | case SONY_PIC_COMMAND_SETCAMERAPICTURE: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1590 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, value), |
| 1591 | ITERATIONS_SHORT); |
| 1592 | break; |
malattia@linux.it | 1ce82c1 | 2007-04-28 23:34:36 +0900 | [diff] [blame] | 1593 | case SONY_PIC_COMMAND_SETCAMERAAGC: |
malattia@linux.it | e364632 | 2007-04-28 23:34:22 +0900 | [diff] [blame] | 1594 | wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_AGC, value), |
| 1595 | ITERATIONS_SHORT); |
| 1596 | break; |
| 1597 | default: |
| 1598 | printk(KERN_ERR DRV_PFX "sony_pic_camera_command invalid: %d\n", |
| 1599 | command); |
| 1600 | break; |
| 1601 | } |
| 1602 | mutex_unlock(&spic_dev.lock); |
| 1603 | return 0; |
| 1604 | } |
| 1605 | EXPORT_SYMBOL(sony_pic_camera_command); |
| 1606 | |
malattia@linux.it | 9476cdf | 2007-04-28 23:21:42 +0900 | [diff] [blame] | 1607 | /* gprs/edge modem (SZ460N and SZ210P), thanks to Joshua Wise */ |
| 1608 | static void sony_pic_set_wwanpower(u8 state) |
| 1609 | { |
| 1610 | state = !!state; |
| 1611 | mutex_lock(&spic_dev.lock); |
| 1612 | if (spic_dev.wwan_power == state) { |
| 1613 | mutex_unlock(&spic_dev.lock); |
| 1614 | return; |
| 1615 | } |
| 1616 | sony_pic_call2(0xB0, state); |
| 1617 | spic_dev.wwan_power = state; |
| 1618 | mutex_unlock(&spic_dev.lock); |
| 1619 | } |
| 1620 | |
| 1621 | static ssize_t sony_pic_wwanpower_store(struct device *dev, |
| 1622 | struct device_attribute *attr, |
| 1623 | const char *buffer, size_t count) |
| 1624 | { |
| 1625 | unsigned long value; |
| 1626 | if (count > 31) |
| 1627 | return -EINVAL; |
| 1628 | |
| 1629 | value = simple_strtoul(buffer, NULL, 10); |
| 1630 | sony_pic_set_wwanpower(value); |
| 1631 | |
| 1632 | return count; |
| 1633 | } |
| 1634 | |
| 1635 | static ssize_t sony_pic_wwanpower_show(struct device *dev, |
| 1636 | struct device_attribute *attr, char *buffer) |
| 1637 | { |
| 1638 | ssize_t count; |
| 1639 | mutex_lock(&spic_dev.lock); |
| 1640 | count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.wwan_power); |
| 1641 | mutex_unlock(&spic_dev.lock); |
| 1642 | return count; |
| 1643 | } |
| 1644 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1645 | /* bluetooth subsystem power state */ |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1646 | static void __sony_pic_set_bluetoothpower(u8 state) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1647 | { |
| 1648 | state = !!state; |
| 1649 | if (spic_dev.bluetooth_power == state) |
| 1650 | return; |
| 1651 | sony_pic_call2(0x96, state); |
| 1652 | sony_pic_call1(0x82); |
| 1653 | spic_dev.bluetooth_power = state; |
| 1654 | } |
| 1655 | |
| 1656 | static ssize_t sony_pic_bluetoothpower_store(struct device *dev, |
| 1657 | struct device_attribute *attr, |
| 1658 | const char *buffer, size_t count) |
| 1659 | { |
| 1660 | unsigned long value; |
| 1661 | if (count > 31) |
| 1662 | return -EINVAL; |
| 1663 | |
| 1664 | value = simple_strtoul(buffer, NULL, 10); |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1665 | mutex_lock(&spic_dev.lock); |
| 1666 | __sony_pic_set_bluetoothpower(value); |
| 1667 | mutex_unlock(&spic_dev.lock); |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1668 | |
| 1669 | return count; |
| 1670 | } |
| 1671 | |
| 1672 | static ssize_t sony_pic_bluetoothpower_show(struct device *dev, |
| 1673 | struct device_attribute *attr, char *buffer) |
| 1674 | { |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1675 | ssize_t count = 0; |
| 1676 | mutex_lock(&spic_dev.lock); |
| 1677 | count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.bluetooth_power); |
| 1678 | mutex_unlock(&spic_dev.lock); |
| 1679 | return count; |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1680 | } |
| 1681 | |
| 1682 | /* fan speed */ |
| 1683 | /* FAN0 information (reverse engineered from ACPI tables) */ |
| 1684 | #define SONY_PIC_FAN0_STATUS 0x93 |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1685 | static int sony_pic_set_fanspeed(unsigned long value) |
| 1686 | { |
| 1687 | return ec_write(SONY_PIC_FAN0_STATUS, value); |
| 1688 | } |
| 1689 | |
| 1690 | static int sony_pic_get_fanspeed(u8 *value) |
| 1691 | { |
| 1692 | return ec_read(SONY_PIC_FAN0_STATUS, value); |
| 1693 | } |
| 1694 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1695 | static ssize_t sony_pic_fanspeed_store(struct device *dev, |
| 1696 | struct device_attribute *attr, |
| 1697 | const char *buffer, size_t count) |
| 1698 | { |
| 1699 | unsigned long value; |
| 1700 | if (count > 31) |
| 1701 | return -EINVAL; |
| 1702 | |
| 1703 | value = simple_strtoul(buffer, NULL, 10); |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1704 | if (sony_pic_set_fanspeed(value)) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1705 | return -EIO; |
| 1706 | |
| 1707 | return count; |
| 1708 | } |
| 1709 | |
| 1710 | static ssize_t sony_pic_fanspeed_show(struct device *dev, |
| 1711 | struct device_attribute *attr, char *buffer) |
| 1712 | { |
| 1713 | u8 value = 0; |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1714 | if (sony_pic_get_fanspeed(&value)) |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1715 | return -EIO; |
| 1716 | |
| 1717 | return snprintf(buffer, PAGE_SIZE, "%d\n", value); |
| 1718 | } |
| 1719 | |
| 1720 | #define SPIC_ATTR(_name, _mode) \ |
| 1721 | struct device_attribute spic_attr_##_name = __ATTR(_name, \ |
| 1722 | _mode, sony_pic_## _name ##_show, \ |
| 1723 | sony_pic_## _name ##_store) |
| 1724 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1725 | static SPIC_ATTR(bluetoothpower, 0644); |
malattia@linux.it | 9476cdf | 2007-04-28 23:21:42 +0900 | [diff] [blame] | 1726 | static SPIC_ATTR(wwanpower, 0644); |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1727 | static SPIC_ATTR(fanspeed, 0644); |
| 1728 | |
| 1729 | static struct attribute *spic_attributes[] = { |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1730 | &spic_attr_bluetoothpower.attr, |
malattia@linux.it | 9476cdf | 2007-04-28 23:21:42 +0900 | [diff] [blame] | 1731 | &spic_attr_wwanpower.attr, |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 1732 | &spic_attr_fanspeed.attr, |
| 1733 | NULL |
| 1734 | }; |
| 1735 | |
| 1736 | static struct attribute_group spic_attribute_group = { |
| 1737 | .attrs = spic_attributes |
| 1738 | }; |
| 1739 | |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1740 | /******** SONYPI compatibility **********/ |
Mattia Dongili | a64e62a | 2007-05-01 11:19:53 +0900 | [diff] [blame] | 1741 | #ifdef CONFIG_SONYPI_COMPAT |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1742 | |
| 1743 | /* battery / brightness / temperature addresses */ |
| 1744 | #define SONYPI_BAT_FLAGS 0x81 |
| 1745 | #define SONYPI_LCD_LIGHT 0x96 |
| 1746 | #define SONYPI_BAT1_PCTRM 0xa0 |
| 1747 | #define SONYPI_BAT1_LEFT 0xa2 |
| 1748 | #define SONYPI_BAT1_MAXRT 0xa4 |
| 1749 | #define SONYPI_BAT2_PCTRM 0xa8 |
| 1750 | #define SONYPI_BAT2_LEFT 0xaa |
| 1751 | #define SONYPI_BAT2_MAXRT 0xac |
| 1752 | #define SONYPI_BAT1_MAXTK 0xb0 |
| 1753 | #define SONYPI_BAT1_FULL 0xb2 |
| 1754 | #define SONYPI_BAT2_MAXTK 0xb8 |
| 1755 | #define SONYPI_BAT2_FULL 0xba |
| 1756 | #define SONYPI_TEMP_STATUS 0xC1 |
| 1757 | |
| 1758 | struct sonypi_compat_s { |
| 1759 | struct fasync_struct *fifo_async; |
| 1760 | struct kfifo *fifo; |
| 1761 | spinlock_t fifo_lock; |
| 1762 | wait_queue_head_t fifo_proc_list; |
| 1763 | atomic_t open_count; |
| 1764 | }; |
| 1765 | static struct sonypi_compat_s sonypi_compat = { |
| 1766 | .open_count = ATOMIC_INIT(0), |
| 1767 | }; |
| 1768 | |
| 1769 | static int sonypi_misc_fasync(int fd, struct file *filp, int on) |
| 1770 | { |
| 1771 | int retval; |
| 1772 | |
| 1773 | retval = fasync_helper(fd, filp, on, &sonypi_compat.fifo_async); |
| 1774 | if (retval < 0) |
| 1775 | return retval; |
| 1776 | return 0; |
| 1777 | } |
| 1778 | |
| 1779 | static int sonypi_misc_release(struct inode *inode, struct file *file) |
| 1780 | { |
| 1781 | sonypi_misc_fasync(-1, file, 0); |
| 1782 | atomic_dec(&sonypi_compat.open_count); |
| 1783 | return 0; |
| 1784 | } |
| 1785 | |
| 1786 | static int sonypi_misc_open(struct inode *inode, struct file *file) |
| 1787 | { |
| 1788 | /* Flush input queue on first open */ |
| 1789 | if (atomic_inc_return(&sonypi_compat.open_count) == 1) |
| 1790 | kfifo_reset(sonypi_compat.fifo); |
| 1791 | return 0; |
| 1792 | } |
| 1793 | |
| 1794 | static ssize_t sonypi_misc_read(struct file *file, char __user *buf, |
| 1795 | size_t count, loff_t *pos) |
| 1796 | { |
| 1797 | ssize_t ret; |
| 1798 | unsigned char c; |
| 1799 | |
| 1800 | if ((kfifo_len(sonypi_compat.fifo) == 0) && |
| 1801 | (file->f_flags & O_NONBLOCK)) |
| 1802 | return -EAGAIN; |
| 1803 | |
| 1804 | ret = wait_event_interruptible(sonypi_compat.fifo_proc_list, |
| 1805 | kfifo_len(sonypi_compat.fifo) != 0); |
| 1806 | if (ret) |
| 1807 | return ret; |
| 1808 | |
| 1809 | while (ret < count && |
| 1810 | (kfifo_get(sonypi_compat.fifo, &c, sizeof(c)) == sizeof(c))) { |
| 1811 | if (put_user(c, buf++)) |
| 1812 | return -EFAULT; |
| 1813 | ret++; |
| 1814 | } |
| 1815 | |
| 1816 | if (ret > 0) { |
| 1817 | struct inode *inode = file->f_path.dentry->d_inode; |
| 1818 | inode->i_atime = current_fs_time(inode->i_sb); |
| 1819 | } |
| 1820 | |
| 1821 | return ret; |
| 1822 | } |
| 1823 | |
| 1824 | static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait) |
| 1825 | { |
| 1826 | poll_wait(file, &sonypi_compat.fifo_proc_list, wait); |
| 1827 | if (kfifo_len(sonypi_compat.fifo)) |
| 1828 | return POLLIN | POLLRDNORM; |
| 1829 | return 0; |
| 1830 | } |
| 1831 | |
| 1832 | static int ec_read16(u8 addr, u16 *value) |
| 1833 | { |
| 1834 | u8 val_lb, val_hb; |
| 1835 | if (ec_read(addr, &val_lb)) |
| 1836 | return -1; |
| 1837 | if (ec_read(addr + 1, &val_hb)) |
| 1838 | return -1; |
| 1839 | *value = val_lb | (val_hb << 8); |
| 1840 | return 0; |
| 1841 | } |
| 1842 | |
| 1843 | static int sonypi_misc_ioctl(struct inode *ip, struct file *fp, |
| 1844 | unsigned int cmd, unsigned long arg) |
| 1845 | { |
| 1846 | int ret = 0; |
| 1847 | void __user *argp = (void __user *)arg; |
| 1848 | u8 val8; |
| 1849 | u16 val16; |
| 1850 | int value; |
| 1851 | |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1852 | mutex_lock(&spic_dev.lock); |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1853 | switch (cmd) { |
| 1854 | case SONYPI_IOCGBRT: |
| 1855 | if (sony_backlight_device == NULL) { |
| 1856 | ret = -EIO; |
| 1857 | break; |
| 1858 | } |
| 1859 | if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value)) { |
| 1860 | ret = -EIO; |
| 1861 | break; |
| 1862 | } |
| 1863 | val8 = ((value & 0xff) - 1) << 5; |
| 1864 | if (copy_to_user(argp, &val8, sizeof(val8))) |
| 1865 | ret = -EFAULT; |
| 1866 | break; |
| 1867 | case SONYPI_IOCSBRT: |
| 1868 | if (sony_backlight_device == NULL) { |
| 1869 | ret = -EIO; |
| 1870 | break; |
| 1871 | } |
| 1872 | if (copy_from_user(&val8, argp, sizeof(val8))) { |
| 1873 | ret = -EFAULT; |
| 1874 | break; |
| 1875 | } |
| 1876 | if (acpi_callsetfunc(sony_nc_acpi_handle, "SBRT", |
| 1877 | (val8 >> 5) + 1, NULL)) { |
| 1878 | ret = -EIO; |
| 1879 | break; |
| 1880 | } |
| 1881 | /* sync the backlight device status */ |
| 1882 | sony_backlight_device->props.brightness = |
| 1883 | sony_backlight_get_brightness(sony_backlight_device); |
| 1884 | break; |
| 1885 | case SONYPI_IOCGBAT1CAP: |
| 1886 | if (ec_read16(SONYPI_BAT1_FULL, &val16)) { |
| 1887 | ret = -EIO; |
| 1888 | break; |
| 1889 | } |
| 1890 | if (copy_to_user(argp, &val16, sizeof(val16))) |
| 1891 | ret = -EFAULT; |
| 1892 | break; |
| 1893 | case SONYPI_IOCGBAT1REM: |
| 1894 | if (ec_read16(SONYPI_BAT1_LEFT, &val16)) { |
| 1895 | ret = -EIO; |
| 1896 | break; |
| 1897 | } |
| 1898 | if (copy_to_user(argp, &val16, sizeof(val16))) |
| 1899 | ret = -EFAULT; |
| 1900 | break; |
| 1901 | case SONYPI_IOCGBAT2CAP: |
| 1902 | if (ec_read16(SONYPI_BAT2_FULL, &val16)) { |
| 1903 | ret = -EIO; |
| 1904 | break; |
| 1905 | } |
| 1906 | if (copy_to_user(argp, &val16, sizeof(val16))) |
| 1907 | ret = -EFAULT; |
| 1908 | break; |
| 1909 | case SONYPI_IOCGBAT2REM: |
| 1910 | if (ec_read16(SONYPI_BAT2_LEFT, &val16)) { |
| 1911 | ret = -EIO; |
| 1912 | break; |
| 1913 | } |
| 1914 | if (copy_to_user(argp, &val16, sizeof(val16))) |
| 1915 | ret = -EFAULT; |
| 1916 | break; |
| 1917 | case SONYPI_IOCGBATFLAGS: |
| 1918 | if (ec_read(SONYPI_BAT_FLAGS, &val8)) { |
| 1919 | ret = -EIO; |
| 1920 | break; |
| 1921 | } |
| 1922 | val8 &= 0x07; |
| 1923 | if (copy_to_user(argp, &val8, sizeof(val8))) |
| 1924 | ret = -EFAULT; |
| 1925 | break; |
| 1926 | case SONYPI_IOCGBLUE: |
| 1927 | val8 = spic_dev.bluetooth_power; |
| 1928 | if (copy_to_user(argp, &val8, sizeof(val8))) |
| 1929 | ret = -EFAULT; |
| 1930 | break; |
| 1931 | case SONYPI_IOCSBLUE: |
| 1932 | if (copy_from_user(&val8, argp, sizeof(val8))) { |
| 1933 | ret = -EFAULT; |
| 1934 | break; |
| 1935 | } |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1936 | __sony_pic_set_bluetoothpower(val8); |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1937 | break; |
| 1938 | /* FAN Controls */ |
| 1939 | case SONYPI_IOCGFAN: |
| 1940 | if (sony_pic_get_fanspeed(&val8)) { |
| 1941 | ret = -EIO; |
| 1942 | break; |
| 1943 | } |
| 1944 | if (copy_to_user(argp, &val8, sizeof(val8))) |
| 1945 | ret = -EFAULT; |
| 1946 | break; |
| 1947 | case SONYPI_IOCSFAN: |
| 1948 | if (copy_from_user(&val8, argp, sizeof(val8))) { |
| 1949 | ret = -EFAULT; |
| 1950 | break; |
| 1951 | } |
| 1952 | if (sony_pic_set_fanspeed(val8)) |
| 1953 | ret = -EIO; |
| 1954 | break; |
| 1955 | /* GET Temperature (useful under APM) */ |
| 1956 | case SONYPI_IOCGTEMP: |
| 1957 | if (ec_read(SONYPI_TEMP_STATUS, &val8)) { |
| 1958 | ret = -EIO; |
| 1959 | break; |
| 1960 | } |
| 1961 | if (copy_to_user(argp, &val8, sizeof(val8))) |
| 1962 | ret = -EFAULT; |
| 1963 | break; |
| 1964 | default: |
| 1965 | ret = -EINVAL; |
| 1966 | } |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 1967 | mutex_unlock(&spic_dev.lock); |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 1968 | return ret; |
| 1969 | } |
| 1970 | |
| 1971 | static const struct file_operations sonypi_misc_fops = { |
| 1972 | .owner = THIS_MODULE, |
| 1973 | .read = sonypi_misc_read, |
| 1974 | .poll = sonypi_misc_poll, |
| 1975 | .open = sonypi_misc_open, |
| 1976 | .release = sonypi_misc_release, |
| 1977 | .fasync = sonypi_misc_fasync, |
| 1978 | .ioctl = sonypi_misc_ioctl, |
| 1979 | }; |
| 1980 | |
| 1981 | static struct miscdevice sonypi_misc_device = { |
| 1982 | .minor = MISC_DYNAMIC_MINOR, |
| 1983 | .name = "sonypi", |
| 1984 | .fops = &sonypi_misc_fops, |
| 1985 | }; |
| 1986 | |
| 1987 | static void sonypi_compat_report_event(u8 event) |
| 1988 | { |
| 1989 | kfifo_put(sonypi_compat.fifo, (unsigned char *)&event, sizeof(event)); |
| 1990 | kill_fasync(&sonypi_compat.fifo_async, SIGIO, POLL_IN); |
| 1991 | wake_up_interruptible(&sonypi_compat.fifo_proc_list); |
| 1992 | } |
| 1993 | |
| 1994 | static int sonypi_compat_init(void) |
| 1995 | { |
| 1996 | int error; |
| 1997 | |
| 1998 | spin_lock_init(&sonypi_compat.fifo_lock); |
| 1999 | sonypi_compat.fifo = kfifo_alloc(SONY_LAPTOP_BUF_SIZE, GFP_KERNEL, |
| 2000 | &sonypi_compat.fifo_lock); |
| 2001 | if (IS_ERR(sonypi_compat.fifo)) { |
| 2002 | printk(KERN_ERR DRV_PFX "kfifo_alloc failed\n"); |
| 2003 | return PTR_ERR(sonypi_compat.fifo); |
| 2004 | } |
| 2005 | |
| 2006 | init_waitqueue_head(&sonypi_compat.fifo_proc_list); |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 2007 | |
| 2008 | if (minor != -1) |
| 2009 | sonypi_misc_device.minor = minor; |
| 2010 | error = misc_register(&sonypi_misc_device); |
| 2011 | if (error) { |
| 2012 | printk(KERN_ERR DRV_PFX "misc_register failed\n"); |
| 2013 | goto err_free_kfifo; |
| 2014 | } |
| 2015 | if (minor == -1) |
malattia@linux.it | 5f3d289 | 2007-04-28 23:18:45 +0900 | [diff] [blame] | 2016 | printk(KERN_INFO DRV_PFX "device allocated minor is %d\n", |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 2017 | sonypi_misc_device.minor); |
| 2018 | |
| 2019 | return 0; |
| 2020 | |
| 2021 | err_free_kfifo: |
| 2022 | kfifo_free(sonypi_compat.fifo); |
| 2023 | return error; |
| 2024 | } |
| 2025 | |
| 2026 | static void sonypi_compat_exit(void) |
| 2027 | { |
| 2028 | misc_deregister(&sonypi_misc_device); |
| 2029 | kfifo_free(sonypi_compat.fifo); |
| 2030 | } |
| 2031 | #else |
| 2032 | static int sonypi_compat_init(void) { return 0; } |
| 2033 | static void sonypi_compat_exit(void) { } |
| 2034 | static void sonypi_compat_report_event(u8 event) { } |
Mattia Dongili | a64e62a | 2007-05-01 11:19:53 +0900 | [diff] [blame] | 2035 | #endif /* CONFIG_SONYPI_COMPAT */ |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 2036 | |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 2037 | /* |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2038 | * ACPI callbacks |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 2039 | */ |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2040 | static acpi_status |
| 2041 | sony_pic_read_possible_resource(struct acpi_resource *resource, void *context) |
| 2042 | { |
| 2043 | u32 i; |
| 2044 | struct sony_pic_dev *dev = (struct sony_pic_dev *)context; |
| 2045 | |
| 2046 | switch (resource->type) { |
| 2047 | case ACPI_RESOURCE_TYPE_START_DEPENDENT: |
| 2048 | case ACPI_RESOURCE_TYPE_END_DEPENDENT: |
| 2049 | return AE_OK; |
| 2050 | |
| 2051 | case ACPI_RESOURCE_TYPE_IRQ: |
| 2052 | { |
| 2053 | struct acpi_resource_irq *p = &resource->data.irq; |
| 2054 | struct sony_pic_irq *interrupt = NULL; |
| 2055 | if (!p || !p->interrupt_count) { |
| 2056 | /* |
| 2057 | * IRQ descriptors may have no IRQ# bits set, |
| 2058 | * particularly those those w/ _STA disabled |
| 2059 | */ |
| 2060 | dprintk("Blank IRQ resource\n"); |
| 2061 | return AE_OK; |
| 2062 | } |
| 2063 | for (i = 0; i < p->interrupt_count; i++) { |
| 2064 | if (!p->interrupts[i]) { |
| 2065 | printk(KERN_WARNING DRV_PFX |
| 2066 | "Invalid IRQ %d\n", |
| 2067 | p->interrupts[i]); |
| 2068 | continue; |
| 2069 | } |
| 2070 | interrupt = kzalloc(sizeof(*interrupt), |
| 2071 | GFP_KERNEL); |
| 2072 | if (!interrupt) |
| 2073 | return AE_ERROR; |
| 2074 | |
malattia@linux.it | 1a3e323 | 2007-04-28 23:34:10 +0900 | [diff] [blame] | 2075 | list_add_tail(&interrupt->list, &dev->interrupts); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2076 | interrupt->irq.triggering = p->triggering; |
| 2077 | interrupt->irq.polarity = p->polarity; |
| 2078 | interrupt->irq.sharable = p->sharable; |
| 2079 | interrupt->irq.interrupt_count = 1; |
| 2080 | interrupt->irq.interrupts[0] = p->interrupts[i]; |
| 2081 | } |
| 2082 | return AE_OK; |
| 2083 | } |
| 2084 | case ACPI_RESOURCE_TYPE_IO: |
| 2085 | { |
| 2086 | struct acpi_resource_io *io = &resource->data.io; |
| 2087 | struct sony_pic_ioport *ioport = NULL; |
| 2088 | if (!io) { |
| 2089 | dprintk("Blank IO resource\n"); |
| 2090 | return AE_OK; |
| 2091 | } |
| 2092 | |
| 2093 | ioport = kzalloc(sizeof(*ioport), GFP_KERNEL); |
| 2094 | if (!ioport) |
| 2095 | return AE_ERROR; |
| 2096 | |
malattia@linux.it | 1a3e323 | 2007-04-28 23:34:10 +0900 | [diff] [blame] | 2097 | list_add_tail(&ioport->list, &dev->ioports); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2098 | memcpy(&ioport->io, io, sizeof(*io)); |
| 2099 | return AE_OK; |
| 2100 | } |
| 2101 | default: |
| 2102 | dprintk("Resource %d isn't an IRQ nor an IO port\n", |
| 2103 | resource->type); |
| 2104 | |
| 2105 | case ACPI_RESOURCE_TYPE_END_TAG: |
| 2106 | return AE_OK; |
| 2107 | } |
| 2108 | return AE_CTRL_TERMINATE; |
| 2109 | } |
| 2110 | |
| 2111 | static int sony_pic_possible_resources(struct acpi_device *device) |
| 2112 | { |
| 2113 | int result = 0; |
| 2114 | acpi_status status = AE_OK; |
| 2115 | |
| 2116 | if (!device) |
| 2117 | return -EINVAL; |
| 2118 | |
| 2119 | /* get device status */ |
| 2120 | /* see acpi_pci_link_get_current acpi_pci_link_get_possible */ |
| 2121 | dprintk("Evaluating _STA\n"); |
| 2122 | result = acpi_bus_get_status(device); |
| 2123 | if (result) { |
| 2124 | printk(KERN_WARNING DRV_PFX "Unable to read status\n"); |
| 2125 | goto end; |
| 2126 | } |
| 2127 | |
| 2128 | if (!device->status.enabled) |
| 2129 | dprintk("Device disabled\n"); |
| 2130 | else |
| 2131 | dprintk("Device enabled\n"); |
| 2132 | |
| 2133 | /* |
| 2134 | * Query and parse 'method' |
| 2135 | */ |
| 2136 | dprintk("Evaluating %s\n", METHOD_NAME__PRS); |
| 2137 | status = acpi_walk_resources(device->handle, METHOD_NAME__PRS, |
| 2138 | sony_pic_read_possible_resource, &spic_dev); |
| 2139 | if (ACPI_FAILURE(status)) { |
| 2140 | printk(KERN_WARNING DRV_PFX |
| 2141 | "Failure evaluating %s\n", |
| 2142 | METHOD_NAME__PRS); |
| 2143 | result = -ENODEV; |
| 2144 | } |
| 2145 | end: |
| 2146 | return result; |
| 2147 | } |
| 2148 | |
| 2149 | /* |
| 2150 | * Disable the spic device by calling its _DIS method |
| 2151 | */ |
| 2152 | static int sony_pic_disable(struct acpi_device *device) |
| 2153 | { |
Randy Dunlap | f3a740c | 2007-07-15 23:40:49 -0700 | [diff] [blame] | 2154 | if (ACPI_FAILURE(acpi_evaluate_object(device->handle, |
| 2155 | "_DIS", NULL, NULL))) |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2156 | return -ENXIO; |
| 2157 | |
| 2158 | dprintk("Device disabled\n"); |
| 2159 | return 0; |
| 2160 | } |
| 2161 | |
| 2162 | |
| 2163 | /* |
| 2164 | * Based on drivers/acpi/pci_link.c:acpi_pci_link_set |
| 2165 | * |
| 2166 | * Call _SRS to set current resources |
| 2167 | */ |
| 2168 | static int sony_pic_enable(struct acpi_device *device, |
| 2169 | struct sony_pic_ioport *ioport, struct sony_pic_irq *irq) |
| 2170 | { |
| 2171 | acpi_status status; |
| 2172 | int result = 0; |
| 2173 | struct { |
| 2174 | struct acpi_resource io_res; |
| 2175 | struct acpi_resource irq_res; |
| 2176 | struct acpi_resource end; |
| 2177 | } *resource; |
| 2178 | struct acpi_buffer buffer = { 0, NULL }; |
| 2179 | |
| 2180 | if (!ioport || !irq) |
| 2181 | return -EINVAL; |
| 2182 | |
| 2183 | /* init acpi_buffer */ |
| 2184 | resource = kzalloc(sizeof(*resource) + 1, GFP_KERNEL); |
| 2185 | if (!resource) |
| 2186 | return -ENOMEM; |
| 2187 | |
| 2188 | buffer.length = sizeof(*resource) + 1; |
| 2189 | buffer.pointer = resource; |
| 2190 | |
| 2191 | /* setup io resource */ |
| 2192 | resource->io_res.type = ACPI_RESOURCE_TYPE_IO; |
| 2193 | resource->io_res.length = sizeof(struct acpi_resource); |
| 2194 | memcpy(&resource->io_res.data.io, &ioport->io, |
| 2195 | sizeof(struct acpi_resource_io)); |
| 2196 | |
| 2197 | /* setup irq resource */ |
| 2198 | resource->irq_res.type = ACPI_RESOURCE_TYPE_IRQ; |
| 2199 | resource->irq_res.length = sizeof(struct acpi_resource); |
| 2200 | memcpy(&resource->irq_res.data.irq, &irq->irq, |
| 2201 | sizeof(struct acpi_resource_irq)); |
| 2202 | /* we requested a shared irq */ |
| 2203 | resource->irq_res.data.irq.sharable = ACPI_SHARED; |
| 2204 | |
| 2205 | resource->end.type = ACPI_RESOURCE_TYPE_END_TAG; |
| 2206 | |
| 2207 | /* Attempt to set the resource */ |
| 2208 | dprintk("Evaluating _SRS\n"); |
| 2209 | status = acpi_set_current_resources(device->handle, &buffer); |
| 2210 | |
| 2211 | /* check for total failure */ |
| 2212 | if (ACPI_FAILURE(status)) { |
| 2213 | printk(KERN_ERR DRV_PFX "Error evaluating _SRS"); |
| 2214 | result = -ENODEV; |
| 2215 | goto end; |
| 2216 | } |
| 2217 | |
| 2218 | /* Necessary device initializations calls (from sonypi) */ |
| 2219 | sony_pic_call1(0x82); |
| 2220 | sony_pic_call2(0x81, 0xff); |
| 2221 | sony_pic_call1(compat ? 0x92 : 0x82); |
| 2222 | |
| 2223 | end: |
| 2224 | kfree(resource); |
| 2225 | return result; |
| 2226 | } |
| 2227 | |
| 2228 | /***************** |
| 2229 | * |
| 2230 | * ISR: some event is available |
| 2231 | * |
| 2232 | *****************/ |
| 2233 | static irqreturn_t sony_pic_irq(int irq, void *dev_id) |
| 2234 | { |
| 2235 | int i, j; |
| 2236 | u32 port_val = 0; |
| 2237 | u8 ev = 0; |
| 2238 | u8 data_mask = 0; |
| 2239 | u8 device_event = 0; |
| 2240 | |
| 2241 | struct sony_pic_dev *dev = (struct sony_pic_dev *) dev_id; |
| 2242 | |
| 2243 | acpi_os_read_port(dev->cur_ioport->io.minimum, &port_val, |
| 2244 | dev->cur_ioport->io.address_length); |
| 2245 | ev = port_val & SONY_PIC_EV_MASK; |
| 2246 | data_mask = 0xff & (port_val >> (dev->cur_ioport->io.address_length - 8)); |
| 2247 | |
| 2248 | dprintk("event (0x%.8x [%.2x] [%.2x]) at port 0x%.4x\n", |
| 2249 | port_val, ev, data_mask, dev->cur_ioport->io.minimum); |
| 2250 | |
| 2251 | if (ev == 0x00 || ev == 0xff) |
| 2252 | return IRQ_HANDLED; |
| 2253 | |
| 2254 | for (i = 0; sony_pic_eventtypes[i].model; i++) { |
| 2255 | |
| 2256 | if (spic_dev.model != sony_pic_eventtypes[i].model) |
| 2257 | continue; |
| 2258 | |
| 2259 | if ((data_mask & sony_pic_eventtypes[i].data) != |
| 2260 | sony_pic_eventtypes[i].data) |
| 2261 | continue; |
| 2262 | |
| 2263 | if (!(mask & sony_pic_eventtypes[i].mask)) |
| 2264 | continue; |
| 2265 | |
| 2266 | for (j = 0; sony_pic_eventtypes[i].events[j].event; j++) { |
| 2267 | if (ev == sony_pic_eventtypes[i].events[j].data) { |
| 2268 | device_event = |
| 2269 | sony_pic_eventtypes[i].events[j].event; |
| 2270 | goto found; |
| 2271 | } |
| 2272 | } |
| 2273 | } |
| 2274 | return IRQ_HANDLED; |
| 2275 | |
| 2276 | found: |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 2277 | sony_laptop_report_input_event(device_event); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2278 | acpi_bus_generate_event(spic_dev.acpi_dev, 1, device_event); |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 2279 | sonypi_compat_report_event(device_event); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2280 | |
| 2281 | return IRQ_HANDLED; |
| 2282 | } |
| 2283 | |
| 2284 | /***************** |
| 2285 | * |
| 2286 | * ACPI driver |
| 2287 | * |
| 2288 | *****************/ |
| 2289 | static int sony_pic_remove(struct acpi_device *device, int type) |
| 2290 | { |
| 2291 | struct sony_pic_ioport *io, *tmp_io; |
| 2292 | struct sony_pic_irq *irq, *tmp_irq; |
| 2293 | |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 2294 | sonypi_compat_exit(); |
| 2295 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2296 | if (sony_pic_disable(device)) { |
| 2297 | printk(KERN_ERR DRV_PFX "Couldn't disable device.\n"); |
| 2298 | return -ENXIO; |
| 2299 | } |
| 2300 | |
| 2301 | free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev); |
| 2302 | release_region(spic_dev.cur_ioport->io.minimum, |
| 2303 | spic_dev.cur_ioport->io.address_length); |
| 2304 | |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 2305 | sony_laptop_remove_input(); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2306 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 2307 | /* pf attrs */ |
| 2308 | sysfs_remove_group(&sony_pf_device->dev.kobj, &spic_attribute_group); |
| 2309 | sony_pf_remove(); |
| 2310 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2311 | list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) { |
| 2312 | list_del(&io->list); |
| 2313 | kfree(io); |
| 2314 | } |
| 2315 | list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) { |
| 2316 | list_del(&irq->list); |
| 2317 | kfree(irq); |
| 2318 | } |
| 2319 | spic_dev.cur_ioport = NULL; |
| 2320 | spic_dev.cur_irq = NULL; |
| 2321 | |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 2322 | dprintk(SONY_PIC_DRIVER_NAME " removed.\n"); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2323 | return 0; |
| 2324 | } |
| 2325 | |
| 2326 | static int sony_pic_add(struct acpi_device *device) |
| 2327 | { |
| 2328 | int result; |
| 2329 | struct sony_pic_ioport *io, *tmp_io; |
| 2330 | struct sony_pic_irq *irq, *tmp_irq; |
| 2331 | |
malattia@linux.it | f6119b0 | 2007-04-09 19:31:06 +0200 | [diff] [blame] | 2332 | printk(KERN_INFO DRV_PFX "%s v%s.\n", |
| 2333 | SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2334 | |
| 2335 | spic_dev.acpi_dev = device; |
| 2336 | strcpy(acpi_device_class(device), "sony/hotkey"); |
| 2337 | spic_dev.model = sony_pic_detect_device_type(); |
malattia@linux.it | 9f9f076 | 2007-04-28 23:19:36 +0900 | [diff] [blame] | 2338 | mutex_init(&spic_dev.lock); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2339 | |
| 2340 | /* read _PRS resources */ |
| 2341 | result = sony_pic_possible_resources(device); |
| 2342 | if (result) { |
| 2343 | printk(KERN_ERR DRV_PFX |
| 2344 | "Unabe to read possible resources.\n"); |
| 2345 | goto err_free_resources; |
| 2346 | } |
| 2347 | |
| 2348 | /* setup input devices and helper fifo */ |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 2349 | result = sony_laptop_setup_input(); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2350 | if (result) { |
| 2351 | printk(KERN_ERR DRV_PFX |
| 2352 | "Unabe to create input devices.\n"); |
| 2353 | goto err_free_resources; |
| 2354 | } |
| 2355 | |
| 2356 | /* request io port */ |
| 2357 | list_for_each_entry(io, &spic_dev.ioports, list) { |
| 2358 | if (request_region(io->io.minimum, io->io.address_length, |
| 2359 | "Sony Programable I/O Device")) { |
| 2360 | dprintk("I/O port: 0x%.4x (0x%.4x) + 0x%.2x\n", |
| 2361 | io->io.minimum, io->io.maximum, |
| 2362 | io->io.address_length); |
| 2363 | spic_dev.cur_ioport = io; |
| 2364 | break; |
| 2365 | } |
| 2366 | } |
| 2367 | if (!spic_dev.cur_ioport) { |
| 2368 | printk(KERN_ERR DRV_PFX "Failed to request_region.\n"); |
| 2369 | result = -ENODEV; |
| 2370 | goto err_remove_input; |
| 2371 | } |
| 2372 | |
| 2373 | /* request IRQ */ |
| 2374 | list_for_each_entry(irq, &spic_dev.interrupts, list) { |
| 2375 | if (!request_irq(irq->irq.interrupts[0], sony_pic_irq, |
| 2376 | IRQF_SHARED, "sony-laptop", &spic_dev)) { |
| 2377 | dprintk("IRQ: %d - triggering: %d - " |
| 2378 | "polarity: %d - shr: %d\n", |
| 2379 | irq->irq.interrupts[0], |
| 2380 | irq->irq.triggering, |
| 2381 | irq->irq.polarity, |
| 2382 | irq->irq.sharable); |
| 2383 | spic_dev.cur_irq = irq; |
| 2384 | break; |
| 2385 | } |
| 2386 | } |
| 2387 | if (!spic_dev.cur_irq) { |
| 2388 | printk(KERN_ERR DRV_PFX "Failed to request_irq.\n"); |
| 2389 | result = -ENODEV; |
| 2390 | goto err_release_region; |
| 2391 | } |
| 2392 | |
| 2393 | /* set resource status _SRS */ |
| 2394 | result = sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq); |
| 2395 | if (result) { |
| 2396 | printk(KERN_ERR DRV_PFX "Couldn't enable device.\n"); |
| 2397 | goto err_free_irq; |
| 2398 | } |
| 2399 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 2400 | spic_dev.bluetooth_power = -1; |
| 2401 | /* create device attributes */ |
| 2402 | result = sony_pf_add(); |
| 2403 | if (result) |
| 2404 | goto err_disable_device; |
| 2405 | |
| 2406 | result = sysfs_create_group(&sony_pf_device->dev.kobj, &spic_attribute_group); |
| 2407 | if (result) |
| 2408 | goto err_remove_pf; |
| 2409 | |
malattia@linux.it | 7b153f3 | 2007-04-09 19:31:25 +0200 | [diff] [blame] | 2410 | if (sonypi_compat_init()) |
| 2411 | goto err_remove_pf; |
| 2412 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2413 | return 0; |
| 2414 | |
malattia@linux.it | 49a11de | 2007-04-09 19:28:56 +0200 | [diff] [blame] | 2415 | err_remove_pf: |
| 2416 | sony_pf_remove(); |
| 2417 | |
| 2418 | err_disable_device: |
| 2419 | sony_pic_disable(device); |
| 2420 | |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2421 | err_free_irq: |
| 2422 | free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev); |
| 2423 | |
| 2424 | err_release_region: |
| 2425 | release_region(spic_dev.cur_ioport->io.minimum, |
| 2426 | spic_dev.cur_ioport->io.address_length); |
| 2427 | |
| 2428 | err_remove_input: |
malattia@linux.it | 1549ee6 | 2007-04-09 10:19:08 +0200 | [diff] [blame] | 2429 | sony_laptop_remove_input(); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2430 | |
| 2431 | err_free_resources: |
| 2432 | list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) { |
| 2433 | list_del(&io->list); |
| 2434 | kfree(io); |
| 2435 | } |
| 2436 | list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) { |
| 2437 | list_del(&irq->list); |
| 2438 | kfree(irq); |
| 2439 | } |
| 2440 | spic_dev.cur_ioport = NULL; |
| 2441 | spic_dev.cur_irq = NULL; |
| 2442 | |
| 2443 | return result; |
| 2444 | } |
| 2445 | |
| 2446 | static int sony_pic_suspend(struct acpi_device *device, pm_message_t state) |
| 2447 | { |
| 2448 | if (sony_pic_disable(device)) |
| 2449 | return -ENXIO; |
| 2450 | return 0; |
| 2451 | } |
| 2452 | |
| 2453 | static int sony_pic_resume(struct acpi_device *device) |
| 2454 | { |
| 2455 | sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq); |
| 2456 | return 0; |
| 2457 | } |
| 2458 | |
| 2459 | static struct acpi_driver sony_pic_driver = { |
| 2460 | .name = SONY_PIC_DRIVER_NAME, |
| 2461 | .class = SONY_PIC_CLASS, |
| 2462 | .ids = SONY_PIC_HID, |
| 2463 | .owner = THIS_MODULE, |
| 2464 | .ops = { |
| 2465 | .add = sony_pic_add, |
| 2466 | .remove = sony_pic_remove, |
| 2467 | .suspend = sony_pic_suspend, |
| 2468 | .resume = sony_pic_resume, |
| 2469 | }, |
| 2470 | }; |
| 2471 | |
| 2472 | static struct dmi_system_id __initdata sonypi_dmi_table[] = { |
| 2473 | { |
| 2474 | .ident = "Sony Vaio", |
| 2475 | .matches = { |
| 2476 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 2477 | DMI_MATCH(DMI_PRODUCT_NAME, "PCG-"), |
| 2478 | }, |
| 2479 | }, |
| 2480 | { |
| 2481 | .ident = "Sony Vaio", |
| 2482 | .matches = { |
| 2483 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 2484 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-"), |
| 2485 | }, |
| 2486 | }, |
| 2487 | { } |
| 2488 | }; |
| 2489 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 2490 | static int __init sony_laptop_init(void) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 2491 | { |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2492 | int result; |
| 2493 | |
| 2494 | if (!no_spic && dmi_check_system(sonypi_dmi_table)) { |
| 2495 | result = acpi_bus_register_driver(&sony_pic_driver); |
| 2496 | if (result) { |
| 2497 | printk(KERN_ERR DRV_PFX |
| 2498 | "Unable to register SPIC driver."); |
| 2499 | goto out; |
| 2500 | } |
| 2501 | } |
| 2502 | |
| 2503 | result = acpi_bus_register_driver(&sony_nc_driver); |
| 2504 | if (result) { |
| 2505 | printk(KERN_ERR DRV_PFX "Unable to register SNC driver."); |
| 2506 | goto out_unregister_pic; |
| 2507 | } |
| 2508 | |
| 2509 | return 0; |
| 2510 | |
| 2511 | out_unregister_pic: |
| 2512 | if (!no_spic) |
| 2513 | acpi_bus_unregister_driver(&sony_pic_driver); |
| 2514 | out: |
| 2515 | return result; |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 2516 | } |
| 2517 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 2518 | static void __exit sony_laptop_exit(void) |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 2519 | { |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 2520 | acpi_bus_unregister_driver(&sony_nc_driver); |
malattia@linux.it | 33a0445 | 2007-04-09 19:26:03 +0200 | [diff] [blame] | 2521 | if (!no_spic) |
| 2522 | acpi_bus_unregister_driver(&sony_pic_driver); |
Stelian Pop | 7f09c43 | 2007-01-13 23:04:31 +0100 | [diff] [blame] | 2523 | } |
| 2524 | |
malattia@linux.it | 59b1910 | 2007-04-09 10:19:04 +0200 | [diff] [blame] | 2525 | module_init(sony_laptop_init); |
| 2526 | module_exit(sony_laptop_exit); |