blob: 0bee6c2f8864f2a94c2e28232563d6778f17d354 [file] [log] [blame]
Stelian Pop7f09c432007-01-13 23:04:31 +01001/*
malattia@linux.it33a04452007-04-09 19:26:03 +02002 * ACPI Sony Notebook Control Driver (SNC and SPIC)
Stelian Pop7f09c432007-01-13 23:04:31 +01003 *
4 * Copyright (C) 2004-2005 Stelian Pop <stelian@popies.net>
Mattia Dongili37418342009-03-26 21:58:24 +09005 * Copyright (C) 2007-2009 Mattia Dongili <malattia@linux.it>
Stelian Pop7f09c432007-01-13 23:04:31 +01006 *
7 * Parts of this driver inspired from asus_acpi.c and ibm_acpi.c
8 * which are copyrighted by their respective authors.
9 *
malattia@linux.it33a04452007-04-09 19:26:03 +020010 * 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 *
Marcin Garskidb9551702007-10-19 23:22:11 +020017 * Copyright (C) 2001-2002 AlcĂ´ve <www.alcove.com>
malattia@linux.it33a04452007-04-09 19:26:03 +020018 *
19 * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
20 *
21 * Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp>
22 *
23 * Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp>
24 *
25 * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
26 *
27 * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
28 *
Stelian Pop7f09c432007-01-13 23:04:31 +010029 * 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
Joe Perches50f581a2011-03-29 15:21:48 -070045#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
46
Stelian Pop7f09c432007-01-13 23:04:31 +010047#include <linux/kernel.h>
48#include <linux/module.h>
49#include <linux/moduleparam.h>
50#include <linux/init.h>
51#include <linux/types.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010052#include <linux/backlight.h>
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010053#include <linux/platform_device.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010054#include <linux/err.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020055#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Stelian Pop7f09c432007-01-13 23:04:31 +010064#include <acpi/acpi_drivers.h>
65#include <acpi/acpi_bus.h>
66#include <asm/uaccess.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020067#include <linux/sonypi.h>
malattia@linux.it1ce82c12007-04-28 23:34:36 +090068#include <linux/sony-laptop.h>
Matthew Garrett6cc056b2009-03-26 21:58:15 +090069#include <linux/rfkill.h>
Mattia Dongilia64e62a2007-05-01 11:19:53 +090070#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +020071#include <linux/poll.h>
72#include <linux/miscdevice.h>
73#endif
Stelian Pop7f09c432007-01-13 23:04:31 +010074
Joe Perches50f581a2011-03-29 15:21:48 -070075#define dprintk(fmt, ...) \
76do { \
77 if (debug) \
78 pr_warn(fmt, ##__VA_ARGS__); \
malattia@linux.itb9a218b2007-04-09 10:19:06 +020079} while (0)
80
Mattia Dongili425ef5d2008-01-14 18:05:44 +090081#define SONY_LAPTOP_DRIVER_VERSION "0.6"
Alessandro Guido50f62af2007-01-13 23:04:34 +010082
malattia@linux.it33a04452007-04-09 19:26:03 +020083#define SONY_NC_CLASS "sony-nc"
84#define SONY_NC_HID "SNY5001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020085#define SONY_NC_DRIVER_NAME "Sony Notebook Control Driver"
malattia@linux.it33a04452007-04-09 19:26:03 +020086
87#define SONY_PIC_CLASS "sony-pic"
88#define SONY_PIC_HID "SNY6001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020089#define SONY_PIC_DRIVER_NAME "Sony Programmable IO Control Driver"
Stelian Pop7f09c432007-01-13 23:04:31 +010090
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010091MODULE_AUTHOR("Stelian Pop, Mattia Dongili");
malattia@linux.it33a04452007-04-09 19:26:03 +020092MODULE_DESCRIPTION("Sony laptop extras driver (SPIC and SNC ACPI device)");
Stelian Pop7f09c432007-01-13 23:04:31 +010093MODULE_LICENSE("GPL");
malattia@linux.it33a04452007-04-09 19:26:03 +020094MODULE_VERSION(SONY_LAPTOP_DRIVER_VERSION);
Stelian Pop7f09c432007-01-13 23:04:31 +010095
96static int debug;
97module_param(debug, int, 0);
98MODULE_PARM_DESC(debug, "set this to 1 (and RTFM) if you want to help "
Len Browna02d1c12007-02-07 15:34:02 -050099 "the development of this driver");
Stelian Pop7f09c432007-01-13 23:04:31 +0100100
malattia@linux.it33a04452007-04-09 19:26:03 +0200101static 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,
malattia@linux.it7b153f32007-04-09 19:31:25 +0200109 "set this if you want to enable backward compatibility mode");
malattia@linux.it33a04452007-04-09 19:26:03 +0200110
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
malattia@linux.it5f3d2892007-04-28 23:18:45 +0900116static 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
Mattia Dongilia64e62a2007-05-01 11:19:53 +0900122#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +0200123static 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
Josh Boyer6fe6ae52011-11-02 14:32:00 -0400130static int kbd_backlight = 1;
Mattia Dongilibf155712011-02-19 11:52:31 +0900131module_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
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200143#ifdef CONFIG_PM_SLEEP
Marco Chiapperodf410d52011-04-05 23:38:34 +0900144static void sony_nc_kbd_backlight_resume(void);
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +0200145static void sony_nc_thermal_resume(void);
146#endif
Marco Chiapperoaa339242012-05-19 22:35:56 +0900147static 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);
Marco Chiapperodf410d52011-04-05 23:38:34 +0900150
Marco Chiappero967145a2012-05-19 22:35:50 +0900151static 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
Marco Chiappero49f000a2012-05-19 22:35:51 +0900155static int sony_nc_thermal_setup(struct platform_device *pd);
156static void sony_nc_thermal_cleanup(struct platform_device *pd);
Marco Chiappero49f000a2012-05-19 22:35:51 +0900157
Marco Chiappero54535d02012-05-19 22:35:54 +0900158static int sony_nc_lid_resume_setup(struct platform_device *pd);
159static void sony_nc_lid_resume_cleanup(struct platform_device *pd);
160
Marco Chiappero88bf1702012-05-19 22:35:55 +0900161static int sony_nc_highspeed_charging_setup(struct platform_device *pd);
162static void sony_nc_highspeed_charging_cleanup(struct platform_device *pd);
163
Marco Chiappero2b8791c2012-05-19 22:36:00 +0900164static int sony_nc_touchpad_setup(struct platform_device *pd,
165 unsigned int handle);
166static void sony_nc_touchpad_cleanup(struct platform_device *pd);
167
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900168enum sony_nc_rfkill {
169 SONY_WIFI,
170 SONY_BLUETOOTH,
171 SONY_WWAN,
172 SONY_WIMAX,
Johannes Berg19d337d2009-06-02 13:01:37 +0200173 N_SONY_RFKILL,
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900174};
175
Mattia Dongilid5a664a2009-12-17 00:08:35 +0900176static int sony_rfkill_handle;
Johannes Berg19d337d2009-06-02 13:01:37 +0200177static struct rfkill *sony_rfkill_devices[N_SONY_RFKILL];
178static int sony_rfkill_address[N_SONY_RFKILL] = {0x300, 0x500, 0x700, 0x900};
Marco Chiapperoa1e73632012-05-19 22:35:57 +0900179static int sony_nc_rfkill_setup(struct acpi_device *device,
180 unsigned int handle);
Marco Chiappero5fe801a2012-05-19 22:35:48 +0900181static void sony_nc_rfkill_cleanup(void);
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900182static void sony_nc_rfkill_update(void);
183
malattia@linux.it1549ee62007-04-09 10:19:08 +0200184/*********** 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;
Stefani Seibold45465482009-12-21 14:37:26 -0800191 struct kfifo fifo;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200192 spinlock_t fifo_lock;
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800193 struct timer_list release_key_timer;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200194};
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900195
malattia@linux.it1549ee62007-04-09 10:19:08 +0200196static 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
Mattia Dongilibc57f862007-07-20 02:01:57 +0900205/* Correspondance table between sonypi events
206 * and input layer indexes in the keymap
207 */
208static int sony_laptop_input_index[] = {
Mattia Dongili3eb87492008-01-14 18:05:45 +0900209 -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 */
Matthew Garrett9b578962009-03-26 21:58:14 +0900273 51, /* 64 SONYPI_EVENT_CD_EJECT_PRESSED */
Matthew Garrett45c79422009-03-26 21:58:16 +0900274 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 */
Harald Jenny1cae7102009-03-26 21:58:18 +0900278 56, /* 69 SONYPI_EVENT_VOLUME_INC_PRESSED */
279 57, /* 70 SONYPI_EVENT_VOLUME_DEC_PRESSED */
280 -1, /* 71 SONYPI_EVENT_BRIGHTNESS_PRESSED */
Mattia Dongili4f924ba2009-12-17 00:08:33 +0900281 58, /* 72 SONYPI_EVENT_MEDIA_PRESSED */
Mattia Dongili1a7d9462011-01-08 18:47:29 +0900282 59, /* 72 SONYPI_EVENT_VENDOR_PRESSED */
Mattia Dongilibc57f862007-07-20 02:01:57 +0900283};
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 */
Mattia Dongili3eb87492008-01-14 18:05:45 +0900335 KEY_ZOOMIN, /* 49 SONYPI_EVENT_ZOOM_IN_PRESSED */
Matthew Garrett9b578962009-03-26 21:58:14 +0900336 KEY_ZOOMOUT, /* 50 SONYPI_EVENT_ZOOM_OUT_PRESSED */
Matthew Garrett45c79422009-03-26 21:58:16 +0900337 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 */
Harald Jenny1cae7102009-03-26 21:58:18 +0900342 KEY_VOLUMEUP, /* 56 SONYPI_EVENT_VOLUME_INC_PRESSED */
343 KEY_VOLUMEDOWN, /* 57 SONYPI_EVENT_VOLUME_DEC_PRESSED */
Mattia Dongili4f924ba2009-12-17 00:08:33 +0900344 KEY_MEDIA, /* 58 SONYPI_EVENT_MEDIA_PRESSED */
Mattia Dongili1a7d9462011-01-08 18:47:29 +0900345 KEY_VENDOR, /* 59 SONYPI_EVENT_VENDOR_PRESSED */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200346};
347
348/* release buttons after a short delay if pressed */
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800349static void do_sony_laptop_release_key(unsigned long unused)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200350{
351 struct sony_laptop_keypress kp;
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800352 unsigned long flags;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200353
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800354 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)) {
malattia@linux.it1549ee62007-04-09 10:19:08 +0200358 input_report_key(kp.dev, kp.key, 0);
359 input_sync(kp.dev);
360 }
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800361
362 /* If there is something in the fifo schedule next release. */
363 if (kfifo_len(&sony_laptop_input.fifo) != 0)
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800364 mod_timer(&sony_laptop_input.release_key_timer,
365 jiffies + msecs_to_jiffies(10));
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800366
367 spin_unlock_irqrestore(&sony_laptop_input.fifo_lock, flags);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200368}
malattia@linux.it1549ee62007-04-09 10:19:08 +0200369
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200370/* forward event to the input subsystem */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200371static 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 };
John Hughes747a5622011-11-16 19:51:57 +0100376 int scancode = -1;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200377
Almer S. Tigelaara83021a2009-04-12 11:26:28 +0000378 if (event == SONYPI_EVENT_FNKEY_RELEASED ||
379 event == SONYPI_EVENT_ANYBUTTON_RELEASED) {
malattia@linux.it1549ee62007-04-09 10:19:08 +0200380 /* 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:
Adrian Bunkd399d132008-02-20 00:59:03 +0200406 if (event >= ARRAY_SIZE(sony_laptop_input_index)) {
Mattia Dongilibc57f862007-07-20 02:01:57 +0900407 dprintk("sony_laptop_report_input_event, event not known: %d\n", event);
408 break;
409 }
John Hughes747a5622011-11-16 19:51:57 +0100410 if ((scancode = sony_laptop_input_index[event]) != -1) {
411 kp.key = sony_laptop_input_keycode_map[scancode];
Mattia Dongilibc57f862007-07-20 02:01:57 +0900412 if (kp.key != KEY_UNKNOWN)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200413 kp.dev = key_dev;
Mattia Dongilibc57f862007-07-20 02:01:57 +0900414 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200415 break;
416 }
417
418 if (kp.dev) {
John Hughes747a5622011-11-16 19:51:57 +0100419 /* 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);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200423 input_report_key(kp.dev, kp.key, 1);
424 input_sync(kp.dev);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200425
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800426 /* schedule key release */
427 kfifo_in_locked(&sony_laptop_input.fifo,
428 (unsigned char *)&kp, sizeof(kp),
429 &sony_laptop_input.fifo_lock);
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800430 mod_timer(&sony_laptop_input.release_key_timer,
431 jiffies + msecs_to_jiffies(10));
malattia@linux.it1549ee62007-04-09 10:19:08 +0200432 } else
433 dprintk("unknown input event %.2x\n", event);
434}
435
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500436static int sony_laptop_setup_input(struct acpi_device *acpi_device)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200437{
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);
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800449 error = kfifo_alloc(&sony_laptop_input.fifo,
450 SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -0800451 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -0700452 pr_err("kfifo_alloc failed\n");
malattia@linux.it1549ee62007-04-09 10:19:08 +0200453 goto err_dec_users;
454 }
455
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800456 setup_timer(&sony_laptop_input.release_key_timer,
457 do_sony_laptop_release_key, 0);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200458
459 /* input keys */
460 key_dev = input_allocate_device();
461 if (!key_dev) {
462 error = -ENOMEM;
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800463 goto err_free_kfifo;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200464 }
465
466 key_dev->name = "Sony Vaio Keys";
467 key_dev->id.bustype = BUS_ISA;
468 key_dev->id.vendor = PCI_VENDOR_ID_SONY;
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500469 key_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200470
471 /* Initialize the Input Drivers: special keys */
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800472 input_set_capability(key_dev, EV_MSC, MSC_SCAN);
473
474 __set_bit(EV_KEY, key_dev->evbit);
Mattia Dongilibc57f862007-07-20 02:01:57 +0900475 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;
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800478 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);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200481
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;
John Hughes747a5622011-11-16 19:51:57 +0100498 jog_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200499
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800500 input_set_capability(jog_dev, EV_KEY, BTN_MIDDLE);
501 input_set_capability(jog_dev, EV_REL, REL_WHEEL);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200502
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
malattia@linux.it1549ee62007-04-09 10:19:08 +0200522err_free_kfifo:
Stefani Seibold45465482009-12-21 14:37:26 -0800523 kfifo_free(&sony_laptop_input.fifo);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200524
525err_dec_users:
526 atomic_dec(&sony_laptop_input.users);
527 return error;
528}
529
530static void sony_laptop_remove_input(void)
531{
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800532 struct sony_laptop_keypress kp = { NULL };
533
534 /* Cleanup only after the last user has gone */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200535 if (!atomic_dec_and_test(&sony_laptop_input.users))
536 return;
537
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800538 del_timer_sync(&sony_laptop_input.release_key_timer);
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800539
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 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200549
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
Stefani Seibold45465482009-12-21 14:37:26 -0800559 kfifo_free(&sony_laptop_input.fifo);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200560}
561
malattia@linux.it56b87562007-04-09 10:19:05 +0200562/*********** 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
Axel Lin08db2b32010-07-01 10:18:01 +0800613 platform_device_unregister(sony_pf_device);
malattia@linux.it56b87562007-04-09 10:19:05 +0200614 platform_driver_unregister(&sony_pf_driver);
615}
616
617/*********** SNC (SNY5001) Device ***********/
618
malattia@linux.it33a04452007-04-09 19:26:03 +0200619/* 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
malattia@linux.it59b19102007-04-09 10:19:04 +0200626static ssize_t sony_nc_sysfs_show(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500627 char *);
malattia@linux.it59b19102007-04-09 10:19:04 +0200628static ssize_t sony_nc_sysfs_store(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500629 const char *, size_t);
Mattia Dongili156c2212007-02-12 22:01:07 +0100630static int boolean_validate(const int, const int);
631static int brightness_default_validate(const int, const int);
632
malattia@linux.it59b19102007-04-09 10:19:04 +0200633struct sony_nc_value {
Len Browna02d1c12007-02-07 15:34:02 -0500634 char *name; /* name of the entry */
635 char **acpiget; /* names of the ACPI get function */
636 char **acpiset; /* names of the ACPI set function */
Mattia Dongili156c2212007-02-12 22:01:07 +0100637 int (*validate)(const int, const int); /* input/output validation */
Len Browna02d1c12007-02-07 15:34:02 -0500638 int value; /* current setting */
639 int valid; /* Has ever been set */
640 int debug; /* active only in debug mode ? */
Lucas De Marchic8440332011-03-17 17:18:22 -0300641 struct device_attribute devattr; /* sysfs attribute */
Stelian Pop7f09c432007-01-13 23:04:31 +0100642};
643
malattia@linux.it59b19102007-04-09 10:19:04 +0200644#define SNC_HANDLE_NAMES(_name, _values...) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100645 static char *snc_##_name[] = { _values, NULL }
646
malattia@linux.it59b19102007-04-09 10:19:04 +0200647#define SNC_HANDLE(_name, _getters, _setters, _validate, _debug) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100648 { \
649 .name = __stringify(_name), \
650 .acpiget = _getters, \
651 .acpiset = _setters, \
Mattia Dongili156c2212007-02-12 22:01:07 +0100652 .validate = _validate, \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100653 .debug = _debug, \
malattia@linux.it59b19102007-04-09 10:19:04 +0200654 .devattr = __ATTR(_name, 0, sony_nc_sysfs_show, sony_nc_sysfs_store), \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100655 }
656
malattia@linux.it59b19102007-04-09 10:19:04 +0200657#define SNC_HANDLE_NULL { .name = NULL }
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100658
malattia@linux.it59b19102007-04-09 10:19:04 +0200659SNC_HANDLE_NAMES(fnkey_get, "GHKE");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100660
malattia@linux.it59b19102007-04-09 10:19:04 +0200661SNC_HANDLE_NAMES(brightness_def_get, "GPBR");
662SNC_HANDLE_NAMES(brightness_def_set, "SPBR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100663
malattia@linux.it59b19102007-04-09 10:19:04 +0200664SNC_HANDLE_NAMES(cdpower_get, "GCDP");
665SNC_HANDLE_NAMES(cdpower_set, "SCDP", "CDPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100666
malattia@linux.it59b19102007-04-09 10:19:04 +0200667SNC_HANDLE_NAMES(audiopower_get, "GAZP");
668SNC_HANDLE_NAMES(audiopower_set, "AZPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100669
malattia@linux.it59b19102007-04-09 10:19:04 +0200670SNC_HANDLE_NAMES(lanpower_get, "GLNP");
671SNC_HANDLE_NAMES(lanpower_set, "LNPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100672
Mattia Dongili044847e2007-07-16 02:34:33 +0900673SNC_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
malattia@linux.it59b19102007-04-09 10:19:04 +0200681SNC_HANDLE_NAMES(PID_get, "GPID");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100682
malattia@linux.it59b19102007-04-09 10:19:04 +0200683SNC_HANDLE_NAMES(CTR_get, "GCTR");
684SNC_HANDLE_NAMES(CTR_set, "SCTR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100685
malattia@linux.it59b19102007-04-09 10:19:04 +0200686SNC_HANDLE_NAMES(PCR_get, "GPCR");
687SNC_HANDLE_NAMES(PCR_set, "SPCR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100688
malattia@linux.it59b19102007-04-09 10:19:04 +0200689SNC_HANDLE_NAMES(CMI_get, "GCMI");
690SNC_HANDLE_NAMES(CMI_set, "SCMI");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100691
malattia@linux.it59b19102007-04-09 10:19:04 +0200692static struct sony_nc_value sony_nc_values[] = {
693 SNC_HANDLE(brightness_default, snc_brightness_def_get,
Mattia Dongili156c2212007-02-12 22:01:07 +0100694 snc_brightness_def_set, brightness_default_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200695 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,
Mattia Dongili156c2212007-02-12 22:01:07 +0100698 boolean_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200699 SNC_HANDLE(lanpower, snc_lanpower_get, snc_lanpower_set,
Mattia Dongili156c2212007-02-12 22:01:07 +0100700 boolean_validate, 1),
Mattia Dongili044847e2007-07-16 02:34:33 +0900701 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),
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100707 /* unknown methods */
malattia@linux.it59b19102007-04-09 10:19:04 +0200708 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
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100713};
714
malattia@linux.it59b19102007-04-09 10:19:04 +0200715static acpi_handle sony_nc_acpi_handle;
716static struct acpi_device *sony_nc_acpi_device = NULL;
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100717
Mattia Dongilid78865c2007-02-07 20:01:56 +0100718/*
719 * acpi_evaluate_object wrappers
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900720 * all useful calls into SNC methods take one or zero parameters and return
721 * integers or arrays.
Mattia Dongilid78865c2007-02-07 20:01:56 +0100722 */
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900723static union acpi_object *__call_snc_method(acpi_handle handle, char *method,
724 u64 *value)
Stelian Pop7f09c432007-01-13 23:04:31 +0100725{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900726 union acpi_object *result = NULL;
727 struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL };
Stelian Pop7f09c432007-01-13 23:04:31 +0100728 acpi_status status;
729
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900730 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);
Mattia Dongiliae188712012-05-19 22:35:49 +0900738 dprintk("__call_snc_method: [%s:0x%.8x%.8x]\n", method,
739 (unsigned int)(*value >> 32),
740 (unsigned int)*value & 0xffffffff);
741 } else {
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900742 status = acpi_evaluate_object(handle, method, NULL, &output);
Mattia Dongiliae188712012-05-19 22:35:49 +0900743 dprintk("__call_snc_method: [%s]\n", method);
744 }
Stelian Pop7f09c432007-01-13 23:04:31 +0100745
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900746 if (ACPI_FAILURE(status)) {
747 pr_err("Failed to evaluate [%s]\n", method);
748 return NULL;
Stelian Pop7f09c432007-01-13 23:04:31 +0100749 }
750
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900751 result = (union acpi_object *) output.pointer;
752 if (!result)
753 dprintk("No return object [%s]\n", method);
Stelian Pop7f09c432007-01-13 23:04:31 +0100754
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900755 return result;
Stelian Pop7f09c432007-01-13 23:04:31 +0100756}
757
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900758static int sony_nc_int_call(acpi_handle handle, char *name, int *value,
759 int *result)
Stelian Pop7f09c432007-01-13 23:04:31 +0100760{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900761 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);
Stelian Pop7f09c432007-01-13 23:04:31 +0100767
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900768 if (!object)
769 return -EINVAL;
Stelian Pop7f09c432007-01-13 23:04:31 +0100770
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900771 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;
Stelian Pop7f09c432007-01-13 23:04:31 +0100776 }
777
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900778 if (result)
779 *result = object->integer.value;
Stelian Pop7f09c432007-01-13 23:04:31 +0100780
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900781 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{
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900789 int ret = 0;
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900790 size_t len = len;
791 union acpi_object *object = __call_snc_method(handle, name, value);
792
793 if (!object)
794 return -EINVAL;
795
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900796 if (object->type == ACPI_TYPE_BUFFER) {
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900797 len = MIN(buflen, object->buffer.length);
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900798 memcpy(buffer, object->buffer.pointer, len);
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900799
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900800 } else if (object->type == ACPI_TYPE_INTEGER) {
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900801 len = MIN(buflen, sizeof(object->integer.value));
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900802 memcpy(buffer, &object->integer.value, len);
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900803
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900804 } else {
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900805 pr_warn("Invalid acpi_object: expected 0x%x got 0x%x\n",
806 ACPI_TYPE_BUFFER, object->type);
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900807 ret = -EINVAL;
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900808 }
809
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900810 kfree(object);
Mattia Dongilidcbeec22012-12-21 07:21:09 +0900811 return ret;
Stelian Pop7f09c432007-01-13 23:04:31 +0100812}
813
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900814struct sony_nc_handles {
815 u16 cap[0x10];
816 struct device_attribute devattr;
817};
818
Dan Carpenterf11113b2011-02-26 15:54:27 +0300819static struct sony_nc_handles *handles;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900820
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)
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900837{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900838 int i, r, result, arg;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900839
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900840 handles = kzalloc(sizeof(*handles), GFP_KERNEL);
Dan Carpenter31f00752011-02-26 15:55:24 +0300841 if (!handles)
842 return -ENOMEM;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900843
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900844 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900845 arg = i + 0x20;
846 r = sony_nc_int_call(sony_nc_acpi_handle, "SN00", &arg,
847 &result);
848 if (!r) {
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900849 dprintk("caching handle 0x%.4x (offset: 0x%.2x)\n",
850 result, i);
851 handles->cap[i] = result;
Mattia Dongili56e6e712011-02-19 11:52:25 +0900852 }
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900853 }
854
Mattia Dongili855b8bc92011-04-05 23:38:35 +0900855 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 }
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900867 }
868
869 return 0;
870}
871
872static int sony_nc_handles_cleanup(struct platform_device *pd)
873{
874 if (handles) {
Mattia Dongili855b8bc92011-04-05 23:38:35 +0900875 if (debug)
876 device_remove_file(&pd->dev, &handles->devattr);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900877 kfree(handles);
878 handles = NULL;
879 }
880 return 0;
881}
882
883static int sony_find_snc_handle(int handle)
884{
885 int i;
Mattia Dongilifef34862011-04-02 19:00:44 +0900886
887 /* not initialized yet, return early */
Mattia Dongilibab70842012-05-19 22:35:52 +0900888 if (!handles || !handle)
889 return -EINVAL;
Mattia Dongilifef34862011-04-02 19:00:44 +0900890
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900891 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 }
Mattia Dongili56e6e712011-02-19 11:52:25 +0900898 dprintk("handle 0x%.4x not found\n", handle);
Mattia Dongilibab70842012-05-19 22:35:52 +0900899 return -EINVAL;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900900}
901
902static int sony_call_snc_handle(int handle, int argument, int *result)
903{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900904 int arg, ret = 0;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900905 int offset = sony_find_snc_handle(handle);
906
907 if (offset < 0)
Mattia Dongilibab70842012-05-19 22:35:52 +0900908 return offset;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900909
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900910 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);
Mattia Dongili56e6e712011-02-19 11:52:25 +0900913 return ret;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900914}
915
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100916/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200917 * sony_nc_values input/output validate functions
Mattia Dongili156c2212007-02-12 22:01:07 +0100918 */
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
951/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200952 * Sysfs show/store common to all sony_nc_values
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100953 */
malattia@linux.it59b19102007-04-09 10:19:04 +0200954static ssize_t sony_nc_sysfs_show(struct device *dev, struct device_attribute *attr,
Len Browna02d1c12007-02-07 15:34:02 -0500955 char *buffer)
Stelian Pop7f09c432007-01-13 23:04:31 +0100956{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900957 int value, ret = 0;
malattia@linux.it59b19102007-04-09 10:19:04 +0200958 struct sony_nc_value *item =
959 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100960
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100961 if (!*item->acpiget)
Stelian Pop7f09c432007-01-13 23:04:31 +0100962 return -EIO;
963
Mattia Dongiliebcef1b2012-05-19 22:35:46 +0900964 ret = sony_nc_int_call(sony_nc_acpi_handle, *item->acpiget, NULL,
965 &value);
966 if (ret < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +0100967 return -EIO;
968
Mattia Dongili156c2212007-02-12 22:01:07 +0100969 if (item->validate)
970 value = item->validate(SNC_VALIDATE_OUT, value);
971
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100972 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
Stelian Pop7f09c432007-01-13 23:04:31 +0100973}
974
malattia@linux.it59b19102007-04-09 10:19:04 +0200975static ssize_t sony_nc_sysfs_store(struct device *dev,
Len Browna02d1c12007-02-07 15:34:02 -0500976 struct device_attribute *attr,
977 const char *buffer, size_t count)
Stelian Pop7f09c432007-01-13 23:04:31 +0100978{
Dan Carpenterc7a29182012-06-09 13:18:13 +0900979 int value;
Mattia Dongili9e123372012-05-19 22:35:47 +0900980 int ret = 0;
malattia@linux.it59b19102007-04-09 10:19:04 +0200981 struct sony_nc_value *item =
982 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100983
984 if (!item->acpiset)
985 return -EIO;
986
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100987 if (count > 31)
988 return -EINVAL;
989
Dan Carpenterc7a29182012-06-09 13:18:13 +0900990 if (kstrtoint(buffer, 10, &value))
Mattia Dongili9e123372012-05-19 22:35:47 +0900991 return -EINVAL;
Stelian Pop7f09c432007-01-13 23:04:31 +0100992
Mattia Dongili156c2212007-02-12 22:01:07 +0100993 if (item->validate)
994 value = item->validate(SNC_VALIDATE_IN, value);
995
996 if (value < 0)
997 return value;
Stelian Pop7f09c432007-01-13 23:04:31 +0100998
Mattia Dongili9e123372012-05-19 22:35:47 +0900999 ret = sony_nc_int_call(sony_nc_acpi_handle, *item->acpiset,
Dan Carpenterc7a29182012-06-09 13:18:13 +09001000 &value, NULL);
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001001 if (ret < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +01001002 return -EIO;
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001003
Andrew Morton3f4f4612007-01-13 23:04:32 +01001004 item->value = value;
1005 item->valid = 1;
Stelian Pop7f09c432007-01-13 23:04:31 +01001006 return count;
1007}
1008
Mattia Dongilied3aa4b2007-02-07 20:01:54 +01001009
Mattia Dongilid78865c2007-02-07 20:01:56 +01001010/*
1011 * Backlight device
1012 */
Mattia Dongili62d2f232011-05-09 10:20:29 -04001013struct sony_backlight_props {
1014 struct backlight_device *dev;
1015 int handle;
Mattia Dongili014fc8f2012-06-09 13:18:11 +09001016 int cmd_base;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001017 u8 offset;
1018 u8 maxlvl;
1019};
1020struct sony_backlight_props sony_bl_props;
1021
Mattia Dongilid78865c2007-02-07 20:01:56 +01001022static int sony_backlight_update_status(struct backlight_device *bd)
Andrew Morton3f4f4612007-01-13 23:04:32 +01001023{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001024 int arg = bd->props.brightness + 1;
1025 return sony_nc_int_call(sony_nc_acpi_handle, "SBRT", &arg, NULL);
Andrew Morton3f4f4612007-01-13 23:04:32 +01001026}
1027
Mattia Dongilid78865c2007-02-07 20:01:56 +01001028static int sony_backlight_get_brightness(struct backlight_device *bd)
1029{
1030 int value;
1031
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001032 if (sony_nc_int_call(sony_nc_acpi_handle, "GBRT", NULL, &value))
Mattia Dongilid78865c2007-02-07 20:01:56 +01001033 return 0;
1034 /* brightness levels are 1-based, while backlight ones are 0-based */
1035 return value - 1;
1036}
1037
Mattia Dongili7751ab82011-02-19 11:52:32 +09001038static int sony_nc_get_brightness_ng(struct backlight_device *bd)
1039{
1040 int result;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001041 struct sony_backlight_props *sdev =
1042 (struct sony_backlight_props *)bl_get_data(bd);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001043
Mattia Dongili014fc8f2012-06-09 13:18:11 +09001044 sony_call_snc_handle(sdev->handle, sdev->cmd_base + 0x100, &result);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001045
Mattia Dongili62d2f232011-05-09 10:20:29 -04001046 return (result & 0xff) - sdev->offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001047}
1048
1049static int sony_nc_update_status_ng(struct backlight_device *bd)
1050{
1051 int value, result;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001052 struct sony_backlight_props *sdev =
1053 (struct sony_backlight_props *)bl_get_data(bd);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001054
Mattia Dongili62d2f232011-05-09 10:20:29 -04001055 value = bd->props.brightness + sdev->offset;
Mattia Dongili014fc8f2012-06-09 13:18:11 +09001056 if (sony_call_snc_handle(sdev->handle, sdev->cmd_base | (value << 0x10),
1057 &result))
Mattia Dongili6192fa72011-04-05 23:38:36 +09001058 return -EIO;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001059
Mattia Dongili6192fa72011-04-05 23:38:36 +09001060 return value;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001061}
1062
Lionel Debrouxacc24722010-11-16 14:14:02 +01001063static const struct backlight_ops sony_backlight_ops = {
Mattia Dongili7751ab82011-02-19 11:52:32 +09001064 .options = BL_CORE_SUSPENDRESUME,
Len Browna02d1c12007-02-07 15:34:02 -05001065 .update_status = sony_backlight_update_status,
1066 .get_brightness = sony_backlight_get_brightness,
Mattia Dongilid78865c2007-02-07 20:01:56 +01001067};
Mattia Dongili7751ab82011-02-19 11:52:32 +09001068static 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};
Mattia Dongilid78865c2007-02-07 20:01:56 +01001073
1074/*
Mattia Dongili6315fd12007-07-16 02:34:35 +09001075 * New SNC-only Vaios event mapping to driver known keys
1076 */
1077struct sony_nc_event {
1078 u8 data;
1079 u8 event;
1080};
1081
Matthew Garrett45c79422009-03-26 21:58:16 +09001082static struct sony_nc_event sony_100_events[] = {
Matthew Garrett9b578962009-03-26 21:58:14 +09001083 { 0x90, SONYPI_EVENT_PKEY_P1 },
1084 { 0x10, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthias Welwarsky6479efb2009-04-01 22:10:45 +09001085 { 0x91, SONYPI_EVENT_PKEY_P2 },
Matthew Garrett9b578962009-03-26 21:58:14 +09001086 { 0x11, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001087 { 0x81, SONYPI_EVENT_FNKEY_F1 },
1088 { 0x01, SONYPI_EVENT_FNKEY_RELEASED },
Anton Veretenenkof5acf5e2009-03-26 22:44:26 +09001089 { 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 },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001095 { 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 },
Marco Chiappero2e526312012-05-19 22:35:59 +09001101 { 0x88, SONYPI_EVENT_FNKEY_F8 },
1102 { 0x08, SONYPI_EVENT_FNKEY_RELEASED },
Matthew Garrett9b578962009-03-26 21:58:14 +09001103 { 0x89, SONYPI_EVENT_FNKEY_F9 },
1104 { 0x09, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001105 { 0x8A, SONYPI_EVENT_FNKEY_F10 },
1106 { 0x0A, SONYPI_EVENT_FNKEY_RELEASED },
Marco Chiappero2e526312012-05-19 22:35:59 +09001107 { 0x8B, SONYPI_EVENT_FNKEY_F11 },
1108 { 0x0B, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001109 { 0x8C, SONYPI_EVENT_FNKEY_F12 },
1110 { 0x0C, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili1a7d9462011-01-08 18:47:29 +09001111 { 0x9d, SONYPI_EVENT_ZOOM_PRESSED },
1112 { 0x1d, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthew Garrett9b578962009-03-26 21:58:14 +09001113 { 0x9f, SONYPI_EVENT_CD_EJECT_PRESSED },
1114 { 0x1f, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili4f924ba2009-12-17 00:08:33 +09001115 { 0xa1, SONYPI_EVENT_MEDIA_PRESSED },
1116 { 0x21, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili1a7d9462011-01-08 18:47:29 +09001117 { 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 },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001123 { 0, 0 },
1124};
1125
Matthew Garrett45c79422009-03-26 21:58:16 +09001126static 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 },
Matthew Garrett45c79422009-03-26 21:58:16 +09001139 { 0x87, SONYPI_EVENT_SETTINGKEY_PRESSED },
1140 { 0x07, SONYPI_EVENT_ANYBUTTON_RELEASED },
1141 { 0, 0 },
1142};
1143
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001144static 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
Mattia Dongili6315fd12007-07-16 02:34:35 +09001177/*
Mattia Dongilid78865c2007-02-07 20:01:56 +01001178 * ACPI callbacks
1179 */
Mattia Dongili4069d6f2012-06-09 13:18:08 +09001180enum event_types {
1181 HOTKEY = 1,
Marco Chiapperobb384b52012-06-09 13:18:09 +09001182 KILLSWITCH,
1183 GFX_SWITCH
Mattia Dongili4069d6f2012-06-09 13:18:08 +09001184};
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001185static void sony_nc_notify(struct acpi_device *device, u32 event)
Stelian Pop7f09c432007-01-13 23:04:31 +01001186{
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001187 u32 real_ev = event;
1188 u8 ev_type = 0;
1189 dprintk("sony_nc_notify, event: 0x%.2x\n", event);
Mattia Dongili6315fd12007-07-16 02:34:35 +09001190
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001191 if (event >= 0x90) {
1192 unsigned int result = 0;
1193 unsigned int arg = 0;
1194 unsigned int handle = 0;
1195 unsigned int offset = event - 0x90;
Mattia Dongili6315fd12007-07-16 02:34:35 +09001196
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001197 if (offset >= ARRAY_SIZE(handles->cap)) {
1198 pr_err("Event 0x%x outside of capabilities list\n",
1199 event);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001200 return;
Matthew Garrett9b578962009-03-26 21:58:14 +09001201 }
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001202 handle = handles->cap[offset];
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001203
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001204 /* list of handles known for generating events */
1205 switch (handle) {
1206 /* hotkey event */
1207 case 0x0100:
1208 case 0x0127:
Mattia Dongili4069d6f2012-06-09 13:18:08 +09001209 ev_type = HOTKEY;
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001210 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 */
Mattia Dongili4069d6f2012-06-09 13:18:08 +09001229 ev_type = KILLSWITCH;
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001230 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;
1238
Marco Chiapperobb384b52012-06-09 13:18:09 +09001239 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
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001257 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 */
Mattia Dongili4069d6f2012-06-09 13:18:08 +09001269 ev_type = HOTKEY;
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001270 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);
Stelian Pop7f09c432007-01-13 23:04:31 +01001277}
1278
1279static acpi_status sony_walk_callback(acpi_handle handle, u32 level,
1280 void *context, void **return_value)
1281{
Lin Ming30823732008-12-16 16:59:35 +08001282 struct acpi_device_info *info;
Stelian Pop7f09c432007-01-13 23:04:31 +01001283
Bob Moore15b8dd52009-06-29 13:39:29 +08001284 if (ACPI_SUCCESS(acpi_get_object_info(handle, &info))) {
Joe Perches50f581a2011-03-29 15:21:48 -07001285 pr_warn("method: name: %4.4s, args %X\n",
Lin Ming30823732008-12-16 16:59:35 +08001286 (char *)&info->name, info->param_count);
1287
Bob Moore15b8dd52009-06-29 13:39:29 +08001288 kfree(info);
Lin Ming30823732008-12-16 16:59:35 +08001289 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001290
1291 return AE_OK;
1292}
1293
Mattia Dongilid78865c2007-02-07 20:01:56 +01001294/*
1295 * ACPI device
1296 */
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001297static void sony_nc_function_setup(struct acpi_device *device,
1298 struct platform_device *pf_device)
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001299{
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001300 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;
Marco Chiappero2b8791c2012-05-19 22:36:00 +09001325 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;
Marco Chiappero967145a2012-05-19 22:35:50 +09001333 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;
Marco Chiappero54535d02012-05-19 22:35:54 +09001341 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;
Marco Chiappero49f000a2012-05-19 22:35:51 +09001347 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;
Marco Chiappero88bf1702012-05-19 22:35:55 +09001353 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;
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001359 case 0x0124:
1360 case 0x0135:
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001361 result = sony_nc_rfkill_setup(device, handle);
1362 if (result)
1363 pr_err("couldn't set up rfkill support (%d)\n",
1364 result);
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001365 break;
1366 case 0x0137:
Marco Chiapperoaa339242012-05-19 22:35:56 +09001367 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);
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001372 break;
1373 default:
1374 continue;
1375 }
1376 }
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001377
1378 /* Enable all events */
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001379 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}
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001384
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001385static void sony_nc_function_cleanup(struct platform_device *pd)
1386{
1387 unsigned int i, result, bitmask, handle;
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001388
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001389 /* 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) {
Marco Chiappero2b8791c2012-05-19 22:36:00 +09001402 case 0x0105:
1403 case 0x0148:
1404 sony_nc_touchpad_cleanup(pd);
1405 break;
Marco Chiappero967145a2012-05-19 22:35:50 +09001406 case 0x0115:
1407 case 0x0136:
1408 case 0x013f:
1409 sony_nc_battery_care_cleanup(pd);
1410 break;
Marco Chiappero54535d02012-05-19 22:35:54 +09001411 case 0x0119:
1412 sony_nc_lid_resume_cleanup(pd);
1413 break;
Marco Chiappero49f000a2012-05-19 22:35:51 +09001414 case 0x0122:
1415 sony_nc_thermal_cleanup(pd);
1416 break;
Marco Chiappero88bf1702012-05-19 22:35:55 +09001417 case 0x0131:
1418 sony_nc_highspeed_charging_cleanup(pd);
1419 break;
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001420 case 0x0124:
1421 case 0x0135:
1422 sony_nc_rfkill_cleanup();
1423 break;
1424 case 0x0137:
Marco Chiapperoaa339242012-05-19 22:35:56 +09001425 case 0x0143:
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001426 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
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02001437#ifdef CONFIG_PM_SLEEP
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001438static 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;
Marco Chiappero49f000a2012-05-19 22:35:51 +09001461 case 0x0122:
1462 sony_nc_thermal_resume();
1463 break;
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001464 case 0x0124:
1465 case 0x0135:
1466 sony_nc_rfkill_update();
1467 break;
1468 case 0x0137:
Marco Chiapperoaa339242012-05-19 22:35:56 +09001469 case 0x0143:
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001470 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);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001482}
1483
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02001484static int sony_nc_resume(struct device *dev)
Mattia Dongilid78865c2007-02-07 20:01:56 +01001485{
malattia@linux.it59b19102007-04-09 10:19:04 +02001486 struct sony_nc_value *item;
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001487 acpi_handle handle;
Mattia Dongilid78865c2007-02-07 20:01:56 +01001488
malattia@linux.it59b19102007-04-09 10:19:04 +02001489 for (item = sony_nc_values; item->name; item++) {
Mattia Dongilid78865c2007-02-07 20:01:56 +01001490 int ret;
1491
1492 if (!item->valid)
1493 continue;
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001494 ret = sony_nc_int_call(sony_nc_acpi_handle, *item->acpiset,
1495 &item->value, NULL);
Mattia Dongilid78865c2007-02-07 20:01:56 +01001496 if (ret < 0) {
Joe Perches50f581a2011-03-29 15:21:48 -07001497 pr_err("%s: %d\n", __func__, ret);
Mattia Dongilid78865c2007-02-07 20:01:56 +01001498 break;
1499 }
1500 }
Mattia Dongili6315fd12007-07-16 02:34:35 +09001501
Matthew Garrett82734bf2009-03-26 21:58:13 +09001502 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
1503 &handle))) {
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001504 int arg = 1;
1505 if (sony_nc_int_call(sony_nc_acpi_handle, "ECON", &arg, NULL))
Matthew Garrett82734bf2009-03-26 21:58:13 +09001506 dprintk("ECON Method failed\n");
1507 }
1508
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001509 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
Marco Chiappero5fe801a2012-05-19 22:35:48 +09001510 &handle)))
1511 sony_nc_function_resume();
Marco Chiapperodf410d52011-04-05 23:38:34 +09001512
Mattia Dongilid78865c2007-02-07 20:01:56 +01001513 return 0;
1514}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02001515#endif
Mattia Dongilid78865c2007-02-07 20:01:56 +01001516
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02001517static SIMPLE_DEV_PM_OPS(sony_nc_pm, NULL, sony_nc_resume);
1518
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001519static void sony_nc_rfkill_cleanup(void)
1520{
1521 int i;
1522
Johannes Berg19d337d2009-06-02 13:01:37 +02001523 for (i = 0; i < N_SONY_RFKILL; i++) {
1524 if (sony_rfkill_devices[i]) {
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001525 rfkill_unregister(sony_rfkill_devices[i]);
Johannes Berg19d337d2009-06-02 13:01:37 +02001526 rfkill_destroy(sony_rfkill_devices[i]);
1527 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001528 }
1529}
1530
Johannes Berg19d337d2009-06-02 13:01:37 +02001531static int sony_nc_rfkill_set(void *data, bool blocked)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001532{
1533 int result;
1534 int argument = sony_rfkill_address[(long) data] + 0x100;
1535
Johannes Berg19d337d2009-06-02 13:01:37 +02001536 if (!blocked)
Mattia Dongili3ec1c392012-12-21 07:21:08 +09001537 argument |= 0x070000;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001538
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001539 return sony_call_snc_handle(sony_rfkill_handle, argument, &result);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001540}
1541
Johannes Berg19d337d2009-06-02 13:01:37 +02001542static const struct rfkill_ops sony_rfkill_ops = {
1543 .set_block = sony_nc_rfkill_set,
1544};
1545
1546static int sony_nc_setup_rfkill(struct acpi_device *device,
1547 enum sony_nc_rfkill nc_type)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001548{
1549 int err = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001550 struct rfkill *rfk;
1551 enum rfkill_type type;
1552 const char *name;
Alan Jenkins50fab072009-09-24 20:15:24 +01001553 int result;
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001554 bool hwblock, swblock;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001555
Johannes Berg19d337d2009-06-02 13:01:37 +02001556 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;
Mattia Dongili53005a02009-04-12 11:26:31 +00001575 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001576
Johannes Berg19d337d2009-06-02 13:01:37 +02001577 rfk = rfkill_alloc(name, &device->dev, type,
1578 &sony_rfkill_ops, (void *)nc_type);
1579 if (!rfk)
1580 return -ENOMEM;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001581
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001582 if (sony_call_snc_handle(sony_rfkill_handle, 0x200, &result) < 0) {
1583 rfkill_destroy(rfk);
1584 return -1;
1585 }
Alan Jenkins50fab072009-09-24 20:15:24 +01001586 hwblock = !(result & 0x1);
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001587
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);
Alan Jenkins50fab072009-09-24 20:15:24 +01001597 rfkill_set_hw_state(rfk, hwblock);
1598
Johannes Berg19d337d2009-06-02 13:01:37 +02001599 err = rfkill_register(rfk);
1600 if (err) {
1601 rfkill_destroy(rfk);
1602 return err;
Mattia Dongili53005a02009-04-12 11:26:31 +00001603 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001604 sony_rfkill_devices[nc_type] = rfk;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001605 return err;
1606}
1607
Randy Dunlapa46a7802011-01-08 19:56:44 -08001608static void sony_nc_rfkill_update(void)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001609{
Johannes Berg19d337d2009-06-02 13:01:37 +02001610 enum sony_nc_rfkill i;
1611 int result;
1612 bool hwblock;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001613
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001614 sony_call_snc_handle(sony_rfkill_handle, 0x200, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001615 hwblock = !(result & 0x1);
1616
1617 for (i = 0; i < N_SONY_RFKILL; i++) {
1618 int argument = sony_rfkill_address[i];
1619
1620 if (!sony_rfkill_devices[i])
1621 continue;
1622
1623 if (hwblock) {
Johannes Berge1f8a192009-06-11 12:08:15 +02001624 if (rfkill_set_hw_state(sony_rfkill_devices[i], true)) {
1625 /* we already know we're blocked */
1626 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001627 continue;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001628 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001629
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001630 sony_call_snc_handle(sony_rfkill_handle, argument, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001631 rfkill_set_states(sony_rfkill_devices[i],
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001632 !(result & 0x2), false);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001633 }
1634}
1635
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001636static int sony_nc_rfkill_setup(struct acpi_device *device,
1637 unsigned int handle)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001638{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001639 u64 offset;
1640 int i;
1641 unsigned char buffer[32] = { 0 };
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001642
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001643 offset = sony_find_snc_handle(handle);
1644 sony_rfkill_handle = handle;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001645
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001646 i = sony_nc_buffer_call(sony_nc_acpi_handle, "SN06", &offset, buffer,
1647 32);
1648 if (i < 0)
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001649 return i;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001650
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001651 /* 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
Mattia Dongili528809c2009-12-17 00:08:36 +09001669 */
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001670 for (i = 0; i < ARRAY_SIZE(buffer); i++) {
Dmitry Torokhovc14973f2010-01-10 00:15:44 -08001671
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001672 if (buffer[i] == 0xff)
Dmitry Torokhovc14973f2010-01-10 00:15:44 -08001673 break;
1674
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001675 dprintk("Radio devices, found 0x%.2x\n", buffer[i]);
Mattia Dongili528809c2009-12-17 00:08:36 +09001676
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001677 if (buffer[i] == 0 && !sony_rfkill_devices[SONY_WIFI])
Mattia Dongili528809c2009-12-17 00:08:36 +09001678 sony_nc_setup_rfkill(device, SONY_WIFI);
1679
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001680 if (buffer[i] == 0x10 && !sony_rfkill_devices[SONY_BLUETOOTH])
Mattia Dongili528809c2009-12-17 00:08:36 +09001681 sony_nc_setup_rfkill(device, SONY_BLUETOOTH);
1682
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001683 if (((0xf0 & buffer[i]) == 0x20 ||
1684 (0xf0 & buffer[i]) == 0x50) &&
Mattia Dongili528809c2009-12-17 00:08:36 +09001685 !sony_rfkill_devices[SONY_WWAN])
1686 sony_nc_setup_rfkill(device, SONY_WWAN);
1687
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09001688 if (buffer[i] == 0x30 && !sony_rfkill_devices[SONY_WIMAX])
Mattia Dongili528809c2009-12-17 00:08:36 +09001689 sony_nc_setup_rfkill(device, SONY_WIMAX);
1690 }
Marco Chiapperoa1e73632012-05-19 22:35:57 +09001691 return 0;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001692}
1693
Mattia Dongilibf155712011-02-19 11:52:31 +09001694/* Keyboard backlight feature */
Mattia Dongilibf155712011-02-19 11:52:31 +09001695struct kbd_backlight {
Marco Chiapperoaa339242012-05-19 22:35:56 +09001696 unsigned int handle;
1697 unsigned int base;
1698 unsigned int mode;
1699 unsigned int timeout;
Mattia Dongilibf155712011-02-19 11:52:31 +09001700 struct device_attribute mode_attr;
1701 struct device_attribute timeout_attr;
1702};
1703
Marco Chiapperoaa339242012-05-19 22:35:56 +09001704static struct kbd_backlight *kbdbl_ctl;
Mattia Dongilibf155712011-02-19 11:52:31 +09001705
1706static ssize_t __sony_nc_kbd_backlight_mode_set(u8 value)
1707{
1708 int result;
1709
1710 if (value > 1)
1711 return -EINVAL;
1712
Marco Chiapperoaa339242012-05-19 22:35:56 +09001713 if (sony_call_snc_handle(kbdbl_ctl->handle,
1714 (value << 0x10) | (kbdbl_ctl->base), &result))
Mattia Dongilibf155712011-02-19 11:52:31 +09001715 return -EIO;
1716
Marco Chiapperodf410d52011-04-05 23:38:34 +09001717 /* Try to turn the light on/off immediately */
Marco Chiapperoaa339242012-05-19 22:35:56 +09001718 sony_call_snc_handle(kbdbl_ctl->handle,
1719 (value << 0x10) | (kbdbl_ctl->base + 0x100), &result);
Marco Chiapperodf410d52011-04-05 23:38:34 +09001720
Marco Chiapperoaa339242012-05-19 22:35:56 +09001721 kbdbl_ctl->mode = value;
Mattia Dongilibf155712011-02-19 11:52:31 +09001722
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
Mattia Dongili9e123372012-05-19 22:35:47 +09001736 if (kstrtoul(buffer, 10, &value))
Mattia Dongilibf155712011-02-19 11:52:31 +09001737 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;
Marco Chiapperoaa339242012-05-19 22:35:56 +09001750 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_ctl->mode);
Mattia Dongilibf155712011-02-19 11:52:31 +09001751 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
Marco Chiapperoaa339242012-05-19 22:35:56 +09001761 if (sony_call_snc_handle(kbdbl_ctl->handle, (value << 0x10) |
1762 (kbdbl_ctl->base + 0x200), &result))
Mattia Dongilibf155712011-02-19 11:52:31 +09001763 return -EIO;
1764
Marco Chiapperoaa339242012-05-19 22:35:56 +09001765 kbdbl_ctl->timeout = value;
Mattia Dongilibf155712011-02-19 11:52:31 +09001766
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
Mattia Dongili9e123372012-05-19 22:35:47 +09001780 if (kstrtoul(buffer, 10, &value))
Mattia Dongilibf155712011-02-19 11:52:31 +09001781 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;
Marco Chiapperoaa339242012-05-19 22:35:56 +09001794 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_ctl->timeout);
Mattia Dongilibf155712011-02-19 11:52:31 +09001795 return count;
1796}
1797
Marco Chiapperoaa339242012-05-19 22:35:56 +09001798static int sony_nc_kbd_backlight_setup(struct platform_device *pd,
1799 unsigned int handle)
Mattia Dongilibf155712011-02-19 11:52:31 +09001800{
1801 int result;
Marco Chiapperoaa339242012-05-19 22:35:56 +09001802 int ret = 0;
Mattia Dongilibf155712011-02-19 11:52:31 +09001803
Marco Chiapperoaa339242012-05-19 22:35:56 +09001804 /* 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;
Mattia Dongilibf155712011-02-19 11:52:31 +09001811
Marco Chiapperoaa339242012-05-19 22:35:56 +09001812 if ((handle == 0x0137 && !(result & 0x02)) ||
1813 !(result & 0x01)) {
1814 dprintk("no backlight keyboard found\n");
1815 return 0;
1816 }
Mattia Dongilibf155712011-02-19 11:52:31 +09001817
Marco Chiapperoaa339242012-05-19 22:35:56 +09001818 kbdbl_ctl = kzalloc(sizeof(*kbdbl_ctl), GFP_KERNEL);
1819 if (!kbdbl_ctl)
1820 return -ENOMEM;
Mattia Dongilibf155712011-02-19 11:52:31 +09001821
Marco Chiapperoaa339242012-05-19 22:35:56 +09001822 kbdbl_ctl->handle = handle;
1823 if (handle == 0x0137)
1824 kbdbl_ctl->base = 0x0C00;
1825 else
1826 kbdbl_ctl->base = 0x4000;
Mattia Dongilibf155712011-02-19 11:52:31 +09001827
Marco Chiapperoaa339242012-05-19 22:35:56 +09001828 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)
Mattia Dongilibf155712011-02-19 11:52:31 +09001842 goto outkzalloc;
1843
Marco Chiapperoaa339242012-05-19 22:35:56 +09001844 ret = device_create_file(&pd->dev, &kbdbl_ctl->timeout_attr);
1845 if (ret)
Mattia Dongilibf155712011-02-19 11:52:31 +09001846 goto outmode;
1847
1848 __sony_nc_kbd_backlight_mode_set(kbd_backlight);
1849 __sony_nc_kbd_backlight_timeout_set(kbd_backlight_timeout);
1850
Marco Chiapperoaa339242012-05-19 22:35:56 +09001851 return 0;
Mattia Dongilibf155712011-02-19 11:52:31 +09001852
1853outmode:
Marco Chiapperoaa339242012-05-19 22:35:56 +09001854 device_remove_file(&pd->dev, &kbdbl_ctl->mode_attr);
Mattia Dongilibf155712011-02-19 11:52:31 +09001855outkzalloc:
Marco Chiapperoaa339242012-05-19 22:35:56 +09001856 kfree(kbdbl_ctl);
1857 kbdbl_ctl = NULL;
1858 return ret;
Mattia Dongilibf155712011-02-19 11:52:31 +09001859}
1860
Marco Chiapperoaa339242012-05-19 22:35:56 +09001861static void sony_nc_kbd_backlight_cleanup(struct platform_device *pd)
Mattia Dongilibf155712011-02-19 11:52:31 +09001862{
Marco Chiapperoaa339242012-05-19 22:35:56 +09001863 if (kbdbl_ctl) {
Marco Chiapperodf410d52011-04-05 23:38:34 +09001864 int result;
1865
Marco Chiapperoaa339242012-05-19 22:35:56 +09001866 device_remove_file(&pd->dev, &kbdbl_ctl->mode_attr);
1867 device_remove_file(&pd->dev, &kbdbl_ctl->timeout_attr);
Marco Chiapperodf410d52011-04-05 23:38:34 +09001868
1869 /* restore the default hw behaviour */
Marco Chiapperoaa339242012-05-19 22:35:56 +09001870 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);
Marco Chiapperodf410d52011-04-05 23:38:34 +09001874
Marco Chiapperoaa339242012-05-19 22:35:56 +09001875 kfree(kbdbl_ctl);
1876 kbdbl_ctl = NULL;
Mattia Dongilibf155712011-02-19 11:52:31 +09001877 }
Mattia Dongilibf155712011-02-19 11:52:31 +09001878}
1879
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02001880#ifdef CONFIG_PM_SLEEP
Marco Chiapperodf410d52011-04-05 23:38:34 +09001881static void sony_nc_kbd_backlight_resume(void)
1882{
1883 int ignore = 0;
1884
Marco Chiapperoaa339242012-05-19 22:35:56 +09001885 if (!kbdbl_ctl)
Marco Chiapperodf410d52011-04-05 23:38:34 +09001886 return;
1887
Marco Chiapperoaa339242012-05-19 22:35:56 +09001888 if (kbdbl_ctl->mode == 0)
1889 sony_call_snc_handle(kbdbl_ctl->handle, kbdbl_ctl->base,
Marco Chiapperodf410d52011-04-05 23:38:34 +09001890 &ignore);
Marco Chiapperoaa339242012-05-19 22:35:56 +09001891
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);
Marco Chiapperodf410d52011-04-05 23:38:34 +09001896}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02001897#endif
Marco Chiapperodf410d52011-04-05 23:38:34 +09001898
Marco Chiappero967145a2012-05-19 22:35:50 +09001899struct 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 */
Mattia Dongili15aa5c72012-06-11 07:18:31 +09001930 cmd = 0;
Marco Chiappero967145a2012-05-19 22:35:50 +09001931
Mattia Dongili15aa5c72012-06-11 07:18:31 +09001932 if (value > 0) {
1933 if (value <= 50)
1934 cmd = 0x20;
Marco Chiappero967145a2012-05-19 22:35:50 +09001935
Mattia Dongili15aa5c72012-06-11 07:18:31 +09001936 else if (value <= 80)
1937 cmd = 0x10;
Marco Chiappero967145a2012-05-19 22:35:50 +09001938
Mattia Dongili15aa5c72012-06-11 07:18:31 +09001939 else if (value <= 100)
1940 cmd = 0x30;
Marco Chiappero967145a2012-05-19 22:35:50 +09001941
Mattia Dongili15aa5c72012-06-11 07:18:31 +09001942 else
1943 return -EINVAL;
Marco Chiappero967145a2012-05-19 22:35:50 +09001944
Mattia Dongili15aa5c72012-06-11 07:18:31 +09001945 /*
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);
Marco Chiappero967145a2012-05-19 22:35:50 +09001952
Mattia Dongili15aa5c72012-06-11 07:18:31 +09001953 cmd = (cmd | 0x1) << 0x10;
1954 }
1955
1956 if (sony_call_snc_handle(bcare_ctl->handle, cmd | 0x0100, &result))
Marco Chiappero967145a2012-05-19 22:35:50 +09001957 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
Marco Chiappero49f000a2012-05-19 22:35:51 +09002061struct 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;
Dan Carpenter56f4a9f2012-06-09 13:18:14 +09002151 int mode = sony_nc_thermal_mode_get();
Marco Chiappero49f000a2012-05-19 22:35:51 +09002152
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
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02002220#ifdef CONFIG_PM_SLEEP
Marco Chiappero49f000a2012-05-19 22:35:51 +09002221static 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}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02002228#endif
Marco Chiappero49f000a2012-05-19 22:35:51 +09002229
Marco Chiappero54535d02012-05-19 22:35:54 +09002230/* 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
Marco Chiappero88bf1702012-05-19 22:35:55 +09002358/* 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
Marco Chiappero2b8791c2012-05-19 22:36:00 +09002432/* 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
Mattia Dongili62d2f232011-05-09 10:20:29 -04002507static void sony_nc_backlight_ng_read_limits(int handle,
2508 struct sony_backlight_props *props)
2509{
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002510 u64 offset;
2511 int i;
Mattia Dongili014fc8f2012-06-09 13:18:11 +09002512 int lvl_table_len = 0;
Mattia Dongili62d2f232011-05-09 10:20:29 -04002513 u8 min = 0xff, max = 0x00;
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002514 unsigned char buffer[32] = { 0 };
Mattia Dongili62d2f232011-05-09 10:20:29 -04002515
2516 props->handle = handle;
2517 props->offset = 0;
2518 props->maxlvl = 0xff;
2519
2520 offset = sony_find_snc_handle(handle);
Mattia Dongili62d2f232011-05-09 10:20:29 -04002521
2522 /* try to read the boundaries from ACPI tables, if we fail the above
2523 * defaults should be reasonable
2524 */
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002525 i = sony_nc_buffer_call(sony_nc_acpi_handle, "SN06", &offset, buffer,
2526 32);
2527 if (i < 0)
Mattia Dongili62d2f232011-05-09 10:20:29 -04002528 return;
2529
Mattia Dongili014fc8f2012-06-09 13:18:11 +09002530 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
Mattia Dongili62d2f232011-05-09 10:20:29 -04002540 /* the buffer lists brightness levels available, brightness levels are
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002541 * from position 0 to 8 in the array, other values are used by ALS
2542 * control.
Mattia Dongili62d2f232011-05-09 10:20:29 -04002543 */
Mattia Dongili014fc8f2012-06-09 13:18:11 +09002544 for (i = 0; i < lvl_table_len && i < ARRAY_SIZE(buffer); i++) {
Mattia Dongili62d2f232011-05-09 10:20:29 -04002545
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002546 dprintk("Brightness level: %d\n", buffer[i]);
Mattia Dongili62d2f232011-05-09 10:20:29 -04002547
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002548 if (!buffer[i])
Mattia Dongili62d2f232011-05-09 10:20:29 -04002549 break;
2550
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002551 if (buffer[i] > max)
2552 max = buffer[i];
2553 if (buffer[i] < min)
2554 min = buffer[i];
Mattia Dongili62d2f232011-05-09 10:20:29 -04002555 }
2556 props->offset = min;
2557 props->maxlvl = max;
2558 dprintk("Brightness levels: min=%d max=%d\n", props->offset,
2559 props->maxlvl);
Mattia Dongili62d2f232011-05-09 10:20:29 -04002560}
2561
Mattia Dongili7751ab82011-02-19 11:52:32 +09002562static 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
Mattia Dongilia1071a52012-06-14 06:36:02 +09002569 if (sony_find_snc_handle(0x12f) >= 0) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09002570 ops = &sony_backlight_ng_ops;
Mattia Dongili014fc8f2012-06-09 13:18:11 +09002571 sony_bl_props.cmd_base = 0x0100;
Mattia Dongili62d2f232011-05-09 10:20:29 -04002572 sony_nc_backlight_ng_read_limits(0x12f, &sony_bl_props);
2573 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09002574
Mattia Dongilia1071a52012-06-14 06:36:02 +09002575 } else if (sony_find_snc_handle(0x137) >= 0) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09002576 ops = &sony_backlight_ng_ops;
Mattia Dongili014fc8f2012-06-09 13:18:11 +09002577 sony_bl_props.cmd_base = 0x0100;
Mattia Dongili62d2f232011-05-09 10:20:29 -04002578 sony_nc_backlight_ng_read_limits(0x137, &sony_bl_props);
2579 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09002580
Mattia Dongilia1071a52012-06-14 06:36:02 +09002581 } else if (sony_find_snc_handle(0x143) >= 0) {
Mattia Dongili014fc8f2012-06-09 13:18:11 +09002582 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
Mattia Dongili7751ab82011-02-19 11:52:32 +09002587 } 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;
Mattia Dongili62d2f232011-05-09 10:20:29 -04002598 sony_bl_props.dev = backlight_device_register("sony", NULL,
2599 &sony_bl_props,
2600 ops, &props);
Mattia Dongili7751ab82011-02-19 11:52:32 +09002601
Mattia Dongili62d2f232011-05-09 10:20:29 -04002602 if (IS_ERR(sony_bl_props.dev)) {
Joe Perches50f581a2011-03-29 15:21:48 -07002603 pr_warn("unable to register backlight device\n");
Mattia Dongili62d2f232011-05-09 10:20:29 -04002604 sony_bl_props.dev = NULL;
Mattia Dongili7751ab82011-02-19 11:52:32 +09002605 } else
Mattia Dongili62d2f232011-05-09 10:20:29 -04002606 sony_bl_props.dev->props.brightness =
2607 ops->get_brightness(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09002608}
2609
2610static void sony_nc_backlight_cleanup(void)
2611{
Mattia Dongili62d2f232011-05-09 10:20:29 -04002612 if (sony_bl_props.dev)
2613 backlight_device_unregister(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09002614}
2615
malattia@linux.it59b19102007-04-09 10:19:04 +02002616static int sony_nc_add(struct acpi_device *device)
Stelian Pop7f09c432007-01-13 23:04:31 +01002617{
2618 acpi_status status;
Andrew Morton8607c672007-03-06 02:29:42 -08002619 int result = 0;
Alessandro Guido50f62af2007-01-13 23:04:34 +01002620 acpi_handle handle;
malattia@linux.it56b87562007-04-09 10:19:05 +02002621 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01002622
Joe Perches50f581a2011-03-29 15:21:48 -07002623 pr_info("%s v%s\n", SONY_NC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.itf6119b02007-04-09 19:31:06 +02002624
malattia@linux.it59b19102007-04-09 10:19:04 +02002625 sony_nc_acpi_device = device;
malattia@linux.it33a04452007-04-09 19:26:03 +02002626 strcpy(acpi_device_class(device), "sony/hotkey");
Stelian Popc5611622007-01-13 23:04:37 +01002627
malattia@linux.it59b19102007-04-09 10:19:04 +02002628 sony_nc_acpi_handle = device->handle;
Stelian Pop7f09c432007-01-13 23:04:31 +01002629
Mattia Dongilib25b7322007-07-16 02:34:36 +09002630 /* 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
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09002639 result = sony_pf_add();
2640 if (result)
2641 goto outpresent;
2642
Stelian Pop7f09c432007-01-13 23:04:31 +01002643 if (debug) {
Mattia Dongilid6697932011-02-19 11:52:28 +09002644 status = acpi_walk_namespace(ACPI_TYPE_METHOD,
2645 sony_nc_acpi_handle, 1, sony_walk_callback,
2646 NULL, NULL, NULL);
Stelian Pop7f09c432007-01-13 23:04:31 +01002647 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07002648 pr_warn("unable to walk acpi resources\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01002649 result = -ENODEV;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09002650 goto outpresent;
Stelian Pop7f09c432007-01-13 23:04:31 +01002651 }
Stelian Popc5611622007-01-13 23:04:37 +01002652 }
Stelian Pop7f09c432007-01-13 23:04:31 +01002653
Mattia Dongilica3c2c72012-06-09 13:18:12 +09002654 result = sony_laptop_setup_input(device);
2655 if (result) {
2656 pr_err("Unable to create input devices\n");
2657 goto outplatform;
2658 }
2659
Matthew Garrett82734bf2009-03-26 21:58:13 +09002660 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
2661 &handle))) {
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09002662 int arg = 1;
2663 if (sony_nc_int_call(sony_nc_acpi_handle, "ECON", &arg, NULL))
Matthew Garrett82734bf2009-03-26 21:58:13 +09002664 dprintk("ECON Method failed\n");
2665 }
2666
Matthew Garrettbadf26f2009-03-26 21:58:12 +09002667 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
2668 &handle))) {
2669 dprintk("Doing SNC setup\n");
Marco Chiappero5fe801a2012-05-19 22:35:48 +09002670 /* retrieve the available handles */
Dan Carpenter7227ded2011-02-26 15:54:57 +03002671 result = sony_nc_handles_setup(sony_pf_device);
Marco Chiappero5fe801a2012-05-19 22:35:48 +09002672 if (!result)
2673 sony_nc_function_setup(device, sony_pf_device);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09002674 }
2675
malattia@linux.it1549ee62007-04-09 10:19:08 +02002676 /* setup input devices and helper fifo */
Alessandro Guido38cfc142008-11-12 23:03:28 +01002677 if (acpi_video_backlight_support()) {
Joe Perches50f581a2011-03-29 15:21:48 -07002678 pr_info("brightness ignored, must be controlled by ACPI video driver\n");
Mattia Dongili7751ab82011-02-19 11:52:32 +09002679 } else {
2680 sony_nc_backlight_setup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01002681 }
Stelian Pop7f09c432007-01-13 23:04:31 +01002682
malattia@linux.it56b87562007-04-09 10:19:05 +02002683 /* 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))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02002694 dprintk("Found %s getter: %s\n",
2695 item->name, *item->acpiget);
malattia@linux.it56b87562007-04-09 10:19:05 +02002696 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))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02002706 dprintk("Found %s setter: %s\n",
2707 item->name, *item->acpiset);
malattia@linux.it56b87562007-04-09 10:19:05 +02002708 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
Stelian Pop7f09c432007-01-13 23:04:31 +01002722 return 0;
2723
Mattia Dongilica3c2c72012-06-09 13:18:12 +09002724out_sysfs:
malattia@linux.it56b87562007-04-09 10:19:05 +02002725 for (item = sony_nc_values; item->name; ++item) {
2726 device_remove_file(&sony_pf_device->dev, &item->devattr);
2727 }
Mattia Dongili7751ab82011-02-19 11:52:32 +09002728 sony_nc_backlight_cleanup();
Marco Chiappero5fe801a2012-05-19 22:35:48 +09002729 sony_nc_function_cleanup(sony_pf_device);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09002730 sony_nc_handles_cleanup(sony_pf_device);
2731
Mattia Dongilica3c2c72012-06-09 13:18:12 +09002732outplatform:
2733 sony_laptop_remove_input();
2734
2735outpresent:
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09002736 sony_pf_remove();
2737
Mattia Dongilica3c2c72012-06-09 13:18:12 +09002738outwalk:
Matthew Garrett6cc056b2009-03-26 21:58:15 +09002739 sony_nc_rfkill_cleanup();
Stelian Pop7f09c432007-01-13 23:04:31 +01002740 return result;
2741}
2742
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002743static int sony_nc_remove(struct acpi_device *device)
Stelian Pop7f09c432007-01-13 23:04:31 +01002744{
malattia@linux.it56b87562007-04-09 10:19:05 +02002745 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01002746
Mattia Dongili7751ab82011-02-19 11:52:32 +09002747 sony_nc_backlight_cleanup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01002748
malattia@linux.it59b19102007-04-09 10:19:04 +02002749 sony_nc_acpi_device = NULL;
Stelian Popc5611622007-01-13 23:04:37 +01002750
malattia@linux.it56b87562007-04-09 10:19:05 +02002751 for (item = sony_nc_values; item->name; ++item) {
2752 device_remove_file(&sony_pf_device->dev, &item->devattr);
2753 }
2754
Marco Chiappero5fe801a2012-05-19 22:35:48 +09002755 sony_nc_function_cleanup(sony_pf_device);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09002756 sony_nc_handles_cleanup(sony_pf_device);
malattia@linux.it56b87562007-04-09 10:19:05 +02002757 sony_pf_remove();
malattia@linux.it1549ee62007-04-09 10:19:08 +02002758 sony_laptop_remove_input();
malattia@linux.itf6119b02007-04-09 19:31:06 +02002759 dprintk(SONY_NC_DRIVER_NAME " removed.\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01002760
2761 return 0;
2762}
2763
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002764static 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
malattia@linux.it59b19102007-04-09 10:19:04 +02002776static struct acpi_driver sony_nc_driver = {
2777 .name = SONY_NC_DRIVER_NAME,
2778 .class = SONY_NC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002779 .ids = sony_nc_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02002780 .owner = THIS_MODULE,
Len Browna02d1c12007-02-07 15:34:02 -05002781 .ops = {
malattia@linux.it59b19102007-04-09 10:19:04 +02002782 .add = sony_nc_add,
2783 .remove = sony_nc_remove,
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00002784 .notify = sony_nc_notify,
Len Browna02d1c12007-02-07 15:34:02 -05002785 },
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02002786 .drv.pm = &sony_nc_pm,
Andrew Morton3f4f4612007-01-13 23:04:32 +01002787};
2788
malattia@linux.it33a04452007-04-09 19:26:03 +02002789/*********** SPIC (SNY6001) Device ***********/
2790
2791#define SONYPI_DEVICE_TYPE1 0x00000001
2792#define SONYPI_DEVICE_TYPE2 0x00000002
2793#define SONYPI_DEVICE_TYPE3 0x00000004
2794
Mattia Dongili22a17782007-07-16 02:34:39 +09002795#define SONYPI_TYPE1_OFFSET 0x04
2796#define SONYPI_TYPE2_OFFSET 0x12
2797#define SONYPI_TYPE3_OFFSET 0x12
malattia@linux.it33a04452007-04-09 19:26:03 +02002798
malattia@linux.it33a04452007-04-09 19:26:03 +02002799struct sony_pic_ioport {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002800 struct acpi_resource_io io1;
2801 struct acpi_resource_io io2;
malattia@linux.it33a04452007-04-09 19:26:03 +02002802 struct list_head list;
2803};
2804
2805struct sony_pic_irq {
2806 struct acpi_resource_irq irq;
2807 struct list_head list;
2808};
2809
Mattia Dongilide920432008-01-14 18:05:43 +09002810struct sonypi_eventtypes {
2811 u8 data;
2812 unsigned long mask;
2813 struct sonypi_event *events;
2814};
2815
malattia@linux.it33a04452007-04-09 19:26:03 +02002816struct sony_pic_dev {
Mattia Dongili31df7142009-09-16 00:05:29 +09002817 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);
2825 int model;
2826 u16 evport_offset;
2827 u8 camera_power;
2828 u8 bluetooth_power;
2829 u8 wwan_power;
malattia@linux.it33a04452007-04-09 19:26:03 +02002830};
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
Alan Jenkins5e6f9722009-09-16 00:05:32 +09002837static int spic_drv_registered;
2838
malattia@linux.it33a04452007-04-09 19:26:03 +02002839/* 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 },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002888 { 0x40, SONYPI_EVENT_CAPTURE_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02002889 { 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 },
Harald Jenny1cae7102009-03-26 21:58:18 +09002925 { 0x20, SONYPI_EVENT_PKEY_P1 },
malattia@linux.it33a04452007-04-09 19:26:03 +02002926 { 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[] = {
Mattia Dongili4eeb5022011-02-19 11:52:27 +09002939 { 0x59, SONYPI_EVENT_IGNORE },
2940 { 0x5a, SONYPI_EVENT_IGNORE },
malattia@linux.it33a04452007-04-09 19:26:03 +02002941 { 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 },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002967 { 0x10, SONYPI_EVENT_ZOOM_IN_PRESSED },
2968 { 0x20, SONYPI_EVENT_ZOOM_OUT_PRESSED },
Harald Jenny1cae7102009-03-26 21:58:18 +09002969 { 0x04, SONYPI_EVENT_ZOOM_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02002970 { 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
Harald Jenny1cae7102009-03-26 21:58:18 +09003000/* 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
Mattia Dongilide920432008-01-14 18:05:43 +09003013static 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 },
Mattia Dongili3eb87492008-01-14 18:05:45 +09003050 { 0x05, SONYPI_PKEY_MASK, sonypi_pkeyev },
3051 { 0x05, SONYPI_ZOOM_MASK, sonypi_zoomev },
3052 { 0x05, SONYPI_CAPTURE_MASK, sonypi_captureev },
Harald Jenny1cae7102009-03-26 21:58:18 +09003053 { 0x05, SONYPI_PKEY_MASK, sonypi_volumeev },
3054 { 0x05, SONYPI_PKEY_MASK, sonypi_brightnessev },
Mattia Dongili3eb87492008-01-14 18:05:45 +09003055 { 0 },
Mattia Dongilide920432008-01-14 18:05:43 +09003056};
3057
Mattia Dongili3eb87492008-01-14 18:05:45 +09003058/* low level spic calls */
malattia@linux.it33a04452007-04-09 19:26:03 +02003059#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", \
Harvey Harrison6e574192008-04-29 00:59:20 -07003067 __FILE__, __func__, __LINE__); \
malattia@linux.it33a04452007-04-09 19:26:03 +02003068}
3069
3070static u8 sony_pic_call1(u8 dev)
3071{
3072 u8 v1, v2;
3073
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003074 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02003075 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003076 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);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09003079 dprintk("sony_pic_call1(0x%.2x): 0x%.4x\n", dev, (v2 << 8) | v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02003080 return v2;
3081}
3082
3083static u8 sony_pic_call2(u8 dev, u8 fn)
3084{
3085 u8 v1;
3086
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003087 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02003088 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003089 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
3090 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02003091 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003092 outb(fn, spic_dev.cur_ioport->io1.minimum);
3093 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09003094 dprintk("sony_pic_call2(0x%.2x - 0x%.2x): 0x%.4x\n", dev, fn, v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02003095 return v1;
3096}
3097
malattia@linux.it49a11de2007-04-09 19:28:56 +02003098static u8 sony_pic_call3(u8 dev, u8 fn, u8 v)
3099{
3100 u8 v1;
3101
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003102 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);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09003109 dprintk("sony_pic_call3(0x%.2x - 0x%.2x - 0x%.2x): 0x%.4x\n",
3110 dev, fn, v, v1);
malattia@linux.it49a11de2007-04-09 19:28:56 +02003111 return v1;
3112}
3113
Mattia Dongili3eb87492008-01-14 18:05:45 +09003114/*
3115 * minidrivers for SPIC models
3116 */
Mattia Dongilie93c8a62009-03-26 21:58:17 +09003117static int type3_handle_irq(const u8 data_mask, const u8 ev)
Mattia Dongili3eb87492008-01-14 18:05:45 +09003118{
3119 /*
3120 * 0x31 could mean we have to take some extra action and wait for
Mattia Dongilie93c8a62009-03-26 21:58:17 +09003121 * the next irq for some Type3 models, it will generate a new
Mattia Dongili3eb87492008-01-14 18:05:45 +09003122 * 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
Mattia Dongili3eb87492008-01-14 18:05:45 +09003136static 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) {
Mattia Dongili31df7142009-09-16 00:05:29 +09003143 dev->model = SONYPI_DEVICE_TYPE1;
3144 dev->evport_offset = SONYPI_TYPE1_OFFSET;
3145 dev->event_types = type1_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09003146 goto out;
3147 }
3148
3149 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3150 PCI_DEVICE_ID_INTEL_ICH6_1, NULL);
3151 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09003152 dev->model = SONYPI_DEVICE_TYPE2;
3153 dev->evport_offset = SONYPI_TYPE2_OFFSET;
3154 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09003155 goto out;
3156 }
3157
3158 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3159 PCI_DEVICE_ID_INTEL_ICH7_1, NULL);
3160 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09003161 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;
Mattia Dongili3eb87492008-01-14 18:05:45 +09003165 goto out;
3166 }
3167
3168 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3169 PCI_DEVICE_ID_INTEL_ICH8_4, NULL);
3170 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09003171 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;
Mattia Dongili3eb87492008-01-14 18:05:45 +09003175 goto out;
3176 }
3177
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09003178 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
3179 PCI_DEVICE_ID_INTEL_ICH9_1, NULL);
3180 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09003181 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;
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09003185 goto out;
3186 }
3187
Mattia Dongili3eb87492008-01-14 18:05:45 +09003188 /* default */
Mattia Dongili31df7142009-09-16 00:05:29 +09003189 dev->model = SONYPI_DEVICE_TYPE2;
3190 dev->evport_offset = SONYPI_TYPE2_OFFSET;
3191 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09003192
3193out:
3194 if (pcidev)
3195 pci_dev_put(pcidev);
3196
Joe Perches50f581a2011-03-29 15:21:48 -07003197 pr_info("detected Type%d model\n",
3198 dev->model == SONYPI_DEVICE_TYPE1 ? 1 :
3199 dev->model == SONYPI_DEVICE_TYPE2 ? 2 : 3);
Mattia Dongili3eb87492008-01-14 18:05:45 +09003200}
3201
malattia@linux.it49a11de2007-04-09 19:28:56 +02003202/* camera tests and poweron/poweroff */
3203#define SONYPI_CAMERA_PICTURE 5
malattia@linux.it49a11de2007-04-09 19:28:56 +02003204#define SONYPI_CAMERA_CONTROL 0x10
malattia@linux.ite3646322007-04-28 23:34:22 +09003205
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
malattia@linux.it49a11de2007-04-09 19:28:56 +02003233
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003234static int __sony_pic_camera_ready(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02003235{
3236 u8 v;
3237
3238 v = sony_pic_call2(0x8f, SONYPI_CAMERA_STATUS);
3239 return (v != 0xff && (v & SONYPI_CAMERA_STATUS_READY));
3240}
3241
malattia@linux.ite3646322007-04-28 23:34:22 +09003242static int __sony_pic_camera_off(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02003243{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09003244 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07003245 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09003246 return -ENODEV;
3247 }
3248
malattia@linux.it49a11de2007-04-09 19:28:56 +02003249 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE,
3250 SONYPI_CAMERA_MUTE_MASK),
3251 ITERATIONS_SHORT);
3252
malattia@linux.it5f3d2892007-04-28 23:18:45 +09003253 if (spic_dev.camera_power) {
3254 sony_pic_call2(0x91, 0);
3255 spic_dev.camera_power = 0;
3256 }
3257 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02003258}
3259
malattia@linux.ite3646322007-04-28 23:34:22 +09003260static int __sony_pic_camera_on(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02003261{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09003262 int i, j, x;
3263
3264 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07003265 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09003266 return -ENODEV;
3267 }
malattia@linux.it49a11de2007-04-09 19:28:56 +02003268
3269 if (spic_dev.camera_power)
malattia@linux.ite3646322007-04-28 23:34:22 +09003270 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02003271
3272 for (j = 5; j > 0; j--) {
3273
malattia@linux.it5f3d2892007-04-28 23:18:45 +09003274 for (x = 0; x < 100 && sony_pic_call2(0x91, 0x1); x++)
malattia@linux.it49a11de2007-04-09 19:28:56 +02003275 msleep(10);
3276 sony_pic_call1(0x93);
3277
3278 for (i = 400; i > 0; i--) {
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003279 if (__sony_pic_camera_ready())
malattia@linux.it49a11de2007-04-09 19:28:56 +02003280 break;
3281 msleep(10);
3282 }
3283 if (i)
3284 break;
3285 }
3286
3287 if (j == 0) {
Joe Perches50f581a2011-03-29 15:21:48 -07003288 pr_warn("failed to power on camera\n");
malattia@linux.ite3646322007-04-28 23:34:22 +09003289 return -ENODEV;
malattia@linux.it49a11de2007-04-09 19:28:56 +02003290 }
3291
3292 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTROL,
3293 0x5a),
3294 ITERATIONS_SHORT);
3295
3296 spic_dev.camera_power = 1;
malattia@linux.it5f3d2892007-04-28 23:18:45 +09003297 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02003298}
3299
malattia@linux.ite3646322007-04-28 23:34:22 +09003300/* 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) {
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003309 case SONY_PIC_COMMAND_SETCAMERA:
malattia@linux.ite3646322007-04-28 23:34:22 +09003310 if (value)
3311 __sony_pic_camera_on();
3312 else
3313 __sony_pic_camera_off();
3314 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003315 case SONY_PIC_COMMAND_SETCAMERABRIGHTNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09003316 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_BRIGHTNESS, value),
3317 ITERATIONS_SHORT);
3318 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003319 case SONY_PIC_COMMAND_SETCAMERACONTRAST:
malattia@linux.ite3646322007-04-28 23:34:22 +09003320 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTRAST, value),
3321 ITERATIONS_SHORT);
3322 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003323 case SONY_PIC_COMMAND_SETCAMERAHUE:
malattia@linux.ite3646322007-04-28 23:34:22 +09003324 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_HUE, value),
3325 ITERATIONS_SHORT);
3326 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003327 case SONY_PIC_COMMAND_SETCAMERACOLOR:
malattia@linux.ite3646322007-04-28 23:34:22 +09003328 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_COLOR, value),
3329 ITERATIONS_SHORT);
3330 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003331 case SONY_PIC_COMMAND_SETCAMERASHARPNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09003332 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_SHARPNESS, value),
3333 ITERATIONS_SHORT);
3334 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003335 case SONY_PIC_COMMAND_SETCAMERAPICTURE:
malattia@linux.ite3646322007-04-28 23:34:22 +09003336 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, value),
3337 ITERATIONS_SHORT);
3338 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09003339 case SONY_PIC_COMMAND_SETCAMERAAGC:
malattia@linux.ite3646322007-04-28 23:34:22 +09003340 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_AGC, value),
3341 ITERATIONS_SHORT);
3342 break;
3343 default:
Joe Perches50f581a2011-03-29 15:21:48 -07003344 pr_err("sony_pic_camera_command invalid: %d\n", command);
malattia@linux.ite3646322007-04-28 23:34:22 +09003345 break;
3346 }
3347 mutex_unlock(&spic_dev.lock);
3348 return 0;
3349}
3350EXPORT_SYMBOL(sony_pic_camera_command);
3351
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003352/* gprs/edge modem (SZ460N and SZ210P), thanks to Joshua Wise */
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09003353static void __sony_pic_set_wwanpower(u8 state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003354{
3355 state = !!state;
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09003356 if (spic_dev.wwan_power == state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003357 return;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003358 sony_pic_call2(0xB0, state);
Sergey Yanovich3ad1b7612009-03-26 21:58:21 +09003359 sony_pic_call1(0x82);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003360 spic_dev.wwan_power = state;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003361}
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
Mattia Dongili9e123372012-05-19 22:35:47 +09003371 if (kstrtoul(buffer, 10, &value))
3372 return -EINVAL;
3373
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09003374 mutex_lock(&spic_dev.lock);
3375 __sony_pic_set_wwanpower(value);
3376 mutex_unlock(&spic_dev.lock);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003377
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
malattia@linux.it49a11de2007-04-09 19:28:56 +02003391/* bluetooth subsystem power state */
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003392static void __sony_pic_set_bluetoothpower(u8 state)
malattia@linux.it49a11de2007-04-09 19:28:56 +02003393{
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
Mattia Dongili9e123372012-05-19 22:35:47 +09003410 if (kstrtoul(buffer, 10, &value))
3411 return -EINVAL;
3412
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003413 mutex_lock(&spic_dev.lock);
3414 __sony_pic_set_bluetoothpower(value);
3415 mutex_unlock(&spic_dev.lock);
malattia@linux.it49a11de2007-04-09 19:28:56 +02003416
3417 return count;
3418}
3419
3420static ssize_t sony_pic_bluetoothpower_show(struct device *dev,
3421 struct device_attribute *attr, char *buffer)
3422{
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003423 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;
malattia@linux.it49a11de2007-04-09 19:28:56 +02003428}
3429
3430/* fan speed */
3431/* FAN0 information (reverse engineered from ACPI tables) */
3432#define SONY_PIC_FAN0_STATUS 0x93
malattia@linux.it7b153f32007-04-09 19:31:25 +02003433static 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
malattia@linux.it49a11de2007-04-09 19:28:56 +02003443static 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
Mattia Dongili9e123372012-05-19 22:35:47 +09003451 if (kstrtoul(buffer, 10, &value))
3452 return -EINVAL;
3453
malattia@linux.it7b153f32007-04-09 19:31:25 +02003454 if (sony_pic_set_fanspeed(value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02003455 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;
malattia@linux.it7b153f32007-04-09 19:31:25 +02003464 if (sony_pic_get_fanspeed(&value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02003465 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
malattia@linux.it49a11de2007-04-09 19:28:56 +02003475static SPIC_ATTR(bluetoothpower, 0644);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003476static SPIC_ATTR(wwanpower, 0644);
malattia@linux.it49a11de2007-04-09 19:28:56 +02003477static SPIC_ATTR(fanspeed, 0644);
3478
3479static struct attribute *spic_attributes[] = {
malattia@linux.it49a11de2007-04-09 19:28:56 +02003480 &spic_attr_bluetoothpower.attr,
malattia@linux.it9476cdf2007-04-28 23:21:42 +09003481 &spic_attr_wwanpower.attr,
malattia@linux.it49a11de2007-04-09 19:28:56 +02003482 &spic_attr_fanspeed.attr,
3483 NULL
3484};
3485
3486static struct attribute_group spic_attribute_group = {
3487 .attrs = spic_attributes
3488};
3489
malattia@linux.it7b153f32007-04-09 19:31:25 +02003490/******** SONYPI compatibility **********/
Mattia Dongilia64e62a2007-05-01 11:19:53 +09003491#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +02003492
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;
Stefani Seibold45465482009-12-21 14:37:26 -08003510 struct kfifo fifo;
malattia@linux.it7b153f32007-04-09 19:31:25 +02003511 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{
Jonathan Corbet60aa4922009-02-01 14:52:56 -07003521 return fasync_helper(fd, filp, on, &sonypi_compat.fifo_async);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003522}
3523
3524static int sonypi_misc_release(struct inode *inode, struct file *file)
3525{
malattia@linux.it7b153f32007-04-09 19:31:25 +02003526 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 */
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09003533 unsigned long flags;
3534
Stefani Seibold45465482009-12-21 14:37:26 -08003535 spin_lock_irqsave(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09003536
malattia@linux.it7b153f32007-04-09 19:31:25 +02003537 if (atomic_inc_return(&sonypi_compat.open_count) == 1)
Stefani Seibolde64c0262009-12-21 14:37:28 -08003538 kfifo_reset(&sonypi_compat.fifo);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09003539
Stefani Seibold45465482009-12-21 14:37:26 -08003540 spin_unlock_irqrestore(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09003541
malattia@linux.it7b153f32007-04-09 19:31:25 +02003542 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
Stefani Seibold45465482009-12-21 14:37:26 -08003551 if ((kfifo_len(&sonypi_compat.fifo) == 0) &&
malattia@linux.it7b153f32007-04-09 19:31:25 +02003552 (file->f_flags & O_NONBLOCK))
3553 return -EAGAIN;
3554
3555 ret = wait_event_interruptible(sonypi_compat.fifo_proc_list,
Stefani Seibold45465482009-12-21 14:37:26 -08003556 kfifo_len(&sonypi_compat.fifo) != 0);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003557 if (ret)
3558 return ret;
3559
3560 while (ret < count &&
Stefani Seibold7acd72e2009-12-21 14:37:28 -08003561 (kfifo_out_locked(&sonypi_compat.fifo, &c, sizeof(c),
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08003562 &sonypi_compat.fifo_lock) == sizeof(c))) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02003563 if (put_user(c, buf++))
3564 return -EFAULT;
3565 ret++;
3566 }
3567
3568 if (ret > 0) {
3569 struct inode *inode = file->f_path.dentry->d_inode;
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);
Stefani Seibold45465482009-12-21 14:37:26 -08003579 if (kfifo_len(&sonypi_compat.fifo))
malattia@linux.it7b153f32007-04-09 19:31:25 +02003580 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
Alan Cox2b24ef02009-03-26 21:58:19 +09003595static long sonypi_misc_ioctl(struct file *fp, unsigned int cmd,
3596 unsigned long arg)
malattia@linux.it7b153f32007-04-09 19:31:25 +02003597{
3598 int ret = 0;
3599 void __user *argp = (void __user *)arg;
3600 u8 val8;
3601 u16 val16;
3602 int value;
3603
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003604 mutex_lock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003605 switch (cmd) {
3606 case SONYPI_IOCGBRT:
Mattia Dongili62d2f232011-05-09 10:20:29 -04003607 if (sony_bl_props.dev == NULL) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02003608 ret = -EIO;
3609 break;
3610 }
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09003611 if (sony_nc_int_call(sony_nc_acpi_handle, "GBRT", NULL,
3612 &value)) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02003613 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:
Mattia Dongili62d2f232011-05-09 10:20:29 -04003621 if (sony_bl_props.dev == NULL) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02003622 ret = -EIO;
3623 break;
3624 }
3625 if (copy_from_user(&val8, argp, sizeof(val8))) {
3626 ret = -EFAULT;
3627 break;
3628 }
Mattia Dongiliebcef1b2012-05-19 22:35:46 +09003629 value = (val8 >> 5) + 1;
3630 if (sony_nc_int_call(sony_nc_acpi_handle, "SBRT", &value,
3631 NULL)) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02003632 ret = -EIO;
3633 break;
3634 }
3635 /* sync the backlight device status */
Mattia Dongili62d2f232011-05-09 10:20:29 -04003636 sony_bl_props.dev->props.brightness =
3637 sony_backlight_get_brightness(sony_bl_props.dev);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003638 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 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003690 __sony_pic_set_bluetoothpower(val8);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003691 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 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003721 mutex_unlock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003722 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,
Alan Cox2b24ef02009-03-26 21:58:19 +09003732 .unlocked_ioctl = sonypi_misc_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003733 .llseek = noop_llseek,
malattia@linux.it7b153f32007-04-09 19:31:25 +02003734};
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{
Stefani Seibold7acd72e2009-12-21 14:37:28 -08003744 kfifo_in_locked(&sonypi_compat.fifo, (unsigned char *)&event,
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08003745 sizeof(event), &sonypi_compat.fifo_lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003746 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);
Stefani Seibold45465482009-12-21 14:37:26 -08003755 error =
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08003756 kfifo_alloc(&sonypi_compat.fifo, SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -08003757 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07003758 pr_err("kfifo_alloc failed\n");
Stefani Seibold45465482009-12-21 14:37:26 -08003759 return error;
malattia@linux.it7b153f32007-04-09 19:31:25 +02003760 }
3761
3762 init_waitqueue_head(&sonypi_compat.fifo_proc_list);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003763
3764 if (minor != -1)
3765 sonypi_misc_device.minor = minor;
3766 error = misc_register(&sonypi_misc_device);
3767 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07003768 pr_err("misc_register failed\n");
malattia@linux.it7b153f32007-04-09 19:31:25 +02003769 goto err_free_kfifo;
3770 }
3771 if (minor == -1)
Joe Perches50f581a2011-03-29 15:21:48 -07003772 pr_info("device allocated minor is %d\n",
3773 sonypi_misc_device.minor);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003774
3775 return 0;
3776
3777err_free_kfifo:
Stefani Seibold45465482009-12-21 14:37:26 -08003778 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003779 return error;
3780}
3781
3782static void sonypi_compat_exit(void)
3783{
3784 misc_deregister(&sonypi_misc_device);
Stefani Seibold45465482009-12-21 14:37:26 -08003785 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003786}
3787#else
3788static int sonypi_compat_init(void) { return 0; }
3789static void sonypi_compat_exit(void) { }
3790static void sonypi_compat_report_event(u8 event) { }
Mattia Dongilia64e62a2007-05-01 11:19:53 +09003791#endif /* CONFIG_SONYPI_COMPAT */
malattia@linux.it7b153f32007-04-09 19:31:25 +02003792
malattia@linux.it1549ee62007-04-09 10:19:08 +02003793/*
malattia@linux.it33a04452007-04-09 19:26:03 +02003794 * ACPI callbacks
malattia@linux.it1549ee62007-04-09 10:19:08 +02003795 */
malattia@linux.it33a04452007-04-09 19:26:03 +02003796static 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:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003804 {
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
malattia@linux.it33a04452007-04-09 19:26:03 +02003814 case ACPI_RESOURCE_TYPE_END_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003815 /* end IO enumeration */
malattia@linux.it33a04452007-04-09 19:26:03 +02003816 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]) {
Joe Perches50f581a2011-03-29 15:21:48 -07003832 pr_warn("Invalid IRQ %d\n",
3833 p->interrupts[i]);
malattia@linux.it33a04452007-04-09 19:26:03 +02003834 continue;
3835 }
3836 interrupt = kzalloc(sizeof(*interrupt),
3837 GFP_KERNEL);
3838 if (!interrupt)
3839 return AE_ERROR;
3840
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003841 list_add(&interrupt->list, &dev->interrupts);
malattia@linux.it33a04452007-04-09 19:26:03 +02003842 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;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003853 struct sony_pic_ioport *ioport =
3854 list_first_entry(&dev->ioports, struct sony_pic_ioport, list);
malattia@linux.it33a04452007-04-09 19:26:03 +02003855 if (!io) {
3856 dprintk("Blank IO resource\n");
3857 return AE_OK;
3858 }
3859
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003860 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 {
Joe Perches50f581a2011-03-29 15:21:48 -07003871 pr_err("Unknown SPIC Type, more than 2 IO Ports\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003872 return AE_ERROR;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003873 }
malattia@linux.it33a04452007-04-09 19:26:03 +02003874 return AE_OK;
3875 }
3876 default:
3877 dprintk("Resource %d isn't an IRQ nor an IO port\n",
Joe Perches50f581a2011-03-29 15:21:48 -07003878 resource->type);
malattia@linux.it33a04452007-04-09 19:26:03 +02003879
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) {
Joe Perches50f581a2011-03-29 15:21:48 -07003899 pr_warn("Unable to read status\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003900 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)) {
Joe Perches50f581a2011-03-29 15:21:48 -07003915 pr_warn("Failure evaluating %s\n", METHOD_NAME__PRS);
malattia@linux.it33a04452007-04-09 19:26:03 +02003916 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{
Matthew Garrett6158d3a2008-10-29 14:01:03 -07003927 acpi_status ret = acpi_evaluate_object(device->handle, "_DIS", NULL,
3928 NULL);
3929
3930 if (ACPI_FAILURE(ret) && ret != AE_NOT_FOUND)
malattia@linux.it33a04452007-04-09 19:26:03 +02003931 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;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003948 /* 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 */
malattia@linux.it33a04452007-04-09 19:26:03 +02003959 struct {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003960 struct acpi_resource res1;
3961 struct acpi_resource res2;
3962 struct acpi_resource res3;
3963 struct acpi_resource res4;
malattia@linux.it33a04452007-04-09 19:26:03 +02003964 } *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
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003978 /* setup Type 1 resources */
Mattia Dongili31df7142009-09-16 00:05:29 +09003979 if (spic_dev.model == SONYPI_DEVICE_TYPE1) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003980
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003981 /* 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));
malattia@linux.it33a04452007-04-09 19:26:03 +02003986
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003987 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 }
malattia@linux.it33a04452007-04-09 19:26:03 +02004021
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)) {
Joe Perches50f581a2011-03-29 15:21:48 -07004028 pr_err("Error evaluating _SRS\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004029 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;
malattia@linux.it33a04452007-04-09 19:26:03 +02004051 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
Mattia Dongilifd1caae2007-08-12 16:20:28 +09004057 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
Mattia Dongilide920432008-01-14 18:05:43 +09004061 data_mask = inb_p(dev->cur_ioport->io1.minimum +
Mattia Dongili31df7142009-09-16 00:05:29 +09004062 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02004063
Mattia Dongili22a17782007-07-16 02:34:39 +09004064 dprintk("event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
Mattia Dongilide920432008-01-14 18:05:43 +09004065 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09004066 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02004067
4068 if (ev == 0x00 || ev == 0xff)
4069 return IRQ_HANDLED;
4070
Mattia Dongili31df7142009-09-16 00:05:29 +09004071 for (i = 0; dev->event_types[i].mask; i++) {
malattia@linux.it33a04452007-04-09 19:26:03 +02004072
Mattia Dongili31df7142009-09-16 00:05:29 +09004073 if ((data_mask & dev->event_types[i].data) !=
4074 dev->event_types[i].data)
malattia@linux.it33a04452007-04-09 19:26:03 +02004075 continue;
4076
Mattia Dongili31df7142009-09-16 00:05:29 +09004077 if (!(mask & dev->event_types[i].mask))
malattia@linux.it33a04452007-04-09 19:26:03 +02004078 continue;
4079
Mattia Dongili31df7142009-09-16 00:05:29 +09004080 for (j = 0; dev->event_types[i].events[j].event; j++) {
4081 if (ev == dev->event_types[i].events[j].data) {
malattia@linux.it33a04452007-04-09 19:26:03 +02004082 device_event =
Mattia Dongili31df7142009-09-16 00:05:29 +09004083 dev->event_types[i].events[j].event;
Mattia Dongili4eeb5022011-02-19 11:52:27 +09004084 /* some events may require ignoring */
4085 if (!device_event)
4086 return IRQ_HANDLED;
malattia@linux.it33a04452007-04-09 19:26:03 +02004087 goto found;
4088 }
4089 }
4090 }
Mattia Dongili3eb87492008-01-14 18:05:45 +09004091 /* Still not able to decode the event try to pass
4092 * it over to the minidriver
4093 */
Mattia Dongili31df7142009-09-16 00:05:29 +09004094 if (dev->handle_irq && dev->handle_irq(data_mask, ev) == 0)
Mattia Dongili3eb87492008-01-14 18:05:45 +09004095 return IRQ_HANDLED;
4096
Mattia Dongilide920432008-01-14 18:05:43 +09004097 dprintk("unknown event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
4098 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09004099 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02004100 return IRQ_HANDLED;
4101
4102found:
malattia@linux.it1549ee62007-04-09 10:19:08 +02004103 sony_laptop_report_input_event(device_event);
Mattia Dongilide920432008-01-14 18:05:43 +09004104 acpi_bus_generate_proc_event(dev->acpi_dev, 1, device_event);
malattia@linux.it7b153f32007-04-09 19:31:25 +02004105 sonypi_compat_report_event(device_event);
malattia@linux.it33a04452007-04-09 19:26:03 +02004106 return IRQ_HANDLED;
4107}
4108
4109/*****************
4110 *
4111 * ACPI driver
4112 *
4113 *****************/
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01004114static int sony_pic_remove(struct acpi_device *device)
malattia@linux.it33a04452007-04-09 19:26:03 +02004115{
4116 struct sony_pic_ioport *io, *tmp_io;
4117 struct sony_pic_irq *irq, *tmp_irq;
4118
4119 if (sony_pic_disable(device)) {
Joe Perches50f581a2011-03-29 15:21:48 -07004120 pr_err("Couldn't disable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004121 return -ENXIO;
4122 }
4123
4124 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09004125 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);
malattia@linux.it33a04452007-04-09 19:26:03 +02004130
Mattia Dongili015a9162007-08-12 16:20:27 +09004131 sonypi_compat_exit();
4132
malattia@linux.it1549ee62007-04-09 10:19:08 +02004133 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02004134
malattia@linux.it49a11de2007-04-09 19:28:56 +02004135 /* pf attrs */
4136 sysfs_remove_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
4137 sony_pf_remove();
4138
malattia@linux.it33a04452007-04-09 19:26:03 +02004139 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
malattia@linux.itf6119b02007-04-09 19:31:06 +02004150 dprintk(SONY_PIC_DRIVER_NAME " removed.\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004151 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
Joe Perches50f581a2011-03-29 15:21:48 -07004160 pr_info("%s v%s\n", SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.it33a04452007-04-09 19:26:03 +02004161
4162 spic_dev.acpi_dev = device;
4163 strcpy(acpi_device_class(device), "sony/hotkey");
Mattia Dongilide920432008-01-14 18:05:43 +09004164 sony_pic_detect_device_type(&spic_dev);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09004165 mutex_init(&spic_dev.lock);
malattia@linux.it33a04452007-04-09 19:26:03 +02004166
4167 /* read _PRS resources */
4168 result = sony_pic_possible_resources(device);
4169 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07004170 pr_err("Unable to read possible resources\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004171 goto err_free_resources;
4172 }
4173
4174 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05004175 result = sony_laptop_setup_input(device);
malattia@linux.it33a04452007-04-09 19:26:03 +02004176 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07004177 pr_err("Unable to create input devices\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004178 goto err_free_resources;
4179 }
4180
Mattia Dongili015a9162007-08-12 16:20:27 +09004181 if (sonypi_compat_init())
4182 goto err_remove_input;
4183
malattia@linux.it33a04452007-04-09 19:26:03 +02004184 /* request io port */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09004185 list_for_each_entry_reverse(io, &spic_dev.ioports, list) {
4186 if (request_region(io->io1.minimum, io->io1.address_length,
Lucas De Marchic8440332011-03-17 17:18:22 -03004187 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09004188 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,
Lucas De Marchic8440332011-03-17 17:18:22 -03004195 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09004196 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 }
malattia@linux.it33a04452007-04-09 19:26:03 +02004215 }
4216 }
4217 if (!spic_dev.cur_ioport) {
Joe Perches50f581a2011-03-29 15:21:48 -07004218 pr_err("Failed to request_region\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004219 result = -ENODEV;
Mattia Dongili015a9162007-08-12 16:20:27 +09004220 goto err_remove_compat;
malattia@linux.it33a04452007-04-09 19:26:03 +02004221 }
4222
4223 /* request IRQ */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09004224 list_for_each_entry_reverse(irq, &spic_dev.interrupts, list) {
malattia@linux.it33a04452007-04-09 19:26:03 +02004225 if (!request_irq(irq->irq.interrupts[0], sony_pic_irq,
Yong Zhang6a0d89c2011-10-22 17:56:50 +08004226 0, "sony-laptop", &spic_dev)) {
malattia@linux.it33a04452007-04-09 19:26:03 +02004227 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) {
Joe Perches50f581a2011-03-29 15:21:48 -07004238 pr_err("Failed to request_irq\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004239 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) {
Joe Perches50f581a2011-03-29 15:21:48 -07004246 pr_err("Couldn't enable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004247 goto err_free_irq;
4248 }
4249
malattia@linux.it49a11de2007-04-09 19:28:56 +02004250 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
malattia@linux.it33a04452007-04-09 19:26:03 +02004260 return 0;
4261
malattia@linux.it49a11de2007-04-09 19:28:56 +02004262err_remove_pf:
4263 sony_pf_remove();
4264
4265err_disable_device:
4266 sony_pic_disable(device);
4267
malattia@linux.it33a04452007-04-09 19:26:03 +02004268err_free_irq:
4269 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
4270
4271err_release_region:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09004272 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);
malattia@linux.it33a04452007-04-09 19:26:03 +02004277
Mattia Dongili015a9162007-08-12 16:20:27 +09004278err_remove_compat:
4279 sonypi_compat_exit();
4280
malattia@linux.it33a04452007-04-09 19:26:03 +02004281err_remove_input:
malattia@linux.it1549ee62007-04-09 10:19:08 +02004282 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02004283
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
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02004299#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02004300static int sony_pic_suspend(struct device *dev)
malattia@linux.it33a04452007-04-09 19:26:03 +02004301{
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02004302 if (sony_pic_disable(to_acpi_device(dev)))
malattia@linux.it33a04452007-04-09 19:26:03 +02004303 return -ENXIO;
4304 return 0;
4305}
4306
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02004307static int sony_pic_resume(struct device *dev)
malattia@linux.it33a04452007-04-09 19:26:03 +02004308{
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02004309 sony_pic_enable(to_acpi_device(dev),
4310 spic_dev.cur_ioport, spic_dev.cur_irq);
malattia@linux.it33a04452007-04-09 19:26:03 +02004311 return 0;
4312}
Rafael J. Wysocki3567a4e22012-08-09 23:00:13 +02004313#endif
malattia@linux.it33a04452007-04-09 19:26:03 +02004314
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02004315static SIMPLE_DEV_PM_OPS(sony_pic_pm, sony_pic_suspend, sony_pic_resume);
4316
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004317static const struct acpi_device_id sony_pic_device_ids[] = {
4318 {SONY_PIC_HID, 0},
4319 {"", 0},
4320};
4321
malattia@linux.it33a04452007-04-09 19:26:03 +02004322static struct acpi_driver sony_pic_driver = {
4323 .name = SONY_PIC_DRIVER_NAME,
4324 .class = SONY_PIC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02004325 .ids = sony_pic_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02004326 .owner = THIS_MODULE,
4327 .ops = {
4328 .add = sony_pic_add,
4329 .remove = sony_pic_remove,
malattia@linux.it33a04452007-04-09 19:26:03 +02004330 },
Rafael J. Wysockibb6b98d2012-06-27 23:27:33 +02004331 .drv.pm = &sony_pic_pm,
malattia@linux.it33a04452007-04-09 19:26:03 +02004332};
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
malattia@linux.it59b19102007-04-09 10:19:04 +02004352static int __init sony_laptop_init(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01004353{
malattia@linux.it33a04452007-04-09 19:26:03 +02004354 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) {
Joe Perches50f581a2011-03-29 15:21:48 -07004359 pr_err("Unable to register SPIC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004360 goto out;
4361 }
Alan Jenkins5e6f9722009-09-16 00:05:32 +09004362 spic_drv_registered = 1;
malattia@linux.it33a04452007-04-09 19:26:03 +02004363 }
4364
4365 result = acpi_bus_register_driver(&sony_nc_driver);
4366 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07004367 pr_err("Unable to register SNC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02004368 goto out_unregister_pic;
4369 }
4370
4371 return 0;
4372
4373out_unregister_pic:
Alan Jenkins5e6f9722009-09-16 00:05:32 +09004374 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02004375 acpi_bus_unregister_driver(&sony_pic_driver);
4376out:
4377 return result;
Stelian Pop7f09c432007-01-13 23:04:31 +01004378}
4379
malattia@linux.it59b19102007-04-09 10:19:04 +02004380static void __exit sony_laptop_exit(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01004381{
malattia@linux.it59b19102007-04-09 10:19:04 +02004382 acpi_bus_unregister_driver(&sony_nc_driver);
Alan Jenkins5e6f9722009-09-16 00:05:32 +09004383 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02004384 acpi_bus_unregister_driver(&sony_pic_driver);
Stelian Pop7f09c432007-01-13 23:04:31 +01004385}
4386
malattia@linux.it59b19102007-04-09 10:19:04 +02004387module_init(sony_laptop_init);
4388module_exit(sony_laptop_exit);