new helper: file_inode(file)
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / drivers / platform / x86 / sony-laptop.c
CommitLineData
7f09c432 1/*
33a04454 2 * ACPI Sony Notebook Control Driver (SNC and SPIC)
7f09c432
SP
3 *
4 * Copyright (C) 2004-2005 Stelian Pop <stelian@popies.net>
37418347 5 * Copyright (C) 2007-2009 Mattia Dongili <malattia@linux.it>
7f09c432
SP
6 *
7 * Parts of this driver inspired from asus_acpi.c and ibm_acpi.c
8 * which are copyrighted by their respective authors.
9 *
33a04454 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 *
db955170 17 * Copyright (C) 2001-2002 AlcĂ´ve <www.alcove.com>
33a04454 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 *
7f09c432
SP
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
50f581a4
JP
45#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
46
7f09c432
SP
47#include <linux/kernel.h>
48#include <linux/module.h>
49#include <linux/moduleparam.h>
50#include <linux/init.h>
51#include <linux/types.h>
50f62afb 52#include <linux/backlight.h>
ed3aa4b7 53#include <linux/platform_device.h>
50f62afb 54#include <linux/err.h>
33a04454 55#include <linux/dmi.h>
56#include <linux/pci.h>
57#include <linux/interrupt.h>
58#include <linux/delay.h>
59#include <linux/input.h>
60#include <linux/kfifo.h>
61#include <linux/workqueue.h>
62#include <linux/acpi.h>
5a0e3ad6 63#include <linux/slab.h>
7f09c432
SP
64#include <acpi/acpi_drivers.h>
65#include <acpi/acpi_bus.h>
66#include <asm/uaccess.h>
33a04454 67#include <linux/sonypi.h>
1ce82c14 68#include <linux/sony-laptop.h>
6cc056bc 69#include <linux/rfkill.h>
a64e62a0 70#ifdef CONFIG_SONYPI_COMPAT
7b153f36 71#include <linux/poll.h>
72#include <linux/miscdevice.h>
73#endif
7f09c432 74
50f581a4
JP
75#define dprintk(fmt, ...) \
76do { \
77 if (debug) \
78 pr_warn(fmt, ##__VA_ARGS__); \
b9a218b7 79} while (0)
80
425ef5d7 81#define SONY_LAPTOP_DRIVER_VERSION "0.6"
33a04454 82
83#define SONY_NC_CLASS "sony-nc"
59b19106 84#define SONY_NC_HID "SNY5001"
f6119b02 85#define SONY_NC_DRIVER_NAME "Sony Notebook Control Driver"
50f62afb 86
33a04454 87#define SONY_PIC_CLASS "sony-pic"
88#define SONY_PIC_HID "SNY6001"
f6119b02 89#define SONY_PIC_DRIVER_NAME "Sony Programmable IO Control Driver"
7f09c432 90
ed3aa4b7 91MODULE_AUTHOR("Stelian Pop, Mattia Dongili");
33a04454 92MODULE_DESCRIPTION("Sony laptop extras driver (SPIC and SNC ACPI device)");
7f09c432 93MODULE_LICENSE("GPL");
33a04454 94MODULE_VERSION(SONY_LAPTOP_DRIVER_VERSION);
7f09c432
SP
95
96static int debug;
97module_param(debug, int, 0);
98MODULE_PARM_DESC(debug, "set this to 1 (and RTFM) if you want to help "
a02d1c1d 99 "the development of this driver");
7f09c432 100
33a04454 101static int no_spic; /* = 0 */
102module_param(no_spic, int, 0444);
103MODULE_PARM_DESC(no_spic,
104 "set this if you don't want to enable the SPIC device");
105
106static int compat; /* = 0 */
107module_param(compat, int, 0444);
108MODULE_PARM_DESC(compat,
7b153f36 109 "set this if you want to enable backward compatibility mode");
33a04454 110
111static unsigned long mask = 0xffffffff;
112module_param(mask, ulong, 0644);
113MODULE_PARM_DESC(mask,
114 "set this to the mask of event you want to enable (see doc)");
115
5f3d2898 116static int camera; /* = 0 */
117module_param(camera, int, 0444);
118MODULE_PARM_DESC(camera,
119 "set this to 1 to enable Motion Eye camera controls "
120 "(only use it if you have a C1VE or C1VN model)");
121
a64e62a0 122#ifdef CONFIG_SONYPI_COMPAT
7b153f36 123static int minor = -1;
124module_param(minor, int, 0);
125MODULE_PARM_DESC(minor,
126 "minor number of the misc device for the SPIC compatibility code, "
127 "default is -1 (automatic)");
128#endif
129
6fe6ae56 130static int kbd_backlight = 1;
bf155714
MD
131module_param(kbd_backlight, int, 0444);
132MODULE_PARM_DESC(kbd_backlight,
133 "set this to 0 to disable keyboard backlight, "
134 "1 to enable it (default: 0)");
135
136static int kbd_backlight_timeout; /* = 0 */
137module_param(kbd_backlight_timeout, int, 0444);
138MODULE_PARM_DESC(kbd_backlight_timeout,
139 "set this to 0 to set the default 10 seconds timeout, "
140 "1 for 30 seconds, 2 for 60 seconds and 3 to disable timeout "
141 "(default: 0)");
142
3567a4e2 143#ifdef CONFIG_PM_SLEEP
df410d52 144static void sony_nc_kbd_backlight_resume(void);
3567a4e2
RW
145static void sony_nc_thermal_resume(void);
146#endif
aa33924f
MC
147static int sony_nc_kbd_backlight_setup(struct platform_device *pd,
148 unsigned int handle);
149static void sony_nc_kbd_backlight_cleanup(struct platform_device *pd);
df410d52 150
967145a0
MC
151static int sony_nc_battery_care_setup(struct platform_device *pd,
152 unsigned int handle);
153static void sony_nc_battery_care_cleanup(struct platform_device *pd);
154
49f000ad
MC
155static int sony_nc_thermal_setup(struct platform_device *pd);
156static void sony_nc_thermal_cleanup(struct platform_device *pd);
49f000ad 157
54535d08
MC
158static int sony_nc_lid_resume_setup(struct platform_device *pd);
159static void sony_nc_lid_resume_cleanup(struct platform_device *pd);
160
88bf1706
MC
161static int sony_nc_highspeed_charging_setup(struct platform_device *pd);
162static void sony_nc_highspeed_charging_cleanup(struct platform_device *pd);
163
2b8791c4
MC
164static int sony_nc_touchpad_setup(struct platform_device *pd,
165 unsigned int handle);
166static void sony_nc_touchpad_cleanup(struct platform_device *pd);
167
6cc056bc
MG
168enum sony_nc_rfkill {
169 SONY_WIFI,
170 SONY_BLUETOOTH,
171 SONY_WWAN,
172 SONY_WIMAX,
19d337df 173 N_SONY_RFKILL,
6cc056bc
MG
174};
175
d5a664a3 176static int sony_rfkill_handle;
19d337df
JB
177static struct rfkill *sony_rfkill_devices[N_SONY_RFKILL];
178static int sony_rfkill_address[N_SONY_RFKILL] = {0x300, 0x500, 0x700, 0x900};
a1e73632
MC
179static int sony_nc_rfkill_setup(struct acpi_device *device,
180 unsigned int handle);
5fe801a7 181static void sony_nc_rfkill_cleanup(void);
6cc056bc
MG
182static void sony_nc_rfkill_update(void);
183
1549ee6f 184/*********** Input Devices ***********/
185
186#define SONY_LAPTOP_BUF_SIZE 128
187struct sony_laptop_input_s {
188 atomic_t users;
189 struct input_dev *jog_dev;
190 struct input_dev *key_dev;
45465487 191 struct kfifo fifo;
1549ee6f 192 spinlock_t fifo_lock;
cffdde99 193 struct timer_list release_key_timer;
1549ee6f 194};
6cc056bc 195
1549ee6f 196static struct sony_laptop_input_s sony_laptop_input = {
197 .users = ATOMIC_INIT(0),
198};
199
200struct sony_laptop_keypress {
201 struct input_dev *dev;
202 int key;
203};
204
bc57f865
MD
205/* Correspondance table between sonypi events
206 * and input layer indexes in the keymap
207 */
208static int sony_laptop_input_index[] = {
3eb8749a
MD
209 -1, /* 0 no event */
210 -1, /* 1 SONYPI_EVENT_JOGDIAL_DOWN */
211 -1, /* 2 SONYPI_EVENT_JOGDIAL_UP */
212 -1, /* 3 SONYPI_EVENT_JOGDIAL_DOWN_PRESSED */
213 -1, /* 4 SONYPI_EVENT_JOGDIAL_UP_PRESSED */
214 -1, /* 5 SONYPI_EVENT_JOGDIAL_PRESSED */
215 -1, /* 6 SONYPI_EVENT_JOGDIAL_RELEASED */
216 0, /* 7 SONYPI_EVENT_CAPTURE_PRESSED */
217 1, /* 8 SONYPI_EVENT_CAPTURE_RELEASED */
218 2, /* 9 SONYPI_EVENT_CAPTURE_PARTIALPRESSED */
219 3, /* 10 SONYPI_EVENT_CAPTURE_PARTIALRELEASED */
220 4, /* 11 SONYPI_EVENT_FNKEY_ESC */
221 5, /* 12 SONYPI_EVENT_FNKEY_F1 */
222 6, /* 13 SONYPI_EVENT_FNKEY_F2 */
223 7, /* 14 SONYPI_EVENT_FNKEY_F3 */
224 8, /* 15 SONYPI_EVENT_FNKEY_F4 */
225 9, /* 16 SONYPI_EVENT_FNKEY_F5 */
226 10, /* 17 SONYPI_EVENT_FNKEY_F6 */
227 11, /* 18 SONYPI_EVENT_FNKEY_F7 */
228 12, /* 19 SONYPI_EVENT_FNKEY_F8 */
229 13, /* 20 SONYPI_EVENT_FNKEY_F9 */
230 14, /* 21 SONYPI_EVENT_FNKEY_F10 */
231 15, /* 22 SONYPI_EVENT_FNKEY_F11 */
232 16, /* 23 SONYPI_EVENT_FNKEY_F12 */
233 17, /* 24 SONYPI_EVENT_FNKEY_1 */
234 18, /* 25 SONYPI_EVENT_FNKEY_2 */
235 19, /* 26 SONYPI_EVENT_FNKEY_D */
236 20, /* 27 SONYPI_EVENT_FNKEY_E */
237 21, /* 28 SONYPI_EVENT_FNKEY_F */
238 22, /* 29 SONYPI_EVENT_FNKEY_S */
239 23, /* 30 SONYPI_EVENT_FNKEY_B */
240 24, /* 31 SONYPI_EVENT_BLUETOOTH_PRESSED */
241 25, /* 32 SONYPI_EVENT_PKEY_P1 */
242 26, /* 33 SONYPI_EVENT_PKEY_P2 */
243 27, /* 34 SONYPI_EVENT_PKEY_P3 */
244 28, /* 35 SONYPI_EVENT_BACK_PRESSED */
245 -1, /* 36 SONYPI_EVENT_LID_CLOSED */
246 -1, /* 37 SONYPI_EVENT_LID_OPENED */
247 29, /* 38 SONYPI_EVENT_BLUETOOTH_ON */
248 30, /* 39 SONYPI_EVENT_BLUETOOTH_OFF */
249 31, /* 40 SONYPI_EVENT_HELP_PRESSED */
250 32, /* 41 SONYPI_EVENT_FNKEY_ONLY */
251 33, /* 42 SONYPI_EVENT_JOGDIAL_FAST_DOWN */
252 34, /* 43 SONYPI_EVENT_JOGDIAL_FAST_UP */
253 35, /* 44 SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */
254 36, /* 45 SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */
255 37, /* 46 SONYPI_EVENT_JOGDIAL_VFAST_DOWN */
256 38, /* 47 SONYPI_EVENT_JOGDIAL_VFAST_UP */
257 39, /* 48 SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */
258 40, /* 49 SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */
259 41, /* 50 SONYPI_EVENT_ZOOM_PRESSED */
260 42, /* 51 SONYPI_EVENT_THUMBPHRASE_PRESSED */
261 43, /* 52 SONYPI_EVENT_MEYE_FACE */
262 44, /* 53 SONYPI_EVENT_MEYE_OPPOSITE */
263 45, /* 54 SONYPI_EVENT_MEMORYSTICK_INSERT */
264 46, /* 55 SONYPI_EVENT_MEMORYSTICK_EJECT */
265 -1, /* 56 SONYPI_EVENT_ANYBUTTON_RELEASED */
266 -1, /* 57 SONYPI_EVENT_BATTERY_INSERT */
267 -1, /* 58 SONYPI_EVENT_BATTERY_REMOVE */
268 -1, /* 59 SONYPI_EVENT_FNKEY_RELEASED */
269 47, /* 60 SONYPI_EVENT_WIRELESS_ON */
270 48, /* 61 SONYPI_EVENT_WIRELESS_OFF */
271 49, /* 62 SONYPI_EVENT_ZOOM_IN_PRESSED */
272 50, /* 63 SONYPI_EVENT_ZOOM_OUT_PRESSED */
9b57896e 273 51, /* 64 SONYPI_EVENT_CD_EJECT_PRESSED */
45c7942b
MG
274 52, /* 65 SONYPI_EVENT_MODEKEY_PRESSED */
275 53, /* 66 SONYPI_EVENT_PKEY_P4 */
276 54, /* 67 SONYPI_EVENT_PKEY_P5 */
277 55, /* 68 SONYPI_EVENT_SETTINGKEY_PRESSED */
1cae7103
HJ
278 56, /* 69 SONYPI_EVENT_VOLUME_INC_PRESSED */
279 57, /* 70 SONYPI_EVENT_VOLUME_DEC_PRESSED */
280 -1, /* 71 SONYPI_EVENT_BRIGHTNESS_PRESSED */
4f924ba5 281 58, /* 72 SONYPI_EVENT_MEDIA_PRESSED */
1a7d9469 282 59, /* 72 SONYPI_EVENT_VENDOR_PRESSED */
bc57f865
MD
283};
284
285static int sony_laptop_input_keycode_map[] = {
286 KEY_CAMERA, /* 0 SONYPI_EVENT_CAPTURE_PRESSED */
287 KEY_RESERVED, /* 1 SONYPI_EVENT_CAPTURE_RELEASED */
288 KEY_RESERVED, /* 2 SONYPI_EVENT_CAPTURE_PARTIALPRESSED */
289 KEY_RESERVED, /* 3 SONYPI_EVENT_CAPTURE_PARTIALRELEASED */
290 KEY_FN_ESC, /* 4 SONYPI_EVENT_FNKEY_ESC */
291 KEY_FN_F1, /* 5 SONYPI_EVENT_FNKEY_F1 */
292 KEY_FN_F2, /* 6 SONYPI_EVENT_FNKEY_F2 */
293 KEY_FN_F3, /* 7 SONYPI_EVENT_FNKEY_F3 */
294 KEY_FN_F4, /* 8 SONYPI_EVENT_FNKEY_F4 */
295 KEY_FN_F5, /* 9 SONYPI_EVENT_FNKEY_F5 */
296 KEY_FN_F6, /* 10 SONYPI_EVENT_FNKEY_F6 */
297 KEY_FN_F7, /* 11 SONYPI_EVENT_FNKEY_F7 */
298 KEY_FN_F8, /* 12 SONYPI_EVENT_FNKEY_F8 */
299 KEY_FN_F9, /* 13 SONYPI_EVENT_FNKEY_F9 */
300 KEY_FN_F10, /* 14 SONYPI_EVENT_FNKEY_F10 */
301 KEY_FN_F11, /* 15 SONYPI_EVENT_FNKEY_F11 */
302 KEY_FN_F12, /* 16 SONYPI_EVENT_FNKEY_F12 */
303 KEY_FN_F1, /* 17 SONYPI_EVENT_FNKEY_1 */
304 KEY_FN_F2, /* 18 SONYPI_EVENT_FNKEY_2 */
305 KEY_FN_D, /* 19 SONYPI_EVENT_FNKEY_D */
306 KEY_FN_E, /* 20 SONYPI_EVENT_FNKEY_E */
307 KEY_FN_F, /* 21 SONYPI_EVENT_FNKEY_F */
308 KEY_FN_S, /* 22 SONYPI_EVENT_FNKEY_S */
309 KEY_FN_B, /* 23 SONYPI_EVENT_FNKEY_B */
310 KEY_BLUETOOTH, /* 24 SONYPI_EVENT_BLUETOOTH_PRESSED */
311 KEY_PROG1, /* 25 SONYPI_EVENT_PKEY_P1 */
312 KEY_PROG2, /* 26 SONYPI_EVENT_PKEY_P2 */
313 KEY_PROG3, /* 27 SONYPI_EVENT_PKEY_P3 */
314 KEY_BACK, /* 28 SONYPI_EVENT_BACK_PRESSED */
315 KEY_BLUETOOTH, /* 29 SONYPI_EVENT_BLUETOOTH_ON */
316 KEY_BLUETOOTH, /* 30 SONYPI_EVENT_BLUETOOTH_OFF */
317 KEY_HELP, /* 31 SONYPI_EVENT_HELP_PRESSED */
318 KEY_FN, /* 32 SONYPI_EVENT_FNKEY_ONLY */
319 KEY_RESERVED, /* 33 SONYPI_EVENT_JOGDIAL_FAST_DOWN */
320 KEY_RESERVED, /* 34 SONYPI_EVENT_JOGDIAL_FAST_UP */
321 KEY_RESERVED, /* 35 SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */
322 KEY_RESERVED, /* 36 SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */
323 KEY_RESERVED, /* 37 SONYPI_EVENT_JOGDIAL_VFAST_DOWN */
324 KEY_RESERVED, /* 38 SONYPI_EVENT_JOGDIAL_VFAST_UP */
325 KEY_RESERVED, /* 39 SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */
326 KEY_RESERVED, /* 40 SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */
327 KEY_ZOOM, /* 41 SONYPI_EVENT_ZOOM_PRESSED */
328 BTN_THUMB, /* 42 SONYPI_EVENT_THUMBPHRASE_PRESSED */
329 KEY_RESERVED, /* 43 SONYPI_EVENT_MEYE_FACE */
330 KEY_RESERVED, /* 44 SONYPI_EVENT_MEYE_OPPOSITE */
331 KEY_RESERVED, /* 45 SONYPI_EVENT_MEMORYSTICK_INSERT */
332 KEY_RESERVED, /* 46 SONYPI_EVENT_MEMORYSTICK_EJECT */
333 KEY_WLAN, /* 47 SONYPI_EVENT_WIRELESS_ON */
334 KEY_WLAN, /* 48 SONYPI_EVENT_WIRELESS_OFF */
3eb8749a 335 KEY_ZOOMIN, /* 49 SONYPI_EVENT_ZOOM_IN_PRESSED */
9b57896e 336 KEY_ZOOMOUT, /* 50 SONYPI_EVENT_ZOOM_OUT_PRESSED */
45c7942b
MG
337 KEY_EJECTCD, /* 51 SONYPI_EVENT_CD_EJECT_PRESSED */
338 KEY_F13, /* 52 SONYPI_EVENT_MODEKEY_PRESSED */
339 KEY_PROG4, /* 53 SONYPI_EVENT_PKEY_P4 */
340 KEY_F14, /* 54 SONYPI_EVENT_PKEY_P5 */
341 KEY_F15, /* 55 SONYPI_EVENT_SETTINGKEY_PRESSED */
1cae7103
HJ
342 KEY_VOLUMEUP, /* 56 SONYPI_EVENT_VOLUME_INC_PRESSED */
343 KEY_VOLUMEDOWN, /* 57 SONYPI_EVENT_VOLUME_DEC_PRESSED */
4f924ba5 344 KEY_MEDIA, /* 58 SONYPI_EVENT_MEDIA_PRESSED */
1a7d9469 345 KEY_VENDOR, /* 59 SONYPI_EVENT_VENDOR_PRESSED */
1549ee6f 346};
347
348/* release buttons after a short delay if pressed */
cffdde99 349static void do_sony_laptop_release_key(unsigned long unused)
1549ee6f 350{
351 struct sony_laptop_keypress kp;
9593bd07 352 unsigned long flags;
1549ee6f 353
9593bd07
DT
354 spin_lock_irqsave(&sony_laptop_input.fifo_lock, flags);
355
356 if (kfifo_out(&sony_laptop_input.fifo,
357 (unsigned char *)&kp, sizeof(kp)) == sizeof(kp)) {
1549ee6f 358 input_report_key(kp.dev, kp.key, 0);
359 input_sync(kp.dev);
360 }
9593bd07
DT
361
362 /* If there is something in the fifo schedule next release. */
363 if (kfifo_len(&sony_laptop_input.fifo) != 0)
cffdde99
DT
364 mod_timer(&sony_laptop_input.release_key_timer,
365 jiffies + msecs_to_jiffies(10));
9593bd07
DT
366
367 spin_unlock_irqrestore(&sony_laptop_input.fifo_lock, flags);
1549ee6f 368}
1549ee6f 369
3a4fa0a2 370/* forward event to the input subsystem */
1549ee6f 371static void sony_laptop_report_input_event(u8 event)
372{
373 struct input_dev *jog_dev = sony_laptop_input.jog_dev;
374 struct input_dev *key_dev = sony_laptop_input.key_dev;
375 struct sony_laptop_keypress kp = { NULL };
747a562f 376 int scancode = -1;
1549ee6f 377
a83021a2
AT
378 if (event == SONYPI_EVENT_FNKEY_RELEASED ||
379 event == SONYPI_EVENT_ANYBUTTON_RELEASED) {
1549ee6f 380 /* Nothing, not all VAIOs generate this event */
381 return;
382 }
383
384 /* report events */
385 switch (event) {
386 /* jog_dev events */
387 case SONYPI_EVENT_JOGDIAL_UP:
388 case SONYPI_EVENT_JOGDIAL_UP_PRESSED:
389 input_report_rel(jog_dev, REL_WHEEL, 1);
390 input_sync(jog_dev);
391 return;
392
393 case SONYPI_EVENT_JOGDIAL_DOWN:
394 case SONYPI_EVENT_JOGDIAL_DOWN_PRESSED:
395 input_report_rel(jog_dev, REL_WHEEL, -1);
396 input_sync(jog_dev);
397 return;
398
399 /* key_dev events */
400 case SONYPI_EVENT_JOGDIAL_PRESSED:
401 kp.key = BTN_MIDDLE;
402 kp.dev = jog_dev;
403 break;
404
405 default:
d399d130 406 if (event >= ARRAY_SIZE(sony_laptop_input_index)) {
bc57f865
MD
407 dprintk("sony_laptop_report_input_event, event not known: %d\n", event);
408 break;
409 }
747a562f
JH
410 if ((scancode = sony_laptop_input_index[event]) != -1) {
411 kp.key = sony_laptop_input_keycode_map[scancode];
bc57f865 412 if (kp.key != KEY_UNKNOWN)
1549ee6f 413 kp.dev = key_dev;
bc57f865 414 }
1549ee6f 415 break;
416 }
417
418 if (kp.dev) {
747a562f
JH
419 /* if we have a scancode we emit it so we can always
420 remap the key */
421 if (scancode != -1)
422 input_event(kp.dev, EV_MSC, MSC_SCAN, scancode);
1549ee6f 423 input_report_key(kp.dev, kp.key, 1);
424 input_sync(kp.dev);
1549ee6f 425
9593bd07
DT
426 /* schedule key release */
427 kfifo_in_locked(&sony_laptop_input.fifo,
428 (unsigned char *)&kp, sizeof(kp),
429 &sony_laptop_input.fifo_lock);
cffdde99
DT
430 mod_timer(&sony_laptop_input.release_key_timer,
431 jiffies + msecs_to_jiffies(10));
1549ee6f 432 } else
433 dprintk("unknown input event %.2x\n", event);
434}
435
2e4d242c 436static int sony_laptop_setup_input(struct acpi_device *acpi_device)
1549ee6f 437{
438 struct input_dev *jog_dev;
439 struct input_dev *key_dev;
440 int i;
441 int error;
442
443 /* don't run again if already initialized */
444 if (atomic_add_return(1, &sony_laptop_input.users) > 1)
445 return 0;
446
447 /* kfifo */
448 spin_lock_init(&sony_laptop_input.fifo_lock);
9593bd07
DT
449 error = kfifo_alloc(&sony_laptop_input.fifo,
450 SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
45465487 451 if (error) {
50f581a4 452 pr_err("kfifo_alloc failed\n");
1549ee6f 453 goto err_dec_users;
454 }
455
cffdde99
DT
456 setup_timer(&sony_laptop_input.release_key_timer,
457 do_sony_laptop_release_key, 0);
1549ee6f 458
459 /* input keys */
460 key_dev = input_allocate_device();
461 if (!key_dev) {
462 error = -ENOMEM;
9593bd07 463 goto err_free_kfifo;
1549ee6f 464 }
465
466 key_dev->name = "Sony Vaio Keys";
467 key_dev->id.bustype = BUS_ISA;
468 key_dev->id.vendor = PCI_VENDOR_ID_SONY;
2e4d242c 469 key_dev->dev.parent = &acpi_device->dev;
1549ee6f 470
471 /* Initialize the Input Drivers: special keys */
c45bc9d6
DT
472 input_set_capability(key_dev, EV_MSC, MSC_SCAN);
473
474 __set_bit(EV_KEY, key_dev->evbit);
bc57f865
MD
475 key_dev->keycodesize = sizeof(sony_laptop_input_keycode_map[0]);
476 key_dev->keycodemax = ARRAY_SIZE(sony_laptop_input_keycode_map);
477 key_dev->keycode = &sony_laptop_input_keycode_map;
c45bc9d6
DT
478 for (i = 0; i < ARRAY_SIZE(sony_laptop_input_keycode_map); i++)
479 __set_bit(sony_laptop_input_keycode_map[i], key_dev->keybit);
480 __clear_bit(KEY_RESERVED, key_dev->keybit);
1549ee6f 481
482 error = input_register_device(key_dev);
483 if (error)
484 goto err_free_keydev;
485
486 sony_laptop_input.key_dev = key_dev;
487
488 /* jogdial */
489 jog_dev = input_allocate_device();
490 if (!jog_dev) {
491 error = -ENOMEM;
492 goto err_unregister_keydev;
493 }
494
495 jog_dev->name = "Sony Vaio Jogdial";
496 jog_dev->id.bustype = BUS_ISA;
497 jog_dev->id.vendor = PCI_VENDOR_ID_SONY;
747a562f 498 jog_dev->dev.parent = &acpi_device->dev;
1549ee6f 499
c45bc9d6
DT
500 input_set_capability(jog_dev, EV_KEY, BTN_MIDDLE);
501 input_set_capability(jog_dev, EV_REL, REL_WHEEL);
1549ee6f 502
503 error = input_register_device(jog_dev);
504 if (error)
505 goto err_free_jogdev;
506
507 sony_laptop_input.jog_dev = jog_dev;
508
509 return 0;
510
511err_free_jogdev:
512 input_free_device(jog_dev);
513
514err_unregister_keydev:
515 input_unregister_device(key_dev);
516 /* to avoid kref underflow below at input_free_device */
517 key_dev = NULL;
518
519err_free_keydev:
520 input_free_device(key_dev);
521
1549ee6f 522err_free_kfifo:
45465487 523 kfifo_free(&sony_laptop_input.fifo);
1549ee6f 524
525err_dec_users:
526 atomic_dec(&sony_laptop_input.users);
527 return error;
528}
529
530static void sony_laptop_remove_input(void)
531{
9593bd07
DT
532 struct sony_laptop_keypress kp = { NULL };
533
534 /* Cleanup only after the last user has gone */
1549ee6f 535 if (!atomic_dec_and_test(&sony_laptop_input.users))
536 return;
537
cffdde99 538 del_timer_sync(&sony_laptop_input.release_key_timer);
9593bd07
DT
539
540 /*
541 * Generate key-up events for remaining keys. Note that we don't
542 * need locking since nobody is adding new events to the kfifo.
543 */
544 while (kfifo_out(&sony_laptop_input.fifo,
545 (unsigned char *)&kp, sizeof(kp)) == sizeof(kp)) {
546 input_report_key(kp.dev, kp.key, 0);
547 input_sync(kp.dev);
548 }
1549ee6f 549
550 /* destroy input devs */
551 input_unregister_device(sony_laptop_input.key_dev);
552 sony_laptop_input.key_dev = NULL;
553
554 if (sony_laptop_input.jog_dev) {
555 input_unregister_device(sony_laptop_input.jog_dev);
556 sony_laptop_input.jog_dev = NULL;
557 }
558
45465487 559 kfifo_free(&sony_laptop_input.fifo);
1549ee6f 560}
561
56b8756b 562/*********** Platform Device ***********/
563
564static atomic_t sony_pf_users = ATOMIC_INIT(0);
565static struct platform_driver sony_pf_driver = {
566 .driver = {
567 .name = "sony-laptop",
568 .owner = THIS_MODULE,
569 }
570};
571static struct platform_device *sony_pf_device;
572
573static int sony_pf_add(void)
574{
575 int ret = 0;
576
577 /* don't run again if already initialized */
578 if (atomic_add_return(1, &sony_pf_users) > 1)
579 return 0;
580
581 ret = platform_driver_register(&sony_pf_driver);
582 if (ret)
583 goto out;
584
585 sony_pf_device = platform_device_alloc("sony-laptop", -1);
586 if (!sony_pf_device) {
587 ret = -ENOMEM;
588 goto out_platform_registered;
589 }
590
591 ret = platform_device_add(sony_pf_device);
592 if (ret)
593 goto out_platform_alloced;
594
595 return 0;
596
597 out_platform_alloced:
598 platform_device_put(sony_pf_device);
599 sony_pf_device = NULL;
600 out_platform_registered:
601 platform_driver_unregister(&sony_pf_driver);
602 out:
603 atomic_dec(&sony_pf_users);
604 return ret;
605}
606
607static void sony_pf_remove(void)
608{
609 /* deregister only after the last user has gone */
610 if (!atomic_dec_and_test(&sony_pf_users))
611 return;
612
08db2b31 613 platform_device_unregister(sony_pf_device);
56b8756b 614 platform_driver_unregister(&sony_pf_driver);
615}
616
617/*********** SNC (SNY5001) Device ***********/
618
33a04454 619/* the device uses 1-based values, while the backlight subsystem uses
620 0-based values */
621#define SONY_MAX_BRIGHTNESS 8
622
623#define SNC_VALIDATE_IN 0
624#define SNC_VALIDATE_OUT 1
625
59b19106 626static ssize_t sony_nc_sysfs_show(struct device *, struct device_attribute *,
a02d1c1d 627 char *);
59b19106 628static ssize_t sony_nc_sysfs_store(struct device *, struct device_attribute *,
a02d1c1d 629 const char *, size_t);
156c221b
MD
630static int boolean_validate(const int, const int);
631static int brightness_default_validate(const int, const int);
632
59b19106 633struct sony_nc_value {
a02d1c1d
LB
634 char *name; /* name of the entry */
635 char **acpiget; /* names of the ACPI get function */
636 char **acpiset; /* names of the ACPI set function */
156c221b 637 int (*validate)(const int, const int); /* input/output validation */
a02d1c1d
LB
638 int value; /* current setting */
639 int valid; /* Has ever been set */
640 int debug; /* active only in debug mode ? */
c8440336 641 struct device_attribute devattr; /* sysfs attribute */
ed3aa4b7
MD
642};
643
59b19106 644#define SNC_HANDLE_NAMES(_name, _values...) \
ed3aa4b7
MD
645 static char *snc_##_name[] = { _values, NULL }
646
59b19106 647#define SNC_HANDLE(_name, _getters, _setters, _validate, _debug) \
ed3aa4b7
MD
648 { \
649 .name = __stringify(_name), \
650 .acpiget = _getters, \
651 .acpiset = _setters, \
156c221b 652 .validate = _validate, \
ed3aa4b7 653 .debug = _debug, \
59b19106 654 .devattr = __ATTR(_name, 0, sony_nc_sysfs_show, sony_nc_sysfs_store), \
7f09c432 655 }
ed3aa4b7 656
59b19106 657#define SNC_HANDLE_NULL { .name = NULL }
ed3aa4b7 658
59b19106 659SNC_HANDLE_NAMES(fnkey_get, "GHKE");
ed3aa4b7 660
59b19106 661SNC_HANDLE_NAMES(brightness_def_get, "GPBR");
662SNC_HANDLE_NAMES(brightness_def_set, "SPBR");
ed3aa4b7 663
59b19106 664SNC_HANDLE_NAMES(cdpower_get, "GCDP");
665SNC_HANDLE_NAMES(cdpower_set, "SCDP", "CDPW");
ed3aa4b7 666
59b19106 667SNC_HANDLE_NAMES(audiopower_get, "GAZP");
668SNC_HANDLE_NAMES(audiopower_set, "AZPW");
ed3aa4b7 669
59b19106 670SNC_HANDLE_NAMES(lanpower_get, "GLNP");
671SNC_HANDLE_NAMES(lanpower_set, "LNPW");
ed3aa4b7 672
044847e0
MD
673SNC_HANDLE_NAMES(lidstate_get, "GLID");
674
675SNC_HANDLE_NAMES(indicatorlamp_get, "GILS");
676SNC_HANDLE_NAMES(indicatorlamp_set, "SILS");
677
678SNC_HANDLE_NAMES(gainbass_get, "GMGB");
679SNC_HANDLE_NAMES(gainbass_set, "CMGB");
680
59b19106 681SNC_HANDLE_NAMES(PID_get, "GPID");
ed3aa4b7 682
59b19106 683SNC_HANDLE_NAMES(CTR_get, "GCTR");
684SNC_HANDLE_NAMES(CTR_set, "SCTR");
ed3aa4b7 685
59b19106 686SNC_HANDLE_NAMES(PCR_get, "GPCR");
687SNC_HANDLE_NAMES(PCR_set, "SPCR");
ed3aa4b7 688
59b19106 689SNC_HANDLE_NAMES(CMI_get, "GCMI");
690SNC_HANDLE_NAMES(CMI_set, "SCMI");
ed3aa4b7 691
59b19106 692static struct sony_nc_value sony_nc_values[] = {
693 SNC_HANDLE(brightness_default, snc_brightness_def_get,
156c221b 694 snc_brightness_def_set, brightness_default_validate, 0),
59b19106 695 SNC_HANDLE(fnkey, snc_fnkey_get, NULL, NULL, 0),
696 SNC_HANDLE(cdpower, snc_cdpower_get, snc_cdpower_set, boolean_validate, 0),
697 SNC_HANDLE(audiopower, snc_audiopower_get, snc_audiopower_set,
156c221b 698 boolean_validate, 0),
59b19106 699 SNC_HANDLE(lanpower, snc_lanpower_get, snc_lanpower_set,
156c221b 700 boolean_validate, 1),
044847e0
MD
701 SNC_HANDLE(lidstate, snc_lidstate_get, NULL,
702 boolean_validate, 0),
703 SNC_HANDLE(indicatorlamp, snc_indicatorlamp_get, snc_indicatorlamp_set,
704 boolean_validate, 0),
705 SNC_HANDLE(gainbass, snc_gainbass_get, snc_gainbass_set,
706 boolean_validate, 0),
ed3aa4b7 707 /* unknown methods */
59b19106 708 SNC_HANDLE(PID, snc_PID_get, NULL, NULL, 1),
709 SNC_HANDLE(CTR, snc_CTR_get, snc_CTR_set, NULL, 1),
710 SNC_HANDLE(PCR, snc_PCR_get, snc_PCR_set, NULL, 1),
711 SNC_HANDLE(CMI, snc_CMI_get, snc_CMI_set, NULL, 1),
712 SNC_HANDLE_NULL
7f09c432
SP
713};
714
59b19106 715static acpi_handle sony_nc_acpi_handle;
716static struct acpi_device *sony_nc_acpi_device = NULL;
ed3aa4b7 717
d78865cd
MD
718/*
719 * acpi_evaluate_object wrappers
ebcef1b0
MD
720 * all useful calls into SNC methods take one or zero parameters and return
721 * integers or arrays.
d78865cd 722 */
ebcef1b0
MD
723static union acpi_object *__call_snc_method(acpi_handle handle, char *method,
724 u64 *value)
7f09c432 725{
ebcef1b0
MD
726 union acpi_object *result = NULL;
727 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
7f09c432
SP
728 acpi_status status;
729
ebcef1b0
MD
730 if (value) {
731 struct acpi_object_list params;
732 union acpi_object in;
733 in.type = ACPI_TYPE_INTEGER;
734 in.integer.value = *value;
735 params.count = 1;
736 params.pointer = &in;
737 status = acpi_evaluate_object(handle, method, &params, &output);
ae188715
MD
738 dprintk("__call_snc_method: [%s:0x%.8x%.8x]\n", method,
739 (unsigned int)(*value >> 32),
740 (unsigned int)*value & 0xffffffff);
741 } else {
ebcef1b0 742 status = acpi_evaluate_object(handle, method, NULL, &output);
ae188715
MD
743 dprintk("__call_snc_method: [%s]\n", method);
744 }
7f09c432 745
ebcef1b0
MD
746 if (ACPI_FAILURE(status)) {
747 pr_err("Failed to evaluate [%s]\n", method);
748 return NULL;
7f09c432
SP
749 }
750
ebcef1b0
MD
751 result = (union acpi_object *) output.pointer;
752 if (!result)
753 dprintk("No return object [%s]\n", method);
7f09c432 754
ebcef1b0 755 return result;
7f09c432
SP
756}
757
ebcef1b0
MD
758static int sony_nc_int_call(acpi_handle handle, char *name, int *value,
759 int *result)
7f09c432 760{
ebcef1b0
MD
761 union acpi_object *object = NULL;
762 if (value) {
763 u64 v = *value;
764 object = __call_snc_method(handle, name, &v);
765 } else
766 object = __call_snc_method(handle, name, NULL);
7f09c432 767
ebcef1b0
MD
768 if (!object)
769 return -EINVAL;
7f09c432 770
ebcef1b0
MD
771 if (object->type != ACPI_TYPE_INTEGER) {
772 pr_warn("Invalid acpi_object: expected 0x%x got 0x%x\n",
773 ACPI_TYPE_INTEGER, object->type);
774 kfree(object);
775 return -EINVAL;
7f09c432
SP
776 }
777
ebcef1b0
MD
778 if (result)
779 *result = object->integer.value;
7f09c432 780
ebcef1b0
MD
781 kfree(object);
782 return 0;
783}
784
785#define MIN(a, b) (a > b ? b : a)
786static int sony_nc_buffer_call(acpi_handle handle, char *name, u64 *value,
787 void *buffer, size_t buflen)
788{
dcbeec26 789 int ret = 0;
ebcef1b0
MD
790 size_t len = len;
791 union acpi_object *object = __call_snc_method(handle, name, value);
792
793 if (!object)
794 return -EINVAL;
795
dcbeec26 796 if (object->type == ACPI_TYPE_BUFFER) {
ebcef1b0 797 len = MIN(buflen, object->buffer.length);
dcbeec26 798 memcpy(buffer, object->buffer.pointer, len);
ebcef1b0 799
dcbeec26 800 } else if (object->type == ACPI_TYPE_INTEGER) {
ebcef1b0 801 len = MIN(buflen, sizeof(object->integer.value));
dcbeec26 802 memcpy(buffer, &object->integer.value, len);
ebcef1b0 803
dcbeec26 804 } else {
ebcef1b0
MD
805 pr_warn("Invalid acpi_object: expected 0x%x got 0x%x\n",
806 ACPI_TYPE_BUFFER, object->type);
dcbeec26 807 ret = -EINVAL;
ebcef1b0
MD
808 }
809
ebcef1b0 810 kfree(object);
dcbeec26 811 return ret;
7f09c432
SP
812}
813
2a4f0c81
MD
814struct sony_nc_handles {
815 u16 cap[0x10];
816 struct device_attribute devattr;
817};
818
f11113b2 819static struct sony_nc_handles *handles;
2a4f0c81
MD
820
821static ssize_t sony_nc_handles_show(struct device *dev,
822 struct device_attribute *attr, char *buffer)
823{
824 ssize_t len = 0;
825 int i;
826
827 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
828 len += snprintf(buffer + len, PAGE_SIZE - len, "0x%.4x ",
829 handles->cap[i]);
830 }
831 len += snprintf(buffer + len, PAGE_SIZE - len, "\n");
832
833 return len;
834}
835
836static int sony_nc_handles_setup(struct platform_device *pd)
badf26f0 837{
ebcef1b0 838 int i, r, result, arg;
badf26f0 839
2a4f0c81 840 handles = kzalloc(sizeof(*handles), GFP_KERNEL);
31f00759
DC
841 if (!handles)
842 return -ENOMEM;
2a4f0c81 843
2a4f0c81 844 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
ebcef1b0
MD
845 arg = i + 0x20;
846 r = sony_nc_int_call(sony_nc_acpi_handle, "SN00", &arg,
847 &result);
848 if (!r) {
2a4f0c81
MD
849 dprintk("caching handle 0x%.4x (offset: 0x%.2x)\n",
850 result, i);
851 handles->cap[i] = result;
56e6e716 852 }
badf26f0
MG
853 }
854
855b8bc9
MD
855 if (debug) {
856 sysfs_attr_init(&handles->devattr.attr);
857 handles->devattr.attr.name = "handles";
858 handles->devattr.attr.mode = S_IRUGO;
859 handles->devattr.show = sony_nc_handles_show;
860
861 /* allow reading capabilities via sysfs */
862 if (device_create_file(&pd->dev, &handles->devattr)) {
863 kfree(handles);
864 handles = NULL;
865 return -1;
866 }
2a4f0c81
MD
867 }
868
869 return 0;
870}
871
872static int sony_nc_handles_cleanup(struct platform_device *pd)
873{
874 if (handles) {
855b8bc9
MD
875 if (debug)
876 device_remove_file(&pd->dev, &handles->devattr);
2a4f0c81
MD
877 kfree(handles);
878 handles = NULL;
879 }
880 return 0;
881}
882
883static int sony_find_snc_handle(int handle)
884{
885 int i;
fef34861
MD
886
887 /* not initialized yet, return early */
bab7084c
MD
888 if (!handles || !handle)
889 return -EINVAL;
fef34861 890
2a4f0c81
MD
891 for (i = 0; i < 0x10; i++) {
892 if (handles->cap[i] == handle) {
893 dprintk("found handle 0x%.4x (offset: 0x%.2x)\n",
894 handle, i);
895 return i;
896 }
897 }
56e6e716 898 dprintk("handle 0x%.4x not found\n", handle);
bab7084c 899 return -EINVAL;
badf26f0
MG
900}
901
902static int sony_call_snc_handle(int handle, int argument, int *result)
903{
ebcef1b0 904 int arg, ret = 0;
badf26f0
MG
905 int offset = sony_find_snc_handle(handle);
906
907 if (offset < 0)
bab7084c 908 return offset;
badf26f0 909
ebcef1b0
MD
910 arg = offset | argument;
911 ret = sony_nc_int_call(sony_nc_acpi_handle, "SN07", &arg, result);
912 dprintk("called SN07 with 0x%.4x (result: 0x%.4x)\n", arg, *result);
56e6e716 913 return ret;
badf26f0
MG
914}
915
156c221b 916/*
59b19106 917 * sony_nc_values input/output validate functions
156c221b
MD
918 */
919
920/* brightness_default_validate:
921 *
922 * manipulate input output values to keep consistency with the
923 * backlight framework for which brightness values are 0-based.
924 */
925static int brightness_default_validate(const int direction, const int value)
926{
927 switch (direction) {
928 case SNC_VALIDATE_OUT:
929 return value - 1;
930 case SNC_VALIDATE_IN:
931 if (value >= 0 && value < SONY_MAX_BRIGHTNESS)
932 return value + 1;
933 }
934 return -EINVAL;
935}
936
937/* boolean_validate:
938 *
939 * on input validate boolean values 0/1, on output just pass the
940 * received value.
941 */
942static int boolean_validate(const int direction, const int value)
943{
944 if (direction == SNC_VALIDATE_IN) {
945 if (value != 0 && value != 1)
946 return -EINVAL;
947 }
948 return value;
949}
950
ed3aa4b7 951/*
59b19106 952 * Sysfs show/store common to all sony_nc_values
ed3aa4b7 953 */
59b19106 954static ssize_t sony_nc_sysfs_show(struct device *dev, struct device_attribute *attr,
a02d1c1d 955 char *buffer)
7f09c432 956{
ebcef1b0 957 int value, ret = 0;
59b19106 958 struct sony_nc_value *item =
959 container_of(attr, struct sony_nc_value, devattr);
7f09c432 960
ed3aa4b7 961 if (!*item->acpiget)
7f09c432
SP
962 return -EIO;
963
ebcef1b0
MD
964 ret = sony_nc_int_call(sony_nc_acpi_handle, *item->acpiget, NULL,
965 &value);
966 if (ret < 0)
7f09c432
SP
967 return -EIO;
968
156c221b
MD
969 if (item->validate)
970 value = item->validate(SNC_VALIDATE_OUT, value);
971
ed3aa4b7 972 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
7f09c432
SP
973}
974
59b19106 975static ssize_t sony_nc_sysfs_store(struct device *dev,
a02d1c1d
LB
976 struct device_attribute *attr,
977 const char *buffer, size_t count)
7f09c432 978{
c7a29183 979 int value;
9e123379 980 int ret = 0;
59b19106 981 struct sony_nc_value *item =
982 container_of(attr, struct sony_nc_value, devattr);
7f09c432
SP
983
984 if (!item->acpiset)
985 return -EIO;
986
ed3aa4b7
MD
987 if (count > 31)
988 return -EINVAL;
989
c7a29183 990 if (kstrtoint(buffer, 10, &value))
9e123379 991 return -EINVAL;
7f09c432 992
156c221b
MD
993 if (item->validate)
994 value = item->validate(SNC_VALIDATE_IN, value);
995
996 if (value < 0)
997 return value;
7f09c432 998
9e123379 999 ret = sony_nc_int_call(sony_nc_acpi_handle, *item->acpiset,
c7a29183 1000 &value, NULL);
ebcef1b0 1001 if (ret < 0)
7f09c432 1002 return -EIO;
ebcef1b0 1003
3f4f461f
AM
1004 item->value = value;
1005 item->valid = 1;
7f09c432
SP
1006 return count;
1007}
1008
ed3aa4b7 1009
d78865cd
MD
1010/*
1011 * Backlight device
1012 */
62d2f23e
MD
1013struct sony_backlight_props {
1014 struct backlight_device *dev;
1015 int handle;
014fc8fb 1016 int cmd_base;
62d2f23e
MD
1017 u8 offset;
1018 u8 maxlvl;
1019};
1020struct sony_backlight_props sony_bl_props;
1021
d78865cd 1022static int sony_backlight_update_status(struct backlight_device *bd)
3f4f461f 1023{
ebcef1b0
MD
1024 int arg = bd->props.brightness + 1;
1025 return sony_nc_int_call(sony_nc_acpi_handle, "SBRT", &arg, NULL);
d78865cd 1026}
3f4f461f 1027
d78865cd
MD
1028static int sony_backlight_get_brightness(struct backlight_device *bd)
1029{
1030 int value;
3f4f461f 1031
ebcef1b0 1032 if (sony_nc_int_call(sony_nc_acpi_handle, "GBRT", NULL, &value))
d78865cd
MD
1033 return 0;
1034 /* brightness levels are 1-based, while backlight ones are 0-based */
1035 return value - 1;
3f4f461f
AM
1036}
1037
7751ab8e
MD
1038static int sony_nc_get_brightness_ng(struct backlight_device *bd)
1039{
1040 int result;
62d2f23e
MD
1041 struct sony_backlight_props *sdev =
1042 (struct sony_backlight_props *)bl_get_data(bd);
7751ab8e 1043
014fc8fb 1044 sony_call_snc_handle(sdev->handle, sdev->cmd_base + 0x100, &result);
7751ab8e 1045
62d2f23e 1046 return (result & 0xff) - sdev->offset;
7751ab8e
MD
1047}
1048
1049static int sony_nc_update_status_ng(struct backlight_device *bd)
1050{
1051 int value, result;
62d2f23e
MD
1052 struct sony_backlight_props *sdev =
1053 (struct sony_backlight_props *)bl_get_data(bd);
7751ab8e 1054
62d2f23e 1055 value = bd->props.brightness + sdev->offset;
014fc8fb
MD
1056 if (sony_call_snc_handle(sdev->handle, sdev->cmd_base | (value << 0x10),
1057 &result))
6192fa71 1058 return -EIO;
7751ab8e 1059
6192fa71 1060 return value;
7751ab8e
MD
1061}
1062
acc2472e 1063static const struct backlight_ops sony_backlight_ops = {
7751ab8e 1064 .options = BL_CORE_SUSPENDRESUME,
a02d1c1d
LB
1065 .update_status = sony_backlight_update_status,
1066 .get_brightness = sony_backlight_get_brightness,
d78865cd 1067};
7751ab8e
MD
1068static const struct backlight_ops sony_backlight_ng_ops = {
1069 .options = BL_CORE_SUSPENDRESUME,
1070 .update_status = sony_nc_update_status_ng,
1071 .get_brightness = sony_nc_get_brightness_ng,
1072};
d78865cd 1073
6315fd1c
MD
1074/*
1075 * New SNC-only Vaios event mapping to driver known keys
1076 */
1077struct sony_nc_event {
1078 u8 data;
1079 u8 event;
1080};
1081
45c7942b 1082static struct sony_nc_event sony_100_events[] = {
9b57896e
MG
1083 { 0x90, SONYPI_EVENT_PKEY_P1 },
1084 { 0x10, SONYPI_EVENT_ANYBUTTON_RELEASED },
6479efb6 1085 { 0x91, SONYPI_EVENT_PKEY_P2 },
9b57896e 1086 { 0x11, SONYPI_EVENT_ANYBUTTON_RELEASED },
6315fd1c
MD
1087 { 0x81, SONYPI_EVENT_FNKEY_F1 },
1088 { 0x01, SONYPI_EVENT_FNKEY_RELEASED },
f5acf5e8
AV
1089 { 0x82, SONYPI_EVENT_FNKEY_F2 },
1090 { 0x02, SONYPI_EVENT_FNKEY_RELEASED },
1091 { 0x83, SONYPI_EVENT_FNKEY_F3 },
1092 { 0x03, SONYPI_EVENT_FNKEY_RELEASED },
1093 { 0x84, SONYPI_EVENT_FNKEY_F4 },
1094 { 0x04, SONYPI_EVENT_FNKEY_RELEASED },
6315fd1c
MD
1095 { 0x85, SONYPI_EVENT_FNKEY_F5 },
1096 { 0x05, SONYPI_EVENT_FNKEY_RELEASED },
1097 { 0x86, SONYPI_EVENT_FNKEY_F6 },
1098 { 0x06, SONYPI_EVENT_FNKEY_RELEASED },
1099 { 0x87, SONYPI_EVENT_FNKEY_F7 },
1100 { 0x07, SONYPI_EVENT_FNKEY_RELEASED },
2e526311
MC
1101 { 0x88, SONYPI_EVENT_FNKEY_F8 },
1102 { 0x08, SONYPI_EVENT_FNKEY_RELEASED },
9b57896e
MG
1103 { 0x89, SONYPI_EVENT_FNKEY_F9 },
1104 { 0x09, SONYPI_EVENT_FNKEY_RELEASED },
6315fd1c
MD
1105 { 0x8A, SONYPI_EVENT_FNKEY_F10 },
1106 { 0x0A, SONYPI_EVENT_FNKEY_RELEASED },
2e526311
MC
1107 { 0x8B, SONYPI_EVENT_FNKEY_F11 },
1108 { 0x0B, SONYPI_EVENT_FNKEY_RELEASED },
6315fd1c
MD
1109 { 0x8C, SONYPI_EVENT_FNKEY_F12 },
1110 { 0x0C, SONYPI_EVENT_FNKEY_RELEASED },
1a7d9469
MD
1111 { 0x9d, SONYPI_EVENT_ZOOM_PRESSED },
1112 { 0x1d, SONYPI_EVENT_ANYBUTTON_RELEASED },
9b57896e
MG
1113 { 0x9f, SONYPI_EVENT_CD_EJECT_PRESSED },
1114 { 0x1f, SONYPI_EVENT_ANYBUTTON_RELEASED },
4f924ba5
MD
1115 { 0xa1, SONYPI_EVENT_MEDIA_PRESSED },
1116 { 0x21, SONYPI_EVENT_ANYBUTTON_RELEASED },
1a7d9469
MD
1117 { 0xa4, SONYPI_EVENT_CD_EJECT_PRESSED },
1118 { 0x24, SONYPI_EVENT_ANYBUTTON_RELEASED },
1119 { 0xa5, SONYPI_EVENT_VENDOR_PRESSED },
1120 { 0x25, SONYPI_EVENT_ANYBUTTON_RELEASED },
1121 { 0xa6, SONYPI_EVENT_HELP_PRESSED },
1122 { 0x26, SONYPI_EVENT_ANYBUTTON_RELEASED },
6315fd1c
MD
1123 { 0, 0 },
1124};
1125
45c7942b
MG
1126static struct sony_nc_event sony_127_events[] = {
1127 { 0x81, SONYPI_EVENT_MODEKEY_PRESSED },
1128 { 0x01, SONYPI_EVENT_ANYBUTTON_RELEASED },
1129 { 0x82, SONYPI_EVENT_PKEY_P1 },
1130 { 0x02, SONYPI_EVENT_ANYBUTTON_RELEASED },
1131 { 0x83, SONYPI_EVENT_PKEY_P2 },
1132 { 0x03, SONYPI_EVENT_ANYBUTTON_RELEASED },
1133 { 0x84, SONYPI_EVENT_PKEY_P3 },
1134 { 0x04, SONYPI_EVENT_ANYBUTTON_RELEASED },
1135 { 0x85, SONYPI_EVENT_PKEY_P4 },
1136 { 0x05, SONYPI_EVENT_ANYBUTTON_RELEASED },
1137 { 0x86, SONYPI_EVENT_PKEY_P5 },
1138 { 0x06, SONYPI_EVENT_ANYBUTTON_RELEASED },
45c7942b
MG
1139 { 0x87, SONYPI_EVENT_SETTINGKEY_PRESSED },
1140 { 0x07, SONYPI_EVENT_ANYBUTTON_RELEASED },
1141 { 0, 0 },
1142};
1143
5fe801a7
MC
1144static int sony_nc_hotkeys_decode(u32 event, unsigned int handle)
1145{
1146 int ret = -EINVAL;
1147 unsigned int result = 0;
1148 struct sony_nc_event *key_event;
1149
1150 if (sony_call_snc_handle(handle, 0x200, &result)) {
1151 dprintk("Unable to decode event 0x%.2x 0x%.2x\n", handle,
1152 event);
1153 return -EINVAL;
1154 }
1155
1156 result &= 0xFF;
1157
1158 if (handle == 0x0100)
1159 key_event = sony_100_events;
1160 else
1161 key_event = sony_127_events;
1162
1163 for (; key_event->data; key_event++) {
1164 if (key_event->data == result) {
1165 ret = key_event->event;
1166 break;
1167 }
1168 }
1169
1170 if (!key_event->data)
1171 pr_info("Unknown hotkey 0x%.2x/0x%.2x (handle 0x%.2x)\n",
1172 event, result, handle);
1173
1174 return ret;
1175}
1176
d78865cd
MD
1177/*
1178 * ACPI callbacks
1179 */
4069d6f8
MD
1180enum event_types {
1181 HOTKEY = 1,
bb384b52
MC
1182 KILLSWITCH,
1183 GFX_SWITCH
4069d6f8 1184};
8037d6e6 1185static void sony_nc_notify(struct acpi_device *device, u32 event)
7f09c432 1186{
5fe801a7
MC
1187 u32 real_ev = event;
1188 u8 ev_type = 0;
1189 dprintk("sony_nc_notify, event: 0x%.2x\n", event);
1190
1191 if (event >= 0x90) {
1192 unsigned int result = 0;
1193 unsigned int arg = 0;
1194 unsigned int handle = 0;
1195 unsigned int offset = event - 0x90;
1196
1197 if (offset >= ARRAY_SIZE(handles->cap)) {
1198 pr_err("Event 0x%x outside of capabilities list\n",
1199 event);
6cc056bc 1200 return;
9b57896e 1201 }
5fe801a7
MC
1202 handle = handles->cap[offset];
1203
1204 /* list of handles known for generating events */
1205 switch (handle) {
1206 /* hotkey event */
1207 case 0x0100:
1208 case 0x0127:
4069d6f8 1209 ev_type = HOTKEY;
5fe801a7
MC
1210 real_ev = sony_nc_hotkeys_decode(event, handle);
1211
1212 if (real_ev > 0)
1213 sony_laptop_report_input_event(real_ev);
1214 else
1215 /* restore the original event for reporting */
1216 real_ev = event;
1217
1218 break;
1219
1220 /* wlan switch */
1221 case 0x0124:
1222 case 0x0135:
1223 /* events on this handle are reported when the
1224 * switch changes position or for battery
1225 * events. We'll notify both of them but only
1226 * update the rfkill device status when the
1227 * switch is moved.
1228 */
4069d6f8 1229 ev_type = KILLSWITCH;
5fe801a7
MC
1230 sony_call_snc_handle(handle, 0x0100, &result);
1231 real_ev = result & 0x03;
1232
1233 /* hw switch event */
1234 if (real_ev == 1)
1235 sony_nc_rfkill_update();
1236
1237 break;
badf26f0 1238
bb384b52
MC
1239 case 0x0128:
1240 case 0x0146:
1241 /* Hybrid GFX switching */
1242 sony_call_snc_handle(handle, 0x0000, &result);
1243 dprintk("GFX switch event received (reason: %s)\n",
1244 (result & 0x01) ?
1245 "switch change" : "unknown");
1246
1247 /* verify the switch state
1248 * 1: discrete GFX
1249 * 0: integrated GFX
1250 */
1251 sony_call_snc_handle(handle, 0x0100, &result);
1252
1253 ev_type = GFX_SWITCH;
1254 real_ev = result & 0xff;
1255 break;
1256
5fe801a7
MC
1257 default:
1258 dprintk("Unknown event 0x%x for handle 0x%x\n",
1259 event, handle);
1260 break;
1261 }
1262
1263 /* clear the event (and the event reason when present) */
1264 arg = 1 << offset;
1265 sony_nc_int_call(sony_nc_acpi_handle, "SN05", &arg, &result);
1266
1267 } else {
1268 /* old style event */
4069d6f8 1269 ev_type = HOTKEY;
5fe801a7
MC
1270 sony_laptop_report_input_event(real_ev);
1271 }
1272
1273 acpi_bus_generate_proc_event(sony_nc_acpi_device, ev_type, real_ev);
1274
1275 acpi_bus_generate_netlink_event(sony_nc_acpi_device->pnp.device_class,
1276 dev_name(&sony_nc_acpi_device->dev), ev_type, real_ev);
7f09c432
SP
1277}
1278
1279static acpi_status sony_walk_callback(acpi_handle handle, u32 level,
1280 void *context, void **return_value)
1281{
30823736 1282 struct acpi_device_info *info;
7f09c432 1283
15b8dd53 1284 if (ACPI_SUCCESS(acpi_get_object_info(handle, &info))) {
50f581a4 1285 pr_warn("method: name: %4.4s, args %X\n",
30823736
LM
1286 (char *)&info->name, info->param_count);
1287
15b8dd53 1288 kfree(info);
30823736 1289 }
7f09c432
SP
1290
1291 return AE_OK;
1292}
1293
d78865cd
MD
1294/*
1295 * ACPI device
1296 */
5fe801a7
MC
1297static void sony_nc_function_setup(struct acpi_device *device,
1298 struct platform_device *pf_device)
badf26f0 1299{
5fe801a7
MC
1300 unsigned int i, result, bitmask, arg;
1301
1302 if (!handles)
1303 return;
1304
1305 /* setup found handles here */
1306 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
1307 unsigned int handle = handles->cap[i];
1308
1309 if (!handle)
1310 continue;
1311
1312 dprintk("setting up handle 0x%.4x\n", handle);
1313
1314 switch (handle) {
1315 case 0x0100:
1316 case 0x0101:
1317 case 0x0127:
1318 /* setup hotkeys */
1319 sony_call_snc_handle(handle, 0, &result);
1320 break;
1321 case 0x0102:
1322 /* setup hotkeys */
1323 sony_call_snc_handle(handle, 0x100, &result);
1324 break;
2b8791c4
MC
1325 case 0x0105:
1326 case 0x0148:
1327 /* touchpad enable/disable */
1328 result = sony_nc_touchpad_setup(pf_device, handle);
1329 if (result)
1330 pr_err("couldn't set up touchpad control function (%d)\n",
1331 result);
1332 break;
967145a0
MC
1333 case 0x0115:
1334 case 0x0136:
1335 case 0x013f:
1336 result = sony_nc_battery_care_setup(pf_device, handle);
1337 if (result)
1338 pr_err("couldn't set up battery care function (%d)\n",
1339 result);
1340 break;
54535d08
MC
1341 case 0x0119:
1342 result = sony_nc_lid_resume_setup(pf_device);
1343 if (result)
1344 pr_err("couldn't set up lid resume function (%d)\n",
1345 result);
1346 break;
49f000ad
MC
1347 case 0x0122:
1348 result = sony_nc_thermal_setup(pf_device);
1349 if (result)
1350 pr_err("couldn't set up thermal profile function (%d)\n",
1351 result);
1352 break;
88bf1706
MC
1353 case 0x0131:
1354 result = sony_nc_highspeed_charging_setup(pf_device);
1355 if (result)
1356 pr_err("couldn't set up high speed charging function (%d)\n",
1357 result);
1358 break;
5fe801a7
MC
1359 case 0x0124:
1360 case 0x0135:
a1e73632
MC
1361 result = sony_nc_rfkill_setup(device, handle);
1362 if (result)
1363 pr_err("couldn't set up rfkill support (%d)\n",
1364 result);
5fe801a7
MC
1365 break;
1366 case 0x0137:
aa33924f
MC
1367 case 0x0143:
1368 result = sony_nc_kbd_backlight_setup(pf_device, handle);
1369 if (result)
1370 pr_err("couldn't set up keyboard backlight function (%d)\n",
1371 result);
5fe801a7
MC
1372 break;
1373 default:
1374 continue;
1375 }
1376 }
badf26f0
MG
1377
1378 /* Enable all events */
5fe801a7
MC
1379 arg = 0x10;
1380 if (!sony_nc_int_call(sony_nc_acpi_handle, "SN00", &arg, &bitmask))
1381 sony_nc_int_call(sony_nc_acpi_handle, "SN02", &bitmask,
1382 &result);
1383}
badf26f0 1384
5fe801a7
MC
1385static void sony_nc_function_cleanup(struct platform_device *pd)
1386{
1387 unsigned int i, result, bitmask, handle;
badf26f0 1388
5fe801a7
MC
1389 /* get enabled events and disable them */
1390 sony_nc_int_call(sony_nc_acpi_handle, "SN01", NULL, &bitmask);
1391 sony_nc_int_call(sony_nc_acpi_handle, "SN03", &bitmask, &result);
1392
1393 /* cleanup handles here */
1394 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
1395
1396 handle = handles->cap[i];
1397
1398 if (!handle)
1399 continue;
1400
1401 switch (handle) {
2b8791c4
MC
1402 case 0x0105:
1403 case 0x0148:
1404 sony_nc_touchpad_cleanup(pd);
1405 break;
967145a0
MC
1406 case 0x0115:
1407 case 0x0136:
1408 case 0x013f:
1409 sony_nc_battery_care_cleanup(pd);
1410 break;
54535d08
MC
1411 case 0x0119:
1412 sony_nc_lid_resume_cleanup(pd);
1413 break;
49f000ad
MC
1414 case 0x0122:
1415 sony_nc_thermal_cleanup(pd);
1416 break;
88bf1706
MC
1417 case 0x0131:
1418 sony_nc_highspeed_charging_cleanup(pd);
1419 break;
5fe801a7
MC
1420 case 0x0124:
1421 case 0x0135:
1422 sony_nc_rfkill_cleanup();
1423 break;
1424 case 0x0137:
aa33924f 1425 case 0x0143:
5fe801a7
MC
1426 sony_nc_kbd_backlight_cleanup(pd);
1427 break;
1428 default:
1429 continue;
1430 }
1431 }
1432
1433 /* finally cleanup the handles list */
1434 sony_nc_handles_cleanup(pd);
1435}
1436
3567a4e2 1437#ifdef CONFIG_PM_SLEEP
5fe801a7
MC
1438static void sony_nc_function_resume(void)
1439{
1440 unsigned int i, result, bitmask, arg;
1441
1442 dprintk("Resuming SNC device\n");
1443
1444 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
1445 unsigned int handle = handles->cap[i];
1446
1447 if (!handle)
1448 continue;
1449
1450 switch (handle) {
1451 case 0x0100:
1452 case 0x0101:
1453 case 0x0127:
1454 /* re-enable hotkeys */
1455 sony_call_snc_handle(handle, 0, &result);
1456 break;
1457 case 0x0102:
1458 /* re-enable hotkeys */
1459 sony_call_snc_handle(handle, 0x100, &result);
1460 break;
49f000ad
MC
1461 case 0x0122:
1462 sony_nc_thermal_resume();
1463 break;
5fe801a7
MC
1464 case 0x0124:
1465 case 0x0135:
1466 sony_nc_rfkill_update();
1467 break;
1468 case 0x0137:
aa33924f 1469 case 0x0143:
5fe801a7
MC
1470 sony_nc_kbd_backlight_resume();
1471 break;
1472 default:
1473 continue;
1474 }
1475 }
1476
1477 /* Enable all events */
1478 arg = 0x10;
1479 if (!sony_nc_int_call(sony_nc_acpi_handle, "SN00", &arg, &bitmask))
1480 sony_nc_int_call(sony_nc_acpi_handle, "SN02", &bitmask,
1481 &result);
badf26f0
MG
1482}
1483
bb6b98d6 1484static int sony_nc_resume(struct device *dev)
d78865cd 1485{
59b19106 1486 struct sony_nc_value *item;
badf26f0 1487 acpi_handle handle;
d78865cd 1488
59b19106 1489 for (item = sony_nc_values; item->name; item++) {
d78865cd
MD
1490 int ret;
1491
1492 if (!item->valid)
1493 continue;
ebcef1b0
MD
1494 ret = sony_nc_int_call(sony_nc_acpi_handle, *item->acpiset,
1495 &item->value, NULL);
d78865cd 1496 if (ret < 0) {
50f581a4 1497 pr_err("%s: %d\n", __func__, ret);
d78865cd
MD
1498 break;
1499 }
1500 }
6315fd1c 1501
82734bfc
MG
1502 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
1503 &handle))) {
ebcef1b0
MD
1504 int arg = 1;
1505 if (sony_nc_int_call(sony_nc_acpi_handle, "ECON", &arg, NULL))
82734bfc
MG
1506 dprintk("ECON Method failed\n");
1507 }
1508
badf26f0 1509 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
5fe801a7
MC
1510 &handle)))
1511 sony_nc_function_resume();
df410d52 1512
d78865cd
MD
1513 return 0;
1514}
3567a4e2 1515#endif
d78865cd 1516
bb6b98d6
RW
1517static SIMPLE_DEV_PM_OPS(sony_nc_pm, NULL, sony_nc_resume);
1518
6cc056bc
MG
1519static void sony_nc_rfkill_cleanup(void)
1520{
1521 int i;
1522
19d337df
JB
1523 for (i = 0; i < N_SONY_RFKILL; i++) {
1524 if (sony_rfkill_devices[i]) {
6cc056bc 1525 rfkill_unregister(sony_rfkill_devices[i]);
19d337df
JB
1526 rfkill_destroy(sony_rfkill_devices[i]);
1527 }
6cc056bc
MG
1528 }
1529}
1530
19d337df 1531static int sony_nc_rfkill_set(void *data, bool blocked)
6cc056bc
MG
1532{
1533 int result;
1534 int argument = sony_rfkill_address[(long) data] + 0x100;
1535
19d337df 1536 if (!blocked)
d6f15ed8 1537 argument |= 0x030000;
6cc056bc 1538
d5a664a3 1539 return sony_call_snc_handle(sony_rfkill_handle, argument, &result);
6cc056bc
MG
1540}
1541
19d337df
JB
1542static const struct rfkill_ops sony_rfkill_ops = {
1543 .set_block = sony_nc_rfkill_set,
1544};
6cc056bc 1545
19d337df
JB
1546static int sony_nc_setup_rfkill(struct acpi_device *device,
1547 enum sony_nc_rfkill nc_type)
6cc056bc
MG
1548{
1549 int err = 0;
19d337df
JB
1550 struct rfkill *rfk;
1551 enum rfkill_type type;
1552 const char *name;
50fab076 1553 int result;
d6f15ed8 1554 bool hwblock, swblock;
19d337df
JB
1555
1556 switch (nc_type) {
1557 case SONY_WIFI:
1558 type = RFKILL_TYPE_WLAN;
1559 name = "sony-wifi";
1560 break;
1561 case SONY_BLUETOOTH:
1562 type = RFKILL_TYPE_BLUETOOTH;
1563 name = "sony-bluetooth";
1564 break;
1565 case SONY_WWAN:
1566 type = RFKILL_TYPE_WWAN;
1567 name = "sony-wwan";
1568 break;
1569 case SONY_WIMAX:
1570 type = RFKILL_TYPE_WIMAX;
1571 name = "sony-wimax";
1572 break;
1573 default:
1574 return -EINVAL;
53005a0a 1575 }
6cc056bc 1576
19d337df
JB
1577 rfk = rfkill_alloc(name, &device->dev, type,
1578 &sony_rfkill_ops, (void *)nc_type);
1579 if (!rfk)
1580 return -ENOMEM;
6cc056bc 1581
d6f15ed8
MC
1582 if (sony_call_snc_handle(sony_rfkill_handle, 0x200, &result) < 0) {
1583 rfkill_destroy(rfk);
1584 return -1;
1585 }
50fab076 1586 hwblock = !(result & 0x1);
d6f15ed8
MC
1587
1588 if (sony_call_snc_handle(sony_rfkill_handle,
1589 sony_rfkill_address[nc_type],
1590 &result) < 0) {
1591 rfkill_destroy(rfk);
1592 return -1;
1593 }
1594 swblock = !(result & 0x2);
1595
1596 rfkill_init_sw_state(rfk, swblock);
50fab076
AJ
1597 rfkill_set_hw_state(rfk, hwblock);
1598
19d337df
JB
1599 err = rfkill_register(rfk);
1600 if (err) {
1601 rfkill_destroy(rfk);
1602 return err;
53005a0a 1603 }
19d337df 1604 sony_rfkill_devices[nc_type] = rfk;
6cc056bc
MG
1605 return err;
1606}
1607
a46a7808 1608static void sony_nc_rfkill_update(void)
6cc056bc 1609{
19d337df
JB
1610 enum sony_nc_rfkill i;
1611 int result;
1612 bool hwblock;
6cc056bc 1613
d5a664a3 1614 sony_call_snc_handle(sony_rfkill_handle, 0x200, &result);
19d337df 1615 hwblock = !(result & 0x1);
6cc056bc 1616
19d337df
JB
1617 for (i = 0; i < N_SONY_RFKILL; i++) {
1618 int argument = sony_rfkill_address[i];
6cc056bc 1619
19d337df
JB
1620 if (!sony_rfkill_devices[i])
1621 continue;
1622
1623 if (hwblock) {
e1f8a19e
JB
1624 if (rfkill_set_hw_state(sony_rfkill_devices[i], true)) {
1625 /* we already know we're blocked */
1626 }
19d337df 1627 continue;
6cc056bc 1628 }
19d337df 1629
d5a664a3 1630 sony_call_snc_handle(sony_rfkill_handle, argument, &result);
19d337df 1631 rfkill_set_states(sony_rfkill_devices[i],
d6f15ed8 1632 !(result & 0x2), false);
6cc056bc
MG
1633 }
1634}
1635
a1e73632
MC
1636static int sony_nc_rfkill_setup(struct acpi_device *device,
1637 unsigned int handle)
6cc056bc 1638{
ebcef1b0
MD
1639 u64 offset;
1640 int i;
1641 unsigned char buffer[32] = { 0 };
6cc056bc 1642
a1e73632
MC
1643 offset = sony_find_snc_handle(handle);
1644 sony_rfkill_handle = handle;
528809c3 1645
ebcef1b0
MD
1646 i = sony_nc_buffer_call(sony_nc_acpi_handle, "SN06", &offset, buffer,
1647 32);
1648 if (i < 0)
a1e73632
MC
1649 return i;
1650
1651 /* The buffer is filled with magic numbers describing the devices
1652 * available, 0xff terminates the enumeration.
1653 * Known codes:
1654 * 0x00 WLAN
1655 * 0x10 BLUETOOTH
1656 * 0x20 WWAN GPRS-EDGE
1657 * 0x21 WWAN HSDPA
1658 * 0x22 WWAN EV-DO
1659 * 0x23 WWAN GPS
1660 * 0x25 Gobi WWAN no GPS
1661 * 0x26 Gobi WWAN + GPS
1662 * 0x28 Gobi WWAN no GPS
1663 * 0x29 Gobi WWAN + GPS
1664 * 0x30 WIMAX
1665 * 0x50 Gobi WWAN no GPS
1666 * 0x51 Gobi WWAN + GPS
1667 * 0x70 no SIM card slot
1668 * 0x71 SIM card slot
528809c3 1669 */
ebcef1b0 1670 for (i = 0; i < ARRAY_SIZE(buffer); i++) {
c14973f9 1671
ebcef1b0 1672 if (buffer[i] == 0xff)
c14973f9
DT
1673 break;
1674
a1e73632 1675 dprintk("Radio devices, found 0x%.2x\n", buffer[i]);
6cc056bc 1676
ebcef1b0 1677 if (buffer[i] == 0 && !sony_rfkill_devices[SONY_WIFI])
528809c3
MD
1678 sony_nc_setup_rfkill(device, SONY_WIFI);
1679
ebcef1b0 1680 if (buffer[i] == 0x10 && !sony_rfkill_devices[SONY_BLUETOOTH])
528809c3
MD
1681 sony_nc_setup_rfkill(device, SONY_BLUETOOTH);
1682
a1e73632
MC
1683 if (((0xf0 & buffer[i]) == 0x20 ||
1684 (0xf0 & buffer[i]) == 0x50) &&
528809c3
MD
1685 !sony_rfkill_devices[SONY_WWAN])
1686 sony_nc_setup_rfkill(device, SONY_WWAN);
1687
ebcef1b0 1688 if (buffer[i] == 0x30 && !sony_rfkill_devices[SONY_WIMAX])
528809c3
MD
1689 sony_nc_setup_rfkill(device, SONY_WIMAX);
1690 }
a1e73632 1691 return 0;
6cc056bc
MG
1692}
1693
bf155714 1694/* Keyboard backlight feature */
bf155714 1695struct kbd_backlight {
aa33924f
MC
1696 unsigned int handle;
1697 unsigned int base;
1698 unsigned int mode;
1699 unsigned int timeout;
bf155714
MD
1700 struct device_attribute mode_attr;
1701 struct device_attribute timeout_attr;
1702};
1703
aa33924f 1704static struct kbd_backlight *kbdbl_ctl;
bf155714
MD
1705
1706static ssize_t __sony_nc_kbd_backlight_mode_set(u8 value)
1707{
1708 int result;
1709
1710 if (value > 1)
1711 return -EINVAL;
1712
aa33924f
MC
1713 if (sony_call_snc_handle(kbdbl_ctl->handle,
1714 (value << 0x10) | (kbdbl_ctl->base), &result))
bf155714
MD
1715 return -EIO;
1716
df410d52 1717 /* Try to turn the light on/off immediately */
aa33924f
MC
1718 sony_call_snc_handle(kbdbl_ctl->handle,
1719 (value << 0x10) | (kbdbl_ctl->base + 0x100), &result);
df410d52 1720
aa33924f 1721 kbdbl_ctl->mode = value;
bf155714
MD
1722
1723 return 0;
1724}
1725
1726static ssize_t sony_nc_kbd_backlight_mode_store(struct device *dev,
1727 struct device_attribute *attr,
1728 const char *buffer, size_t count)
1729{
1730 int ret = 0;
1731 unsigned long value;
1732
1733 if (count > 31)
1734 return -EINVAL;
1735
9e123379 1736 if (kstrtoul(buffer, 10, &value))
bf155714
MD
1737 return -EINVAL;
1738
1739 ret = __sony_nc_kbd_backlight_mode_set(value);
1740 if (ret < 0)
1741 return ret;
1742
1743 return count;
1744}
1745
1746static ssize_t sony_nc_kbd_backlight_mode_show(struct device *dev,
1747 struct device_attribute *attr, char *buffer)
1748{
1749 ssize_t count = 0;
aa33924f 1750 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_ctl->mode);
bf155714
MD
1751 return count;
1752}
1753
1754static int __sony_nc_kbd_backlight_timeout_set(u8 value)
1755{
1756 int result;
1757
1758 if (value > 3)
1759 return -EINVAL;
1760
aa33924f
MC
1761 if (sony_call_snc_handle(kbdbl_ctl->handle, (value << 0x10) |
1762 (kbdbl_ctl->base + 0x200), &result))
bf155714
MD
1763 return -EIO;
1764
aa33924f 1765 kbdbl_ctl->timeout = value;
bf155714
MD
1766
1767 return 0;
1768}
1769
1770static ssize_t sony_nc_kbd_backlight_timeout_store(struct device *dev,
1771 struct device_attribute *attr,
1772 const char *buffer, size_t count)
1773{
1774 int ret = 0;
1775 unsigned long value;
1776
1777 if (count > 31)
1778 return -EINVAL;
1779
9e123379 1780 if (kstrtoul(buffer, 10, &value))
bf155714
MD
1781 return -EINVAL;
1782
1783 ret = __sony_nc_kbd_backlight_timeout_set(value);
1784 if (ret < 0)
1785 return ret;
1786
1787 return count;
1788}
1789
1790static ssize_t sony_nc_kbd_backlight_timeout_show(struct device *dev,
1791 struct device_attribute *attr, char *buffer)
1792{
1793 ssize_t count = 0;
aa33924f 1794 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_ctl->timeout);
bf155714
MD
1795 return count;
1796}
1797
aa33924f
MC
1798static int sony_nc_kbd_backlight_setup(struct platform_device *pd,
1799 unsigned int handle)
bf155714
MD
1800{
1801 int result;
aa33924f 1802 int ret = 0;
bf155714 1803
aa33924f
MC
1804 /* verify the kbd backlight presence, these handles are not used for
1805 * keyboard backlight only
1806 */
1807 ret = sony_call_snc_handle(handle, handle == 0x0137 ? 0x0B00 : 0x0100,
1808 &result);
1809 if (ret)
1810 return ret;
bf155714 1811
aa33924f
MC
1812 if ((handle == 0x0137 && !(result & 0x02)) ||
1813 !(result & 0x01)) {
1814 dprintk("no backlight keyboard found\n");
1815 return 0;
1816 }
bf155714 1817
aa33924f
MC
1818 kbdbl_ctl = kzalloc(sizeof(*kbdbl_ctl), GFP_KERNEL);
1819 if (!kbdbl_ctl)
1820 return -ENOMEM;
bf155714 1821
aa33924f
MC
1822 kbdbl_ctl->handle = handle;
1823 if (handle == 0x0137)
1824 kbdbl_ctl->base = 0x0C00;
1825 else
1826 kbdbl_ctl->base = 0x4000;
bf155714 1827
aa33924f
MC
1828 sysfs_attr_init(&kbdbl_ctl->mode_attr.attr);
1829 kbdbl_ctl->mode_attr.attr.name = "kbd_backlight";
1830 kbdbl_ctl->mode_attr.attr.mode = S_IRUGO | S_IWUSR;
1831 kbdbl_ctl->mode_attr.show = sony_nc_kbd_backlight_mode_show;
1832 kbdbl_ctl->mode_attr.store = sony_nc_kbd_backlight_mode_store;
1833
1834 sysfs_attr_init(&kbdbl_ctl->timeout_attr.attr);
1835 kbdbl_ctl->timeout_attr.attr.name = "kbd_backlight_timeout";
1836 kbdbl_ctl->timeout_attr.attr.mode = S_IRUGO | S_IWUSR;
1837 kbdbl_ctl->timeout_attr.show = sony_nc_kbd_backlight_timeout_show;
1838 kbdbl_ctl->timeout_attr.store = sony_nc_kbd_backlight_timeout_store;
1839
1840 ret = device_create_file(&pd->dev, &kbdbl_ctl->mode_attr);
1841 if (ret)
bf155714
MD
1842 goto outkzalloc;
1843
aa33924f
MC
1844 ret = device_create_file(&pd->dev, &kbdbl_ctl->timeout_attr);
1845 if (ret)
bf155714
MD
1846 goto outmode;
1847
1848 __sony_nc_kbd_backlight_mode_set(kbd_backlight);
1849 __sony_nc_kbd_backlight_timeout_set(kbd_backlight_timeout);
1850
aa33924f 1851 return 0;
bf155714
MD
1852
1853outmode:
aa33924f 1854 device_remove_file(&pd->dev, &kbdbl_ctl->mode_attr);
bf155714 1855outkzalloc:
aa33924f
MC
1856 kfree(kbdbl_ctl);
1857 kbdbl_ctl = NULL;
1858 return ret;
bf155714
MD
1859}
1860
aa33924f 1861static void sony_nc_kbd_backlight_cleanup(struct platform_device *pd)
bf155714 1862{
aa33924f 1863 if (kbdbl_ctl) {
df410d52
MC
1864 int result;
1865
aa33924f
MC
1866 device_remove_file(&pd->dev, &kbdbl_ctl->mode_attr);
1867 device_remove_file(&pd->dev, &kbdbl_ctl->timeout_attr);
df410d52
MC
1868
1869 /* restore the default hw behaviour */
aa33924f
MC
1870 sony_call_snc_handle(kbdbl_ctl->handle,
1871 kbdbl_ctl->base | 0x10000, &result);
1872 sony_call_snc_handle(kbdbl_ctl->handle,
1873 kbdbl_ctl->base + 0x200, &result);
df410d52 1874
aa33924f
MC
1875 kfree(kbdbl_ctl);
1876 kbdbl_ctl = NULL;
bf155714 1877 }
bf155714
MD
1878}
1879
3567a4e2 1880#ifdef CONFIG_PM_SLEEP
df410d52
MC
1881static void sony_nc_kbd_backlight_resume(void)
1882{
1883 int ignore = 0;
1884
aa33924f 1885 if (!kbdbl_ctl)
df410d52
MC
1886 return;
1887
aa33924f
MC
1888 if (kbdbl_ctl->mode == 0)
1889 sony_call_snc_handle(kbdbl_ctl->handle, kbdbl_ctl->base,
df410d52 1890 &ignore);
aa33924f
MC
1891
1892 if (kbdbl_ctl->timeout != 0)
1893 sony_call_snc_handle(kbdbl_ctl->handle,
1894 (kbdbl_ctl->base + 0x200) |
1895 (kbdbl_ctl->timeout << 0x10), &ignore);
df410d52 1896}
3567a4e2 1897#endif
df410d52 1898
967145a0
MC
1899struct battery_care_control {
1900 struct device_attribute attrs[2];
1901 unsigned int handle;
1902};
1903static struct battery_care_control *bcare_ctl;
1904
1905static ssize_t sony_nc_battery_care_limit_store(struct device *dev,
1906 struct device_attribute *attr,
1907 const char *buffer, size_t count)
1908{
1909 unsigned int result, cmd;
1910 unsigned long value;
1911
1912 if (count > 31)
1913 return -EINVAL;
1914
1915 if (kstrtoul(buffer, 10, &value))
1916 return -EINVAL;
1917
1918 /* limit values (2 bits):
1919 * 00 - none
1920 * 01 - 80%
1921 * 10 - 50%
1922 * 11 - 100%
1923 *
1924 * bit 0: 0 disable BCL, 1 enable BCL
1925 * bit 1: 1 tell to store the battery limit (see bits 6,7) too
1926 * bits 2,3: reserved
1927 * bits 4,5: store the limit into the EC
1928 * bits 6,7: store the limit into the battery
1929 */
15aa5c75 1930 cmd = 0;
967145a0 1931
15aa5c75
MD
1932 if (value > 0) {
1933 if (value <= 50)
1934 cmd = 0x20;
1935
1936 else if (value <= 80)
1937 cmd = 0x10;
967145a0 1938
15aa5c75
MD
1939 else if (value <= 100)
1940 cmd = 0x30;
967145a0 1941
15aa5c75
MD
1942 else
1943 return -EINVAL;
967145a0 1944
15aa5c75
MD
1945 /*
1946 * handle 0x0115 should allow storing on battery too;
1947 * handle 0x0136 same as 0x0115 + health status;
1948 * handle 0x013f, same as 0x0136 but no storing on the battery
1949 */
1950 if (bcare_ctl->handle != 0x013f)
1951 cmd = cmd | (cmd << 2);
967145a0 1952
15aa5c75
MD
1953 cmd = (cmd | 0x1) << 0x10;
1954 }
967145a0 1955
15aa5c75 1956 if (sony_call_snc_handle(bcare_ctl->handle, cmd | 0x0100, &result))
967145a0
MC
1957 return -EIO;
1958
1959 return count;
1960}
1961
1962static ssize_t sony_nc_battery_care_limit_show(struct device *dev,
1963 struct device_attribute *attr, char *buffer)
1964{
1965 unsigned int result, status;
1966
1967 if (sony_call_snc_handle(bcare_ctl->handle, 0x0000, &result))
1968 return -EIO;
1969
1970 status = (result & 0x01) ? ((result & 0x30) >> 0x04) : 0;
1971 switch (status) {
1972 case 1:
1973 status = 80;
1974 break;
1975 case 2:
1976 status = 50;
1977 break;
1978 case 3:
1979 status = 100;
1980 break;
1981 default:
1982 status = 0;
1983 break;
1984 }
1985
1986 return snprintf(buffer, PAGE_SIZE, "%d\n", status);
1987}
1988
1989static ssize_t sony_nc_battery_care_health_show(struct device *dev,
1990 struct device_attribute *attr, char *buffer)
1991{
1992 ssize_t count = 0;
1993 unsigned int health;
1994
1995 if (sony_call_snc_handle(bcare_ctl->handle, 0x0200, &health))
1996 return -EIO;
1997
1998 count = snprintf(buffer, PAGE_SIZE, "%d\n", health & 0xff);
1999
2000 return count;
2001}
2002
2003static int sony_nc_battery_care_setup(struct platform_device *pd,
2004 unsigned int handle)
2005{
2006 int ret = 0;
2007
2008 bcare_ctl = kzalloc(sizeof(struct battery_care_control), GFP_KERNEL);
2009 if (!bcare_ctl)
2010 return -ENOMEM;
2011
2012 bcare_ctl->handle = handle;
2013
2014 sysfs_attr_init(&bcare_ctl->attrs[0].attr);
2015 bcare_ctl->attrs[0].attr.name = "battery_care_limiter";
2016 bcare_ctl->attrs[0].attr.mode = S_IRUGO | S_IWUSR;
2017 bcare_ctl->attrs[0].show = sony_nc_battery_care_limit_show;
2018 bcare_ctl->attrs[0].store = sony_nc_battery_care_limit_store;
2019
2020 ret = device_create_file(&pd->dev, &bcare_ctl->attrs[0]);
2021 if (ret)
2022 goto outkzalloc;
2023
2024 /* 0x0115 is for models with no health reporting capability */
2025 if (handle == 0x0115)
2026 return 0;
2027
2028 sysfs_attr_init(&bcare_ctl->attrs[1].attr);
2029 bcare_ctl->attrs[1].attr.name = "battery_care_health";
2030 bcare_ctl->attrs[1].attr.mode = S_IRUGO;
2031 bcare_ctl->attrs[1].show = sony_nc_battery_care_health_show;
2032
2033 ret = device_create_file(&pd->dev, &bcare_ctl->attrs[1]);
2034 if (ret)
2035 goto outlimiter;
2036
2037 return 0;
2038
2039outlimiter:
2040 device_remove_file(&pd->dev, &bcare_ctl->attrs[0]);
2041
2042outkzalloc:
2043 kfree(bcare_ctl);
2044 bcare_ctl = NULL;
2045
2046 return ret;
2047}
2048
2049static void sony_nc_battery_care_cleanup(struct platform_device *pd)
2050{
2051 if (bcare_ctl) {
2052 device_remove_file(&pd->dev, &bcare_ctl->attrs[0]);
2053 if (bcare_ctl->handle != 0x0115)
2054 device_remove_file(&pd->dev, &bcare_ctl->attrs[1]);
2055
2056 kfree(bcare_ctl);
2057 bcare_ctl = NULL;
2058 }
2059}
2060
49f000ad
MC
2061struct snc_thermal_ctrl {
2062 unsigned int mode;
2063 unsigned int profiles;
2064 struct device_attribute mode_attr;
2065 struct device_attribute profiles_attr;
2066};
2067static struct snc_thermal_ctrl *th_handle;
2068
2069#define THM_PROFILE_MAX 3
2070static const char * const snc_thermal_profiles[] = {
2071 "balanced",
2072 "silent",
2073 "performance"
2074};
2075
2076static int sony_nc_thermal_mode_set(unsigned short mode)
2077{
2078 unsigned int result;
2079
2080 /* the thermal profile seems to be a two bit bitmask:
2081 * lsb -> silent
2082 * msb -> performance
2083 * no bit set is the normal operation and is always valid
2084 * Some vaio models only have "balanced" and "performance"
2085 */
2086 if ((mode && !(th_handle->profiles & mode)) || mode >= THM_PROFILE_MAX)
2087 return -EINVAL;
2088
2089 if (sony_call_snc_handle(0x0122, mode << 0x10 | 0x0200, &result))
2090 return -EIO;
2091
2092 th_handle->mode = mode;
2093
2094 return 0;
2095}
2096
2097static int sony_nc_thermal_mode_get(void)
2098{
2099 unsigned int result;
2100
2101 if (sony_call_snc_handle(0x0122, 0x0100, &result))
2102 return -EIO;
2103
2104 return result & 0xff;
2105}
2106
2107static ssize_t sony_nc_thermal_profiles_show(struct device *dev,
2108 struct device_attribute *attr, char *buffer)
2109{
2110 short cnt;
2111 size_t idx = 0;
2112
2113 for (cnt = 0; cnt < THM_PROFILE_MAX; cnt++) {
2114 if (!cnt || (th_handle->profiles & cnt))
2115 idx += snprintf(buffer + idx, PAGE_SIZE - idx, "%s ",
2116 snc_thermal_profiles[cnt]);
2117 }
2118 idx += snprintf(buffer + idx, PAGE_SIZE - idx, "\n");
2119
2120 return idx;
2121}
2122
2123static ssize_t sony_nc_thermal_mode_store(struct device *dev,
2124 struct device_attribute *attr,
2125 const char *buffer, size_t count)
2126{
2127 unsigned short cmd;
2128 size_t len = count;
2129
2130 if (count == 0)
2131 return -EINVAL;
2132
2133 /* skip the newline if present */
2134 if (buffer[len - 1] == '\n')
2135 len--;
2136
2137 for (cmd = 0; cmd < THM_PROFILE_MAX; cmd++)
2138 if (strncmp(buffer, snc_thermal_profiles[cmd], len) == 0)
2139 break;
2140
2141 if (sony_nc_thermal_mode_set(cmd))
2142 return -EIO;
2143
2144 return count;
2145}
2146
2147static ssize_t sony_nc_thermal_mode_show(struct device *dev,
2148 struct device_attribute *attr, char *buffer)
2149{
2150 ssize_t count = 0;
56f4a9f7 2151 int mode = sony_nc_thermal_mode_get();
49f000ad
MC
2152
2153 if (mode < 0)
2154 return mode;
2155
2156 count = snprintf(buffer, PAGE_SIZE, "%s\n", snc_thermal_profiles[mode]);
2157
2158 return count;
2159}
2160
2161static int sony_nc_thermal_setup(struct platform_device *pd)
2162{
2163 int ret = 0;
2164 th_handle = kzalloc(sizeof(struct snc_thermal_ctrl), GFP_KERNEL);
2165 if (!th_handle)
2166 return -ENOMEM;
2167
2168 ret = sony_call_snc_handle(0x0122, 0x0000, &th_handle->profiles);
2169 if (ret) {
2170 pr_warn("couldn't to read the thermal profiles\n");
2171 goto outkzalloc;
2172 }
2173
2174 ret = sony_nc_thermal_mode_get();
2175 if (ret < 0) {
2176 pr_warn("couldn't to read the current thermal profile");
2177 goto outkzalloc;
2178 }
2179 th_handle->mode = ret;
2180
2181 sysfs_attr_init(&th_handle->profiles_attr.attr);
2182 th_handle->profiles_attr.attr.name = "thermal_profiles";
2183 th_handle->profiles_attr.attr.mode = S_IRUGO;
2184 th_handle->profiles_attr.show = sony_nc_thermal_profiles_show;
2185
2186 sysfs_attr_init(&th_handle->mode_attr.attr);
2187 th_handle->mode_attr.attr.name = "thermal_control";
2188 th_handle->mode_attr.attr.mode = S_IRUGO | S_IWUSR;
2189 th_handle->mode_attr.show = sony_nc_thermal_mode_show;
2190 th_handle->mode_attr.store = sony_nc_thermal_mode_store;
2191
2192 ret = device_create_file(&pd->dev, &th_handle->profiles_attr);
2193 if (ret)
2194 goto outkzalloc;
2195
2196 ret = device_create_file(&pd->dev, &th_handle->mode_attr);
2197 if (ret)
2198 goto outprofiles;
2199
2200 return 0;
2201
2202outprofiles:
2203 device_remove_file(&pd->dev, &th_handle->profiles_attr);
2204outkzalloc:
2205 kfree(th_handle);
2206 th_handle = NULL;
2207 return ret;
2208}
2209
2210static void sony_nc_thermal_cleanup(struct platform_device *pd)
2211{
2212 if (th_handle) {
2213 device_remove_file(&pd->dev, &th_handle->profiles_attr);
2214 device_remove_file(&pd->dev, &th_handle->mode_attr);
2215 kfree(th_handle);
2216 th_handle = NULL;
2217 }
2218}
2219
3567a4e2 2220#ifdef CONFIG_PM_SLEEP
49f000ad
MC
2221static void sony_nc_thermal_resume(void)
2222{
2223 unsigned int status = sony_nc_thermal_mode_get();
2224
2225 if (status != th_handle->mode)
2226 sony_nc_thermal_mode_set(th_handle->mode);
2227}
3567a4e2 2228#endif
49f000ad 2229
54535d08
MC
2230/* resume on LID open */
2231struct snc_lid_resume_control {
2232 struct device_attribute attrs[3];
2233 unsigned int status;
2234};
2235static struct snc_lid_resume_control *lid_ctl;
2236
2237static ssize_t sony_nc_lid_resume_store(struct device *dev,
2238 struct device_attribute *attr,
2239 const char *buffer, size_t count)
2240{
2241 unsigned int result, pos;
2242 unsigned long value;
2243 if (count > 31)
2244 return -EINVAL;
2245
2246 if (kstrtoul(buffer, 10, &value) || value > 1)
2247 return -EINVAL;
2248
2249 /* the value we have to write to SNC is a bitmask:
2250 * +--------------+
2251 * | S3 | S4 | S5 |
2252 * +--------------+
2253 * 2 1 0
2254 */
2255 if (strcmp(attr->attr.name, "lid_resume_S3") == 0)
2256 pos = 2;
2257 else if (strcmp(attr->attr.name, "lid_resume_S4") == 0)
2258 pos = 1;
2259 else if (strcmp(attr->attr.name, "lid_resume_S5") == 0)
2260 pos = 0;
2261 else
2262 return -EINVAL;
2263
2264 if (value)
2265 value = lid_ctl->status | (1 << pos);
2266 else
2267 value = lid_ctl->status & ~(1 << pos);
2268
2269 if (sony_call_snc_handle(0x0119, value << 0x10 | 0x0100, &result))
2270 return -EIO;
2271
2272 lid_ctl->status = value;
2273
2274 return count;
2275}
2276
2277static ssize_t sony_nc_lid_resume_show(struct device *dev,
2278 struct device_attribute *attr, char *buffer)
2279{
2280 unsigned int pos;
2281
2282 if (strcmp(attr->attr.name, "lid_resume_S3") == 0)
2283 pos = 2;
2284 else if (strcmp(attr->attr.name, "lid_resume_S4") == 0)
2285 pos = 1;
2286 else if (strcmp(attr->attr.name, "lid_resume_S5") == 0)
2287 pos = 0;
2288 else
2289 return -EINVAL;
2290
2291 return snprintf(buffer, PAGE_SIZE, "%d\n",
2292 (lid_ctl->status >> pos) & 0x01);
2293}
2294
2295static int sony_nc_lid_resume_setup(struct platform_device *pd)
2296{
2297 unsigned int result;
2298 int i;
2299
2300 if (sony_call_snc_handle(0x0119, 0x0000, &result))
2301 return -EIO;
2302
2303 lid_ctl = kzalloc(sizeof(struct snc_lid_resume_control), GFP_KERNEL);
2304 if (!lid_ctl)
2305 return -ENOMEM;
2306
2307 lid_ctl->status = result & 0x7;
2308
2309 sysfs_attr_init(&lid_ctl->attrs[0].attr);
2310 lid_ctl->attrs[0].attr.name = "lid_resume_S3";
2311 lid_ctl->attrs[0].attr.mode = S_IRUGO | S_IWUSR;
2312 lid_ctl->attrs[0].show = sony_nc_lid_resume_show;
2313 lid_ctl->attrs[0].store = sony_nc_lid_resume_store;
2314
2315 sysfs_attr_init(&lid_ctl->attrs[1].attr);
2316 lid_ctl->attrs[1].attr.name = "lid_resume_S4";
2317 lid_ctl->attrs[1].attr.mode = S_IRUGO | S_IWUSR;
2318 lid_ctl->attrs[1].show = sony_nc_lid_resume_show;
2319 lid_ctl->attrs[1].store = sony_nc_lid_resume_store;
2320
2321 sysfs_attr_init(&lid_ctl->attrs[2].attr);
2322 lid_ctl->attrs[2].attr.name = "lid_resume_S5";
2323 lid_ctl->attrs[2].attr.mode = S_IRUGO | S_IWUSR;
2324 lid_ctl->attrs[2].show = sony_nc_lid_resume_show;
2325 lid_ctl->attrs[2].store = sony_nc_lid_resume_store;
2326
2327 for (i = 0; i < 3; i++) {
2328 result = device_create_file(&pd->dev, &lid_ctl->attrs[i]);
2329 if (result)
2330 goto liderror;
2331 }
2332
2333 return 0;
2334
2335liderror:
2336 for (; i > 0; i--)
2337 device_remove_file(&pd->dev, &lid_ctl->attrs[i]);
2338
2339 kfree(lid_ctl);
2340 lid_ctl = NULL;
2341
2342 return result;
2343}
2344
2345static void sony_nc_lid_resume_cleanup(struct platform_device *pd)
2346{
2347 int i;
2348
2349 if (lid_ctl) {
2350 for (i = 0; i < 3; i++)
2351 device_remove_file(&pd->dev, &lid_ctl->attrs[i]);
2352
2353 kfree(lid_ctl);
2354 lid_ctl = NULL;
2355 }
2356}
2357
88bf1706
MC
2358/* High speed charging function */
2359static struct device_attribute *hsc_handle;
2360
2361static ssize_t sony_nc_highspeed_charging_store(struct device *dev,
2362 struct device_attribute *attr,
2363 const char *buffer, size_t count)
2364{
2365 unsigned int result;
2366 unsigned long value;
2367
2368 if (count > 31)
2369 return -EINVAL;
2370
2371 if (kstrtoul(buffer, 10, &value) || value > 1)
2372 return -EINVAL;
2373
2374 if (sony_call_snc_handle(0x0131, value << 0x10 | 0x0200, &result))
2375 return -EIO;
2376
2377 return count;
2378}
2379
2380static ssize_t sony_nc_highspeed_charging_show(struct device *dev,
2381 struct device_attribute *attr, char *buffer)
2382{
2383 unsigned int result;
2384
2385 if (sony_call_snc_handle(0x0131, 0x0100, &result))
2386 return -EIO;
2387
2388 return snprintf(buffer, PAGE_SIZE, "%d\n", result & 0x01);
2389}
2390
2391static int sony_nc_highspeed_charging_setup(struct platform_device *pd)
2392{
2393 unsigned int result;
2394
2395 if (sony_call_snc_handle(0x0131, 0x0000, &result) || !(result & 0x01)) {
2396 /* some models advertise the handle but have no implementation
2397 * for it
2398 */
2399 pr_info("No High Speed Charging capability found\n");
2400 return 0;
2401 }
2402
2403 hsc_handle = kzalloc(sizeof(struct device_attribute), GFP_KERNEL);
2404 if (!hsc_handle)
2405 return -ENOMEM;
2406
2407 sysfs_attr_init(&hsc_handle->attr);
2408 hsc_handle->attr.name = "battery_highspeed_charging";
2409 hsc_handle->attr.mode = S_IRUGO | S_IWUSR;
2410 hsc_handle->show = sony_nc_highspeed_charging_show;
2411 hsc_handle->store = sony_nc_highspeed_charging_store;
2412
2413 result = device_create_file(&pd->dev, hsc_handle);
2414 if (result) {
2415 kfree(hsc_handle);
2416 hsc_handle = NULL;
2417 return result;
2418 }
2419
2420 return 0;
2421}
2422
2423static void sony_nc_highspeed_charging_cleanup(struct platform_device *pd)
2424{
2425 if (hsc_handle) {
2426 device_remove_file(&pd->dev, hsc_handle);
2427 kfree(hsc_handle);
2428 hsc_handle = NULL;
2429 }
2430}
2431
2b8791c4
MC
2432/* Touchpad enable/disable */
2433struct touchpad_control {
2434 struct device_attribute attr;
2435 int handle;
2436};
2437static struct touchpad_control *tp_ctl;
2438
2439static ssize_t sony_nc_touchpad_store(struct device *dev,
2440 struct device_attribute *attr, const char *buffer, size_t count)
2441{
2442 unsigned int result;
2443 unsigned long value;
2444
2445 if (count > 31)
2446 return -EINVAL;
2447
2448 if (kstrtoul(buffer, 10, &value) || value > 1)
2449 return -EINVAL;
2450
2451 /* sysfs: 0 disabled, 1 enabled
2452 * EC: 0 enabled, 1 disabled
2453 */
2454 if (sony_call_snc_handle(tp_ctl->handle,
2455 (!value << 0x10) | 0x100, &result))
2456 return -EIO;
2457
2458 return count;
2459}
2460
2461static ssize_t sony_nc_touchpad_show(struct device *dev,
2462 struct device_attribute *attr, char *buffer)
2463{
2464 unsigned int result;
2465
2466 if (sony_call_snc_handle(tp_ctl->handle, 0x000, &result))
2467 return -EINVAL;
2468
2469 return snprintf(buffer, PAGE_SIZE, "%d\n", !(result & 0x01));
2470}
2471
2472static int sony_nc_touchpad_setup(struct platform_device *pd,
2473 unsigned int handle)
2474{
2475 int ret = 0;
2476
2477 tp_ctl = kzalloc(sizeof(struct touchpad_control), GFP_KERNEL);
2478 if (!tp_ctl)
2479 return -ENOMEM;
2480
2481 tp_ctl->handle = handle;
2482
2483 sysfs_attr_init(&tp_ctl->attr.attr);
2484 tp_ctl->attr.attr.name = "touchpad";
2485 tp_ctl->attr.attr.mode = S_IRUGO | S_IWUSR;
2486 tp_ctl->attr.show = sony_nc_touchpad_show;
2487 tp_ctl->attr.store = sony_nc_touchpad_store;
2488
2489 ret = device_create_file(&pd->dev, &tp_ctl->attr);
2490 if (ret) {
2491 kfree(tp_ctl);
2492 tp_ctl = NULL;
2493 }
2494
2495 return ret;
2496}
2497
2498static void sony_nc_touchpad_cleanup(struct platform_device *pd)
2499{
2500 if (tp_ctl) {
2501 device_remove_file(&pd->dev, &tp_ctl->attr);
2502 kfree(tp_ctl);
2503 tp_ctl = NULL;
2504 }
2505}
2506
62d2f23e
MD
2507static void sony_nc_backlight_ng_read_limits(int handle,
2508 struct sony_backlight_props *props)
2509{
ebcef1b0
MD
2510 u64 offset;
2511 int i;
014fc8fb 2512 int lvl_table_len = 0;
62d2f23e 2513 u8 min = 0xff, max = 0x00;
ebcef1b0 2514 unsigned char buffer[32] = { 0 };
62d2f23e
MD
2515
2516 props->handle = handle;
2517 props->offset = 0;
2518 props->maxlvl = 0xff;
2519
2520 offset = sony_find_snc_handle(handle);
62d2f23e
MD
2521
2522 /* try to read the boundaries from ACPI tables, if we fail the above
2523 * defaults should be reasonable
2524 */
ebcef1b0
MD
2525 i = sony_nc_buffer_call(sony_nc_acpi_handle, "SN06", &offset, buffer,
2526 32);
2527 if (i < 0)
62d2f23e 2528 return;
62d2f23e 2529
014fc8fb
MD
2530 switch (handle) {
2531 case 0x012f:
2532 case 0x0137:
2533 lvl_table_len = 9;
2534 break;
2535 case 0x143:
2536 lvl_table_len = 16;
2537 break;
2538 }
2539
62d2f23e 2540 /* the buffer lists brightness levels available, brightness levels are
ebcef1b0
MD
2541 * from position 0 to 8 in the array, other values are used by ALS
2542 * control.
62d2f23e 2543 */
014fc8fb 2544 for (i = 0; i < lvl_table_len && i < ARRAY_SIZE(buffer); i++) {
62d2f23e 2545
ebcef1b0 2546 dprintk("Brightness level: %d\n", buffer[i]);
62d2f23e 2547
ebcef1b0 2548 if (!buffer[i])
62d2f23e
MD
2549 break;
2550
ebcef1b0
MD
2551 if (buffer[i] > max)
2552 max = buffer[i];
2553 if (buffer[i] < min)
2554 min = buffer[i];
62d2f23e
MD
2555 }
2556 props->offset = min;
2557 props->maxlvl = max;
2558 dprintk("Brightness levels: min=%d max=%d\n", props->offset,
2559 props->maxlvl);
62d2f23e
MD
2560}
2561
7751ab8e
MD
2562static void sony_nc_backlight_setup(void)
2563{
2564 acpi_handle unused;
2565 int max_brightness = 0;
2566 const struct backlight_ops *ops = NULL;
2567 struct backlight_properties props;
2568
a1071a5a 2569 if (sony_find_snc_handle(0x12f) >= 0) {
7751ab8e 2570 ops = &sony_backlight_ng_ops;
014fc8fb 2571 sony_bl_props.cmd_base = 0x0100;
62d2f23e
MD
2572 sony_nc_backlight_ng_read_limits(0x12f, &sony_bl_props);
2573 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
7751ab8e 2574
a1071a5a 2575 } else if (sony_find_snc_handle(0x137) >= 0) {
7751ab8e 2576 ops = &sony_backlight_ng_ops;
014fc8fb 2577 sony_bl_props.cmd_base = 0x0100;
62d2f23e
MD
2578 sony_nc_backlight_ng_read_limits(0x137, &sony_bl_props);
2579 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
7751ab8e 2580
a1071a5a 2581 } else if (sony_find_snc_handle(0x143) >= 0) {
014fc8fb
MD
2582 ops = &sony_backlight_ng_ops;
2583 sony_bl_props.cmd_base = 0x3000;
2584 sony_nc_backlight_ng_read_limits(0x143, &sony_bl_props);
2585 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
2586
7751ab8e
MD
2587 } else if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT",
2588 &unused))) {
2589 ops = &sony_backlight_ops;
2590 max_brightness = SONY_MAX_BRIGHTNESS - 1;
2591
2592 } else
2593 return;
2594
2595 memset(&props, 0, sizeof(struct backlight_properties));
2596 props.type = BACKLIGHT_PLATFORM;
2597 props.max_brightness = max_brightness;
62d2f23e
MD
2598 sony_bl_props.dev = backlight_device_register("sony", NULL,
2599 &sony_bl_props,
2600 ops, &props);
7751ab8e 2601
62d2f23e 2602 if (IS_ERR(sony_bl_props.dev)) {
50f581a4 2603 pr_warn("unable to register backlight device\n");
62d2f23e 2604 sony_bl_props.dev = NULL;
7751ab8e 2605 } else
62d2f23e
MD
2606 sony_bl_props.dev->props.brightness =
2607 ops->get_brightness(sony_bl_props.dev);
7751ab8e
MD
2608}
2609
2610static void sony_nc_backlight_cleanup(void)
2611{
62d2f23e
MD
2612 if (sony_bl_props.dev)
2613 backlight_device_unregister(sony_bl_props.dev);
7751ab8e
MD
2614}
2615
59b19106 2616static int sony_nc_add(struct acpi_device *device)
7f09c432
SP
2617{
2618 acpi_status status;
8607c673 2619 int result = 0;
50f62afb 2620 acpi_handle handle;
56b8756b 2621 struct sony_nc_value *item;
7f09c432 2622
50f581a4 2623 pr_info("%s v%s\n", SONY_NC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
f6119b02 2624
59b19106 2625 sony_nc_acpi_device = device;
33a04454 2626 strcpy(acpi_device_class(device), "sony/hotkey");
c561162f 2627
59b19106 2628 sony_nc_acpi_handle = device->handle;
7f09c432 2629
b25b732a
MD
2630 /* read device status */
2631 result = acpi_bus_get_status(device);
2632 /* bail IFF the above call was successful and the device is not present */
2633 if (!result && !device->status.present) {
2634 dprintk("Device not present\n");
2635 result = -ENODEV;
2636 goto outwalk;
2637 }
2638
2a4f0c81
MD
2639 result = sony_pf_add();
2640 if (result)
2641 goto outpresent;
2642
7f09c432 2643 if (debug) {
d6697938
MD
2644 status = acpi_walk_namespace(ACPI_TYPE_METHOD,
2645 sony_nc_acpi_handle, 1, sony_walk_callback,
2646 NULL, NULL, NULL);
7f09c432 2647 if (ACPI_FAILURE(status)) {
50f581a4 2648 pr_warn("unable to walk acpi resources\n");
7f09c432 2649 result = -ENODEV;
2a4f0c81 2650 goto outpresent;
7f09c432 2651 }
c561162f 2652 }
7f09c432 2653
ca3c2c70
MD
2654 result = sony_laptop_setup_input(device);
2655 if (result) {
2656 pr_err("Unable to create input devices\n");
2657 goto outplatform;
2658 }
2659
82734bfc
MG
2660 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
2661 &handle))) {
ebcef1b0
MD
2662 int arg = 1;
2663 if (sony_nc_int_call(sony_nc_acpi_handle, "ECON", &arg, NULL))
82734bfc
MG
2664 dprintk("ECON Method failed\n");
2665 }
2666
badf26f0
MG
2667 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
2668 &handle))) {
2669 dprintk("Doing SNC setup\n");
5fe801a7 2670 /* retrieve the available handles */
7227dedb 2671 result = sony_nc_handles_setup(sony_pf_device);
5fe801a7
MC
2672 if (!result)
2673 sony_nc_function_setup(device, sony_pf_device);
badf26f0
MG
2674 }
2675
1549ee6f 2676 /* setup input devices and helper fifo */
38cfc148 2677 if (acpi_video_backlight_support()) {
50f581a4 2678 pr_info("brightness ignored, must be controlled by ACPI video driver\n");
7751ab8e
MD
2679 } else {
2680 sony_nc_backlight_setup();
50f62afb 2681 }
7f09c432 2682
56b8756b 2683 /* create sony_pf sysfs attributes related to the SNC device */
2684 for (item = sony_nc_values; item->name; ++item) {
2685
2686 if (!debug && item->debug)
2687 continue;
2688
2689 /* find the available acpiget as described in the DSDT */
2690 for (; item->acpiget && *item->acpiget; ++item->acpiget) {
2691 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
2692 *item->acpiget,
2693 &handle))) {
b9a218b7 2694 dprintk("Found %s getter: %s\n",
2695 item->name, *item->acpiget);
56b8756b 2696 item->devattr.attr.mode |= S_IRUGO;
2697 break;
2698 }
2699 }
2700
2701 /* find the available acpiset as described in the DSDT */
2702 for (; item->acpiset && *item->acpiset; ++item->acpiset) {
2703 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
2704 *item->acpiset,
2705 &handle))) {
b9a218b7 2706 dprintk("Found %s setter: %s\n",
2707 item->name, *item->acpiset);
56b8756b 2708 item->devattr.attr.mode |= S_IWUSR;
2709 break;
2710 }
2711 }
2712
2713 if (item->devattr.attr.mode != 0) {
2714 result =
2715 device_create_file(&sony_pf_device->dev,
2716 &item->devattr);
2717 if (result)
2718 goto out_sysfs;
2719 }
2720 }
2721
7f09c432
SP
2722 return 0;
2723
ca3c2c70 2724out_sysfs:
56b8756b 2725 for (item = sony_nc_values; item->name; ++item) {
2726 device_remove_file(&sony_pf_device->dev, &item->devattr);
2727 }
7751ab8e 2728 sony_nc_backlight_cleanup();
5fe801a7 2729 sony_nc_function_cleanup(sony_pf_device);
2a4f0c81
MD
2730 sony_nc_handles_cleanup(sony_pf_device);
2731
ca3c2c70
MD
2732outplatform:
2733 sony_laptop_remove_input();
2734
2735outpresent:
2a4f0c81
MD
2736 sony_pf_remove();
2737
ca3c2c70 2738outwalk:
6cc056bc 2739 sony_nc_rfkill_cleanup();
7f09c432
SP
2740 return result;
2741}
2742
59b19106 2743static int sony_nc_remove(struct acpi_device *device, int type)
7f09c432 2744{
56b8756b 2745 struct sony_nc_value *item;
7f09c432 2746
7751ab8e 2747 sony_nc_backlight_cleanup();
50f62afb 2748
59b19106 2749 sony_nc_acpi_device = NULL;
c561162f 2750
56b8756b 2751 for (item = sony_nc_values; item->name; ++item) {
2752 device_remove_file(&sony_pf_device->dev, &item->devattr);
2753 }
2754
5fe801a7 2755 sony_nc_function_cleanup(sony_pf_device);
2a4f0c81 2756 sony_nc_handles_cleanup(sony_pf_device);
56b8756b 2757 sony_pf_remove();
1549ee6f 2758 sony_laptop_remove_input();
f6119b02 2759 dprintk(SONY_NC_DRIVER_NAME " removed.\n");
7f09c432
SP
2760
2761 return 0;
2762}
2763
1ba90e3a
TR
2764static const struct acpi_device_id sony_device_ids[] = {
2765 {SONY_NC_HID, 0},
2766 {SONY_PIC_HID, 0},
2767 {"", 0},
2768};
2769MODULE_DEVICE_TABLE(acpi, sony_device_ids);
2770
2771static const struct acpi_device_id sony_nc_device_ids[] = {
2772 {SONY_NC_HID, 0},
2773 {"", 0},
2774};
2775
59b19106 2776static struct acpi_driver sony_nc_driver = {
2777 .name = SONY_NC_DRIVER_NAME,
2778 .class = SONY_NC_CLASS,
1ba90e3a 2779 .ids = sony_nc_device_ids,
33a04454 2780 .owner = THIS_MODULE,
a02d1c1d 2781 .ops = {
59b19106 2782 .add = sony_nc_add,
2783 .remove = sony_nc_remove,
8037d6e6 2784 .notify = sony_nc_notify,
a02d1c1d 2785 },
bb6b98d6 2786 .drv.pm = &sony_nc_pm,
3f4f461f
AM
2787};
2788
33a04454 2789/*********** SPIC (SNY6001) Device ***********/
2790
2791#define SONYPI_DEVICE_TYPE1 0x00000001
2792#define SONYPI_DEVICE_TYPE2 0x00000002
2793#define SONYPI_DEVICE_TYPE3 0x00000004
2794
22a17780
MD
2795#define SONYPI_TYPE1_OFFSET 0x04
2796#define SONYPI_TYPE2_OFFSET 0x12
2797#define SONYPI_TYPE3_OFFSET 0x12
33a04454 2798
33a04454 2799struct sony_pic_ioport {
fd1caaed
MD
2800 struct acpi_resource_io io1;
2801 struct acpi_resource_io io2;
33a04454 2802 struct list_head list;
2803};
2804
2805struct sony_pic_irq {
2806 struct acpi_resource_irq irq;
2807 struct list_head list;
2808};
2809
de920430
MD
2810struct sonypi_eventtypes {
2811 u8 data;
2812 unsigned long mask;
2813 struct sonypi_event *events;
2814};
2815
31df7144
MD
2816struct sony_pic_dev {
2817 struct acpi_device *acpi_dev;
2818 struct sony_pic_irq *cur_irq;
2819 struct sony_pic_ioport *cur_ioport;
2820 struct list_head interrupts;
2821 struct list_head ioports;
2822 struct mutex lock;
2823 struct sonypi_eventtypes *event_types;
2824 int (*handle_irq)(const u8, const u8);
de920430 2825 int model;
de920430 2826 u16 evport_offset;
31df7144
MD
2827 u8 camera_power;
2828 u8 bluetooth_power;
2829 u8 wwan_power;
33a04454 2830};
2831
2832static struct sony_pic_dev spic_dev = {
2833 .interrupts = LIST_HEAD_INIT(spic_dev.interrupts),
2834 .ioports = LIST_HEAD_INIT(spic_dev.ioports),
2835};
2836
5e6f9725
AJ
2837static int spic_drv_registered;
2838
33a04454 2839/* Event masks */
2840#define SONYPI_JOGGER_MASK 0x00000001
2841#define SONYPI_CAPTURE_MASK 0x00000002
2842#define SONYPI_FNKEY_MASK 0x00000004
2843#define SONYPI_BLUETOOTH_MASK 0x00000008
2844#define SONYPI_PKEY_MASK 0x00000010
2845#define SONYPI_BACK_MASK 0x00000020
2846#define SONYPI_HELP_MASK 0x00000040
2847#define SONYPI_LID_MASK 0x00000080
2848#define SONYPI_ZOOM_MASK 0x00000100
2849#define SONYPI_THUMBPHRASE_MASK 0x00000200
2850#define SONYPI_MEYE_MASK 0x00000400
2851#define SONYPI_MEMORYSTICK_MASK 0x00000800
2852#define SONYPI_BATTERY_MASK 0x00001000
2853#define SONYPI_WIRELESS_MASK 0x00002000
2854
2855struct sonypi_event {
2856 u8 data;
2857 u8 event;
2858};
2859
2860/* The set of possible button release events */
2861static struct sonypi_event sonypi_releaseev[] = {
2862 { 0x00, SONYPI_EVENT_ANYBUTTON_RELEASED },
2863 { 0, 0 }
2864};
2865
2866/* The set of possible jogger events */
2867static struct sonypi_event sonypi_joggerev[] = {
2868 { 0x1f, SONYPI_EVENT_JOGDIAL_UP },
2869 { 0x01, SONYPI_EVENT_JOGDIAL_DOWN },
2870 { 0x5f, SONYPI_EVENT_JOGDIAL_UP_PRESSED },
2871 { 0x41, SONYPI_EVENT_JOGDIAL_DOWN_PRESSED },
2872 { 0x1e, SONYPI_EVENT_JOGDIAL_FAST_UP },
2873 { 0x02, SONYPI_EVENT_JOGDIAL_FAST_DOWN },
2874 { 0x5e, SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED },
2875 { 0x42, SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED },
2876 { 0x1d, SONYPI_EVENT_JOGDIAL_VFAST_UP },
2877 { 0x03, SONYPI_EVENT_JOGDIAL_VFAST_DOWN },
2878 { 0x5d, SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED },
2879 { 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED },
2880 { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED },
2881 { 0, 0 }
2882};
2883
2884/* The set of possible capture button events */
2885static struct sonypi_event sonypi_captureev[] = {
2886 { 0x05, SONYPI_EVENT_CAPTURE_PARTIALPRESSED },
2887 { 0x07, SONYPI_EVENT_CAPTURE_PRESSED },
3eb8749a 2888 { 0x40, SONYPI_EVENT_CAPTURE_PRESSED },
33a04454 2889 { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED },
2890 { 0, 0 }
2891};
2892
2893/* The set of possible fnkeys events */
2894static struct sonypi_event sonypi_fnkeyev[] = {
2895 { 0x10, SONYPI_EVENT_FNKEY_ESC },
2896 { 0x11, SONYPI_EVENT_FNKEY_F1 },
2897 { 0x12, SONYPI_EVENT_FNKEY_F2 },
2898 { 0x13, SONYPI_EVENT_FNKEY_F3 },
2899 { 0x14, SONYPI_EVENT_FNKEY_F4 },
2900 { 0x15, SONYPI_EVENT_FNKEY_F5 },
2901 { 0x16, SONYPI_EVENT_FNKEY_F6 },
2902 { 0x17, SONYPI_EVENT_FNKEY_F7 },
2903 { 0x18, SONYPI_EVENT_FNKEY_F8 },
2904 { 0x19, SONYPI_EVENT_FNKEY_F9 },
2905 { 0x1a, SONYPI_EVENT_FNKEY_F10 },
2906 { 0x1b, SONYPI_EVENT_FNKEY_F11 },
2907 { 0x1c, SONYPI_EVENT_FNKEY_F12 },
2908 { 0x1f, SONYPI_EVENT_FNKEY_RELEASED },
2909 { 0x21, SONYPI_EVENT_FNKEY_1 },
2910 { 0x22, SONYPI_EVENT_FNKEY_2 },
2911 { 0x31, SONYPI_EVENT_FNKEY_D },
2912 { 0x32, SONYPI_EVENT_FNKEY_E },
2913 { 0x33, SONYPI_EVENT_FNKEY_F },
2914 { 0x34, SONYPI_EVENT_FNKEY_S },
2915 { 0x35, SONYPI_EVENT_FNKEY_B },
2916 { 0x36, SONYPI_EVENT_FNKEY_ONLY },
2917 { 0, 0 }
2918};
2919
2920/* The set of possible program key events */
2921static struct sonypi_event sonypi_pkeyev[] = {
2922 { 0x01, SONYPI_EVENT_PKEY_P1 },
2923 { 0x02, SONYPI_EVENT_PKEY_P2 },
2924 { 0x04, SONYPI_EVENT_PKEY_P3 },
1cae7103 2925 { 0x20, SONYPI_EVENT_PKEY_P1 },
33a04454 2926 { 0, 0 }
2927};
2928
2929/* The set of possible bluetooth events */
2930static struct sonypi_event sonypi_blueev[] = {
2931 { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED },
2932 { 0x59, SONYPI_EVENT_BLUETOOTH_ON },
2933 { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF },
2934 { 0, 0 }
2935};
2936
2937/* The set of possible wireless events */
2938static struct sonypi_event sonypi_wlessev[] = {
4eeb5022
MD
2939 { 0x59, SONYPI_EVENT_IGNORE },
2940 { 0x5a, SONYPI_EVENT_IGNORE },
33a04454 2941 { 0, 0 }
2942};
2943
2944/* The set of possible back button events */
2945static struct sonypi_event sonypi_backev[] = {
2946 { 0x20, SONYPI_EVENT_BACK_PRESSED },
2947 { 0, 0 }
2948};
2949
2950/* The set of possible help button events */
2951static struct sonypi_event sonypi_helpev[] = {
2952 { 0x3b, SONYPI_EVENT_HELP_PRESSED },
2953 { 0, 0 }
2954};
2955
2956
2957/* The set of possible lid events */
2958static struct sonypi_event sonypi_lidev[] = {
2959 { 0x51, SONYPI_EVENT_LID_CLOSED },
2960 { 0x50, SONYPI_EVENT_LID_OPENED },
2961 { 0, 0 }
2962};
2963
2964/* The set of possible zoom events */
2965static struct sonypi_event sonypi_zoomev[] = {
2966 { 0x39, SONYPI_EVENT_ZOOM_PRESSED },
3eb8749a
MD
2967 { 0x10, SONYPI_EVENT_ZOOM_IN_PRESSED },
2968 { 0x20, SONYPI_EVENT_ZOOM_OUT_PRESSED },
1cae7103 2969 { 0x04, SONYPI_EVENT_ZOOM_PRESSED },
33a04454 2970 { 0, 0 }
2971};
2972
2973/* The set of possible thumbphrase events */
2974static struct sonypi_event sonypi_thumbphraseev[] = {
2975 { 0x3a, SONYPI_EVENT_THUMBPHRASE_PRESSED },
2976 { 0, 0 }
2977};
2978
2979/* The set of possible motioneye camera events */
2980static struct sonypi_event sonypi_meyeev[] = {
2981 { 0x00, SONYPI_EVENT_MEYE_FACE },
2982 { 0x01, SONYPI_EVENT_MEYE_OPPOSITE },
2983 { 0, 0 }
2984};
2985
2986/* The set of possible memorystick events */
2987static struct sonypi_event sonypi_memorystickev[] = {
2988 { 0x53, SONYPI_EVENT_MEMORYSTICK_INSERT },
2989 { 0x54, SONYPI_EVENT_MEMORYSTICK_EJECT },
2990 { 0, 0 }
2991};
2992
2993/* The set of possible battery events */
2994static struct sonypi_event sonypi_batteryev[] = {
2995 { 0x20, SONYPI_EVENT_BATTERY_INSERT },
2996 { 0x30, SONYPI_EVENT_BATTERY_REMOVE },
2997 { 0, 0 }
2998};
2999
1cae7103
HJ
3000/* The set of possible volume events */
3001static struct sonypi_event sonypi_volumeev[] = {
3002 { 0x01, SONYPI_EVENT_VOLUME_INC_PRESSED },
3003 { 0x02, SONYPI_EVENT_VOLUME_DEC_PRESSED },
3004 { 0, 0 }
3005};
3006
3007/* The set of possible brightness events */
3008static struct sonypi_event sonypi_brightnessev[] = {
3009 { 0x80, SONYPI_EVENT_BRIGHTNESS_PRESSED },
3010 { 0, 0 }
3011};
3012
de920430
MD
3013static struct sonypi_eventtypes type1_events[] = {
3014 { 0, 0xffffffff, sonypi_releaseev },
3015 { 0x70, SONYPI_MEYE_MASK, sonypi_meyeev },
3016 { 0x30, SONYPI_LID_MASK, sonypi_lidev },
3017 { 0x60, SONYPI_CAPTURE_MASK, sonypi_captureev },
3018 { 0x10, SONYPI_JOGGER_MASK, sonypi_joggerev },
3019 { 0x20, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
3020 { 0x30, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
3021 { 0x40, SONYPI_PKEY_MASK, sonypi_pkeyev },
3022 { 0x30, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
3023 { 0x40, SONYPI_BATTERY_MASK, sonypi_batteryev },
3024 { 0 },
3025};
3026static struct sonypi_eventtypes type2_events[] = {
3027 { 0, 0xffffffff, sonypi_releaseev },
3028 { 0x38, SONYPI_LID_MASK, sonypi_lidev },
3029 { 0x11, SONYPI_JOGGER_MASK, sonypi_joggerev },
3030 { 0x61, SONYPI_CAPTURE_MASK, sonypi_captureev },
3031 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
3032 { 0x31, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
3033 { 0x08, SONYPI_PKEY_MASK, sonypi_pkeyev },
3034 { 0x11, SONYPI_BACK_MASK, sonypi_backev },
3035 { 0x21, SONYPI_HELP_MASK, sonypi_helpev },
3036 { 0x21, SONYPI_ZOOM_MASK, sonypi_zoomev },
3037 { 0x20, SONYPI_THUMBPHRASE_MASK, sonypi_thumbphraseev },
3038 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
3039 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
3040 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
3041 { 0 },
3042};
3043static struct sonypi_eventtypes type3_events[] = {
3044 { 0, 0xffffffff, sonypi_releaseev },
3045 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
3046 { 0x31, SONYPI_WIRELESS_MASK, sonypi_wlessev },
3047 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
3048 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
3049 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
3eb8749a
MD
3050 { 0x05, SONYPI_PKEY_MASK, sonypi_pkeyev },
3051 { 0x05, SONYPI_ZOOM_MASK, sonypi_zoomev },
3052 { 0x05, SONYPI_CAPTURE_MASK, sonypi_captureev },
1cae7103
HJ
3053 { 0x05, SONYPI_PKEY_MASK, sonypi_volumeev },
3054 { 0x05, SONYPI_PKEY_MASK, sonypi_brightnessev },
3eb8749a 3055 { 0 },
de920430
MD
3056};
3057
3eb8749a 3058/* low level spic calls */
33a04454 3059#define ITERATIONS_LONG 10000
3060#define ITERATIONS_SHORT 10
3061#define wait_on_command(command, iterations) { \
3062 unsigned int n = iterations; \
3063 while (--n && (command)) \
3064 udelay(1); \
3065 if (!n) \
3066 dprintk("command failed at %s : %s (line %d)\n", \
6e574195 3067 __FILE__, __func__, __LINE__); \
33a04454 3068}
3069
3070static u8 sony_pic_call1(u8 dev)
3071{
3072 u8 v1, v2;
3073
fd1caaed 3074 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
33a04454 3075 ITERATIONS_LONG);
fd1caaed
MD
3076 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
3077 v1 = inb_p(spic_dev.cur_ioport->io1.minimum + 4);
3078 v2 = inb_p(spic_dev.cur_ioport->io1.minimum);
75a1f9ce 3079 dprintk("sony_pic_call1(0x%.2x): 0x%.4x\n", dev, (v2 << 8) | v1);
33a04454 3080 return v2;
3081}
3082
3083static u8 sony_pic_call2(u8 dev, u8 fn)
3084{
3085 u8 v1;
3086
fd1caaed 3087 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
33a04454 3088 ITERATIONS_LONG);
fd1caaed
MD
3089 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
3090 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
33a04454 3091 ITERATIONS_LONG);
fd1caaed
MD
3092 outb(fn, spic_dev.cur_ioport->io1.minimum);
3093 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
75a1f9ce 3094 dprintk("sony_pic_call2(0x%.2x - 0x%.2x): 0x%.4x\n", dev, fn, v1);
33a04454 3095 return v1;
3096}
3097
49a11dea 3098static u8 sony_pic_call3(u8 dev, u8 fn, u8 v)
3099{
3100 u8 v1;
3101
fd1caaed
MD
3102 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
3103 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
3104 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
3105 outb(fn, spic_dev.cur_ioport->io1.minimum);
3106 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
3107 outb(v, spic_dev.cur_ioport->io1.minimum);
3108 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
75a1f9ce
MD
3109 dprintk("sony_pic_call3(0x%.2x - 0x%.2x - 0x%.2x): 0x%.4x\n",
3110 dev, fn, v, v1);
49a11dea 3111 return v1;
3112}
3113
3eb8749a
MD
3114/*
3115 * minidrivers for SPIC models
3116 */
e93c8a68 3117static int type3_handle_irq(const u8 data_mask, const u8 ev)
3eb8749a
MD
3118{
3119 /*
3120 * 0x31 could mean we have to take some extra action and wait for
e93c8a68 3121 * the next irq for some Type3 models, it will generate a new
3eb8749a
MD
3122 * irq and we can read new data from the device:
3123 * - 0x5c and 0x5f requires 0xA0
3124 * - 0x61 requires 0xB3
3125 */
3126 if (data_mask == 0x31) {
3127 if (ev == 0x5c || ev == 0x5f)
3128 sony_pic_call1(0xA0);
3129 else if (ev == 0x61)
3130 sony_pic_call1(0xB3);
3131 return 0;
3132 }
3133 return 1;
3134}
3135
3eb8749a
MD
3136static void sony_pic_detect_device_type(struct sony_pic_dev *dev)
3137{
3138 struct pci_dev *pcidev;
3139
3140 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3141 PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
3142 if (pcidev) {
31df7144
MD
3143 dev->model = SONYPI_DEVICE_TYPE1;
3144 dev->evport_offset = SONYPI_TYPE1_OFFSET;
3145 dev->event_types = type1_events;
3eb8749a
MD
3146 goto out;
3147 }
3148
3149 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3150 PCI_DEVICE_ID_INTEL_ICH6_1, NULL);
3151 if (pcidev) {
31df7144
MD
3152 dev->model = SONYPI_DEVICE_TYPE2;
3153 dev->evport_offset = SONYPI_TYPE2_OFFSET;
3154 dev->event_types = type2_events;
3eb8749a
MD
3155 goto out;
3156 }
3157
3158 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3159 PCI_DEVICE_ID_INTEL_ICH7_1, NULL);
3160 if (pcidev) {
31df7144
MD
3161 dev->model = SONYPI_DEVICE_TYPE3;
3162 dev->handle_irq = type3_handle_irq;
3163 dev->evport_offset = SONYPI_TYPE3_OFFSET;
3164 dev->event_types = type3_events;
3eb8749a
MD
3165 goto out;
3166 }
3167
3168 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3169 PCI_DEVICE_ID_INTEL_ICH8_4, NULL);
3170 if (pcidev) {
31df7144
MD
3171 dev->model = SONYPI_DEVICE_TYPE3;
3172 dev->handle_irq = type3_handle_irq;
3173 dev->evport_offset = SONYPI_TYPE3_OFFSET;
3174 dev->event_types = type3_events;
3eb8749a
MD
3175 goto out;
3176 }
3177
d5b02695
IM
3178 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3179 PCI_DEVICE_ID_INTEL_ICH9_1, NULL);
3180 if (pcidev) {
31df7144
MD
3181 dev->model = SONYPI_DEVICE_TYPE3;
3182 dev->handle_irq = type3_handle_irq;
3183 dev->evport_offset = SONYPI_TYPE3_OFFSET;
3184 dev->event_types = type3_events;
d5b02695
IM
3185 goto out;
3186 }
3187
3eb8749a 3188 /* default */
31df7144
MD
3189 dev->model = SONYPI_DEVICE_TYPE2;
3190 dev->evport_offset = SONYPI_TYPE2_OFFSET;
3191 dev->event_types = type2_events;
3eb8749a
MD
3192
3193out:
3194 if (pcidev)
3195 pci_dev_put(pcidev);
3196
50f581a4
JP
3197 pr_info("detected Type%d model\n",
3198 dev->model == SONYPI_DEVICE_TYPE1 ? 1 :
3199 dev->model == SONYPI_DEVICE_TYPE2 ? 2 : 3);
3eb8749a
MD
3200}
3201
49a11dea 3202/* camera tests and poweron/poweroff */
3203#define SONYPI_CAMERA_PICTURE 5
49a11dea 3204#define SONYPI_CAMERA_CONTROL 0x10
e364632e 3205
3206#define SONYPI_CAMERA_BRIGHTNESS 0
3207#define SONYPI_CAMERA_CONTRAST 1
3208#define SONYPI_CAMERA_HUE 2
3209#define SONYPI_CAMERA_COLOR 3
3210#define SONYPI_CAMERA_SHARPNESS 4
3211
3212#define SONYPI_CAMERA_EXPOSURE_MASK 0xC
3213#define SONYPI_CAMERA_WHITE_BALANCE_MASK 0x3
3214#define SONYPI_CAMERA_PICTURE_MODE_MASK 0x30
3215#define SONYPI_CAMERA_MUTE_MASK 0x40
3216
3217/* the rest don't need a loop until not 0xff */
3218#define SONYPI_CAMERA_AGC 6
3219#define SONYPI_CAMERA_AGC_MASK 0x30
3220#define SONYPI_CAMERA_SHUTTER_MASK 0x7
3221
3222#define SONYPI_CAMERA_SHUTDOWN_REQUEST 7
3223#define SONYPI_CAMERA_CONTROL 0x10
3224
3225#define SONYPI_CAMERA_STATUS 7
3226#define SONYPI_CAMERA_STATUS_READY 0x2
3227#define SONYPI_CAMERA_STATUS_POSITION 0x4
3228
3229#define SONYPI_DIRECTION_BACKWARDS 0x4
3230
3231#define SONYPI_CAMERA_REVISION 8
3232#define SONYPI_CAMERA_ROMVERSION 9
49a11dea 3233
9f9f0761 3234static int __sony_pic_camera_ready(void)
49a11dea 3235{
3236 u8 v;
3237
3238 v = sony_pic_call2(0x8f, SONYPI_CAMERA_STATUS);
3239 return (v != 0xff && (v & SONYPI_CAMERA_STATUS_READY));
3240}
3241
e364632e 3242static int __sony_pic_camera_off(void)
49a11dea 3243{
5f3d2898 3244 if (!camera) {
50f581a4 3245 pr_warn("camera control not enabled\n");
5f3d2898 3246 return -ENODEV;
3247 }
3248
49a11dea 3249 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE,
3250 SONYPI_CAMERA_MUTE_MASK),
3251 ITERATIONS_SHORT);
3252
5f3d2898 3253 if (spic_dev.camera_power) {
3254 sony_pic_call2(0x91, 0);
3255 spic_dev.camera_power = 0;
3256 }
3257 return 0;
49a11dea 3258}
3259
e364632e 3260static int __sony_pic_camera_on(void)
49a11dea 3261{
5f3d2898 3262 int i, j, x;
3263
3264 if (!camera) {
50f581a4 3265 pr_warn("camera control not enabled\n");
5f3d2898 3266 return -ENODEV;
3267 }
49a11dea 3268
3269 if (spic_dev.camera_power)
e364632e 3270 return 0;
49a11dea 3271
3272 for (j = 5; j > 0; j--) {
3273
5f3d2898 3274 for (x = 0; x < 100 && sony_pic_call2(0x91, 0x1); x++)
49a11dea 3275 msleep(10);
3276 sony_pic_call1(0x93);
3277
3278 for (i = 400; i > 0; i--) {
9f9f0761 3279 if (__sony_pic_camera_ready())
49a11dea 3280 break;
3281 msleep(10);
3282 }
3283 if (i)
3284 break;
3285 }
3286
3287 if (j == 0) {
50f581a4 3288 pr_warn("failed to power on camera\n");
e364632e 3289 return -ENODEV;
49a11dea 3290 }
3291
3292 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTROL,
3293 0x5a),
3294 ITERATIONS_SHORT);
3295
3296 spic_dev.camera_power = 1;
5f3d2898 3297 return 0;
49a11dea 3298}
3299
e364632e 3300/* External camera command (exported to the motion eye v4l driver) */
3301int sony_pic_camera_command(int command, u8 value)
3302{
3303 if (!camera)
3304 return -EIO;
3305
3306 mutex_lock(&spic_dev.lock);
3307
3308 switch (command) {
1ce82c14 3309 case SONY_PIC_COMMAND_SETCAMERA:
e364632e 3310 if (value)
3311 __sony_pic_camera_on();
3312 else
3313 __sony_pic_camera_off();
3314 break;
1ce82c14 3315 case SONY_PIC_COMMAND_SETCAMERABRIGHTNESS:
e364632e 3316 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_BRIGHTNESS, value),
3317 ITERATIONS_SHORT);
3318 break;
1ce82c14 3319 case SONY_PIC_COMMAND_SETCAMERACONTRAST:
e364632e 3320 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTRAST, value),
3321 ITERATIONS_SHORT);
3322 break;
1ce82c14 3323 case SONY_PIC_COMMAND_SETCAMERAHUE:
e364632e 3324 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_HUE, value),
3325 ITERATIONS_SHORT);
3326 break;
1ce82c14 3327 case SONY_PIC_COMMAND_SETCAMERACOLOR:
e364632e 3328 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_COLOR, value),
3329 ITERATIONS_SHORT);
3330 break;
1ce82c14 3331 case SONY_PIC_COMMAND_SETCAMERASHARPNESS:
e364632e 3332 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_SHARPNESS, value),
3333 ITERATIONS_SHORT);
3334 break;
1ce82c14 3335 case SONY_PIC_COMMAND_SETCAMERAPICTURE:
e364632e 3336 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, value),
3337 ITERATIONS_SHORT);
3338 break;
1ce82c14 3339 case SONY_PIC_COMMAND_SETCAMERAAGC:
e364632e 3340 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_AGC, value),
3341 ITERATIONS_SHORT);
3342 break;
3343 default:
50f581a4 3344 pr_err("sony_pic_camera_command invalid: %d\n", command);
e364632e 3345 break;
3346 }
3347 mutex_unlock(&spic_dev.lock);
3348 return 0;
3349}
3350EXPORT_SYMBOL(sony_pic_camera_command);
3351
9476cdfa 3352/* gprs/edge modem (SZ460N and SZ210P), thanks to Joshua Wise */
c9f1e6f6 3353static void __sony_pic_set_wwanpower(u8 state)
9476cdfa 3354{
3355 state = !!state;
c9f1e6f6 3356 if (spic_dev.wwan_power == state)
9476cdfa 3357 return;
9476cdfa 3358 sony_pic_call2(0xB0, state);
3ad1b761 3359 sony_pic_call1(0x82);
9476cdfa 3360 spic_dev.wwan_power = state;
9476cdfa 3361}
3362
3363static ssize_t sony_pic_wwanpower_store(struct device *dev,
3364 struct device_attribute *attr,
3365 const char *buffer, size_t count)
3366{
3367 unsigned long value;
3368 if (count > 31)
3369 return -EINVAL;
3370
9e123379
MD
3371 if (kstrtoul(buffer, 10, &value))
3372 return -EINVAL;
3373
c9f1e6f6
MD
3374 mutex_lock(&spic_dev.lock);
3375 __sony_pic_set_wwanpower(value);
3376 mutex_unlock(&spic_dev.lock);
9476cdfa 3377
3378 return count;
3379}
3380
3381static ssize_t sony_pic_wwanpower_show(struct device *dev,
3382 struct device_attribute *attr, char *buffer)
3383{
3384 ssize_t count;
3385 mutex_lock(&spic_dev.lock);
3386 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.wwan_power);
3387 mutex_unlock(&spic_dev.lock);
3388 return count;
3389}
3390
49a11dea 3391/* bluetooth subsystem power state */
9f9f0761 3392static void __sony_pic_set_bluetoothpower(u8 state)
49a11dea 3393{
3394 state = !!state;
3395 if (spic_dev.bluetooth_power == state)
3396 return;
3397 sony_pic_call2(0x96, state);
3398 sony_pic_call1(0x82);
3399 spic_dev.bluetooth_power = state;
3400}
3401
3402static ssize_t sony_pic_bluetoothpower_store(struct device *dev,
3403 struct device_attribute *attr,
3404 const char *buffer, size_t count)
3405{
3406 unsigned long value;
3407 if (count > 31)
3408 return -EINVAL;
3409
9e123379
MD
3410 if (kstrtoul(buffer, 10, &value))
3411 return -EINVAL;
3412
9f9f0761 3413 mutex_lock(&spic_dev.lock);
3414 __sony_pic_set_bluetoothpower(value);
3415 mutex_unlock(&spic_dev.lock);
49a11dea 3416
3417 return count;
3418}
3419
3420static ssize_t sony_pic_bluetoothpower_show(struct device *dev,
3421 struct device_attribute *attr, char *buffer)
3422{
9f9f0761 3423 ssize_t count = 0;
3424 mutex_lock(&spic_dev.lock);
3425 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.bluetooth_power);
3426 mutex_unlock(&spic_dev.lock);
3427 return count;
49a11dea 3428}
3429
3430/* fan speed */
3431/* FAN0 information (reverse engineered from ACPI tables) */
3432#define SONY_PIC_FAN0_STATUS 0x93
7b153f36 3433static int sony_pic_set_fanspeed(unsigned long value)
3434{
3435 return ec_write(SONY_PIC_FAN0_STATUS, value);
3436}
3437
3438static int sony_pic_get_fanspeed(u8 *value)
3439{
3440 return ec_read(SONY_PIC_FAN0_STATUS, value);
3441}
3442
49a11dea 3443static ssize_t sony_pic_fanspeed_store(struct device *dev,
3444 struct device_attribute *attr,
3445 const char *buffer, size_t count)
3446{
3447 unsigned long value;
3448 if (count > 31)
3449 return -EINVAL;
3450
9e123379
MD
3451 if (kstrtoul(buffer, 10, &value))
3452 return -EINVAL;
3453
7b153f36 3454 if (sony_pic_set_fanspeed(value))
49a11dea 3455 return -EIO;
3456
3457 return count;
3458}
3459
3460static ssize_t sony_pic_fanspeed_show(struct device *dev,
3461 struct device_attribute *attr, char *buffer)
3462{
3463 u8 value = 0;
7b153f36 3464 if (sony_pic_get_fanspeed(&value))
49a11dea 3465 return -EIO;
3466
3467 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
3468}
3469
3470#define SPIC_ATTR(_name, _mode) \
3471struct device_attribute spic_attr_##_name = __ATTR(_name, \
3472 _mode, sony_pic_## _name ##_show, \
3473 sony_pic_## _name ##_store)
3474
49a11dea 3475static SPIC_ATTR(bluetoothpower, 0644);
9476cdfa 3476static SPIC_ATTR(wwanpower, 0644);
49a11dea 3477static SPIC_ATTR(fanspeed, 0644);
3478
3479static struct attribute *spic_attributes[] = {
49a11dea 3480 &spic_attr_bluetoothpower.attr,
9476cdfa 3481 &spic_attr_wwanpower.attr,
49a11dea 3482 &spic_attr_fanspeed.attr,
3483 NULL
3484};
3485
3486static struct attribute_group spic_attribute_group = {
3487 .attrs = spic_attributes
3488};
3489
7b153f36 3490/******** SONYPI compatibility **********/
a64e62a0 3491#ifdef CONFIG_SONYPI_COMPAT
7b153f36 3492
3493/* battery / brightness / temperature addresses */
3494#define SONYPI_BAT_FLAGS 0x81
3495#define SONYPI_LCD_LIGHT 0x96
3496#define SONYPI_BAT1_PCTRM 0xa0
3497#define SONYPI_BAT1_LEFT 0xa2
3498#define SONYPI_BAT1_MAXRT 0xa4
3499#define SONYPI_BAT2_PCTRM 0xa8
3500#define SONYPI_BAT2_LEFT 0xaa
3501#define SONYPI_BAT2_MAXRT 0xac
3502#define SONYPI_BAT1_MAXTK 0xb0
3503#define SONYPI_BAT1_FULL 0xb2
3504#define SONYPI_BAT2_MAXTK 0xb8
3505#define SONYPI_BAT2_FULL 0xba
3506#define SONYPI_TEMP_STATUS 0xC1
3507
3508struct sonypi_compat_s {
3509 struct fasync_struct *fifo_async;
45465487 3510 struct kfifo fifo;
7b153f36 3511 spinlock_t fifo_lock;
3512 wait_queue_head_t fifo_proc_list;
3513 atomic_t open_count;
3514};
3515static struct sonypi_compat_s sonypi_compat = {
3516 .open_count = ATOMIC_INIT(0),
3517};
3518
3519static int sonypi_misc_fasync(int fd, struct file *filp, int on)
3520{
60aa4924 3521 return fasync_helper(fd, filp, on, &sonypi_compat.fifo_async);
7b153f36 3522}
3523
3524static int sonypi_misc_release(struct inode *inode, struct file *file)
3525{
7b153f36 3526 atomic_dec(&sonypi_compat.open_count);
3527 return 0;
3528}
3529
3530static int sonypi_misc_open(struct inode *inode, struct file *file)
3531{
3532 /* Flush input queue on first open */
4ef4cbb3
AIB
3533 unsigned long flags;
3534
45465487 3535 spin_lock_irqsave(&sonypi_compat.fifo_lock, flags);
4ef4cbb3 3536
7b153f36 3537 if (atomic_inc_return(&sonypi_compat.open_count) == 1)
e64c026d 3538 kfifo_reset(&sonypi_compat.fifo);
4ef4cbb3 3539
45465487 3540 spin_unlock_irqrestore(&sonypi_compat.fifo_lock, flags);
4ef4cbb3 3541
7b153f36 3542 return 0;
3543}
3544
3545static ssize_t sonypi_misc_read(struct file *file, char __user *buf,
3546 size_t count, loff_t *pos)
3547{
3548 ssize_t ret;
3549 unsigned char c;
3550
45465487 3551 if ((kfifo_len(&sonypi_compat.fifo) == 0) &&
7b153f36 3552 (file->f_flags & O_NONBLOCK))
3553 return -EAGAIN;
3554
3555 ret = wait_event_interruptible(sonypi_compat.fifo_proc_list,
45465487 3556 kfifo_len(&sonypi_compat.fifo) != 0);
7b153f36 3557 if (ret)
3558 return ret;
3559
3560 while (ret < count &&
7acd72eb 3561 (kfifo_out_locked(&sonypi_compat.fifo, &c, sizeof(c),
c1e13f25 3562 &sonypi_compat.fifo_lock) == sizeof(c))) {
7b153f36 3563 if (put_user(c, buf++))
3564 return -EFAULT;
3565 ret++;
3566 }
3567
3568 if (ret > 0) {
496ad9aa 3569 struct inode *inode = file_inode(file);
7b153f36 3570 inode->i_atime = current_fs_time(inode->i_sb);
3571 }
3572
3573 return ret;
3574}
3575
3576static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait)
3577{
3578 poll_wait(file, &sonypi_compat.fifo_proc_list, wait);
45465487 3579 if (kfifo_len(&sonypi_compat.fifo))
7b153f36 3580 return POLLIN | POLLRDNORM;
3581 return 0;
3582}
3583
3584static int ec_read16(u8 addr, u16 *value)
3585{
3586 u8 val_lb, val_hb;
3587 if (ec_read(addr, &val_lb))
3588 return -1;
3589 if (ec_read(addr + 1, &val_hb))
3590 return -1;
3591 *value = val_lb | (val_hb << 8);
3592 return 0;
3593}
3594
2b24ef09
AC
3595static long sonypi_misc_ioctl(struct file *fp, unsigned int cmd,
3596 unsigned long arg)
7b153f36 3597{
3598 int ret = 0;
3599 void __user *argp = (void __user *)arg;
3600 u8 val8;
3601 u16 val16;
3602 int value;
3603
9f9f0761 3604 mutex_lock(&spic_dev.lock);
7b153f36 3605 switch (cmd) {
3606 case SONYPI_IOCGBRT:
62d2f23e 3607 if (sony_bl_props.dev == NULL) {
7b153f36 3608 ret = -EIO;
3609 break;
3610 }
ebcef1b0
MD
3611 if (sony_nc_int_call(sony_nc_acpi_handle, "GBRT", NULL,
3612 &value)) {
7b153f36 3613 ret = -EIO;
3614 break;
3615 }
3616 val8 = ((value & 0xff) - 1) << 5;
3617 if (copy_to_user(argp, &val8, sizeof(val8)))
3618 ret = -EFAULT;
3619 break;
3620 case SONYPI_IOCSBRT:
62d2f23e 3621 if (sony_bl_props.dev == NULL) {
7b153f36 3622 ret = -EIO;
3623 break;
3624 }
3625 if (copy_from_user(&val8, argp, sizeof(val8))) {
3626 ret = -EFAULT;
3627 break;
3628 }
ebcef1b0
MD
3629 value = (val8 >> 5) + 1;
3630 if (sony_nc_int_call(sony_nc_acpi_handle, "SBRT", &value,
3631 NULL)) {
7b153f36 3632 ret = -EIO;
3633 break;
3634 }
3635 /* sync the backlight device status */
62d2f23e
MD
3636 sony_bl_props.dev->props.brightness =
3637 sony_backlight_get_brightness(sony_bl_props.dev);
7b153f36 3638 break;
3639 case SONYPI_IOCGBAT1CAP:
3640 if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
3641 ret = -EIO;
3642 break;
3643 }
3644 if (copy_to_user(argp, &val16, sizeof(val16)))
3645 ret = -EFAULT;
3646 break;
3647 case SONYPI_IOCGBAT1REM:
3648 if (ec_read16(SONYPI_BAT1_LEFT, &val16)) {
3649 ret = -EIO;
3650 break;
3651 }
3652 if (copy_to_user(argp, &val16, sizeof(val16)))
3653 ret = -EFAULT;
3654 break;
3655 case SONYPI_IOCGBAT2CAP:
3656 if (ec_read16(SONYPI_BAT2_FULL, &val16)) {
3657 ret = -EIO;
3658 break;
3659 }
3660 if (copy_to_user(argp, &val16, sizeof(val16)))
3661 ret = -EFAULT;
3662 break;
3663 case SONYPI_IOCGBAT2REM:
3664 if (ec_read16(SONYPI_BAT2_LEFT, &val16)) {
3665 ret = -EIO;
3666 break;
3667 }
3668 if (copy_to_user(argp, &val16, sizeof(val16)))
3669 ret = -EFAULT;
3670 break;
3671 case SONYPI_IOCGBATFLAGS:
3672 if (ec_read(SONYPI_BAT_FLAGS, &val8)) {
3673 ret = -EIO;
3674 break;
3675 }
3676 val8 &= 0x07;
3677 if (copy_to_user(argp, &val8, sizeof(val8)))
3678 ret = -EFAULT;
3679 break;
3680 case SONYPI_IOCGBLUE:
3681 val8 = spic_dev.bluetooth_power;
3682 if (copy_to_user(argp, &val8, sizeof(val8)))
3683 ret = -EFAULT;
3684 break;
3685 case SONYPI_IOCSBLUE:
3686 if (copy_from_user(&val8, argp, sizeof(val8))) {
3687 ret = -EFAULT;
3688 break;
3689 }
9f9f0761 3690 __sony_pic_set_bluetoothpower(val8);
7b153f36 3691 break;
3692 /* FAN Controls */
3693 case SONYPI_IOCGFAN:
3694 if (sony_pic_get_fanspeed(&val8)) {
3695 ret = -EIO;
3696 break;
3697 }
3698 if (copy_to_user(argp, &val8, sizeof(val8)))
3699 ret = -EFAULT;
3700 break;
3701 case SONYPI_IOCSFAN:
3702 if (copy_from_user(&val8, argp, sizeof(val8))) {
3703 ret = -EFAULT;
3704 break;
3705 }
3706 if (sony_pic_set_fanspeed(val8))
3707 ret = -EIO;
3708 break;
3709 /* GET Temperature (useful under APM) */
3710 case SONYPI_IOCGTEMP:
3711 if (ec_read(SONYPI_TEMP_STATUS, &val8)) {
3712 ret = -EIO;
3713 break;
3714 }
3715 if (copy_to_user(argp, &val8, sizeof(val8)))
3716 ret = -EFAULT;
3717 break;
3718 default:
3719 ret = -EINVAL;
3720 }
9f9f0761 3721 mutex_unlock(&spic_dev.lock);
7b153f36 3722 return ret;
3723}
3724
3725static const struct file_operations sonypi_misc_fops = {
3726 .owner = THIS_MODULE,
3727 .read = sonypi_misc_read,
3728 .poll = sonypi_misc_poll,
3729 .open = sonypi_misc_open,
3730 .release = sonypi_misc_release,
3731 .fasync = sonypi_misc_fasync,
2b24ef09 3732 .unlocked_ioctl = sonypi_misc_ioctl,
6038f373 3733 .llseek = noop_llseek,
7b153f36 3734};
3735
3736static struct miscdevice sonypi_misc_device = {
3737 .minor = MISC_DYNAMIC_MINOR,
3738 .name = "sonypi",
3739 .fops = &sonypi_misc_fops,
3740};
3741
3742static void sonypi_compat_report_event(u8 event)
3743{
7acd72eb 3744 kfifo_in_locked(&sonypi_compat.fifo, (unsigned char *)&event,
c1e13f25 3745 sizeof(event), &sonypi_compat.fifo_lock);
7b153f36 3746 kill_fasync(&sonypi_compat.fifo_async, SIGIO, POLL_IN);
3747 wake_up_interruptible(&sonypi_compat.fifo_proc_list);
3748}
3749
3750static int sonypi_compat_init(void)
3751{
3752 int error;
3753
3754 spin_lock_init(&sonypi_compat.fifo_lock);
45465487 3755 error =
c1e13f25 3756 kfifo_alloc(&sonypi_compat.fifo, SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
45465487 3757 if (error) {
50f581a4 3758 pr_err("kfifo_alloc failed\n");
45465487 3759 return error;
7b153f36 3760 }
3761
3762 init_waitqueue_head(&sonypi_compat.fifo_proc_list);
7b153f36 3763
3764 if (minor != -1)
3765 sonypi_misc_device.minor = minor;
3766 error = misc_register(&sonypi_misc_device);
3767 if (error) {
50f581a4 3768 pr_err("misc_register failed\n");
7b153f36 3769 goto err_free_kfifo;
3770 }
3771 if (minor == -1)
50f581a4
JP
3772 pr_info("device allocated minor is %d\n",
3773 sonypi_misc_device.minor);
7b153f36 3774
3775 return 0;
3776
3777err_free_kfifo:
45465487 3778 kfifo_free(&sonypi_compat.fifo);
7b153f36 3779 return error;
3780}
3781
3782static void sonypi_compat_exit(void)
3783{
3784 misc_deregister(&sonypi_misc_device);
45465487 3785 kfifo_free(&sonypi_compat.fifo);
7b153f36 3786}
3787#else
3788static int sonypi_compat_init(void) { return 0; }
3789static void sonypi_compat_exit(void) { }
3790static void sonypi_compat_report_event(u8 event) { }
a64e62a0 3791#endif /* CONFIG_SONYPI_COMPAT */
7b153f36 3792
1549ee6f 3793/*
33a04454 3794 * ACPI callbacks
1549ee6f 3795 */
33a04454 3796static acpi_status
3797sony_pic_read_possible_resource(struct acpi_resource *resource, void *context)
3798{
3799 u32 i;
3800 struct sony_pic_dev *dev = (struct sony_pic_dev *)context;
3801
3802 switch (resource->type) {
3803 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
fd1caaed
MD
3804 {
3805 /* start IO enumeration */
3806 struct sony_pic_ioport *ioport = kzalloc(sizeof(*ioport), GFP_KERNEL);
3807 if (!ioport)
3808 return AE_ERROR;
3809
3810 list_add(&ioport->list, &dev->ioports);
3811 return AE_OK;
3812 }
3813
33a04454 3814 case ACPI_RESOURCE_TYPE_END_DEPENDENT:
fd1caaed 3815 /* end IO enumeration */
33a04454 3816 return AE_OK;
3817
3818 case ACPI_RESOURCE_TYPE_IRQ:
3819 {
3820 struct acpi_resource_irq *p = &resource->data.irq;
3821 struct sony_pic_irq *interrupt = NULL;
3822 if (!p || !p->interrupt_count) {
3823 /*
3824 * IRQ descriptors may have no IRQ# bits set,
3825 * particularly those those w/ _STA disabled
3826 */
3827 dprintk("Blank IRQ resource\n");
3828 return AE_OK;
3829 }
3830 for (i = 0; i < p->interrupt_count; i++) {
3831 if (!p->interrupts[i]) {
50f581a4
JP
3832 pr_warn("Invalid IRQ %d\n",
3833 p->interrupts[i]);
33a04454 3834 continue;
3835 }
3836 interrupt = kzalloc(sizeof(*interrupt),
3837 GFP_KERNEL);
3838 if (!interrupt)
3839 return AE_ERROR;
3840
fd1caaed 3841 list_add(&interrupt->list, &dev->interrupts);
33a04454 3842 interrupt->irq.triggering = p->triggering;
3843 interrupt->irq.polarity = p->polarity;
3844 interrupt->irq.sharable = p->sharable;
3845 interrupt->irq.interrupt_count = 1;
3846 interrupt->irq.interrupts[0] = p->interrupts[i];
3847 }
3848 return AE_OK;
3849 }
3850 case ACPI_RESOURCE_TYPE_IO:
3851 {
3852 struct acpi_resource_io *io = &resource->data.io;
fd1caaed
MD
3853 struct sony_pic_ioport *ioport =
3854 list_first_entry(&dev->ioports, struct sony_pic_ioport, list);
33a04454 3855 if (!io) {
3856 dprintk("Blank IO resource\n");
3857 return AE_OK;
3858 }
3859
fd1caaed
MD
3860 if (!ioport->io1.minimum) {
3861 memcpy(&ioport->io1, io, sizeof(*io));
3862 dprintk("IO1 at 0x%.4x (0x%.2x)\n", ioport->io1.minimum,
3863 ioport->io1.address_length);
3864 }
3865 else if (!ioport->io2.minimum) {
3866 memcpy(&ioport->io2, io, sizeof(*io));
3867 dprintk("IO2 at 0x%.4x (0x%.2x)\n", ioport->io2.minimum,
3868 ioport->io2.address_length);
3869 }
3870 else {
50f581a4 3871 pr_err("Unknown SPIC Type, more than 2 IO Ports\n");
33a04454 3872 return AE_ERROR;
fd1caaed 3873 }
33a04454 3874 return AE_OK;
3875 }
3876 default:
3877 dprintk("Resource %d isn't an IRQ nor an IO port\n",
50f581a4 3878 resource->type);
33a04454 3879
3880 case ACPI_RESOURCE_TYPE_END_TAG:
3881 return AE_OK;
3882 }
3883 return AE_CTRL_TERMINATE;
3884}
3885
3886static int sony_pic_possible_resources(struct acpi_device *device)
3887{
3888 int result = 0;
3889 acpi_status status = AE_OK;
3890
3891 if (!device)
3892 return -EINVAL;
3893
3894 /* get device status */
3895 /* see acpi_pci_link_get_current acpi_pci_link_get_possible */
3896 dprintk("Evaluating _STA\n");
3897 result = acpi_bus_get_status(device);
3898 if (result) {
50f581a4 3899 pr_warn("Unable to read status\n");
33a04454 3900 goto end;
3901 }
3902
3903 if (!device->status.enabled)
3904 dprintk("Device disabled\n");
3905 else
3906 dprintk("Device enabled\n");
3907
3908 /*
3909 * Query and parse 'method'
3910 */
3911 dprintk("Evaluating %s\n", METHOD_NAME__PRS);
3912 status = acpi_walk_resources(device->handle, METHOD_NAME__PRS,
3913 sony_pic_read_possible_resource, &spic_dev);
3914 if (ACPI_FAILURE(status)) {
50f581a4 3915 pr_warn("Failure evaluating %s\n", METHOD_NAME__PRS);
33a04454 3916 result = -ENODEV;
3917 }
3918end:
3919 return result;
3920}
3921
3922/*
3923 * Disable the spic device by calling its _DIS method
3924 */
3925static int sony_pic_disable(struct acpi_device *device)
3926{
6158d3a2
MG
3927 acpi_status ret = acpi_evaluate_object(device->handle, "_DIS", NULL,
3928 NULL);
3929
3930 if (ACPI_FAILURE(ret) && ret != AE_NOT_FOUND)
33a04454 3931 return -ENXIO;
3932
3933 dprintk("Device disabled\n");
3934 return 0;
3935}
3936
3937
3938/*
3939 * Based on drivers/acpi/pci_link.c:acpi_pci_link_set
3940 *
3941 * Call _SRS to set current resources
3942 */
3943static int sony_pic_enable(struct acpi_device *device,
3944 struct sony_pic_ioport *ioport, struct sony_pic_irq *irq)
3945{
3946 acpi_status status;
3947 int result = 0;
fd1caaed
MD
3948 /* Type 1 resource layout is:
3949 * IO
3950 * IO
3951 * IRQNoFlags
3952 * End
3953 *
3954 * Type 2 and 3 resource layout is:
3955 * IO
3956 * IRQNoFlags
3957 * End
3958 */
33a04454 3959 struct {
fd1caaed
MD
3960 struct acpi_resource res1;
3961 struct acpi_resource res2;
3962 struct acpi_resource res3;
3963 struct acpi_resource res4;
33a04454 3964 } *resource;
3965 struct acpi_buffer buffer = { 0, NULL };
3966
3967 if (!ioport || !irq)
3968 return -EINVAL;
3969
3970 /* init acpi_buffer */
3971 resource = kzalloc(sizeof(*resource) + 1, GFP_KERNEL);
3972 if (!resource)
3973 return -ENOMEM;
3974
3975 buffer.length = sizeof(*resource) + 1;
3976 buffer.pointer = resource;
3977
fd1caaed 3978 /* setup Type 1 resources */
31df7144 3979 if (spic_dev.model == SONYPI_DEVICE_TYPE1) {
33a04454 3980
fd1caaed
MD
3981 /* setup io resources */
3982 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
3983 resource->res1.length = sizeof(struct acpi_resource);
3984 memcpy(&resource->res1.data.io, &ioport->io1,
3985 sizeof(struct acpi_resource_io));
33a04454 3986
fd1caaed
MD
3987 resource->res2.type = ACPI_RESOURCE_TYPE_IO;
3988 resource->res2.length = sizeof(struct acpi_resource);
3989 memcpy(&resource->res2.data.io, &ioport->io2,
3990 sizeof(struct acpi_resource_io));
3991
3992 /* setup irq resource */
3993 resource->res3.type = ACPI_RESOURCE_TYPE_IRQ;
3994 resource->res3.length = sizeof(struct acpi_resource);
3995 memcpy(&resource->res3.data.irq, &irq->irq,
3996 sizeof(struct acpi_resource_irq));
3997 /* we requested a shared irq */
3998 resource->res3.data.irq.sharable = ACPI_SHARED;
3999
4000 resource->res4.type = ACPI_RESOURCE_TYPE_END_TAG;
4001
4002 }
4003 /* setup Type 2/3 resources */
4004 else {
4005 /* setup io resource */
4006 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
4007 resource->res1.length = sizeof(struct acpi_resource);
4008 memcpy(&resource->res1.data.io, &ioport->io1,
4009 sizeof(struct acpi_resource_io));
4010
4011 /* setup irq resource */
4012 resource->res2.type = ACPI_RESOURCE_TYPE_IRQ;
4013 resource->res2.length = sizeof(struct acpi_resource);
4014 memcpy(&resource->res2.data.irq, &irq->irq,
4015 sizeof(struct acpi_resource_irq));
4016 /* we requested a shared irq */
4017 resource->res2.data.irq.sharable = ACPI_SHARED;
4018
4019 resource->res3.type = ACPI_RESOURCE_TYPE_END_TAG;
4020 }
33a04454 4021
4022 /* Attempt to set the resource */
4023 dprintk("Evaluating _SRS\n");
4024 status = acpi_set_current_resources(device->handle, &buffer);
4025
4026 /* check for total failure */
4027 if (ACPI_FAILURE(status)) {
50f581a4 4028 pr_err("Error evaluating _SRS\n");
33a04454 4029 result = -ENODEV;
4030 goto end;
4031 }
4032
4033 /* Necessary device initializations calls (from sonypi) */
4034 sony_pic_call1(0x82);
4035 sony_pic_call2(0x81, 0xff);
4036 sony_pic_call1(compat ? 0x92 : 0x82);
4037
4038end:
4039 kfree(resource);
4040 return result;
4041}
4042
4043/*****************
4044 *
4045 * ISR: some event is available
4046 *
4047 *****************/
4048static irqreturn_t sony_pic_irq(int irq, void *dev_id)
4049{
4050 int i, j;
33a04454 4051 u8 ev = 0;
4052 u8 data_mask = 0;
4053 u8 device_event = 0;
4054
4055 struct sony_pic_dev *dev = (struct sony_pic_dev *) dev_id;
4056
fd1caaed
MD
4057 ev = inb_p(dev->cur_ioport->io1.minimum);
4058 if (dev->cur_ioport->io2.minimum)
4059 data_mask = inb_p(dev->cur_ioport->io2.minimum);
4060 else
de920430 4061 data_mask = inb_p(dev->cur_ioport->io1.minimum +
31df7144 4062 dev->evport_offset);
33a04454 4063
22a17780 4064 dprintk("event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
de920430 4065 ev, data_mask, dev->cur_ioport->io1.minimum,
31df7144 4066 dev->evport_offset);
33a04454 4067
4068 if (ev == 0x00 || ev == 0xff)
4069 return IRQ_HANDLED;
4070
31df7144 4071 for (i = 0; dev->event_types[i].mask; i++) {
33a04454 4072
31df7144
MD
4073 if ((data_mask & dev->event_types[i].data) !=
4074 dev->event_types[i].data)
33a04454 4075 continue;
4076
31df7144 4077 if (!(mask & dev->event_types[i].mask))
33a04454 4078 continue;
4079
31df7144
MD
4080 for (j = 0; dev->event_types[i].events[j].event; j++) {
4081 if (ev == dev->event_types[i].events[j].data) {
33a04454 4082 device_event =
31df7144 4083 dev->event_types[i].events[j].event;
4eeb5022
MD
4084 /* some events may require ignoring */
4085 if (!device_event)
4086 return IRQ_HANDLED;
33a04454 4087 goto found;
4088 }
4089 }
4090 }
3eb8749a
MD
4091 /* Still not able to decode the event try to pass
4092 * it over to the minidriver
4093 */
31df7144 4094 if (dev->handle_irq && dev->handle_irq(data_mask, ev) == 0)
3eb8749a
MD
4095 return IRQ_HANDLED;
4096
de920430
MD
4097 dprintk("unknown event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
4098 ev, data_mask, dev->cur_ioport->io1.minimum,
31df7144 4099 dev->evport_offset);
33a04454 4100 return IRQ_HANDLED;
4101
4102found:
1549ee6f 4103 sony_laptop_report_input_event(device_event);
de920430 4104 acpi_bus_generate_proc_event(dev->acpi_dev, 1, device_event);
7b153f36 4105 sonypi_compat_report_event(device_event);
33a04454 4106 return IRQ_HANDLED;
4107}
4108
4109/*****************
4110 *
4111 * ACPI driver
4112 *
4113 *****************/
4114static int sony_pic_remove(struct acpi_device *device, int type)
4115{
4116 struct sony_pic_ioport *io, *tmp_io;
4117 struct sony_pic_irq *irq, *tmp_irq;
4118
4119 if (sony_pic_disable(device)) {
50f581a4 4120 pr_err("Couldn't disable device\n");
33a04454 4121 return -ENXIO;
4122 }
4123
4124 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
fd1caaed
MD
4125 release_region(spic_dev.cur_ioport->io1.minimum,
4126 spic_dev.cur_ioport->io1.address_length);
4127 if (spic_dev.cur_ioport->io2.minimum)
4128 release_region(spic_dev.cur_ioport->io2.minimum,
4129 spic_dev.cur_ioport->io2.address_length);
33a04454 4130
015a916f
MD
4131 sonypi_compat_exit();
4132
1549ee6f 4133 sony_laptop_remove_input();
33a04454 4134
49a11dea 4135 /* pf attrs */
4136 sysfs_remove_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
4137 sony_pf_remove();
4138
33a04454 4139 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
4140 list_del(&io->list);
4141 kfree(io);
4142 }
4143 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
4144 list_del(&irq->list);
4145 kfree(irq);
4146 }
4147 spic_dev.cur_ioport = NULL;
4148 spic_dev.cur_irq = NULL;
4149
f6119b02 4150 dprintk(SONY_PIC_DRIVER_NAME " removed.\n");
33a04454 4151 return 0;
4152}
4153
4154static int sony_pic_add(struct acpi_device *device)
4155{
4156 int result;
4157 struct sony_pic_ioport *io, *tmp_io;
4158 struct sony_pic_irq *irq, *tmp_irq;
4159
50f581a4 4160 pr_info("%s v%s\n", SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
33a04454 4161
4162 spic_dev.acpi_dev = device;
4163 strcpy(acpi_device_class(device), "sony/hotkey");
de920430 4164 sony_pic_detect_device_type(&spic_dev);
9f9f0761 4165 mutex_init(&spic_dev.lock);
33a04454 4166
4167 /* read _PRS resources */
4168 result = sony_pic_possible_resources(device);
4169 if (result) {
50f581a4 4170 pr_err("Unable to read possible resources\n");
33a04454 4171 goto err_free_resources;
4172 }
4173
4174 /* setup input devices and helper fifo */
2e4d242c 4175 result = sony_laptop_setup_input(device);
33a04454 4176 if (result) {
50f581a4 4177 pr_err("Unable to create input devices\n");
33a04454 4178 goto err_free_resources;
4179 }
4180
015a916f
MD
4181 if (sonypi_compat_init())
4182 goto err_remove_input;
4183
33a04454 4184 /* request io port */
fd1caaed
MD
4185 list_for_each_entry_reverse(io, &spic_dev.ioports, list) {
4186 if (request_region(io->io1.minimum, io->io1.address_length,
c8440336 4187 "Sony Programmable I/O Device")) {
fd1caaed
MD
4188 dprintk("I/O port1: 0x%.4x (0x%.4x) + 0x%.2x\n",
4189 io->io1.minimum, io->io1.maximum,
4190 io->io1.address_length);
4191 /* Type 1 have 2 ioports */
4192 if (io->io2.minimum) {
4193 if (request_region(io->io2.minimum,
4194 io->io2.address_length,
c8440336 4195 "Sony Programmable I/O Device")) {
fd1caaed
MD
4196 dprintk("I/O port2: 0x%.4x (0x%.4x) + 0x%.2x\n",
4197 io->io2.minimum, io->io2.maximum,
4198 io->io2.address_length);
4199 spic_dev.cur_ioport = io;
4200 break;
4201 }
4202 else {
4203 dprintk("Unable to get I/O port2: "
4204 "0x%.4x (0x%.4x) + 0x%.2x\n",
4205 io->io2.minimum, io->io2.maximum,
4206 io->io2.address_length);
4207 release_region(io->io1.minimum,
4208 io->io1.address_length);
4209 }
4210 }
4211 else {
4212 spic_dev.cur_ioport = io;
4213 break;
4214 }
33a04454 4215 }
4216 }
4217 if (!spic_dev.cur_ioport) {
50f581a4 4218 pr_err("Failed to request_region\n");
33a04454 4219 result = -ENODEV;
015a916f 4220 goto err_remove_compat;
33a04454 4221 }
4222
4223 /* request IRQ */
fd1caaed 4224 list_for_each_entry_reverse(irq, &spic_dev.interrupts, list) {
33a04454 4225 if (!request_irq(irq->irq.interrupts[0], sony_pic_irq,
6a0d89c2 4226 0, "sony-laptop", &spic_dev)) {
33a04454 4227 dprintk("IRQ: %d - triggering: %d - "
4228 "polarity: %d - shr: %d\n",
4229 irq->irq.interrupts[0],
4230 irq->irq.triggering,
4231 irq->irq.polarity,
4232 irq->irq.sharable);
4233 spic_dev.cur_irq = irq;
4234 break;
4235 }
4236 }
4237 if (!spic_dev.cur_irq) {
50f581a4 4238 pr_err("Failed to request_irq\n");
33a04454 4239 result = -ENODEV;
4240 goto err_release_region;
4241 }
4242
4243 /* set resource status _SRS */
4244 result = sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
4245 if (result) {
50f581a4 4246 pr_err("Couldn't enable device\n");
33a04454 4247 goto err_free_irq;
4248 }
4249
49a11dea 4250 spic_dev.bluetooth_power = -1;
4251 /* create device attributes */
4252 result = sony_pf_add();
4253 if (result)
4254 goto err_disable_device;
4255
4256 result = sysfs_create_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
4257 if (result)
4258 goto err_remove_pf;
4259
33a04454 4260 return 0;
4261
49a11dea 4262err_remove_pf:
4263 sony_pf_remove();
4264
4265err_disable_device:
4266 sony_pic_disable(device);
4267
33a04454 4268err_free_irq:
4269 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
4270
4271err_release_region:
fd1caaed
MD
4272 release_region(spic_dev.cur_ioport->io1.minimum,
4273 spic_dev.cur_ioport->io1.address_length);
4274 if (spic_dev.cur_ioport->io2.minimum)
4275 release_region(spic_dev.cur_ioport->io2.minimum,
4276 spic_dev.cur_ioport->io2.address_length);
33a04454 4277
015a916f
MD
4278err_remove_compat:
4279 sonypi_compat_exit();
4280
33a04454 4281err_remove_input:
1549ee6f 4282 sony_laptop_remove_input();
33a04454 4283
4284err_free_resources:
4285 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
4286 list_del(&io->list);
4287 kfree(io);
4288 }
4289 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
4290 list_del(&irq->list);
4291 kfree(irq);
4292 }
4293 spic_dev.cur_ioport = NULL;
4294 spic_dev.cur_irq = NULL;
4295
4296 return result;
4297}
4298
3567a4e2 4299#ifdef CONFIG_PM_SLEEP
bb6b98d6 4300static int sony_pic_suspend(struct device *dev)
33a04454 4301{
bb6b98d6 4302 if (sony_pic_disable(to_acpi_device(dev)))
33a04454 4303 return -ENXIO;
4304 return 0;
4305}
4306
bb6b98d6 4307static int sony_pic_resume(struct device *dev)
33a04454 4308{
bb6b98d6
RW
4309 sony_pic_enable(to_acpi_device(dev),
4310 spic_dev.cur_ioport, spic_dev.cur_irq);
33a04454 4311 return 0;
4312}
3567a4e2 4313#endif
33a04454 4314
bb6b98d6
RW
4315static SIMPLE_DEV_PM_OPS(sony_pic_pm, sony_pic_suspend, sony_pic_resume);
4316
1ba90e3a
TR
4317static const struct acpi_device_id sony_pic_device_ids[] = {
4318 {SONY_PIC_HID, 0},
4319 {"", 0},
4320};
4321
33a04454 4322static struct acpi_driver sony_pic_driver = {
4323 .name = SONY_PIC_DRIVER_NAME,
4324 .class = SONY_PIC_CLASS,
1ba90e3a 4325 .ids = sony_pic_device_ids,
33a04454 4326 .owner = THIS_MODULE,
4327 .ops = {
4328 .add = sony_pic_add,
4329 .remove = sony_pic_remove,
33a04454 4330 },
bb6b98d6 4331 .drv.pm = &sony_pic_pm,
33a04454 4332};
4333
4334static struct dmi_system_id __initdata sonypi_dmi_table[] = {
4335 {
4336 .ident = "Sony Vaio",
4337 .matches = {
4338 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
4339 DMI_MATCH(DMI_PRODUCT_NAME, "PCG-"),
4340 },
4341 },
4342 {
4343 .ident = "Sony Vaio",
4344 .matches = {
4345 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
4346 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-"),
4347 },
4348 },
4349 { }
4350};
4351
59b19106 4352static int __init sony_laptop_init(void)
7f09c432 4353{
33a04454 4354 int result;
4355
4356 if (!no_spic && dmi_check_system(sonypi_dmi_table)) {
4357 result = acpi_bus_register_driver(&sony_pic_driver);
4358 if (result) {
50f581a4 4359 pr_err("Unable to register SPIC driver\n");
33a04454 4360 goto out;
4361 }
5e6f9725 4362 spic_drv_registered = 1;
33a04454 4363 }
4364
4365 result = acpi_bus_register_driver(&sony_nc_driver);
4366 if (result) {
50f581a4 4367 pr_err("Unable to register SNC driver\n");
33a04454 4368 goto out_unregister_pic;
4369 }
4370
4371 return 0;
4372
4373out_unregister_pic:
5e6f9725 4374 if (spic_drv_registered)
33a04454 4375 acpi_bus_unregister_driver(&sony_pic_driver);
4376out:
4377 return result;
7f09c432
SP
4378}
4379
59b19106 4380static void __exit sony_laptop_exit(void)
7f09c432 4381{
59b19106 4382 acpi_bus_unregister_driver(&sony_nc_driver);
5e6f9725 4383 if (spic_drv_registered)
33a04454 4384 acpi_bus_unregister_driver(&sony_pic_driver);
7f09c432
SP
4385}
4386
59b19106 4387module_init(sony_laptop_init);
4388module_exit(sony_laptop_exit);