blob: 8a51795aa02a07bbc0d60b6267686ca4f54dbe9b [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 Garskidb955172007-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
Marco Chiapperodf410d52011-04-05 23:38:34 +0900143static void sony_nc_kbd_backlight_resume(void);
144
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900145enum sony_nc_rfkill {
146 SONY_WIFI,
147 SONY_BLUETOOTH,
148 SONY_WWAN,
149 SONY_WIMAX,
Johannes Berg19d337d2009-06-02 13:01:37 +0200150 N_SONY_RFKILL,
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900151};
152
Mattia Dongilid5a664a2009-12-17 00:08:35 +0900153static int sony_rfkill_handle;
Johannes Berg19d337d2009-06-02 13:01:37 +0200154static struct rfkill *sony_rfkill_devices[N_SONY_RFKILL];
155static int sony_rfkill_address[N_SONY_RFKILL] = {0x300, 0x500, 0x700, 0x900};
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900156static void sony_nc_rfkill_update(void);
157
malattia@linux.it1549ee62007-04-09 10:19:08 +0200158/*********** Input Devices ***********/
159
160#define SONY_LAPTOP_BUF_SIZE 128
161struct sony_laptop_input_s {
162 atomic_t users;
163 struct input_dev *jog_dev;
164 struct input_dev *key_dev;
Stefani Seibold45465482009-12-21 14:37:26 -0800165 struct kfifo fifo;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200166 spinlock_t fifo_lock;
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800167 struct timer_list release_key_timer;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200168};
Matthew Garrett6cc056b2009-03-26 21:58:15 +0900169
malattia@linux.it1549ee62007-04-09 10:19:08 +0200170static struct sony_laptop_input_s sony_laptop_input = {
171 .users = ATOMIC_INIT(0),
172};
173
174struct sony_laptop_keypress {
175 struct input_dev *dev;
176 int key;
177};
178
Mattia Dongilibc57f862007-07-20 02:01:57 +0900179/* Correspondance table between sonypi events
180 * and input layer indexes in the keymap
181 */
182static int sony_laptop_input_index[] = {
Mattia Dongili3eb87492008-01-14 18:05:45 +0900183 -1, /* 0 no event */
184 -1, /* 1 SONYPI_EVENT_JOGDIAL_DOWN */
185 -1, /* 2 SONYPI_EVENT_JOGDIAL_UP */
186 -1, /* 3 SONYPI_EVENT_JOGDIAL_DOWN_PRESSED */
187 -1, /* 4 SONYPI_EVENT_JOGDIAL_UP_PRESSED */
188 -1, /* 5 SONYPI_EVENT_JOGDIAL_PRESSED */
189 -1, /* 6 SONYPI_EVENT_JOGDIAL_RELEASED */
190 0, /* 7 SONYPI_EVENT_CAPTURE_PRESSED */
191 1, /* 8 SONYPI_EVENT_CAPTURE_RELEASED */
192 2, /* 9 SONYPI_EVENT_CAPTURE_PARTIALPRESSED */
193 3, /* 10 SONYPI_EVENT_CAPTURE_PARTIALRELEASED */
194 4, /* 11 SONYPI_EVENT_FNKEY_ESC */
195 5, /* 12 SONYPI_EVENT_FNKEY_F1 */
196 6, /* 13 SONYPI_EVENT_FNKEY_F2 */
197 7, /* 14 SONYPI_EVENT_FNKEY_F3 */
198 8, /* 15 SONYPI_EVENT_FNKEY_F4 */
199 9, /* 16 SONYPI_EVENT_FNKEY_F5 */
200 10, /* 17 SONYPI_EVENT_FNKEY_F6 */
201 11, /* 18 SONYPI_EVENT_FNKEY_F7 */
202 12, /* 19 SONYPI_EVENT_FNKEY_F8 */
203 13, /* 20 SONYPI_EVENT_FNKEY_F9 */
204 14, /* 21 SONYPI_EVENT_FNKEY_F10 */
205 15, /* 22 SONYPI_EVENT_FNKEY_F11 */
206 16, /* 23 SONYPI_EVENT_FNKEY_F12 */
207 17, /* 24 SONYPI_EVENT_FNKEY_1 */
208 18, /* 25 SONYPI_EVENT_FNKEY_2 */
209 19, /* 26 SONYPI_EVENT_FNKEY_D */
210 20, /* 27 SONYPI_EVENT_FNKEY_E */
211 21, /* 28 SONYPI_EVENT_FNKEY_F */
212 22, /* 29 SONYPI_EVENT_FNKEY_S */
213 23, /* 30 SONYPI_EVENT_FNKEY_B */
214 24, /* 31 SONYPI_EVENT_BLUETOOTH_PRESSED */
215 25, /* 32 SONYPI_EVENT_PKEY_P1 */
216 26, /* 33 SONYPI_EVENT_PKEY_P2 */
217 27, /* 34 SONYPI_EVENT_PKEY_P3 */
218 28, /* 35 SONYPI_EVENT_BACK_PRESSED */
219 -1, /* 36 SONYPI_EVENT_LID_CLOSED */
220 -1, /* 37 SONYPI_EVENT_LID_OPENED */
221 29, /* 38 SONYPI_EVENT_BLUETOOTH_ON */
222 30, /* 39 SONYPI_EVENT_BLUETOOTH_OFF */
223 31, /* 40 SONYPI_EVENT_HELP_PRESSED */
224 32, /* 41 SONYPI_EVENT_FNKEY_ONLY */
225 33, /* 42 SONYPI_EVENT_JOGDIAL_FAST_DOWN */
226 34, /* 43 SONYPI_EVENT_JOGDIAL_FAST_UP */
227 35, /* 44 SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */
228 36, /* 45 SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */
229 37, /* 46 SONYPI_EVENT_JOGDIAL_VFAST_DOWN */
230 38, /* 47 SONYPI_EVENT_JOGDIAL_VFAST_UP */
231 39, /* 48 SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */
232 40, /* 49 SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */
233 41, /* 50 SONYPI_EVENT_ZOOM_PRESSED */
234 42, /* 51 SONYPI_EVENT_THUMBPHRASE_PRESSED */
235 43, /* 52 SONYPI_EVENT_MEYE_FACE */
236 44, /* 53 SONYPI_EVENT_MEYE_OPPOSITE */
237 45, /* 54 SONYPI_EVENT_MEMORYSTICK_INSERT */
238 46, /* 55 SONYPI_EVENT_MEMORYSTICK_EJECT */
239 -1, /* 56 SONYPI_EVENT_ANYBUTTON_RELEASED */
240 -1, /* 57 SONYPI_EVENT_BATTERY_INSERT */
241 -1, /* 58 SONYPI_EVENT_BATTERY_REMOVE */
242 -1, /* 59 SONYPI_EVENT_FNKEY_RELEASED */
243 47, /* 60 SONYPI_EVENT_WIRELESS_ON */
244 48, /* 61 SONYPI_EVENT_WIRELESS_OFF */
245 49, /* 62 SONYPI_EVENT_ZOOM_IN_PRESSED */
246 50, /* 63 SONYPI_EVENT_ZOOM_OUT_PRESSED */
Matthew Garrett9b578962009-03-26 21:58:14 +0900247 51, /* 64 SONYPI_EVENT_CD_EJECT_PRESSED */
Matthew Garrett45c79422009-03-26 21:58:16 +0900248 52, /* 65 SONYPI_EVENT_MODEKEY_PRESSED */
249 53, /* 66 SONYPI_EVENT_PKEY_P4 */
250 54, /* 67 SONYPI_EVENT_PKEY_P5 */
251 55, /* 68 SONYPI_EVENT_SETTINGKEY_PRESSED */
Harald Jenny1cae7102009-03-26 21:58:18 +0900252 56, /* 69 SONYPI_EVENT_VOLUME_INC_PRESSED */
253 57, /* 70 SONYPI_EVENT_VOLUME_DEC_PRESSED */
254 -1, /* 71 SONYPI_EVENT_BRIGHTNESS_PRESSED */
Mattia Dongili4f924ba2009-12-17 00:08:33 +0900255 58, /* 72 SONYPI_EVENT_MEDIA_PRESSED */
Mattia Dongili1a7d9462011-01-08 18:47:29 +0900256 59, /* 72 SONYPI_EVENT_VENDOR_PRESSED */
Mattia Dongilibc57f862007-07-20 02:01:57 +0900257};
258
259static int sony_laptop_input_keycode_map[] = {
260 KEY_CAMERA, /* 0 SONYPI_EVENT_CAPTURE_PRESSED */
261 KEY_RESERVED, /* 1 SONYPI_EVENT_CAPTURE_RELEASED */
262 KEY_RESERVED, /* 2 SONYPI_EVENT_CAPTURE_PARTIALPRESSED */
263 KEY_RESERVED, /* 3 SONYPI_EVENT_CAPTURE_PARTIALRELEASED */
264 KEY_FN_ESC, /* 4 SONYPI_EVENT_FNKEY_ESC */
265 KEY_FN_F1, /* 5 SONYPI_EVENT_FNKEY_F1 */
266 KEY_FN_F2, /* 6 SONYPI_EVENT_FNKEY_F2 */
267 KEY_FN_F3, /* 7 SONYPI_EVENT_FNKEY_F3 */
268 KEY_FN_F4, /* 8 SONYPI_EVENT_FNKEY_F4 */
269 KEY_FN_F5, /* 9 SONYPI_EVENT_FNKEY_F5 */
270 KEY_FN_F6, /* 10 SONYPI_EVENT_FNKEY_F6 */
271 KEY_FN_F7, /* 11 SONYPI_EVENT_FNKEY_F7 */
272 KEY_FN_F8, /* 12 SONYPI_EVENT_FNKEY_F8 */
273 KEY_FN_F9, /* 13 SONYPI_EVENT_FNKEY_F9 */
274 KEY_FN_F10, /* 14 SONYPI_EVENT_FNKEY_F10 */
275 KEY_FN_F11, /* 15 SONYPI_EVENT_FNKEY_F11 */
276 KEY_FN_F12, /* 16 SONYPI_EVENT_FNKEY_F12 */
277 KEY_FN_F1, /* 17 SONYPI_EVENT_FNKEY_1 */
278 KEY_FN_F2, /* 18 SONYPI_EVENT_FNKEY_2 */
279 KEY_FN_D, /* 19 SONYPI_EVENT_FNKEY_D */
280 KEY_FN_E, /* 20 SONYPI_EVENT_FNKEY_E */
281 KEY_FN_F, /* 21 SONYPI_EVENT_FNKEY_F */
282 KEY_FN_S, /* 22 SONYPI_EVENT_FNKEY_S */
283 KEY_FN_B, /* 23 SONYPI_EVENT_FNKEY_B */
284 KEY_BLUETOOTH, /* 24 SONYPI_EVENT_BLUETOOTH_PRESSED */
285 KEY_PROG1, /* 25 SONYPI_EVENT_PKEY_P1 */
286 KEY_PROG2, /* 26 SONYPI_EVENT_PKEY_P2 */
287 KEY_PROG3, /* 27 SONYPI_EVENT_PKEY_P3 */
288 KEY_BACK, /* 28 SONYPI_EVENT_BACK_PRESSED */
289 KEY_BLUETOOTH, /* 29 SONYPI_EVENT_BLUETOOTH_ON */
290 KEY_BLUETOOTH, /* 30 SONYPI_EVENT_BLUETOOTH_OFF */
291 KEY_HELP, /* 31 SONYPI_EVENT_HELP_PRESSED */
292 KEY_FN, /* 32 SONYPI_EVENT_FNKEY_ONLY */
293 KEY_RESERVED, /* 33 SONYPI_EVENT_JOGDIAL_FAST_DOWN */
294 KEY_RESERVED, /* 34 SONYPI_EVENT_JOGDIAL_FAST_UP */
295 KEY_RESERVED, /* 35 SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */
296 KEY_RESERVED, /* 36 SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */
297 KEY_RESERVED, /* 37 SONYPI_EVENT_JOGDIAL_VFAST_DOWN */
298 KEY_RESERVED, /* 38 SONYPI_EVENT_JOGDIAL_VFAST_UP */
299 KEY_RESERVED, /* 39 SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */
300 KEY_RESERVED, /* 40 SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */
301 KEY_ZOOM, /* 41 SONYPI_EVENT_ZOOM_PRESSED */
302 BTN_THUMB, /* 42 SONYPI_EVENT_THUMBPHRASE_PRESSED */
303 KEY_RESERVED, /* 43 SONYPI_EVENT_MEYE_FACE */
304 KEY_RESERVED, /* 44 SONYPI_EVENT_MEYE_OPPOSITE */
305 KEY_RESERVED, /* 45 SONYPI_EVENT_MEMORYSTICK_INSERT */
306 KEY_RESERVED, /* 46 SONYPI_EVENT_MEMORYSTICK_EJECT */
307 KEY_WLAN, /* 47 SONYPI_EVENT_WIRELESS_ON */
308 KEY_WLAN, /* 48 SONYPI_EVENT_WIRELESS_OFF */
Mattia Dongili3eb87492008-01-14 18:05:45 +0900309 KEY_ZOOMIN, /* 49 SONYPI_EVENT_ZOOM_IN_PRESSED */
Matthew Garrett9b578962009-03-26 21:58:14 +0900310 KEY_ZOOMOUT, /* 50 SONYPI_EVENT_ZOOM_OUT_PRESSED */
Matthew Garrett45c79422009-03-26 21:58:16 +0900311 KEY_EJECTCD, /* 51 SONYPI_EVENT_CD_EJECT_PRESSED */
312 KEY_F13, /* 52 SONYPI_EVENT_MODEKEY_PRESSED */
313 KEY_PROG4, /* 53 SONYPI_EVENT_PKEY_P4 */
314 KEY_F14, /* 54 SONYPI_EVENT_PKEY_P5 */
315 KEY_F15, /* 55 SONYPI_EVENT_SETTINGKEY_PRESSED */
Harald Jenny1cae7102009-03-26 21:58:18 +0900316 KEY_VOLUMEUP, /* 56 SONYPI_EVENT_VOLUME_INC_PRESSED */
317 KEY_VOLUMEDOWN, /* 57 SONYPI_EVENT_VOLUME_DEC_PRESSED */
Mattia Dongili4f924ba2009-12-17 00:08:33 +0900318 KEY_MEDIA, /* 58 SONYPI_EVENT_MEDIA_PRESSED */
Mattia Dongili1a7d9462011-01-08 18:47:29 +0900319 KEY_VENDOR, /* 59 SONYPI_EVENT_VENDOR_PRESSED */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200320};
321
322/* release buttons after a short delay if pressed */
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800323static void do_sony_laptop_release_key(unsigned long unused)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200324{
325 struct sony_laptop_keypress kp;
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800326 unsigned long flags;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200327
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800328 spin_lock_irqsave(&sony_laptop_input.fifo_lock, flags);
329
330 if (kfifo_out(&sony_laptop_input.fifo,
331 (unsigned char *)&kp, sizeof(kp)) == sizeof(kp)) {
malattia@linux.it1549ee62007-04-09 10:19:08 +0200332 input_report_key(kp.dev, kp.key, 0);
333 input_sync(kp.dev);
334 }
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800335
336 /* If there is something in the fifo schedule next release. */
337 if (kfifo_len(&sony_laptop_input.fifo) != 0)
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800338 mod_timer(&sony_laptop_input.release_key_timer,
339 jiffies + msecs_to_jiffies(10));
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800340
341 spin_unlock_irqrestore(&sony_laptop_input.fifo_lock, flags);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200342}
malattia@linux.it1549ee62007-04-09 10:19:08 +0200343
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200344/* forward event to the input subsystem */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200345static void sony_laptop_report_input_event(u8 event)
346{
347 struct input_dev *jog_dev = sony_laptop_input.jog_dev;
348 struct input_dev *key_dev = sony_laptop_input.key_dev;
349 struct sony_laptop_keypress kp = { NULL };
John Hughes747a5622011-11-16 19:51:57 +0100350 int scancode = -1;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200351
Almer S. Tigelaara83021a2009-04-12 11:26:28 +0000352 if (event == SONYPI_EVENT_FNKEY_RELEASED ||
353 event == SONYPI_EVENT_ANYBUTTON_RELEASED) {
malattia@linux.it1549ee62007-04-09 10:19:08 +0200354 /* Nothing, not all VAIOs generate this event */
355 return;
356 }
357
358 /* report events */
359 switch (event) {
360 /* jog_dev events */
361 case SONYPI_EVENT_JOGDIAL_UP:
362 case SONYPI_EVENT_JOGDIAL_UP_PRESSED:
363 input_report_rel(jog_dev, REL_WHEEL, 1);
364 input_sync(jog_dev);
365 return;
366
367 case SONYPI_EVENT_JOGDIAL_DOWN:
368 case SONYPI_EVENT_JOGDIAL_DOWN_PRESSED:
369 input_report_rel(jog_dev, REL_WHEEL, -1);
370 input_sync(jog_dev);
371 return;
372
373 /* key_dev events */
374 case SONYPI_EVENT_JOGDIAL_PRESSED:
375 kp.key = BTN_MIDDLE;
376 kp.dev = jog_dev;
377 break;
378
379 default:
Adrian Bunkd399d132008-02-20 00:59:03 +0200380 if (event >= ARRAY_SIZE(sony_laptop_input_index)) {
Mattia Dongilibc57f862007-07-20 02:01:57 +0900381 dprintk("sony_laptop_report_input_event, event not known: %d\n", event);
382 break;
383 }
John Hughes747a5622011-11-16 19:51:57 +0100384 if ((scancode = sony_laptop_input_index[event]) != -1) {
385 kp.key = sony_laptop_input_keycode_map[scancode];
Mattia Dongilibc57f862007-07-20 02:01:57 +0900386 if (kp.key != KEY_UNKNOWN)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200387 kp.dev = key_dev;
Mattia Dongilibc57f862007-07-20 02:01:57 +0900388 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200389 break;
390 }
391
392 if (kp.dev) {
John Hughes747a5622011-11-16 19:51:57 +0100393 /* if we have a scancode we emit it so we can always
394 remap the key */
395 if (scancode != -1)
396 input_event(kp.dev, EV_MSC, MSC_SCAN, scancode);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200397 input_report_key(kp.dev, kp.key, 1);
398 input_sync(kp.dev);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200399
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800400 /* schedule key release */
401 kfifo_in_locked(&sony_laptop_input.fifo,
402 (unsigned char *)&kp, sizeof(kp),
403 &sony_laptop_input.fifo_lock);
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800404 mod_timer(&sony_laptop_input.release_key_timer,
405 jiffies + msecs_to_jiffies(10));
malattia@linux.it1549ee62007-04-09 10:19:08 +0200406 } else
407 dprintk("unknown input event %.2x\n", event);
408}
409
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500410static int sony_laptop_setup_input(struct acpi_device *acpi_device)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200411{
412 struct input_dev *jog_dev;
413 struct input_dev *key_dev;
414 int i;
415 int error;
416
417 /* don't run again if already initialized */
418 if (atomic_add_return(1, &sony_laptop_input.users) > 1)
419 return 0;
420
421 /* kfifo */
422 spin_lock_init(&sony_laptop_input.fifo_lock);
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800423 error = kfifo_alloc(&sony_laptop_input.fifo,
424 SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -0800425 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -0700426 pr_err("kfifo_alloc failed\n");
malattia@linux.it1549ee62007-04-09 10:19:08 +0200427 goto err_dec_users;
428 }
429
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800430 setup_timer(&sony_laptop_input.release_key_timer,
431 do_sony_laptop_release_key, 0);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200432
433 /* input keys */
434 key_dev = input_allocate_device();
435 if (!key_dev) {
436 error = -ENOMEM;
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800437 goto err_free_kfifo;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200438 }
439
440 key_dev->name = "Sony Vaio Keys";
441 key_dev->id.bustype = BUS_ISA;
442 key_dev->id.vendor = PCI_VENDOR_ID_SONY;
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500443 key_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200444
445 /* Initialize the Input Drivers: special keys */
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800446 input_set_capability(key_dev, EV_MSC, MSC_SCAN);
447
448 __set_bit(EV_KEY, key_dev->evbit);
Mattia Dongilibc57f862007-07-20 02:01:57 +0900449 key_dev->keycodesize = sizeof(sony_laptop_input_keycode_map[0]);
450 key_dev->keycodemax = ARRAY_SIZE(sony_laptop_input_keycode_map);
451 key_dev->keycode = &sony_laptop_input_keycode_map;
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800452 for (i = 0; i < ARRAY_SIZE(sony_laptop_input_keycode_map); i++)
453 __set_bit(sony_laptop_input_keycode_map[i], key_dev->keybit);
454 __clear_bit(KEY_RESERVED, key_dev->keybit);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200455
456 error = input_register_device(key_dev);
457 if (error)
458 goto err_free_keydev;
459
460 sony_laptop_input.key_dev = key_dev;
461
462 /* jogdial */
463 jog_dev = input_allocate_device();
464 if (!jog_dev) {
465 error = -ENOMEM;
466 goto err_unregister_keydev;
467 }
468
469 jog_dev->name = "Sony Vaio Jogdial";
470 jog_dev->id.bustype = BUS_ISA;
471 jog_dev->id.vendor = PCI_VENDOR_ID_SONY;
John Hughes747a5622011-11-16 19:51:57 +0100472 jog_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200473
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800474 input_set_capability(jog_dev, EV_KEY, BTN_MIDDLE);
475 input_set_capability(jog_dev, EV_REL, REL_WHEEL);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200476
477 error = input_register_device(jog_dev);
478 if (error)
479 goto err_free_jogdev;
480
481 sony_laptop_input.jog_dev = jog_dev;
482
483 return 0;
484
485err_free_jogdev:
486 input_free_device(jog_dev);
487
488err_unregister_keydev:
489 input_unregister_device(key_dev);
490 /* to avoid kref underflow below at input_free_device */
491 key_dev = NULL;
492
493err_free_keydev:
494 input_free_device(key_dev);
495
malattia@linux.it1549ee62007-04-09 10:19:08 +0200496err_free_kfifo:
Stefani Seibold45465482009-12-21 14:37:26 -0800497 kfifo_free(&sony_laptop_input.fifo);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200498
499err_dec_users:
500 atomic_dec(&sony_laptop_input.users);
501 return error;
502}
503
504static void sony_laptop_remove_input(void)
505{
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800506 struct sony_laptop_keypress kp = { NULL };
507
508 /* Cleanup only after the last user has gone */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200509 if (!atomic_dec_and_test(&sony_laptop_input.users))
510 return;
511
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800512 del_timer_sync(&sony_laptop_input.release_key_timer);
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800513
514 /*
515 * Generate key-up events for remaining keys. Note that we don't
516 * need locking since nobody is adding new events to the kfifo.
517 */
518 while (kfifo_out(&sony_laptop_input.fifo,
519 (unsigned char *)&kp, sizeof(kp)) == sizeof(kp)) {
520 input_report_key(kp.dev, kp.key, 0);
521 input_sync(kp.dev);
522 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200523
524 /* destroy input devs */
525 input_unregister_device(sony_laptop_input.key_dev);
526 sony_laptop_input.key_dev = NULL;
527
528 if (sony_laptop_input.jog_dev) {
529 input_unregister_device(sony_laptop_input.jog_dev);
530 sony_laptop_input.jog_dev = NULL;
531 }
532
Stefani Seibold45465482009-12-21 14:37:26 -0800533 kfifo_free(&sony_laptop_input.fifo);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200534}
535
malattia@linux.it56b87562007-04-09 10:19:05 +0200536/*********** Platform Device ***********/
537
538static atomic_t sony_pf_users = ATOMIC_INIT(0);
539static struct platform_driver sony_pf_driver = {
540 .driver = {
541 .name = "sony-laptop",
542 .owner = THIS_MODULE,
543 }
544};
545static struct platform_device *sony_pf_device;
546
547static int sony_pf_add(void)
548{
549 int ret = 0;
550
551 /* don't run again if already initialized */
552 if (atomic_add_return(1, &sony_pf_users) > 1)
553 return 0;
554
555 ret = platform_driver_register(&sony_pf_driver);
556 if (ret)
557 goto out;
558
559 sony_pf_device = platform_device_alloc("sony-laptop", -1);
560 if (!sony_pf_device) {
561 ret = -ENOMEM;
562 goto out_platform_registered;
563 }
564
565 ret = platform_device_add(sony_pf_device);
566 if (ret)
567 goto out_platform_alloced;
568
569 return 0;
570
571 out_platform_alloced:
572 platform_device_put(sony_pf_device);
573 sony_pf_device = NULL;
574 out_platform_registered:
575 platform_driver_unregister(&sony_pf_driver);
576 out:
577 atomic_dec(&sony_pf_users);
578 return ret;
579}
580
581static void sony_pf_remove(void)
582{
583 /* deregister only after the last user has gone */
584 if (!atomic_dec_and_test(&sony_pf_users))
585 return;
586
Axel Lin08db2b32010-07-01 10:18:01 +0800587 platform_device_unregister(sony_pf_device);
malattia@linux.it56b87562007-04-09 10:19:05 +0200588 platform_driver_unregister(&sony_pf_driver);
589}
590
591/*********** SNC (SNY5001) Device ***********/
592
malattia@linux.it33a04452007-04-09 19:26:03 +0200593/* the device uses 1-based values, while the backlight subsystem uses
594 0-based values */
595#define SONY_MAX_BRIGHTNESS 8
596
597#define SNC_VALIDATE_IN 0
598#define SNC_VALIDATE_OUT 1
599
malattia@linux.it59b19102007-04-09 10:19:04 +0200600static ssize_t sony_nc_sysfs_show(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500601 char *);
malattia@linux.it59b19102007-04-09 10:19:04 +0200602static ssize_t sony_nc_sysfs_store(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500603 const char *, size_t);
Mattia Dongili156c2212007-02-12 22:01:07 +0100604static int boolean_validate(const int, const int);
605static int brightness_default_validate(const int, const int);
606
malattia@linux.it59b19102007-04-09 10:19:04 +0200607struct sony_nc_value {
Len Browna02d1c12007-02-07 15:34:02 -0500608 char *name; /* name of the entry */
609 char **acpiget; /* names of the ACPI get function */
610 char **acpiset; /* names of the ACPI set function */
Mattia Dongili156c2212007-02-12 22:01:07 +0100611 int (*validate)(const int, const int); /* input/output validation */
Len Browna02d1c12007-02-07 15:34:02 -0500612 int value; /* current setting */
613 int valid; /* Has ever been set */
614 int debug; /* active only in debug mode ? */
Lucas De Marchic8440332011-03-17 17:18:22 -0300615 struct device_attribute devattr; /* sysfs attribute */
Stelian Pop7f09c432007-01-13 23:04:31 +0100616};
617
malattia@linux.it59b19102007-04-09 10:19:04 +0200618#define SNC_HANDLE_NAMES(_name, _values...) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100619 static char *snc_##_name[] = { _values, NULL }
620
malattia@linux.it59b19102007-04-09 10:19:04 +0200621#define SNC_HANDLE(_name, _getters, _setters, _validate, _debug) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100622 { \
623 .name = __stringify(_name), \
624 .acpiget = _getters, \
625 .acpiset = _setters, \
Mattia Dongili156c2212007-02-12 22:01:07 +0100626 .validate = _validate, \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100627 .debug = _debug, \
malattia@linux.it59b19102007-04-09 10:19:04 +0200628 .devattr = __ATTR(_name, 0, sony_nc_sysfs_show, sony_nc_sysfs_store), \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100629 }
630
malattia@linux.it59b19102007-04-09 10:19:04 +0200631#define SNC_HANDLE_NULL { .name = NULL }
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100632
malattia@linux.it59b19102007-04-09 10:19:04 +0200633SNC_HANDLE_NAMES(fnkey_get, "GHKE");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100634
malattia@linux.it59b19102007-04-09 10:19:04 +0200635SNC_HANDLE_NAMES(brightness_def_get, "GPBR");
636SNC_HANDLE_NAMES(brightness_def_set, "SPBR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100637
malattia@linux.it59b19102007-04-09 10:19:04 +0200638SNC_HANDLE_NAMES(cdpower_get, "GCDP");
639SNC_HANDLE_NAMES(cdpower_set, "SCDP", "CDPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100640
malattia@linux.it59b19102007-04-09 10:19:04 +0200641SNC_HANDLE_NAMES(audiopower_get, "GAZP");
642SNC_HANDLE_NAMES(audiopower_set, "AZPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100643
malattia@linux.it59b19102007-04-09 10:19:04 +0200644SNC_HANDLE_NAMES(lanpower_get, "GLNP");
645SNC_HANDLE_NAMES(lanpower_set, "LNPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100646
Mattia Dongili044847e2007-07-16 02:34:33 +0900647SNC_HANDLE_NAMES(lidstate_get, "GLID");
648
649SNC_HANDLE_NAMES(indicatorlamp_get, "GILS");
650SNC_HANDLE_NAMES(indicatorlamp_set, "SILS");
651
652SNC_HANDLE_NAMES(gainbass_get, "GMGB");
653SNC_HANDLE_NAMES(gainbass_set, "CMGB");
654
malattia@linux.it59b19102007-04-09 10:19:04 +0200655SNC_HANDLE_NAMES(PID_get, "GPID");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100656
malattia@linux.it59b19102007-04-09 10:19:04 +0200657SNC_HANDLE_NAMES(CTR_get, "GCTR");
658SNC_HANDLE_NAMES(CTR_set, "SCTR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100659
malattia@linux.it59b19102007-04-09 10:19:04 +0200660SNC_HANDLE_NAMES(PCR_get, "GPCR");
661SNC_HANDLE_NAMES(PCR_set, "SPCR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100662
malattia@linux.it59b19102007-04-09 10:19:04 +0200663SNC_HANDLE_NAMES(CMI_get, "GCMI");
664SNC_HANDLE_NAMES(CMI_set, "SCMI");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100665
malattia@linux.it59b19102007-04-09 10:19:04 +0200666static struct sony_nc_value sony_nc_values[] = {
667 SNC_HANDLE(brightness_default, snc_brightness_def_get,
Mattia Dongili156c2212007-02-12 22:01:07 +0100668 snc_brightness_def_set, brightness_default_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200669 SNC_HANDLE(fnkey, snc_fnkey_get, NULL, NULL, 0),
670 SNC_HANDLE(cdpower, snc_cdpower_get, snc_cdpower_set, boolean_validate, 0),
671 SNC_HANDLE(audiopower, snc_audiopower_get, snc_audiopower_set,
Mattia Dongili156c2212007-02-12 22:01:07 +0100672 boolean_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200673 SNC_HANDLE(lanpower, snc_lanpower_get, snc_lanpower_set,
Mattia Dongili156c2212007-02-12 22:01:07 +0100674 boolean_validate, 1),
Mattia Dongili044847e2007-07-16 02:34:33 +0900675 SNC_HANDLE(lidstate, snc_lidstate_get, NULL,
676 boolean_validate, 0),
677 SNC_HANDLE(indicatorlamp, snc_indicatorlamp_get, snc_indicatorlamp_set,
678 boolean_validate, 0),
679 SNC_HANDLE(gainbass, snc_gainbass_get, snc_gainbass_set,
680 boolean_validate, 0),
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100681 /* unknown methods */
malattia@linux.it59b19102007-04-09 10:19:04 +0200682 SNC_HANDLE(PID, snc_PID_get, NULL, NULL, 1),
683 SNC_HANDLE(CTR, snc_CTR_get, snc_CTR_set, NULL, 1),
684 SNC_HANDLE(PCR, snc_PCR_get, snc_PCR_set, NULL, 1),
685 SNC_HANDLE(CMI, snc_CMI_get, snc_CMI_set, NULL, 1),
686 SNC_HANDLE_NULL
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100687};
688
malattia@linux.it59b19102007-04-09 10:19:04 +0200689static acpi_handle sony_nc_acpi_handle;
690static struct acpi_device *sony_nc_acpi_device = NULL;
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100691
Mattia Dongilid78865c2007-02-07 20:01:56 +0100692/*
693 * acpi_evaluate_object wrappers
694 */
Stelian Pop7f09c432007-01-13 23:04:31 +0100695static int acpi_callgetfunc(acpi_handle handle, char *name, int *result)
696{
697 struct acpi_buffer output;
698 union acpi_object out_obj;
699 acpi_status status;
700
701 output.length = sizeof(out_obj);
702 output.pointer = &out_obj;
703
704 status = acpi_evaluate_object(handle, name, NULL, &output);
705 if ((status == AE_OK) && (out_obj.type == ACPI_TYPE_INTEGER)) {
706 *result = out_obj.integer.value;
707 return 0;
708 }
709
Joe Perches50f581a2011-03-29 15:21:48 -0700710 pr_warn("acpi_callreadfunc failed\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100711
712 return -1;
713}
714
715static int acpi_callsetfunc(acpi_handle handle, char *name, int value,
716 int *result)
717{
718 struct acpi_object_list params;
719 union acpi_object in_obj;
720 struct acpi_buffer output;
721 union acpi_object out_obj;
722 acpi_status status;
723
724 params.count = 1;
725 params.pointer = &in_obj;
726 in_obj.type = ACPI_TYPE_INTEGER;
727 in_obj.integer.value = value;
728
729 output.length = sizeof(out_obj);
730 output.pointer = &out_obj;
731
732 status = acpi_evaluate_object(handle, name, &params, &output);
733 if (status == AE_OK) {
734 if (result != NULL) {
735 if (out_obj.type != ACPI_TYPE_INTEGER) {
Joe Perches50f581a2011-03-29 15:21:48 -0700736 pr_warn("acpi_evaluate_object bad return type\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100737 return -1;
738 }
739 *result = out_obj.integer.value;
740 }
741 return 0;
742 }
743
Joe Perches50f581a2011-03-29 15:21:48 -0700744 pr_warn("acpi_evaluate_object failed\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100745
746 return -1;
747}
748
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900749struct sony_nc_handles {
750 u16 cap[0x10];
751 struct device_attribute devattr;
752};
753
Dan Carpenterf11113b2011-02-26 15:54:27 +0300754static struct sony_nc_handles *handles;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900755
756static ssize_t sony_nc_handles_show(struct device *dev,
757 struct device_attribute *attr, char *buffer)
758{
759 ssize_t len = 0;
760 int i;
761
762 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
763 len += snprintf(buffer + len, PAGE_SIZE - len, "0x%.4x ",
764 handles->cap[i]);
765 }
766 len += snprintf(buffer + len, PAGE_SIZE - len, "\n");
767
768 return len;
769}
770
771static int sony_nc_handles_setup(struct platform_device *pd)
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900772{
773 int i;
774 int result;
775
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900776 handles = kzalloc(sizeof(*handles), GFP_KERNEL);
Dan Carpenter31f00752011-02-26 15:55:24 +0300777 if (!handles)
778 return -ENOMEM;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900779
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900780 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
781 if (!acpi_callsetfunc(sony_nc_acpi_handle,
782 "SN00", i + 0x20, &result)) {
783 dprintk("caching handle 0x%.4x (offset: 0x%.2x)\n",
784 result, i);
785 handles->cap[i] = result;
Mattia Dongili56e6e712011-02-19 11:52:25 +0900786 }
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900787 }
788
Mattia Dongili855b8bc2011-04-05 23:38:35 +0900789 if (debug) {
790 sysfs_attr_init(&handles->devattr.attr);
791 handles->devattr.attr.name = "handles";
792 handles->devattr.attr.mode = S_IRUGO;
793 handles->devattr.show = sony_nc_handles_show;
794
795 /* allow reading capabilities via sysfs */
796 if (device_create_file(&pd->dev, &handles->devattr)) {
797 kfree(handles);
798 handles = NULL;
799 return -1;
800 }
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900801 }
802
803 return 0;
804}
805
806static int sony_nc_handles_cleanup(struct platform_device *pd)
807{
808 if (handles) {
Mattia Dongili855b8bc2011-04-05 23:38:35 +0900809 if (debug)
810 device_remove_file(&pd->dev, &handles->devattr);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900811 kfree(handles);
812 handles = NULL;
813 }
814 return 0;
815}
816
817static int sony_find_snc_handle(int handle)
818{
819 int i;
Mattia Dongilifef34862011-04-02 19:00:44 +0900820
821 /* not initialized yet, return early */
822 if (!handles)
823 return -1;
824
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900825 for (i = 0; i < 0x10; i++) {
826 if (handles->cap[i] == handle) {
827 dprintk("found handle 0x%.4x (offset: 0x%.2x)\n",
828 handle, i);
829 return i;
830 }
831 }
Mattia Dongili56e6e712011-02-19 11:52:25 +0900832 dprintk("handle 0x%.4x not found\n", handle);
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900833 return -1;
834}
835
836static int sony_call_snc_handle(int handle, int argument, int *result)
837{
Mattia Dongili56e6e712011-02-19 11:52:25 +0900838 int ret = 0;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900839 int offset = sony_find_snc_handle(handle);
840
841 if (offset < 0)
842 return -1;
843
Mattia Dongili56e6e712011-02-19 11:52:25 +0900844 ret = acpi_callsetfunc(sony_nc_acpi_handle, "SN07", offset | argument,
845 result);
846 dprintk("called SN07 with 0x%.4x (result: 0x%.4x)\n", offset | argument,
847 *result);
848 return ret;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900849}
850
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100851/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200852 * sony_nc_values input/output validate functions
Mattia Dongili156c2212007-02-12 22:01:07 +0100853 */
854
855/* brightness_default_validate:
856 *
857 * manipulate input output values to keep consistency with the
858 * backlight framework for which brightness values are 0-based.
859 */
860static int brightness_default_validate(const int direction, const int value)
861{
862 switch (direction) {
863 case SNC_VALIDATE_OUT:
864 return value - 1;
865 case SNC_VALIDATE_IN:
866 if (value >= 0 && value < SONY_MAX_BRIGHTNESS)
867 return value + 1;
868 }
869 return -EINVAL;
870}
871
872/* boolean_validate:
873 *
874 * on input validate boolean values 0/1, on output just pass the
875 * received value.
876 */
877static int boolean_validate(const int direction, const int value)
878{
879 if (direction == SNC_VALIDATE_IN) {
880 if (value != 0 && value != 1)
881 return -EINVAL;
882 }
883 return value;
884}
885
886/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200887 * Sysfs show/store common to all sony_nc_values
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100888 */
malattia@linux.it59b19102007-04-09 10:19:04 +0200889static ssize_t sony_nc_sysfs_show(struct device *dev, struct device_attribute *attr,
Len Browna02d1c12007-02-07 15:34:02 -0500890 char *buffer)
Stelian Pop7f09c432007-01-13 23:04:31 +0100891{
Stelian Pop7f09c432007-01-13 23:04:31 +0100892 int value;
malattia@linux.it59b19102007-04-09 10:19:04 +0200893 struct sony_nc_value *item =
894 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100895
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100896 if (!*item->acpiget)
Stelian Pop7f09c432007-01-13 23:04:31 +0100897 return -EIO;
898
malattia@linux.it59b19102007-04-09 10:19:04 +0200899 if (acpi_callgetfunc(sony_nc_acpi_handle, *item->acpiget, &value) < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +0100900 return -EIO;
901
Mattia Dongili156c2212007-02-12 22:01:07 +0100902 if (item->validate)
903 value = item->validate(SNC_VALIDATE_OUT, value);
904
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100905 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
Stelian Pop7f09c432007-01-13 23:04:31 +0100906}
907
malattia@linux.it59b19102007-04-09 10:19:04 +0200908static ssize_t sony_nc_sysfs_store(struct device *dev,
Len Browna02d1c12007-02-07 15:34:02 -0500909 struct device_attribute *attr,
910 const char *buffer, size_t count)
Stelian Pop7f09c432007-01-13 23:04:31 +0100911{
Stelian Pop7f09c432007-01-13 23:04:31 +0100912 int value;
malattia@linux.it59b19102007-04-09 10:19:04 +0200913 struct sony_nc_value *item =
914 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100915
916 if (!item->acpiset)
917 return -EIO;
918
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100919 if (count > 31)
920 return -EINVAL;
921
922 value = simple_strtoul(buffer, NULL, 10);
Stelian Pop7f09c432007-01-13 23:04:31 +0100923
Mattia Dongili156c2212007-02-12 22:01:07 +0100924 if (item->validate)
925 value = item->validate(SNC_VALIDATE_IN, value);
926
927 if (value < 0)
928 return value;
Stelian Pop7f09c432007-01-13 23:04:31 +0100929
malattia@linux.it59b19102007-04-09 10:19:04 +0200930 if (acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset, value, NULL) < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +0100931 return -EIO;
Andrew Morton3f4f4612007-01-13 23:04:32 +0100932 item->value = value;
933 item->valid = 1;
Stelian Pop7f09c432007-01-13 23:04:31 +0100934 return count;
935}
936
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100937
Mattia Dongilid78865c2007-02-07 20:01:56 +0100938/*
939 * Backlight device
940 */
Mattia Dongili62d2f232011-05-09 10:20:29 -0400941struct sony_backlight_props {
942 struct backlight_device *dev;
943 int handle;
944 u8 offset;
945 u8 maxlvl;
946};
947struct sony_backlight_props sony_bl_props;
948
Mattia Dongilid78865c2007-02-07 20:01:56 +0100949static int sony_backlight_update_status(struct backlight_device *bd)
Andrew Morton3f4f4612007-01-13 23:04:32 +0100950{
malattia@linux.it59b19102007-04-09 10:19:04 +0200951 return acpi_callsetfunc(sony_nc_acpi_handle, "SBRT",
Richard Purdie321709c2007-02-10 15:04:08 +0000952 bd->props.brightness + 1, NULL);
Andrew Morton3f4f4612007-01-13 23:04:32 +0100953}
954
Mattia Dongilid78865c2007-02-07 20:01:56 +0100955static int sony_backlight_get_brightness(struct backlight_device *bd)
956{
957 int value;
958
malattia@linux.it59b19102007-04-09 10:19:04 +0200959 if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value))
Mattia Dongilid78865c2007-02-07 20:01:56 +0100960 return 0;
961 /* brightness levels are 1-based, while backlight ones are 0-based */
962 return value - 1;
963}
964
Mattia Dongili7751ab82011-02-19 11:52:32 +0900965static int sony_nc_get_brightness_ng(struct backlight_device *bd)
966{
967 int result;
Mattia Dongili62d2f232011-05-09 10:20:29 -0400968 struct sony_backlight_props *sdev =
969 (struct sony_backlight_props *)bl_get_data(bd);
Mattia Dongili7751ab82011-02-19 11:52:32 +0900970
Mattia Dongili62d2f232011-05-09 10:20:29 -0400971 sony_call_snc_handle(sdev->handle, 0x0200, &result);
Mattia Dongili7751ab82011-02-19 11:52:32 +0900972
Mattia Dongili62d2f232011-05-09 10:20:29 -0400973 return (result & 0xff) - sdev->offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +0900974}
975
976static int sony_nc_update_status_ng(struct backlight_device *bd)
977{
978 int value, result;
Mattia Dongili62d2f232011-05-09 10:20:29 -0400979 struct sony_backlight_props *sdev =
980 (struct sony_backlight_props *)bl_get_data(bd);
Mattia Dongili7751ab82011-02-19 11:52:32 +0900981
Mattia Dongili62d2f232011-05-09 10:20:29 -0400982 value = bd->props.brightness + sdev->offset;
983 if (sony_call_snc_handle(sdev->handle, 0x0100 | (value << 16), &result))
Mattia Dongili6192fa72011-04-05 23:38:36 +0900984 return -EIO;
Mattia Dongili7751ab82011-02-19 11:52:32 +0900985
Mattia Dongili6192fa72011-04-05 23:38:36 +0900986 return value;
Mattia Dongili7751ab82011-02-19 11:52:32 +0900987}
988
Lionel Debrouxacc24722010-11-16 14:14:02 +0100989static const struct backlight_ops sony_backlight_ops = {
Mattia Dongili7751ab82011-02-19 11:52:32 +0900990 .options = BL_CORE_SUSPENDRESUME,
Len Browna02d1c12007-02-07 15:34:02 -0500991 .update_status = sony_backlight_update_status,
992 .get_brightness = sony_backlight_get_brightness,
Mattia Dongilid78865c2007-02-07 20:01:56 +0100993};
Mattia Dongili7751ab82011-02-19 11:52:32 +0900994static const struct backlight_ops sony_backlight_ng_ops = {
995 .options = BL_CORE_SUSPENDRESUME,
996 .update_status = sony_nc_update_status_ng,
997 .get_brightness = sony_nc_get_brightness_ng,
998};
Mattia Dongilid78865c2007-02-07 20:01:56 +0100999
1000/*
Mattia Dongili6315fd12007-07-16 02:34:35 +09001001 * New SNC-only Vaios event mapping to driver known keys
1002 */
1003struct sony_nc_event {
1004 u8 data;
1005 u8 event;
1006};
1007
Matthew Garrett45c79422009-03-26 21:58:16 +09001008static struct sony_nc_event sony_100_events[] = {
Matthew Garrett9b578962009-03-26 21:58:14 +09001009 { 0x90, SONYPI_EVENT_PKEY_P1 },
1010 { 0x10, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthias Welwarsky6479efb2009-04-01 22:10:45 +09001011 { 0x91, SONYPI_EVENT_PKEY_P2 },
Matthew Garrett9b578962009-03-26 21:58:14 +09001012 { 0x11, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001013 { 0x81, SONYPI_EVENT_FNKEY_F1 },
1014 { 0x01, SONYPI_EVENT_FNKEY_RELEASED },
Anton Veretenenkof5acf5e2009-03-26 22:44:26 +09001015 { 0x82, SONYPI_EVENT_FNKEY_F2 },
1016 { 0x02, SONYPI_EVENT_FNKEY_RELEASED },
1017 { 0x83, SONYPI_EVENT_FNKEY_F3 },
1018 { 0x03, SONYPI_EVENT_FNKEY_RELEASED },
1019 { 0x84, SONYPI_EVENT_FNKEY_F4 },
1020 { 0x04, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001021 { 0x85, SONYPI_EVENT_FNKEY_F5 },
1022 { 0x05, SONYPI_EVENT_FNKEY_RELEASED },
1023 { 0x86, SONYPI_EVENT_FNKEY_F6 },
1024 { 0x06, SONYPI_EVENT_FNKEY_RELEASED },
1025 { 0x87, SONYPI_EVENT_FNKEY_F7 },
1026 { 0x07, SONYPI_EVENT_FNKEY_RELEASED },
Matthew Garrett9b578962009-03-26 21:58:14 +09001027 { 0x89, SONYPI_EVENT_FNKEY_F9 },
1028 { 0x09, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001029 { 0x8A, SONYPI_EVENT_FNKEY_F10 },
1030 { 0x0A, SONYPI_EVENT_FNKEY_RELEASED },
1031 { 0x8C, SONYPI_EVENT_FNKEY_F12 },
1032 { 0x0C, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili1a7d9462011-01-08 18:47:29 +09001033 { 0x9d, SONYPI_EVENT_ZOOM_PRESSED },
1034 { 0x1d, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthew Garrett9b578962009-03-26 21:58:14 +09001035 { 0x9f, SONYPI_EVENT_CD_EJECT_PRESSED },
1036 { 0x1f, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili4f924ba2009-12-17 00:08:33 +09001037 { 0xa1, SONYPI_EVENT_MEDIA_PRESSED },
1038 { 0x21, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili1a7d9462011-01-08 18:47:29 +09001039 { 0xa4, SONYPI_EVENT_CD_EJECT_PRESSED },
1040 { 0x24, SONYPI_EVENT_ANYBUTTON_RELEASED },
1041 { 0xa5, SONYPI_EVENT_VENDOR_PRESSED },
1042 { 0x25, SONYPI_EVENT_ANYBUTTON_RELEASED },
1043 { 0xa6, SONYPI_EVENT_HELP_PRESSED },
1044 { 0x26, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001045 { 0, 0 },
1046};
1047
Matthew Garrett45c79422009-03-26 21:58:16 +09001048static struct sony_nc_event sony_127_events[] = {
1049 { 0x81, SONYPI_EVENT_MODEKEY_PRESSED },
1050 { 0x01, SONYPI_EVENT_ANYBUTTON_RELEASED },
1051 { 0x82, SONYPI_EVENT_PKEY_P1 },
1052 { 0x02, SONYPI_EVENT_ANYBUTTON_RELEASED },
1053 { 0x83, SONYPI_EVENT_PKEY_P2 },
1054 { 0x03, SONYPI_EVENT_ANYBUTTON_RELEASED },
1055 { 0x84, SONYPI_EVENT_PKEY_P3 },
1056 { 0x04, SONYPI_EVENT_ANYBUTTON_RELEASED },
1057 { 0x85, SONYPI_EVENT_PKEY_P4 },
1058 { 0x05, SONYPI_EVENT_ANYBUTTON_RELEASED },
1059 { 0x86, SONYPI_EVENT_PKEY_P5 },
1060 { 0x06, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthew Garrett45c79422009-03-26 21:58:16 +09001061 { 0x87, SONYPI_EVENT_SETTINGKEY_PRESSED },
1062 { 0x07, SONYPI_EVENT_ANYBUTTON_RELEASED },
1063 { 0, 0 },
1064};
1065
Mattia Dongili6315fd12007-07-16 02:34:35 +09001066/*
Mattia Dongilid78865c2007-02-07 20:01:56 +01001067 * ACPI callbacks
1068 */
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001069static void sony_nc_notify(struct acpi_device *device, u32 event)
Stelian Pop7f09c432007-01-13 23:04:31 +01001070{
Mattia Dongili6315fd12007-07-16 02:34:35 +09001071 u32 ev = event;
Mattia Dongili6315fd12007-07-16 02:34:35 +09001072
Matthew Garrett9b578962009-03-26 21:58:14 +09001073 if (ev >= 0x90) {
1074 /* New-style event */
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001075 int result;
Matthew Garrett45c79422009-03-26 21:58:16 +09001076 int key_handle = 0;
Matthew Garrett9b578962009-03-26 21:58:14 +09001077 ev -= 0x90;
Mattia Dongili6315fd12007-07-16 02:34:35 +09001078
Matthew Garrett45c79422009-03-26 21:58:16 +09001079 if (sony_find_snc_handle(0x100) == ev)
1080 key_handle = 0x100;
1081 if (sony_find_snc_handle(0x127) == ev)
1082 key_handle = 0x127;
Matthew Garrett9b578962009-03-26 21:58:14 +09001083
Matthias Welwarsky6479efb2009-04-01 22:10:45 +09001084 if (key_handle) {
Matthew Garrett45c79422009-03-26 21:58:16 +09001085 struct sony_nc_event *key_event;
1086
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001087 if (sony_call_snc_handle(key_handle, 0x200, &result)) {
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001088 dprintk("sony_nc_notify, unable to decode"
Matthew Garrett45c79422009-03-26 21:58:16 +09001089 " event 0x%.2x 0x%.2x\n", key_handle,
1090 ev);
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001091 /* restore the original event */
1092 ev = event;
1093 } else {
Matthew Garrett9b578962009-03-26 21:58:14 +09001094 ev = result & 0xFF;
1095
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001096 if (key_handle == 0x100)
1097 key_event = sony_100_events;
1098 else
1099 key_event = sony_127_events;
Matthew Garrett45c79422009-03-26 21:58:16 +09001100
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001101 for (; key_event->data; key_event++) {
1102 if (key_event->data == ev) {
1103 ev = key_event->event;
1104 break;
1105 }
Matthew Garrett9b578962009-03-26 21:58:14 +09001106 }
Mattia Dongili6315fd12007-07-16 02:34:35 +09001107
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001108 if (!key_event->data)
Joe Perches50f581a2011-03-29 15:21:48 -07001109 pr_info("Unknown event: 0x%x 0x%x\n",
1110 key_handle, ev);
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001111 else
1112 sony_laptop_report_input_event(ev);
Matthew Garrett45c79422009-03-26 21:58:16 +09001113 }
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001114 } else if (sony_find_snc_handle(sony_rfkill_handle) == ev) {
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001115 sony_nc_rfkill_update();
1116 return;
Matthew Garrett9b578962009-03-26 21:58:14 +09001117 }
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001118 } else
1119 sony_laptop_report_input_event(ev);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001120
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001121 dprintk("sony_nc_notify, event: 0x%.2x\n", ev);
Len Brown14e04fb2007-08-23 15:20:26 -04001122 acpi_bus_generate_proc_event(sony_nc_acpi_device, 1, ev);
Stelian Pop7f09c432007-01-13 23:04:31 +01001123}
1124
1125static acpi_status sony_walk_callback(acpi_handle handle, u32 level,
1126 void *context, void **return_value)
1127{
Lin Ming30823732008-12-16 16:59:35 +08001128 struct acpi_device_info *info;
Stelian Pop7f09c432007-01-13 23:04:31 +01001129
Bob Moore15b8dd52009-06-29 13:39:29 +08001130 if (ACPI_SUCCESS(acpi_get_object_info(handle, &info))) {
Joe Perches50f581a2011-03-29 15:21:48 -07001131 pr_warn("method: name: %4.4s, args %X\n",
Lin Ming30823732008-12-16 16:59:35 +08001132 (char *)&info->name, info->param_count);
1133
Bob Moore15b8dd52009-06-29 13:39:29 +08001134 kfree(info);
Lin Ming30823732008-12-16 16:59:35 +08001135 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001136
1137 return AE_OK;
1138}
1139
Mattia Dongilid78865c2007-02-07 20:01:56 +01001140/*
1141 * ACPI device
1142 */
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001143static int sony_nc_function_setup(struct acpi_device *device)
1144{
1145 int result;
1146
1147 /* Enable all events */
1148 acpi_callsetfunc(sony_nc_acpi_handle, "SN02", 0xffff, &result);
1149
1150 /* Setup hotkeys */
1151 sony_call_snc_handle(0x0100, 0, &result);
1152 sony_call_snc_handle(0x0101, 0, &result);
1153 sony_call_snc_handle(0x0102, 0x100, &result);
Almer S. Tigelaar560e84a2009-04-12 11:26:27 +00001154 sony_call_snc_handle(0x0127, 0, &result);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001155
1156 return 0;
1157}
1158
malattia@linux.it59b19102007-04-09 10:19:04 +02001159static int sony_nc_resume(struct acpi_device *device)
Mattia Dongilid78865c2007-02-07 20:01:56 +01001160{
malattia@linux.it59b19102007-04-09 10:19:04 +02001161 struct sony_nc_value *item;
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001162 acpi_handle handle;
Mattia Dongilid78865c2007-02-07 20:01:56 +01001163
malattia@linux.it59b19102007-04-09 10:19:04 +02001164 for (item = sony_nc_values; item->name; item++) {
Mattia Dongilid78865c2007-02-07 20:01:56 +01001165 int ret;
1166
1167 if (!item->valid)
1168 continue;
malattia@linux.it59b19102007-04-09 10:19:04 +02001169 ret = acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset,
Len Browna02d1c12007-02-07 15:34:02 -05001170 item->value, NULL);
Mattia Dongilid78865c2007-02-07 20:01:56 +01001171 if (ret < 0) {
Joe Perches50f581a2011-03-29 15:21:48 -07001172 pr_err("%s: %d\n", __func__, ret);
Mattia Dongilid78865c2007-02-07 20:01:56 +01001173 break;
1174 }
1175 }
Mattia Dongili6315fd12007-07-16 02:34:35 +09001176
Matthew Garrett82734bf2009-03-26 21:58:13 +09001177 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
1178 &handle))) {
1179 if (acpi_callsetfunc(sony_nc_acpi_handle, "ECON", 1, NULL))
1180 dprintk("ECON Method failed\n");
1181 }
1182
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001183 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
1184 &handle))) {
1185 dprintk("Doing SNC setup\n");
1186 sony_nc_function_setup(device);
1187 }
1188
Alan Jenkinsa0d97d62009-09-25 10:18:21 +01001189 /* re-read rfkill state */
1190 sony_nc_rfkill_update();
1191
Marco Chiapperodf410d52011-04-05 23:38:34 +09001192 /* restore kbd backlight states */
1193 sony_nc_kbd_backlight_resume();
1194
Mattia Dongilid78865c2007-02-07 20:01:56 +01001195 return 0;
1196}
1197
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001198static void sony_nc_rfkill_cleanup(void)
1199{
1200 int i;
1201
Johannes Berg19d337d2009-06-02 13:01:37 +02001202 for (i = 0; i < N_SONY_RFKILL; i++) {
1203 if (sony_rfkill_devices[i]) {
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001204 rfkill_unregister(sony_rfkill_devices[i]);
Johannes Berg19d337d2009-06-02 13:01:37 +02001205 rfkill_destroy(sony_rfkill_devices[i]);
1206 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001207 }
1208}
1209
Johannes Berg19d337d2009-06-02 13:01:37 +02001210static int sony_nc_rfkill_set(void *data, bool blocked)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001211{
1212 int result;
1213 int argument = sony_rfkill_address[(long) data] + 0x100;
1214
Johannes Berg19d337d2009-06-02 13:01:37 +02001215 if (!blocked)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001216 argument |= 0xff0000;
1217
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001218 return sony_call_snc_handle(sony_rfkill_handle, argument, &result);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001219}
1220
Johannes Berg19d337d2009-06-02 13:01:37 +02001221static const struct rfkill_ops sony_rfkill_ops = {
1222 .set_block = sony_nc_rfkill_set,
1223};
1224
1225static int sony_nc_setup_rfkill(struct acpi_device *device,
1226 enum sony_nc_rfkill nc_type)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001227{
1228 int err = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001229 struct rfkill *rfk;
1230 enum rfkill_type type;
1231 const char *name;
Alan Jenkins50fab072009-09-24 20:15:24 +01001232 int result;
1233 bool hwblock;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001234
Johannes Berg19d337d2009-06-02 13:01:37 +02001235 switch (nc_type) {
1236 case SONY_WIFI:
1237 type = RFKILL_TYPE_WLAN;
1238 name = "sony-wifi";
1239 break;
1240 case SONY_BLUETOOTH:
1241 type = RFKILL_TYPE_BLUETOOTH;
1242 name = "sony-bluetooth";
1243 break;
1244 case SONY_WWAN:
1245 type = RFKILL_TYPE_WWAN;
1246 name = "sony-wwan";
1247 break;
1248 case SONY_WIMAX:
1249 type = RFKILL_TYPE_WIMAX;
1250 name = "sony-wimax";
1251 break;
1252 default:
1253 return -EINVAL;
Mattia Dongili53005a02009-04-12 11:26:31 +00001254 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001255
Johannes Berg19d337d2009-06-02 13:01:37 +02001256 rfk = rfkill_alloc(name, &device->dev, type,
1257 &sony_rfkill_ops, (void *)nc_type);
1258 if (!rfk)
1259 return -ENOMEM;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001260
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001261 sony_call_snc_handle(sony_rfkill_handle, 0x200, &result);
Alan Jenkins50fab072009-09-24 20:15:24 +01001262 hwblock = !(result & 0x1);
1263 rfkill_set_hw_state(rfk, hwblock);
1264
Johannes Berg19d337d2009-06-02 13:01:37 +02001265 err = rfkill_register(rfk);
1266 if (err) {
1267 rfkill_destroy(rfk);
1268 return err;
Mattia Dongili53005a02009-04-12 11:26:31 +00001269 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001270 sony_rfkill_devices[nc_type] = rfk;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001271 return err;
1272}
1273
Randy Dunlapa46a7802011-01-08 19:56:44 -08001274static void sony_nc_rfkill_update(void)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001275{
Johannes Berg19d337d2009-06-02 13:01:37 +02001276 enum sony_nc_rfkill i;
1277 int result;
1278 bool hwblock;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001279
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001280 sony_call_snc_handle(sony_rfkill_handle, 0x200, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001281 hwblock = !(result & 0x1);
1282
1283 for (i = 0; i < N_SONY_RFKILL; i++) {
1284 int argument = sony_rfkill_address[i];
1285
1286 if (!sony_rfkill_devices[i])
1287 continue;
1288
1289 if (hwblock) {
Johannes Berge1f8a192009-06-11 12:08:15 +02001290 if (rfkill_set_hw_state(sony_rfkill_devices[i], true)) {
1291 /* we already know we're blocked */
1292 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001293 continue;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001294 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001295
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001296 sony_call_snc_handle(sony_rfkill_handle, argument, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001297 rfkill_set_states(sony_rfkill_devices[i],
1298 !(result & 0xf), false);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001299 }
1300}
1301
Mattia Dongili528809c2009-12-17 00:08:36 +09001302static void sony_nc_rfkill_setup(struct acpi_device *device)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001303{
Mattia Dongili528809c2009-12-17 00:08:36 +09001304 int offset;
1305 u8 dev_code, i;
1306 acpi_status status;
1307 struct acpi_object_list params;
1308 union acpi_object in_obj;
1309 union acpi_object *device_enum;
1310 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001311
Mattia Dongili528809c2009-12-17 00:08:36 +09001312 offset = sony_find_snc_handle(0x124);
1313 if (offset == -1) {
1314 offset = sony_find_snc_handle(0x135);
1315 if (offset == -1)
1316 return;
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001317 else
1318 sony_rfkill_handle = 0x135;
1319 } else
1320 sony_rfkill_handle = 0x124;
Mattia Dongili528809c2009-12-17 00:08:36 +09001321 dprintk("Found rkfill handle: 0x%.4x\n", sony_rfkill_handle);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001322
Mattia Dongili528809c2009-12-17 00:08:36 +09001323 /* need to read the whole buffer returned by the acpi call to SN06
1324 * here otherwise we may miss some features
1325 */
1326 params.count = 1;
1327 params.pointer = &in_obj;
1328 in_obj.type = ACPI_TYPE_INTEGER;
1329 in_obj.integer.value = offset;
1330 status = acpi_evaluate_object(sony_nc_acpi_handle, "SN06", &params,
1331 &buffer);
1332 if (ACPI_FAILURE(status)) {
1333 dprintk("Radio device enumeration failed\n");
1334 return;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001335 }
1336
Mattia Dongili528809c2009-12-17 00:08:36 +09001337 device_enum = (union acpi_object *) buffer.pointer;
Dan Carpenter200140b2011-02-27 17:13:25 +03001338 if (!device_enum) {
Joe Perches50f581a2011-03-29 15:21:48 -07001339 pr_err("No SN06 return object\n");
Dan Carpenter200140b2011-02-27 17:13:25 +03001340 goto out_no_enum;
1341 }
1342 if (device_enum->type != ACPI_TYPE_BUFFER) {
Joe Perches50f581a2011-03-29 15:21:48 -07001343 pr_err("Invalid SN06 return object 0x%.2x\n",
1344 device_enum->type);
Mattia Dongili528809c2009-12-17 00:08:36 +09001345 goto out_no_enum;
1346 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001347
Mattia Dongili528809c2009-12-17 00:08:36 +09001348 /* the buffer is filled with magic numbers describing the devices
1349 * available, 0xff terminates the enumeration
1350 */
Dmitry Torokhovc14973f2010-01-10 00:15:44 -08001351 for (i = 0; i < device_enum->buffer.length; i++) {
1352
1353 dev_code = *(device_enum->buffer.pointer + i);
1354 if (dev_code == 0xff)
1355 break;
1356
Mattia Dongili528809c2009-12-17 00:08:36 +09001357 dprintk("Radio devices, looking at 0x%.2x\n", dev_code);
1358
1359 if (dev_code == 0 && !sony_rfkill_devices[SONY_WIFI])
1360 sony_nc_setup_rfkill(device, SONY_WIFI);
1361
1362 if (dev_code == 0x10 && !sony_rfkill_devices[SONY_BLUETOOTH])
1363 sony_nc_setup_rfkill(device, SONY_BLUETOOTH);
1364
1365 if ((0xf0 & dev_code) == 0x20 &&
1366 !sony_rfkill_devices[SONY_WWAN])
1367 sony_nc_setup_rfkill(device, SONY_WWAN);
1368
1369 if (dev_code == 0x30 && !sony_rfkill_devices[SONY_WIMAX])
1370 sony_nc_setup_rfkill(device, SONY_WIMAX);
1371 }
1372
1373out_no_enum:
1374 kfree(buffer.pointer);
1375 return;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001376}
1377
Mattia Dongilibf155712011-02-19 11:52:31 +09001378/* Keyboard backlight feature */
1379#define KBDBL_HANDLER 0x137
1380#define KBDBL_PRESENT 0xB00
1381#define SET_MODE 0xC00
Marco Chiapperodf410d52011-04-05 23:38:34 +09001382#define SET_STATE 0xD00
Mattia Dongilibf155712011-02-19 11:52:31 +09001383#define SET_TIMEOUT 0xE00
1384
1385struct kbd_backlight {
1386 int mode;
1387 int timeout;
1388 struct device_attribute mode_attr;
1389 struct device_attribute timeout_attr;
1390};
1391
Dan Carpenterf11113b2011-02-26 15:54:27 +03001392static struct kbd_backlight *kbdbl_handle;
Mattia Dongilibf155712011-02-19 11:52:31 +09001393
1394static ssize_t __sony_nc_kbd_backlight_mode_set(u8 value)
1395{
1396 int result;
1397
1398 if (value > 1)
1399 return -EINVAL;
1400
1401 if (sony_call_snc_handle(KBDBL_HANDLER,
1402 (value << 0x10) | SET_MODE, &result))
1403 return -EIO;
1404
Marco Chiapperodf410d52011-04-05 23:38:34 +09001405 /* Try to turn the light on/off immediately */
1406 sony_call_snc_handle(KBDBL_HANDLER, (value << 0x10) | SET_STATE,
1407 &result);
1408
Mattia Dongilibf155712011-02-19 11:52:31 +09001409 kbdbl_handle->mode = value;
1410
1411 return 0;
1412}
1413
1414static ssize_t sony_nc_kbd_backlight_mode_store(struct device *dev,
1415 struct device_attribute *attr,
1416 const char *buffer, size_t count)
1417{
1418 int ret = 0;
1419 unsigned long value;
1420
1421 if (count > 31)
1422 return -EINVAL;
1423
1424 if (strict_strtoul(buffer, 10, &value))
1425 return -EINVAL;
1426
1427 ret = __sony_nc_kbd_backlight_mode_set(value);
1428 if (ret < 0)
1429 return ret;
1430
1431 return count;
1432}
1433
1434static ssize_t sony_nc_kbd_backlight_mode_show(struct device *dev,
1435 struct device_attribute *attr, char *buffer)
1436{
1437 ssize_t count = 0;
1438 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_handle->mode);
1439 return count;
1440}
1441
1442static int __sony_nc_kbd_backlight_timeout_set(u8 value)
1443{
1444 int result;
1445
1446 if (value > 3)
1447 return -EINVAL;
1448
1449 if (sony_call_snc_handle(KBDBL_HANDLER,
1450 (value << 0x10) | SET_TIMEOUT, &result))
1451 return -EIO;
1452
1453 kbdbl_handle->timeout = value;
1454
1455 return 0;
1456}
1457
1458static ssize_t sony_nc_kbd_backlight_timeout_store(struct device *dev,
1459 struct device_attribute *attr,
1460 const char *buffer, size_t count)
1461{
1462 int ret = 0;
1463 unsigned long value;
1464
1465 if (count > 31)
1466 return -EINVAL;
1467
1468 if (strict_strtoul(buffer, 10, &value))
1469 return -EINVAL;
1470
1471 ret = __sony_nc_kbd_backlight_timeout_set(value);
1472 if (ret < 0)
1473 return ret;
1474
1475 return count;
1476}
1477
1478static ssize_t sony_nc_kbd_backlight_timeout_show(struct device *dev,
1479 struct device_attribute *attr, char *buffer)
1480{
1481 ssize_t count = 0;
1482 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_handle->timeout);
1483 return count;
1484}
1485
1486static int sony_nc_kbd_backlight_setup(struct platform_device *pd)
1487{
1488 int result;
1489
Marco Chiapperodf410d52011-04-05 23:38:34 +09001490 if (sony_call_snc_handle(KBDBL_HANDLER, KBDBL_PRESENT, &result))
Mattia Dongilibf155712011-02-19 11:52:31 +09001491 return 0;
1492 if (!(result & 0x02))
1493 return 0;
1494
1495 kbdbl_handle = kzalloc(sizeof(*kbdbl_handle), GFP_KERNEL);
Dan Carpenter31f00752011-02-26 15:55:24 +03001496 if (!kbdbl_handle)
1497 return -ENOMEM;
Mattia Dongilibf155712011-02-19 11:52:31 +09001498
1499 sysfs_attr_init(&kbdbl_handle->mode_attr.attr);
1500 kbdbl_handle->mode_attr.attr.name = "kbd_backlight";
1501 kbdbl_handle->mode_attr.attr.mode = S_IRUGO | S_IWUSR;
1502 kbdbl_handle->mode_attr.show = sony_nc_kbd_backlight_mode_show;
1503 kbdbl_handle->mode_attr.store = sony_nc_kbd_backlight_mode_store;
1504
1505 sysfs_attr_init(&kbdbl_handle->timeout_attr.attr);
1506 kbdbl_handle->timeout_attr.attr.name = "kbd_backlight_timeout";
1507 kbdbl_handle->timeout_attr.attr.mode = S_IRUGO | S_IWUSR;
1508 kbdbl_handle->timeout_attr.show = sony_nc_kbd_backlight_timeout_show;
1509 kbdbl_handle->timeout_attr.store = sony_nc_kbd_backlight_timeout_store;
1510
1511 if (device_create_file(&pd->dev, &kbdbl_handle->mode_attr))
1512 goto outkzalloc;
1513
1514 if (device_create_file(&pd->dev, &kbdbl_handle->timeout_attr))
1515 goto outmode;
1516
1517 __sony_nc_kbd_backlight_mode_set(kbd_backlight);
1518 __sony_nc_kbd_backlight_timeout_set(kbd_backlight_timeout);
1519
1520 return 0;
1521
1522outmode:
1523 device_remove_file(&pd->dev, &kbdbl_handle->mode_attr);
1524outkzalloc:
1525 kfree(kbdbl_handle);
1526 kbdbl_handle = NULL;
1527 return -1;
1528}
1529
1530static int sony_nc_kbd_backlight_cleanup(struct platform_device *pd)
1531{
1532 if (kbdbl_handle) {
Marco Chiapperodf410d52011-04-05 23:38:34 +09001533 int result;
1534
Mattia Dongilibf155712011-02-19 11:52:31 +09001535 device_remove_file(&pd->dev, &kbdbl_handle->mode_attr);
1536 device_remove_file(&pd->dev, &kbdbl_handle->timeout_attr);
Marco Chiapperodf410d52011-04-05 23:38:34 +09001537
1538 /* restore the default hw behaviour */
1539 sony_call_snc_handle(KBDBL_HANDLER, 0x1000 | SET_MODE, &result);
1540 sony_call_snc_handle(KBDBL_HANDLER, SET_TIMEOUT, &result);
1541
Mattia Dongilibf155712011-02-19 11:52:31 +09001542 kfree(kbdbl_handle);
1543 }
1544 return 0;
1545}
1546
Marco Chiapperodf410d52011-04-05 23:38:34 +09001547static void sony_nc_kbd_backlight_resume(void)
1548{
1549 int ignore = 0;
1550
1551 if (!kbdbl_handle)
1552 return;
1553
1554 if (kbdbl_handle->mode == 0)
1555 sony_call_snc_handle(KBDBL_HANDLER, SET_MODE, &ignore);
1556
1557 if (kbdbl_handle->timeout != 0)
1558 sony_call_snc_handle(KBDBL_HANDLER,
1559 (kbdbl_handle->timeout << 0x10) | SET_TIMEOUT,
1560 &ignore);
1561}
1562
Mattia Dongili62d2f232011-05-09 10:20:29 -04001563static void sony_nc_backlight_ng_read_limits(int handle,
1564 struct sony_backlight_props *props)
1565{
1566 int offset;
1567 acpi_status status;
1568 u8 brlvl, i;
1569 u8 min = 0xff, max = 0x00;
1570 struct acpi_object_list params;
1571 union acpi_object in_obj;
1572 union acpi_object *lvl_enum;
1573 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1574
1575 props->handle = handle;
1576 props->offset = 0;
1577 props->maxlvl = 0xff;
1578
1579 offset = sony_find_snc_handle(handle);
1580 if (offset < 0)
1581 return;
1582
1583 /* try to read the boundaries from ACPI tables, if we fail the above
1584 * defaults should be reasonable
1585 */
1586 params.count = 1;
1587 params.pointer = &in_obj;
1588 in_obj.type = ACPI_TYPE_INTEGER;
1589 in_obj.integer.value = offset;
1590 status = acpi_evaluate_object(sony_nc_acpi_handle, "SN06", &params,
1591 &buffer);
1592 if (ACPI_FAILURE(status))
1593 return;
1594
1595 lvl_enum = (union acpi_object *) buffer.pointer;
1596 if (!lvl_enum) {
1597 pr_err("No SN06 return object.");
1598 return;
1599 }
1600 if (lvl_enum->type != ACPI_TYPE_BUFFER) {
1601 pr_err("Invalid SN06 return object 0x%.2x\n",
1602 lvl_enum->type);
1603 goto out_invalid;
1604 }
1605
1606 /* the buffer lists brightness levels available, brightness levels are
1607 * from 0 to 8 in the array, other values are used by ALS control.
1608 */
1609 for (i = 0; i < 9 && i < lvl_enum->buffer.length; i++) {
1610
1611 brlvl = *(lvl_enum->buffer.pointer + i);
1612 dprintk("Brightness level: %d\n", brlvl);
1613
1614 if (!brlvl)
1615 break;
1616
1617 if (brlvl > max)
1618 max = brlvl;
1619 if (brlvl < min)
1620 min = brlvl;
1621 }
1622 props->offset = min;
1623 props->maxlvl = max;
1624 dprintk("Brightness levels: min=%d max=%d\n", props->offset,
1625 props->maxlvl);
1626
1627out_invalid:
1628 kfree(buffer.pointer);
1629 return;
1630}
1631
Mattia Dongili7751ab82011-02-19 11:52:32 +09001632static void sony_nc_backlight_setup(void)
1633{
1634 acpi_handle unused;
1635 int max_brightness = 0;
1636 const struct backlight_ops *ops = NULL;
1637 struct backlight_properties props;
1638
1639 if (sony_find_snc_handle(0x12f) != -1) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09001640 ops = &sony_backlight_ng_ops;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001641 sony_nc_backlight_ng_read_limits(0x12f, &sony_bl_props);
1642 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001643
1644 } else if (sony_find_snc_handle(0x137) != -1) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09001645 ops = &sony_backlight_ng_ops;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001646 sony_nc_backlight_ng_read_limits(0x137, &sony_bl_props);
1647 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001648
1649 } else if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT",
1650 &unused))) {
1651 ops = &sony_backlight_ops;
1652 max_brightness = SONY_MAX_BRIGHTNESS - 1;
1653
1654 } else
1655 return;
1656
1657 memset(&props, 0, sizeof(struct backlight_properties));
1658 props.type = BACKLIGHT_PLATFORM;
1659 props.max_brightness = max_brightness;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001660 sony_bl_props.dev = backlight_device_register("sony", NULL,
1661 &sony_bl_props,
1662 ops, &props);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001663
Mattia Dongili62d2f232011-05-09 10:20:29 -04001664 if (IS_ERR(sony_bl_props.dev)) {
Joe Perches50f581a2011-03-29 15:21:48 -07001665 pr_warn("unable to register backlight device\n");
Mattia Dongili62d2f232011-05-09 10:20:29 -04001666 sony_bl_props.dev = NULL;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001667 } else
Mattia Dongili62d2f232011-05-09 10:20:29 -04001668 sony_bl_props.dev->props.brightness =
1669 ops->get_brightness(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001670}
1671
1672static void sony_nc_backlight_cleanup(void)
1673{
Mattia Dongili62d2f232011-05-09 10:20:29 -04001674 if (sony_bl_props.dev)
1675 backlight_device_unregister(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001676}
1677
malattia@linux.it59b19102007-04-09 10:19:04 +02001678static int sony_nc_add(struct acpi_device *device)
Stelian Pop7f09c432007-01-13 23:04:31 +01001679{
1680 acpi_status status;
Andrew Morton8607c672007-03-06 02:29:42 -08001681 int result = 0;
Alessandro Guido50f62af2007-01-13 23:04:34 +01001682 acpi_handle handle;
malattia@linux.it56b87562007-04-09 10:19:05 +02001683 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01001684
Joe Perches50f581a2011-03-29 15:21:48 -07001685 pr_info("%s v%s\n", SONY_NC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.itf6119b02007-04-09 19:31:06 +02001686
malattia@linux.it59b19102007-04-09 10:19:04 +02001687 sony_nc_acpi_device = device;
malattia@linux.it33a04452007-04-09 19:26:03 +02001688 strcpy(acpi_device_class(device), "sony/hotkey");
Stelian Popc5611622007-01-13 23:04:37 +01001689
malattia@linux.it59b19102007-04-09 10:19:04 +02001690 sony_nc_acpi_handle = device->handle;
Stelian Pop7f09c432007-01-13 23:04:31 +01001691
Mattia Dongilib25b7322007-07-16 02:34:36 +09001692 /* read device status */
1693 result = acpi_bus_get_status(device);
1694 /* bail IFF the above call was successful and the device is not present */
1695 if (!result && !device->status.present) {
1696 dprintk("Device not present\n");
1697 result = -ENODEV;
1698 goto outwalk;
1699 }
1700
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001701 result = sony_pf_add();
1702 if (result)
1703 goto outpresent;
1704
Stelian Pop7f09c432007-01-13 23:04:31 +01001705 if (debug) {
Mattia Dongilid6697932011-02-19 11:52:28 +09001706 status = acpi_walk_namespace(ACPI_TYPE_METHOD,
1707 sony_nc_acpi_handle, 1, sony_walk_callback,
1708 NULL, NULL, NULL);
Stelian Pop7f09c432007-01-13 23:04:31 +01001709 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07001710 pr_warn("unable to walk acpi resources\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001711 result = -ENODEV;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001712 goto outpresent;
Stelian Pop7f09c432007-01-13 23:04:31 +01001713 }
Stelian Popc5611622007-01-13 23:04:37 +01001714 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001715
Matthew Garrett82734bf2009-03-26 21:58:13 +09001716 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
1717 &handle))) {
1718 if (acpi_callsetfunc(sony_nc_acpi_handle, "ECON", 1, NULL))
1719 dprintk("ECON Method failed\n");
1720 }
1721
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001722 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
1723 &handle))) {
1724 dprintk("Doing SNC setup\n");
Dan Carpenter7227ded2011-02-26 15:54:57 +03001725 result = sony_nc_handles_setup(sony_pf_device);
1726 if (result)
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001727 goto outpresent;
Dan Carpenter7227ded2011-02-26 15:54:57 +03001728 result = sony_nc_kbd_backlight_setup(sony_pf_device);
1729 if (result)
Mattia Dongilibf155712011-02-19 11:52:31 +09001730 goto outsnc;
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001731 sony_nc_function_setup(device);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001732 sony_nc_rfkill_setup(device);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001733 }
1734
malattia@linux.it1549ee62007-04-09 10:19:08 +02001735 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05001736 result = sony_laptop_setup_input(device);
malattia@linux.it1549ee62007-04-09 10:19:08 +02001737 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07001738 pr_err("Unable to create input devices\n");
Mattia Dongilibf155712011-02-19 11:52:31 +09001739 goto outkbdbacklight;
malattia@linux.it1549ee62007-04-09 10:19:08 +02001740 }
1741
Alessandro Guido38cfc142008-11-12 23:03:28 +01001742 if (acpi_video_backlight_support()) {
Joe Perches50f581a2011-03-29 15:21:48 -07001743 pr_info("brightness ignored, must be controlled by ACPI video driver\n");
Mattia Dongili7751ab82011-02-19 11:52:32 +09001744 } else {
1745 sony_nc_backlight_setup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01001746 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001747
malattia@linux.it56b87562007-04-09 10:19:05 +02001748 /* create sony_pf sysfs attributes related to the SNC device */
1749 for (item = sony_nc_values; item->name; ++item) {
1750
1751 if (!debug && item->debug)
1752 continue;
1753
1754 /* find the available acpiget as described in the DSDT */
1755 for (; item->acpiget && *item->acpiget; ++item->acpiget) {
1756 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1757 *item->acpiget,
1758 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001759 dprintk("Found %s getter: %s\n",
1760 item->name, *item->acpiget);
malattia@linux.it56b87562007-04-09 10:19:05 +02001761 item->devattr.attr.mode |= S_IRUGO;
1762 break;
1763 }
1764 }
1765
1766 /* find the available acpiset as described in the DSDT */
1767 for (; item->acpiset && *item->acpiset; ++item->acpiset) {
1768 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1769 *item->acpiset,
1770 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001771 dprintk("Found %s setter: %s\n",
1772 item->name, *item->acpiset);
malattia@linux.it56b87562007-04-09 10:19:05 +02001773 item->devattr.attr.mode |= S_IWUSR;
1774 break;
1775 }
1776 }
1777
1778 if (item->devattr.attr.mode != 0) {
1779 result =
1780 device_create_file(&sony_pf_device->dev,
1781 &item->devattr);
1782 if (result)
1783 goto out_sysfs;
1784 }
1785 }
1786
Stelian Pop7f09c432007-01-13 23:04:31 +01001787 return 0;
1788
malattia@linux.it56b87562007-04-09 10:19:05 +02001789 out_sysfs:
1790 for (item = sony_nc_values; item->name; ++item) {
1791 device_remove_file(&sony_pf_device->dev, &item->devattr);
1792 }
Mattia Dongili7751ab82011-02-19 11:52:32 +09001793 sony_nc_backlight_cleanup();
Mattia Dongili7df03b82007-01-13 23:04:41 +01001794
malattia@linux.it1549ee62007-04-09 10:19:08 +02001795 sony_laptop_remove_input();
1796
Mattia Dongilibf155712011-02-19 11:52:31 +09001797 outkbdbacklight:
1798 sony_nc_kbd_backlight_cleanup(sony_pf_device);
1799
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001800 outsnc:
1801 sony_nc_handles_cleanup(sony_pf_device);
1802
1803 outpresent:
1804 sony_pf_remove();
1805
Len Browna02d1c12007-02-07 15:34:02 -05001806 outwalk:
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001807 sony_nc_rfkill_cleanup();
Stelian Pop7f09c432007-01-13 23:04:31 +01001808 return result;
1809}
1810
malattia@linux.it59b19102007-04-09 10:19:04 +02001811static int sony_nc_remove(struct acpi_device *device, int type)
Stelian Pop7f09c432007-01-13 23:04:31 +01001812{
malattia@linux.it56b87562007-04-09 10:19:05 +02001813 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01001814
Mattia Dongili7751ab82011-02-19 11:52:32 +09001815 sony_nc_backlight_cleanup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01001816
malattia@linux.it59b19102007-04-09 10:19:04 +02001817 sony_nc_acpi_device = NULL;
Stelian Popc5611622007-01-13 23:04:37 +01001818
malattia@linux.it56b87562007-04-09 10:19:05 +02001819 for (item = sony_nc_values; item->name; ++item) {
1820 device_remove_file(&sony_pf_device->dev, &item->devattr);
1821 }
1822
Mattia Dongilibf155712011-02-19 11:52:31 +09001823 sony_nc_kbd_backlight_cleanup(sony_pf_device);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001824 sony_nc_handles_cleanup(sony_pf_device);
malattia@linux.it56b87562007-04-09 10:19:05 +02001825 sony_pf_remove();
malattia@linux.it1549ee62007-04-09 10:19:08 +02001826 sony_laptop_remove_input();
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001827 sony_nc_rfkill_cleanup();
malattia@linux.itf6119b02007-04-09 19:31:06 +02001828 dprintk(SONY_NC_DRIVER_NAME " removed.\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001829
1830 return 0;
1831}
1832
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001833static const struct acpi_device_id sony_device_ids[] = {
1834 {SONY_NC_HID, 0},
1835 {SONY_PIC_HID, 0},
1836 {"", 0},
1837};
1838MODULE_DEVICE_TABLE(acpi, sony_device_ids);
1839
1840static const struct acpi_device_id sony_nc_device_ids[] = {
1841 {SONY_NC_HID, 0},
1842 {"", 0},
1843};
1844
malattia@linux.it59b19102007-04-09 10:19:04 +02001845static struct acpi_driver sony_nc_driver = {
1846 .name = SONY_NC_DRIVER_NAME,
1847 .class = SONY_NC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001848 .ids = sony_nc_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02001849 .owner = THIS_MODULE,
Len Browna02d1c12007-02-07 15:34:02 -05001850 .ops = {
malattia@linux.it59b19102007-04-09 10:19:04 +02001851 .add = sony_nc_add,
1852 .remove = sony_nc_remove,
1853 .resume = sony_nc_resume,
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001854 .notify = sony_nc_notify,
Len Browna02d1c12007-02-07 15:34:02 -05001855 },
Andrew Morton3f4f4612007-01-13 23:04:32 +01001856};
1857
malattia@linux.it33a04452007-04-09 19:26:03 +02001858/*********** SPIC (SNY6001) Device ***********/
1859
1860#define SONYPI_DEVICE_TYPE1 0x00000001
1861#define SONYPI_DEVICE_TYPE2 0x00000002
1862#define SONYPI_DEVICE_TYPE3 0x00000004
1863
Mattia Dongili22a17782007-07-16 02:34:39 +09001864#define SONYPI_TYPE1_OFFSET 0x04
1865#define SONYPI_TYPE2_OFFSET 0x12
1866#define SONYPI_TYPE3_OFFSET 0x12
malattia@linux.it33a04452007-04-09 19:26:03 +02001867
malattia@linux.it33a04452007-04-09 19:26:03 +02001868struct sony_pic_ioport {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001869 struct acpi_resource_io io1;
1870 struct acpi_resource_io io2;
malattia@linux.it33a04452007-04-09 19:26:03 +02001871 struct list_head list;
1872};
1873
1874struct sony_pic_irq {
1875 struct acpi_resource_irq irq;
1876 struct list_head list;
1877};
1878
Mattia Dongilide920432008-01-14 18:05:43 +09001879struct sonypi_eventtypes {
1880 u8 data;
1881 unsigned long mask;
1882 struct sonypi_event *events;
1883};
1884
malattia@linux.it33a04452007-04-09 19:26:03 +02001885struct sony_pic_dev {
Mattia Dongili31df7142009-09-16 00:05:29 +09001886 struct acpi_device *acpi_dev;
1887 struct sony_pic_irq *cur_irq;
1888 struct sony_pic_ioport *cur_ioport;
1889 struct list_head interrupts;
1890 struct list_head ioports;
1891 struct mutex lock;
1892 struct sonypi_eventtypes *event_types;
1893 int (*handle_irq)(const u8, const u8);
1894 int model;
1895 u16 evport_offset;
1896 u8 camera_power;
1897 u8 bluetooth_power;
1898 u8 wwan_power;
malattia@linux.it33a04452007-04-09 19:26:03 +02001899};
1900
1901static struct sony_pic_dev spic_dev = {
1902 .interrupts = LIST_HEAD_INIT(spic_dev.interrupts),
1903 .ioports = LIST_HEAD_INIT(spic_dev.ioports),
1904};
1905
Alan Jenkins5e6f9722009-09-16 00:05:32 +09001906static int spic_drv_registered;
1907
malattia@linux.it33a04452007-04-09 19:26:03 +02001908/* Event masks */
1909#define SONYPI_JOGGER_MASK 0x00000001
1910#define SONYPI_CAPTURE_MASK 0x00000002
1911#define SONYPI_FNKEY_MASK 0x00000004
1912#define SONYPI_BLUETOOTH_MASK 0x00000008
1913#define SONYPI_PKEY_MASK 0x00000010
1914#define SONYPI_BACK_MASK 0x00000020
1915#define SONYPI_HELP_MASK 0x00000040
1916#define SONYPI_LID_MASK 0x00000080
1917#define SONYPI_ZOOM_MASK 0x00000100
1918#define SONYPI_THUMBPHRASE_MASK 0x00000200
1919#define SONYPI_MEYE_MASK 0x00000400
1920#define SONYPI_MEMORYSTICK_MASK 0x00000800
1921#define SONYPI_BATTERY_MASK 0x00001000
1922#define SONYPI_WIRELESS_MASK 0x00002000
1923
1924struct sonypi_event {
1925 u8 data;
1926 u8 event;
1927};
1928
1929/* The set of possible button release events */
1930static struct sonypi_event sonypi_releaseev[] = {
1931 { 0x00, SONYPI_EVENT_ANYBUTTON_RELEASED },
1932 { 0, 0 }
1933};
1934
1935/* The set of possible jogger events */
1936static struct sonypi_event sonypi_joggerev[] = {
1937 { 0x1f, SONYPI_EVENT_JOGDIAL_UP },
1938 { 0x01, SONYPI_EVENT_JOGDIAL_DOWN },
1939 { 0x5f, SONYPI_EVENT_JOGDIAL_UP_PRESSED },
1940 { 0x41, SONYPI_EVENT_JOGDIAL_DOWN_PRESSED },
1941 { 0x1e, SONYPI_EVENT_JOGDIAL_FAST_UP },
1942 { 0x02, SONYPI_EVENT_JOGDIAL_FAST_DOWN },
1943 { 0x5e, SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED },
1944 { 0x42, SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED },
1945 { 0x1d, SONYPI_EVENT_JOGDIAL_VFAST_UP },
1946 { 0x03, SONYPI_EVENT_JOGDIAL_VFAST_DOWN },
1947 { 0x5d, SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED },
1948 { 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED },
1949 { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED },
1950 { 0, 0 }
1951};
1952
1953/* The set of possible capture button events */
1954static struct sonypi_event sonypi_captureev[] = {
1955 { 0x05, SONYPI_EVENT_CAPTURE_PARTIALPRESSED },
1956 { 0x07, SONYPI_EVENT_CAPTURE_PRESSED },
Mattia Dongili3eb87492008-01-14 18:05:45 +09001957 { 0x40, SONYPI_EVENT_CAPTURE_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02001958 { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED },
1959 { 0, 0 }
1960};
1961
1962/* The set of possible fnkeys events */
1963static struct sonypi_event sonypi_fnkeyev[] = {
1964 { 0x10, SONYPI_EVENT_FNKEY_ESC },
1965 { 0x11, SONYPI_EVENT_FNKEY_F1 },
1966 { 0x12, SONYPI_EVENT_FNKEY_F2 },
1967 { 0x13, SONYPI_EVENT_FNKEY_F3 },
1968 { 0x14, SONYPI_EVENT_FNKEY_F4 },
1969 { 0x15, SONYPI_EVENT_FNKEY_F5 },
1970 { 0x16, SONYPI_EVENT_FNKEY_F6 },
1971 { 0x17, SONYPI_EVENT_FNKEY_F7 },
1972 { 0x18, SONYPI_EVENT_FNKEY_F8 },
1973 { 0x19, SONYPI_EVENT_FNKEY_F9 },
1974 { 0x1a, SONYPI_EVENT_FNKEY_F10 },
1975 { 0x1b, SONYPI_EVENT_FNKEY_F11 },
1976 { 0x1c, SONYPI_EVENT_FNKEY_F12 },
1977 { 0x1f, SONYPI_EVENT_FNKEY_RELEASED },
1978 { 0x21, SONYPI_EVENT_FNKEY_1 },
1979 { 0x22, SONYPI_EVENT_FNKEY_2 },
1980 { 0x31, SONYPI_EVENT_FNKEY_D },
1981 { 0x32, SONYPI_EVENT_FNKEY_E },
1982 { 0x33, SONYPI_EVENT_FNKEY_F },
1983 { 0x34, SONYPI_EVENT_FNKEY_S },
1984 { 0x35, SONYPI_EVENT_FNKEY_B },
1985 { 0x36, SONYPI_EVENT_FNKEY_ONLY },
1986 { 0, 0 }
1987};
1988
1989/* The set of possible program key events */
1990static struct sonypi_event sonypi_pkeyev[] = {
1991 { 0x01, SONYPI_EVENT_PKEY_P1 },
1992 { 0x02, SONYPI_EVENT_PKEY_P2 },
1993 { 0x04, SONYPI_EVENT_PKEY_P3 },
Harald Jenny1cae7102009-03-26 21:58:18 +09001994 { 0x20, SONYPI_EVENT_PKEY_P1 },
malattia@linux.it33a04452007-04-09 19:26:03 +02001995 { 0, 0 }
1996};
1997
1998/* The set of possible bluetooth events */
1999static struct sonypi_event sonypi_blueev[] = {
2000 { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED },
2001 { 0x59, SONYPI_EVENT_BLUETOOTH_ON },
2002 { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF },
2003 { 0, 0 }
2004};
2005
2006/* The set of possible wireless events */
2007static struct sonypi_event sonypi_wlessev[] = {
Mattia Dongili4eeb5022011-02-19 11:52:27 +09002008 { 0x59, SONYPI_EVENT_IGNORE },
2009 { 0x5a, SONYPI_EVENT_IGNORE },
malattia@linux.it33a04452007-04-09 19:26:03 +02002010 { 0, 0 }
2011};
2012
2013/* The set of possible back button events */
2014static struct sonypi_event sonypi_backev[] = {
2015 { 0x20, SONYPI_EVENT_BACK_PRESSED },
2016 { 0, 0 }
2017};
2018
2019/* The set of possible help button events */
2020static struct sonypi_event sonypi_helpev[] = {
2021 { 0x3b, SONYPI_EVENT_HELP_PRESSED },
2022 { 0, 0 }
2023};
2024
2025
2026/* The set of possible lid events */
2027static struct sonypi_event sonypi_lidev[] = {
2028 { 0x51, SONYPI_EVENT_LID_CLOSED },
2029 { 0x50, SONYPI_EVENT_LID_OPENED },
2030 { 0, 0 }
2031};
2032
2033/* The set of possible zoom events */
2034static struct sonypi_event sonypi_zoomev[] = {
2035 { 0x39, SONYPI_EVENT_ZOOM_PRESSED },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002036 { 0x10, SONYPI_EVENT_ZOOM_IN_PRESSED },
2037 { 0x20, SONYPI_EVENT_ZOOM_OUT_PRESSED },
Harald Jenny1cae7102009-03-26 21:58:18 +09002038 { 0x04, SONYPI_EVENT_ZOOM_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02002039 { 0, 0 }
2040};
2041
2042/* The set of possible thumbphrase events */
2043static struct sonypi_event sonypi_thumbphraseev[] = {
2044 { 0x3a, SONYPI_EVENT_THUMBPHRASE_PRESSED },
2045 { 0, 0 }
2046};
2047
2048/* The set of possible motioneye camera events */
2049static struct sonypi_event sonypi_meyeev[] = {
2050 { 0x00, SONYPI_EVENT_MEYE_FACE },
2051 { 0x01, SONYPI_EVENT_MEYE_OPPOSITE },
2052 { 0, 0 }
2053};
2054
2055/* The set of possible memorystick events */
2056static struct sonypi_event sonypi_memorystickev[] = {
2057 { 0x53, SONYPI_EVENT_MEMORYSTICK_INSERT },
2058 { 0x54, SONYPI_EVENT_MEMORYSTICK_EJECT },
2059 { 0, 0 }
2060};
2061
2062/* The set of possible battery events */
2063static struct sonypi_event sonypi_batteryev[] = {
2064 { 0x20, SONYPI_EVENT_BATTERY_INSERT },
2065 { 0x30, SONYPI_EVENT_BATTERY_REMOVE },
2066 { 0, 0 }
2067};
2068
Harald Jenny1cae7102009-03-26 21:58:18 +09002069/* The set of possible volume events */
2070static struct sonypi_event sonypi_volumeev[] = {
2071 { 0x01, SONYPI_EVENT_VOLUME_INC_PRESSED },
2072 { 0x02, SONYPI_EVENT_VOLUME_DEC_PRESSED },
2073 { 0, 0 }
2074};
2075
2076/* The set of possible brightness events */
2077static struct sonypi_event sonypi_brightnessev[] = {
2078 { 0x80, SONYPI_EVENT_BRIGHTNESS_PRESSED },
2079 { 0, 0 }
2080};
2081
Mattia Dongilide920432008-01-14 18:05:43 +09002082static struct sonypi_eventtypes type1_events[] = {
2083 { 0, 0xffffffff, sonypi_releaseev },
2084 { 0x70, SONYPI_MEYE_MASK, sonypi_meyeev },
2085 { 0x30, SONYPI_LID_MASK, sonypi_lidev },
2086 { 0x60, SONYPI_CAPTURE_MASK, sonypi_captureev },
2087 { 0x10, SONYPI_JOGGER_MASK, sonypi_joggerev },
2088 { 0x20, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2089 { 0x30, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
2090 { 0x40, SONYPI_PKEY_MASK, sonypi_pkeyev },
2091 { 0x30, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2092 { 0x40, SONYPI_BATTERY_MASK, sonypi_batteryev },
2093 { 0 },
2094};
2095static struct sonypi_eventtypes type2_events[] = {
2096 { 0, 0xffffffff, sonypi_releaseev },
2097 { 0x38, SONYPI_LID_MASK, sonypi_lidev },
2098 { 0x11, SONYPI_JOGGER_MASK, sonypi_joggerev },
2099 { 0x61, SONYPI_CAPTURE_MASK, sonypi_captureev },
2100 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2101 { 0x31, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
2102 { 0x08, SONYPI_PKEY_MASK, sonypi_pkeyev },
2103 { 0x11, SONYPI_BACK_MASK, sonypi_backev },
2104 { 0x21, SONYPI_HELP_MASK, sonypi_helpev },
2105 { 0x21, SONYPI_ZOOM_MASK, sonypi_zoomev },
2106 { 0x20, SONYPI_THUMBPHRASE_MASK, sonypi_thumbphraseev },
2107 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2108 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
2109 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
2110 { 0 },
2111};
2112static struct sonypi_eventtypes type3_events[] = {
2113 { 0, 0xffffffff, sonypi_releaseev },
2114 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2115 { 0x31, SONYPI_WIRELESS_MASK, sonypi_wlessev },
2116 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2117 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
2118 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002119 { 0x05, SONYPI_PKEY_MASK, sonypi_pkeyev },
2120 { 0x05, SONYPI_ZOOM_MASK, sonypi_zoomev },
2121 { 0x05, SONYPI_CAPTURE_MASK, sonypi_captureev },
Harald Jenny1cae7102009-03-26 21:58:18 +09002122 { 0x05, SONYPI_PKEY_MASK, sonypi_volumeev },
2123 { 0x05, SONYPI_PKEY_MASK, sonypi_brightnessev },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002124 { 0 },
Mattia Dongilide920432008-01-14 18:05:43 +09002125};
2126
Mattia Dongili3eb87492008-01-14 18:05:45 +09002127/* low level spic calls */
malattia@linux.it33a04452007-04-09 19:26:03 +02002128#define ITERATIONS_LONG 10000
2129#define ITERATIONS_SHORT 10
2130#define wait_on_command(command, iterations) { \
2131 unsigned int n = iterations; \
2132 while (--n && (command)) \
2133 udelay(1); \
2134 if (!n) \
2135 dprintk("command failed at %s : %s (line %d)\n", \
Harvey Harrison6e574192008-04-29 00:59:20 -07002136 __FILE__, __func__, __LINE__); \
malattia@linux.it33a04452007-04-09 19:26:03 +02002137}
2138
2139static u8 sony_pic_call1(u8 dev)
2140{
2141 u8 v1, v2;
2142
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002143 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002144 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002145 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2146 v1 = inb_p(spic_dev.cur_ioport->io1.minimum + 4);
2147 v2 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002148 dprintk("sony_pic_call1(0x%.2x): 0x%.4x\n", dev, (v2 << 8) | v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02002149 return v2;
2150}
2151
2152static u8 sony_pic_call2(u8 dev, u8 fn)
2153{
2154 u8 v1;
2155
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002156 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002157 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002158 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2159 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002160 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002161 outb(fn, spic_dev.cur_ioport->io1.minimum);
2162 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002163 dprintk("sony_pic_call2(0x%.2x - 0x%.2x): 0x%.4x\n", dev, fn, v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02002164 return v1;
2165}
2166
malattia@linux.it49a11de2007-04-09 19:28:56 +02002167static u8 sony_pic_call3(u8 dev, u8 fn, u8 v)
2168{
2169 u8 v1;
2170
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002171 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2172 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2173 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2174 outb(fn, spic_dev.cur_ioport->io1.minimum);
2175 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2176 outb(v, spic_dev.cur_ioport->io1.minimum);
2177 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002178 dprintk("sony_pic_call3(0x%.2x - 0x%.2x - 0x%.2x): 0x%.4x\n",
2179 dev, fn, v, v1);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002180 return v1;
2181}
2182
Mattia Dongili3eb87492008-01-14 18:05:45 +09002183/*
2184 * minidrivers for SPIC models
2185 */
Mattia Dongilie93c8a62009-03-26 21:58:17 +09002186static int type3_handle_irq(const u8 data_mask, const u8 ev)
Mattia Dongili3eb87492008-01-14 18:05:45 +09002187{
2188 /*
2189 * 0x31 could mean we have to take some extra action and wait for
Mattia Dongilie93c8a62009-03-26 21:58:17 +09002190 * the next irq for some Type3 models, it will generate a new
Mattia Dongili3eb87492008-01-14 18:05:45 +09002191 * irq and we can read new data from the device:
2192 * - 0x5c and 0x5f requires 0xA0
2193 * - 0x61 requires 0xB3
2194 */
2195 if (data_mask == 0x31) {
2196 if (ev == 0x5c || ev == 0x5f)
2197 sony_pic_call1(0xA0);
2198 else if (ev == 0x61)
2199 sony_pic_call1(0xB3);
2200 return 0;
2201 }
2202 return 1;
2203}
2204
Mattia Dongili3eb87492008-01-14 18:05:45 +09002205static void sony_pic_detect_device_type(struct sony_pic_dev *dev)
2206{
2207 struct pci_dev *pcidev;
2208
2209 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2210 PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
2211 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002212 dev->model = SONYPI_DEVICE_TYPE1;
2213 dev->evport_offset = SONYPI_TYPE1_OFFSET;
2214 dev->event_types = type1_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002215 goto out;
2216 }
2217
2218 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2219 PCI_DEVICE_ID_INTEL_ICH6_1, NULL);
2220 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002221 dev->model = SONYPI_DEVICE_TYPE2;
2222 dev->evport_offset = SONYPI_TYPE2_OFFSET;
2223 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002224 goto out;
2225 }
2226
2227 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2228 PCI_DEVICE_ID_INTEL_ICH7_1, NULL);
2229 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002230 dev->model = SONYPI_DEVICE_TYPE3;
2231 dev->handle_irq = type3_handle_irq;
2232 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2233 dev->event_types = type3_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002234 goto out;
2235 }
2236
2237 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2238 PCI_DEVICE_ID_INTEL_ICH8_4, NULL);
2239 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002240 dev->model = SONYPI_DEVICE_TYPE3;
2241 dev->handle_irq = type3_handle_irq;
2242 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2243 dev->event_types = type3_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002244 goto out;
2245 }
2246
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09002247 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2248 PCI_DEVICE_ID_INTEL_ICH9_1, NULL);
2249 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002250 dev->model = SONYPI_DEVICE_TYPE3;
2251 dev->handle_irq = type3_handle_irq;
2252 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2253 dev->event_types = type3_events;
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09002254 goto out;
2255 }
2256
Mattia Dongili3eb87492008-01-14 18:05:45 +09002257 /* default */
Mattia Dongili31df7142009-09-16 00:05:29 +09002258 dev->model = SONYPI_DEVICE_TYPE2;
2259 dev->evport_offset = SONYPI_TYPE2_OFFSET;
2260 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002261
2262out:
2263 if (pcidev)
2264 pci_dev_put(pcidev);
2265
Joe Perches50f581a2011-03-29 15:21:48 -07002266 pr_info("detected Type%d model\n",
2267 dev->model == SONYPI_DEVICE_TYPE1 ? 1 :
2268 dev->model == SONYPI_DEVICE_TYPE2 ? 2 : 3);
Mattia Dongili3eb87492008-01-14 18:05:45 +09002269}
2270
malattia@linux.it49a11de2007-04-09 19:28:56 +02002271/* camera tests and poweron/poweroff */
2272#define SONYPI_CAMERA_PICTURE 5
malattia@linux.it49a11de2007-04-09 19:28:56 +02002273#define SONYPI_CAMERA_CONTROL 0x10
malattia@linux.ite3646322007-04-28 23:34:22 +09002274
2275#define SONYPI_CAMERA_BRIGHTNESS 0
2276#define SONYPI_CAMERA_CONTRAST 1
2277#define SONYPI_CAMERA_HUE 2
2278#define SONYPI_CAMERA_COLOR 3
2279#define SONYPI_CAMERA_SHARPNESS 4
2280
2281#define SONYPI_CAMERA_EXPOSURE_MASK 0xC
2282#define SONYPI_CAMERA_WHITE_BALANCE_MASK 0x3
2283#define SONYPI_CAMERA_PICTURE_MODE_MASK 0x30
2284#define SONYPI_CAMERA_MUTE_MASK 0x40
2285
2286/* the rest don't need a loop until not 0xff */
2287#define SONYPI_CAMERA_AGC 6
2288#define SONYPI_CAMERA_AGC_MASK 0x30
2289#define SONYPI_CAMERA_SHUTTER_MASK 0x7
2290
2291#define SONYPI_CAMERA_SHUTDOWN_REQUEST 7
2292#define SONYPI_CAMERA_CONTROL 0x10
2293
2294#define SONYPI_CAMERA_STATUS 7
2295#define SONYPI_CAMERA_STATUS_READY 0x2
2296#define SONYPI_CAMERA_STATUS_POSITION 0x4
2297
2298#define SONYPI_DIRECTION_BACKWARDS 0x4
2299
2300#define SONYPI_CAMERA_REVISION 8
2301#define SONYPI_CAMERA_ROMVERSION 9
malattia@linux.it49a11de2007-04-09 19:28:56 +02002302
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002303static int __sony_pic_camera_ready(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002304{
2305 u8 v;
2306
2307 v = sony_pic_call2(0x8f, SONYPI_CAMERA_STATUS);
2308 return (v != 0xff && (v & SONYPI_CAMERA_STATUS_READY));
2309}
2310
malattia@linux.ite3646322007-04-28 23:34:22 +09002311static int __sony_pic_camera_off(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002312{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002313 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07002314 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002315 return -ENODEV;
2316 }
2317
malattia@linux.it49a11de2007-04-09 19:28:56 +02002318 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE,
2319 SONYPI_CAMERA_MUTE_MASK),
2320 ITERATIONS_SHORT);
2321
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002322 if (spic_dev.camera_power) {
2323 sony_pic_call2(0x91, 0);
2324 spic_dev.camera_power = 0;
2325 }
2326 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002327}
2328
malattia@linux.ite3646322007-04-28 23:34:22 +09002329static int __sony_pic_camera_on(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002330{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002331 int i, j, x;
2332
2333 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07002334 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002335 return -ENODEV;
2336 }
malattia@linux.it49a11de2007-04-09 19:28:56 +02002337
2338 if (spic_dev.camera_power)
malattia@linux.ite3646322007-04-28 23:34:22 +09002339 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002340
2341 for (j = 5; j > 0; j--) {
2342
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002343 for (x = 0; x < 100 && sony_pic_call2(0x91, 0x1); x++)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002344 msleep(10);
2345 sony_pic_call1(0x93);
2346
2347 for (i = 400; i > 0; i--) {
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002348 if (__sony_pic_camera_ready())
malattia@linux.it49a11de2007-04-09 19:28:56 +02002349 break;
2350 msleep(10);
2351 }
2352 if (i)
2353 break;
2354 }
2355
2356 if (j == 0) {
Joe Perches50f581a2011-03-29 15:21:48 -07002357 pr_warn("failed to power on camera\n");
malattia@linux.ite3646322007-04-28 23:34:22 +09002358 return -ENODEV;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002359 }
2360
2361 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTROL,
2362 0x5a),
2363 ITERATIONS_SHORT);
2364
2365 spic_dev.camera_power = 1;
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002366 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002367}
2368
malattia@linux.ite3646322007-04-28 23:34:22 +09002369/* External camera command (exported to the motion eye v4l driver) */
2370int sony_pic_camera_command(int command, u8 value)
2371{
2372 if (!camera)
2373 return -EIO;
2374
2375 mutex_lock(&spic_dev.lock);
2376
2377 switch (command) {
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002378 case SONY_PIC_COMMAND_SETCAMERA:
malattia@linux.ite3646322007-04-28 23:34:22 +09002379 if (value)
2380 __sony_pic_camera_on();
2381 else
2382 __sony_pic_camera_off();
2383 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002384 case SONY_PIC_COMMAND_SETCAMERABRIGHTNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09002385 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_BRIGHTNESS, value),
2386 ITERATIONS_SHORT);
2387 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002388 case SONY_PIC_COMMAND_SETCAMERACONTRAST:
malattia@linux.ite3646322007-04-28 23:34:22 +09002389 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTRAST, value),
2390 ITERATIONS_SHORT);
2391 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002392 case SONY_PIC_COMMAND_SETCAMERAHUE:
malattia@linux.ite3646322007-04-28 23:34:22 +09002393 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_HUE, value),
2394 ITERATIONS_SHORT);
2395 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002396 case SONY_PIC_COMMAND_SETCAMERACOLOR:
malattia@linux.ite3646322007-04-28 23:34:22 +09002397 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_COLOR, value),
2398 ITERATIONS_SHORT);
2399 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002400 case SONY_PIC_COMMAND_SETCAMERASHARPNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09002401 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_SHARPNESS, value),
2402 ITERATIONS_SHORT);
2403 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002404 case SONY_PIC_COMMAND_SETCAMERAPICTURE:
malattia@linux.ite3646322007-04-28 23:34:22 +09002405 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, value),
2406 ITERATIONS_SHORT);
2407 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002408 case SONY_PIC_COMMAND_SETCAMERAAGC:
malattia@linux.ite3646322007-04-28 23:34:22 +09002409 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_AGC, value),
2410 ITERATIONS_SHORT);
2411 break;
2412 default:
Joe Perches50f581a2011-03-29 15:21:48 -07002413 pr_err("sony_pic_camera_command invalid: %d\n", command);
malattia@linux.ite3646322007-04-28 23:34:22 +09002414 break;
2415 }
2416 mutex_unlock(&spic_dev.lock);
2417 return 0;
2418}
2419EXPORT_SYMBOL(sony_pic_camera_command);
2420
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002421/* gprs/edge modem (SZ460N and SZ210P), thanks to Joshua Wise */
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002422static void __sony_pic_set_wwanpower(u8 state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002423{
2424 state = !!state;
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002425 if (spic_dev.wwan_power == state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002426 return;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002427 sony_pic_call2(0xB0, state);
Sergey Yanovich3ad1b762009-03-26 21:58:21 +09002428 sony_pic_call1(0x82);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002429 spic_dev.wwan_power = state;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002430}
2431
2432static ssize_t sony_pic_wwanpower_store(struct device *dev,
2433 struct device_attribute *attr,
2434 const char *buffer, size_t count)
2435{
2436 unsigned long value;
2437 if (count > 31)
2438 return -EINVAL;
2439
2440 value = simple_strtoul(buffer, NULL, 10);
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002441 mutex_lock(&spic_dev.lock);
2442 __sony_pic_set_wwanpower(value);
2443 mutex_unlock(&spic_dev.lock);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002444
2445 return count;
2446}
2447
2448static ssize_t sony_pic_wwanpower_show(struct device *dev,
2449 struct device_attribute *attr, char *buffer)
2450{
2451 ssize_t count;
2452 mutex_lock(&spic_dev.lock);
2453 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.wwan_power);
2454 mutex_unlock(&spic_dev.lock);
2455 return count;
2456}
2457
malattia@linux.it49a11de2007-04-09 19:28:56 +02002458/* bluetooth subsystem power state */
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002459static void __sony_pic_set_bluetoothpower(u8 state)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002460{
2461 state = !!state;
2462 if (spic_dev.bluetooth_power == state)
2463 return;
2464 sony_pic_call2(0x96, state);
2465 sony_pic_call1(0x82);
2466 spic_dev.bluetooth_power = state;
2467}
2468
2469static ssize_t sony_pic_bluetoothpower_store(struct device *dev,
2470 struct device_attribute *attr,
2471 const char *buffer, size_t count)
2472{
2473 unsigned long value;
2474 if (count > 31)
2475 return -EINVAL;
2476
2477 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002478 mutex_lock(&spic_dev.lock);
2479 __sony_pic_set_bluetoothpower(value);
2480 mutex_unlock(&spic_dev.lock);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002481
2482 return count;
2483}
2484
2485static ssize_t sony_pic_bluetoothpower_show(struct device *dev,
2486 struct device_attribute *attr, char *buffer)
2487{
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002488 ssize_t count = 0;
2489 mutex_lock(&spic_dev.lock);
2490 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.bluetooth_power);
2491 mutex_unlock(&spic_dev.lock);
2492 return count;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002493}
2494
2495/* fan speed */
2496/* FAN0 information (reverse engineered from ACPI tables) */
2497#define SONY_PIC_FAN0_STATUS 0x93
malattia@linux.it7b153f32007-04-09 19:31:25 +02002498static int sony_pic_set_fanspeed(unsigned long value)
2499{
2500 return ec_write(SONY_PIC_FAN0_STATUS, value);
2501}
2502
2503static int sony_pic_get_fanspeed(u8 *value)
2504{
2505 return ec_read(SONY_PIC_FAN0_STATUS, value);
2506}
2507
malattia@linux.it49a11de2007-04-09 19:28:56 +02002508static ssize_t sony_pic_fanspeed_store(struct device *dev,
2509 struct device_attribute *attr,
2510 const char *buffer, size_t count)
2511{
2512 unsigned long value;
2513 if (count > 31)
2514 return -EINVAL;
2515
2516 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002517 if (sony_pic_set_fanspeed(value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02002518 return -EIO;
2519
2520 return count;
2521}
2522
2523static ssize_t sony_pic_fanspeed_show(struct device *dev,
2524 struct device_attribute *attr, char *buffer)
2525{
2526 u8 value = 0;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002527 if (sony_pic_get_fanspeed(&value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02002528 return -EIO;
2529
2530 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
2531}
2532
2533#define SPIC_ATTR(_name, _mode) \
2534struct device_attribute spic_attr_##_name = __ATTR(_name, \
2535 _mode, sony_pic_## _name ##_show, \
2536 sony_pic_## _name ##_store)
2537
malattia@linux.it49a11de2007-04-09 19:28:56 +02002538static SPIC_ATTR(bluetoothpower, 0644);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002539static SPIC_ATTR(wwanpower, 0644);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002540static SPIC_ATTR(fanspeed, 0644);
2541
2542static struct attribute *spic_attributes[] = {
malattia@linux.it49a11de2007-04-09 19:28:56 +02002543 &spic_attr_bluetoothpower.attr,
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002544 &spic_attr_wwanpower.attr,
malattia@linux.it49a11de2007-04-09 19:28:56 +02002545 &spic_attr_fanspeed.attr,
2546 NULL
2547};
2548
2549static struct attribute_group spic_attribute_group = {
2550 .attrs = spic_attributes
2551};
2552
malattia@linux.it7b153f32007-04-09 19:31:25 +02002553/******** SONYPI compatibility **********/
Mattia Dongilia64e62a2007-05-01 11:19:53 +09002554#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +02002555
2556/* battery / brightness / temperature addresses */
2557#define SONYPI_BAT_FLAGS 0x81
2558#define SONYPI_LCD_LIGHT 0x96
2559#define SONYPI_BAT1_PCTRM 0xa0
2560#define SONYPI_BAT1_LEFT 0xa2
2561#define SONYPI_BAT1_MAXRT 0xa4
2562#define SONYPI_BAT2_PCTRM 0xa8
2563#define SONYPI_BAT2_LEFT 0xaa
2564#define SONYPI_BAT2_MAXRT 0xac
2565#define SONYPI_BAT1_MAXTK 0xb0
2566#define SONYPI_BAT1_FULL 0xb2
2567#define SONYPI_BAT2_MAXTK 0xb8
2568#define SONYPI_BAT2_FULL 0xba
2569#define SONYPI_TEMP_STATUS 0xC1
2570
2571struct sonypi_compat_s {
2572 struct fasync_struct *fifo_async;
Stefani Seibold45465482009-12-21 14:37:26 -08002573 struct kfifo fifo;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002574 spinlock_t fifo_lock;
2575 wait_queue_head_t fifo_proc_list;
2576 atomic_t open_count;
2577};
2578static struct sonypi_compat_s sonypi_compat = {
2579 .open_count = ATOMIC_INIT(0),
2580};
2581
2582static int sonypi_misc_fasync(int fd, struct file *filp, int on)
2583{
Jonathan Corbet60aa4922009-02-01 14:52:56 -07002584 return fasync_helper(fd, filp, on, &sonypi_compat.fifo_async);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002585}
2586
2587static int sonypi_misc_release(struct inode *inode, struct file *file)
2588{
malattia@linux.it7b153f32007-04-09 19:31:25 +02002589 atomic_dec(&sonypi_compat.open_count);
2590 return 0;
2591}
2592
2593static int sonypi_misc_open(struct inode *inode, struct file *file)
2594{
2595 /* Flush input queue on first open */
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002596 unsigned long flags;
2597
Stefani Seibold45465482009-12-21 14:37:26 -08002598 spin_lock_irqsave(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002599
malattia@linux.it7b153f32007-04-09 19:31:25 +02002600 if (atomic_inc_return(&sonypi_compat.open_count) == 1)
Stefani Seibolde64c0262009-12-21 14:37:28 -08002601 kfifo_reset(&sonypi_compat.fifo);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002602
Stefani Seibold45465482009-12-21 14:37:26 -08002603 spin_unlock_irqrestore(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002604
malattia@linux.it7b153f32007-04-09 19:31:25 +02002605 return 0;
2606}
2607
2608static ssize_t sonypi_misc_read(struct file *file, char __user *buf,
2609 size_t count, loff_t *pos)
2610{
2611 ssize_t ret;
2612 unsigned char c;
2613
Stefani Seibold45465482009-12-21 14:37:26 -08002614 if ((kfifo_len(&sonypi_compat.fifo) == 0) &&
malattia@linux.it7b153f32007-04-09 19:31:25 +02002615 (file->f_flags & O_NONBLOCK))
2616 return -EAGAIN;
2617
2618 ret = wait_event_interruptible(sonypi_compat.fifo_proc_list,
Stefani Seibold45465482009-12-21 14:37:26 -08002619 kfifo_len(&sonypi_compat.fifo) != 0);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002620 if (ret)
2621 return ret;
2622
2623 while (ret < count &&
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002624 (kfifo_out_locked(&sonypi_compat.fifo, &c, sizeof(c),
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002625 &sonypi_compat.fifo_lock) == sizeof(c))) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002626 if (put_user(c, buf++))
2627 return -EFAULT;
2628 ret++;
2629 }
2630
2631 if (ret > 0) {
2632 struct inode *inode = file->f_path.dentry->d_inode;
2633 inode->i_atime = current_fs_time(inode->i_sb);
2634 }
2635
2636 return ret;
2637}
2638
2639static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait)
2640{
2641 poll_wait(file, &sonypi_compat.fifo_proc_list, wait);
Stefani Seibold45465482009-12-21 14:37:26 -08002642 if (kfifo_len(&sonypi_compat.fifo))
malattia@linux.it7b153f32007-04-09 19:31:25 +02002643 return POLLIN | POLLRDNORM;
2644 return 0;
2645}
2646
2647static int ec_read16(u8 addr, u16 *value)
2648{
2649 u8 val_lb, val_hb;
2650 if (ec_read(addr, &val_lb))
2651 return -1;
2652 if (ec_read(addr + 1, &val_hb))
2653 return -1;
2654 *value = val_lb | (val_hb << 8);
2655 return 0;
2656}
2657
Alan Cox2b24ef02009-03-26 21:58:19 +09002658static long sonypi_misc_ioctl(struct file *fp, unsigned int cmd,
2659 unsigned long arg)
malattia@linux.it7b153f32007-04-09 19:31:25 +02002660{
2661 int ret = 0;
2662 void __user *argp = (void __user *)arg;
2663 u8 val8;
2664 u16 val16;
2665 int value;
2666
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002667 mutex_lock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002668 switch (cmd) {
2669 case SONYPI_IOCGBRT:
Mattia Dongili62d2f232011-05-09 10:20:29 -04002670 if (sony_bl_props.dev == NULL) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002671 ret = -EIO;
2672 break;
2673 }
2674 if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value)) {
2675 ret = -EIO;
2676 break;
2677 }
2678 val8 = ((value & 0xff) - 1) << 5;
2679 if (copy_to_user(argp, &val8, sizeof(val8)))
2680 ret = -EFAULT;
2681 break;
2682 case SONYPI_IOCSBRT:
Mattia Dongili62d2f232011-05-09 10:20:29 -04002683 if (sony_bl_props.dev == NULL) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002684 ret = -EIO;
2685 break;
2686 }
2687 if (copy_from_user(&val8, argp, sizeof(val8))) {
2688 ret = -EFAULT;
2689 break;
2690 }
2691 if (acpi_callsetfunc(sony_nc_acpi_handle, "SBRT",
2692 (val8 >> 5) + 1, NULL)) {
2693 ret = -EIO;
2694 break;
2695 }
2696 /* sync the backlight device status */
Mattia Dongili62d2f232011-05-09 10:20:29 -04002697 sony_bl_props.dev->props.brightness =
2698 sony_backlight_get_brightness(sony_bl_props.dev);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002699 break;
2700 case SONYPI_IOCGBAT1CAP:
2701 if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
2702 ret = -EIO;
2703 break;
2704 }
2705 if (copy_to_user(argp, &val16, sizeof(val16)))
2706 ret = -EFAULT;
2707 break;
2708 case SONYPI_IOCGBAT1REM:
2709 if (ec_read16(SONYPI_BAT1_LEFT, &val16)) {
2710 ret = -EIO;
2711 break;
2712 }
2713 if (copy_to_user(argp, &val16, sizeof(val16)))
2714 ret = -EFAULT;
2715 break;
2716 case SONYPI_IOCGBAT2CAP:
2717 if (ec_read16(SONYPI_BAT2_FULL, &val16)) {
2718 ret = -EIO;
2719 break;
2720 }
2721 if (copy_to_user(argp, &val16, sizeof(val16)))
2722 ret = -EFAULT;
2723 break;
2724 case SONYPI_IOCGBAT2REM:
2725 if (ec_read16(SONYPI_BAT2_LEFT, &val16)) {
2726 ret = -EIO;
2727 break;
2728 }
2729 if (copy_to_user(argp, &val16, sizeof(val16)))
2730 ret = -EFAULT;
2731 break;
2732 case SONYPI_IOCGBATFLAGS:
2733 if (ec_read(SONYPI_BAT_FLAGS, &val8)) {
2734 ret = -EIO;
2735 break;
2736 }
2737 val8 &= 0x07;
2738 if (copy_to_user(argp, &val8, sizeof(val8)))
2739 ret = -EFAULT;
2740 break;
2741 case SONYPI_IOCGBLUE:
2742 val8 = spic_dev.bluetooth_power;
2743 if (copy_to_user(argp, &val8, sizeof(val8)))
2744 ret = -EFAULT;
2745 break;
2746 case SONYPI_IOCSBLUE:
2747 if (copy_from_user(&val8, argp, sizeof(val8))) {
2748 ret = -EFAULT;
2749 break;
2750 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002751 __sony_pic_set_bluetoothpower(val8);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002752 break;
2753 /* FAN Controls */
2754 case SONYPI_IOCGFAN:
2755 if (sony_pic_get_fanspeed(&val8)) {
2756 ret = -EIO;
2757 break;
2758 }
2759 if (copy_to_user(argp, &val8, sizeof(val8)))
2760 ret = -EFAULT;
2761 break;
2762 case SONYPI_IOCSFAN:
2763 if (copy_from_user(&val8, argp, sizeof(val8))) {
2764 ret = -EFAULT;
2765 break;
2766 }
2767 if (sony_pic_set_fanspeed(val8))
2768 ret = -EIO;
2769 break;
2770 /* GET Temperature (useful under APM) */
2771 case SONYPI_IOCGTEMP:
2772 if (ec_read(SONYPI_TEMP_STATUS, &val8)) {
2773 ret = -EIO;
2774 break;
2775 }
2776 if (copy_to_user(argp, &val8, sizeof(val8)))
2777 ret = -EFAULT;
2778 break;
2779 default:
2780 ret = -EINVAL;
2781 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002782 mutex_unlock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002783 return ret;
2784}
2785
2786static const struct file_operations sonypi_misc_fops = {
2787 .owner = THIS_MODULE,
2788 .read = sonypi_misc_read,
2789 .poll = sonypi_misc_poll,
2790 .open = sonypi_misc_open,
2791 .release = sonypi_misc_release,
2792 .fasync = sonypi_misc_fasync,
Alan Cox2b24ef02009-03-26 21:58:19 +09002793 .unlocked_ioctl = sonypi_misc_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002794 .llseek = noop_llseek,
malattia@linux.it7b153f32007-04-09 19:31:25 +02002795};
2796
2797static struct miscdevice sonypi_misc_device = {
2798 .minor = MISC_DYNAMIC_MINOR,
2799 .name = "sonypi",
2800 .fops = &sonypi_misc_fops,
2801};
2802
2803static void sonypi_compat_report_event(u8 event)
2804{
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002805 kfifo_in_locked(&sonypi_compat.fifo, (unsigned char *)&event,
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002806 sizeof(event), &sonypi_compat.fifo_lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002807 kill_fasync(&sonypi_compat.fifo_async, SIGIO, POLL_IN);
2808 wake_up_interruptible(&sonypi_compat.fifo_proc_list);
2809}
2810
2811static int sonypi_compat_init(void)
2812{
2813 int error;
2814
2815 spin_lock_init(&sonypi_compat.fifo_lock);
Stefani Seibold45465482009-12-21 14:37:26 -08002816 error =
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002817 kfifo_alloc(&sonypi_compat.fifo, SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -08002818 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07002819 pr_err("kfifo_alloc failed\n");
Stefani Seibold45465482009-12-21 14:37:26 -08002820 return error;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002821 }
2822
2823 init_waitqueue_head(&sonypi_compat.fifo_proc_list);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002824
2825 if (minor != -1)
2826 sonypi_misc_device.minor = minor;
2827 error = misc_register(&sonypi_misc_device);
2828 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07002829 pr_err("misc_register failed\n");
malattia@linux.it7b153f32007-04-09 19:31:25 +02002830 goto err_free_kfifo;
2831 }
2832 if (minor == -1)
Joe Perches50f581a2011-03-29 15:21:48 -07002833 pr_info("device allocated minor is %d\n",
2834 sonypi_misc_device.minor);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002835
2836 return 0;
2837
2838err_free_kfifo:
Stefani Seibold45465482009-12-21 14:37:26 -08002839 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002840 return error;
2841}
2842
2843static void sonypi_compat_exit(void)
2844{
2845 misc_deregister(&sonypi_misc_device);
Stefani Seibold45465482009-12-21 14:37:26 -08002846 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002847}
2848#else
2849static int sonypi_compat_init(void) { return 0; }
2850static void sonypi_compat_exit(void) { }
2851static void sonypi_compat_report_event(u8 event) { }
Mattia Dongilia64e62a2007-05-01 11:19:53 +09002852#endif /* CONFIG_SONYPI_COMPAT */
malattia@linux.it7b153f32007-04-09 19:31:25 +02002853
malattia@linux.it1549ee62007-04-09 10:19:08 +02002854/*
malattia@linux.it33a04452007-04-09 19:26:03 +02002855 * ACPI callbacks
malattia@linux.it1549ee62007-04-09 10:19:08 +02002856 */
malattia@linux.it33a04452007-04-09 19:26:03 +02002857static acpi_status
2858sony_pic_read_possible_resource(struct acpi_resource *resource, void *context)
2859{
2860 u32 i;
2861 struct sony_pic_dev *dev = (struct sony_pic_dev *)context;
2862
2863 switch (resource->type) {
2864 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002865 {
2866 /* start IO enumeration */
2867 struct sony_pic_ioport *ioport = kzalloc(sizeof(*ioport), GFP_KERNEL);
2868 if (!ioport)
2869 return AE_ERROR;
2870
2871 list_add(&ioport->list, &dev->ioports);
2872 return AE_OK;
2873 }
2874
malattia@linux.it33a04452007-04-09 19:26:03 +02002875 case ACPI_RESOURCE_TYPE_END_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002876 /* end IO enumeration */
malattia@linux.it33a04452007-04-09 19:26:03 +02002877 return AE_OK;
2878
2879 case ACPI_RESOURCE_TYPE_IRQ:
2880 {
2881 struct acpi_resource_irq *p = &resource->data.irq;
2882 struct sony_pic_irq *interrupt = NULL;
2883 if (!p || !p->interrupt_count) {
2884 /*
2885 * IRQ descriptors may have no IRQ# bits set,
2886 * particularly those those w/ _STA disabled
2887 */
2888 dprintk("Blank IRQ resource\n");
2889 return AE_OK;
2890 }
2891 for (i = 0; i < p->interrupt_count; i++) {
2892 if (!p->interrupts[i]) {
Joe Perches50f581a2011-03-29 15:21:48 -07002893 pr_warn("Invalid IRQ %d\n",
2894 p->interrupts[i]);
malattia@linux.it33a04452007-04-09 19:26:03 +02002895 continue;
2896 }
2897 interrupt = kzalloc(sizeof(*interrupt),
2898 GFP_KERNEL);
2899 if (!interrupt)
2900 return AE_ERROR;
2901
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002902 list_add(&interrupt->list, &dev->interrupts);
malattia@linux.it33a04452007-04-09 19:26:03 +02002903 interrupt->irq.triggering = p->triggering;
2904 interrupt->irq.polarity = p->polarity;
2905 interrupt->irq.sharable = p->sharable;
2906 interrupt->irq.interrupt_count = 1;
2907 interrupt->irq.interrupts[0] = p->interrupts[i];
2908 }
2909 return AE_OK;
2910 }
2911 case ACPI_RESOURCE_TYPE_IO:
2912 {
2913 struct acpi_resource_io *io = &resource->data.io;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002914 struct sony_pic_ioport *ioport =
2915 list_first_entry(&dev->ioports, struct sony_pic_ioport, list);
malattia@linux.it33a04452007-04-09 19:26:03 +02002916 if (!io) {
2917 dprintk("Blank IO resource\n");
2918 return AE_OK;
2919 }
2920
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002921 if (!ioport->io1.minimum) {
2922 memcpy(&ioport->io1, io, sizeof(*io));
2923 dprintk("IO1 at 0x%.4x (0x%.2x)\n", ioport->io1.minimum,
2924 ioport->io1.address_length);
2925 }
2926 else if (!ioport->io2.minimum) {
2927 memcpy(&ioport->io2, io, sizeof(*io));
2928 dprintk("IO2 at 0x%.4x (0x%.2x)\n", ioport->io2.minimum,
2929 ioport->io2.address_length);
2930 }
2931 else {
Joe Perches50f581a2011-03-29 15:21:48 -07002932 pr_err("Unknown SPIC Type, more than 2 IO Ports\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002933 return AE_ERROR;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002934 }
malattia@linux.it33a04452007-04-09 19:26:03 +02002935 return AE_OK;
2936 }
2937 default:
2938 dprintk("Resource %d isn't an IRQ nor an IO port\n",
Joe Perches50f581a2011-03-29 15:21:48 -07002939 resource->type);
malattia@linux.it33a04452007-04-09 19:26:03 +02002940
2941 case ACPI_RESOURCE_TYPE_END_TAG:
2942 return AE_OK;
2943 }
2944 return AE_CTRL_TERMINATE;
2945}
2946
2947static int sony_pic_possible_resources(struct acpi_device *device)
2948{
2949 int result = 0;
2950 acpi_status status = AE_OK;
2951
2952 if (!device)
2953 return -EINVAL;
2954
2955 /* get device status */
2956 /* see acpi_pci_link_get_current acpi_pci_link_get_possible */
2957 dprintk("Evaluating _STA\n");
2958 result = acpi_bus_get_status(device);
2959 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07002960 pr_warn("Unable to read status\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002961 goto end;
2962 }
2963
2964 if (!device->status.enabled)
2965 dprintk("Device disabled\n");
2966 else
2967 dprintk("Device enabled\n");
2968
2969 /*
2970 * Query and parse 'method'
2971 */
2972 dprintk("Evaluating %s\n", METHOD_NAME__PRS);
2973 status = acpi_walk_resources(device->handle, METHOD_NAME__PRS,
2974 sony_pic_read_possible_resource, &spic_dev);
2975 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07002976 pr_warn("Failure evaluating %s\n", METHOD_NAME__PRS);
malattia@linux.it33a04452007-04-09 19:26:03 +02002977 result = -ENODEV;
2978 }
2979end:
2980 return result;
2981}
2982
2983/*
2984 * Disable the spic device by calling its _DIS method
2985 */
2986static int sony_pic_disable(struct acpi_device *device)
2987{
Matthew Garrett6158d3a2008-10-29 14:01:03 -07002988 acpi_status ret = acpi_evaluate_object(device->handle, "_DIS", NULL,
2989 NULL);
2990
2991 if (ACPI_FAILURE(ret) && ret != AE_NOT_FOUND)
malattia@linux.it33a04452007-04-09 19:26:03 +02002992 return -ENXIO;
2993
2994 dprintk("Device disabled\n");
2995 return 0;
2996}
2997
2998
2999/*
3000 * Based on drivers/acpi/pci_link.c:acpi_pci_link_set
3001 *
3002 * Call _SRS to set current resources
3003 */
3004static int sony_pic_enable(struct acpi_device *device,
3005 struct sony_pic_ioport *ioport, struct sony_pic_irq *irq)
3006{
3007 acpi_status status;
3008 int result = 0;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003009 /* Type 1 resource layout is:
3010 * IO
3011 * IO
3012 * IRQNoFlags
3013 * End
3014 *
3015 * Type 2 and 3 resource layout is:
3016 * IO
3017 * IRQNoFlags
3018 * End
3019 */
malattia@linux.it33a04452007-04-09 19:26:03 +02003020 struct {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003021 struct acpi_resource res1;
3022 struct acpi_resource res2;
3023 struct acpi_resource res3;
3024 struct acpi_resource res4;
malattia@linux.it33a04452007-04-09 19:26:03 +02003025 } *resource;
3026 struct acpi_buffer buffer = { 0, NULL };
3027
3028 if (!ioport || !irq)
3029 return -EINVAL;
3030
3031 /* init acpi_buffer */
3032 resource = kzalloc(sizeof(*resource) + 1, GFP_KERNEL);
3033 if (!resource)
3034 return -ENOMEM;
3035
3036 buffer.length = sizeof(*resource) + 1;
3037 buffer.pointer = resource;
3038
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003039 /* setup Type 1 resources */
Mattia Dongili31df7142009-09-16 00:05:29 +09003040 if (spic_dev.model == SONYPI_DEVICE_TYPE1) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003041
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003042 /* setup io resources */
3043 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
3044 resource->res1.length = sizeof(struct acpi_resource);
3045 memcpy(&resource->res1.data.io, &ioport->io1,
3046 sizeof(struct acpi_resource_io));
malattia@linux.it33a04452007-04-09 19:26:03 +02003047
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003048 resource->res2.type = ACPI_RESOURCE_TYPE_IO;
3049 resource->res2.length = sizeof(struct acpi_resource);
3050 memcpy(&resource->res2.data.io, &ioport->io2,
3051 sizeof(struct acpi_resource_io));
3052
3053 /* setup irq resource */
3054 resource->res3.type = ACPI_RESOURCE_TYPE_IRQ;
3055 resource->res3.length = sizeof(struct acpi_resource);
3056 memcpy(&resource->res3.data.irq, &irq->irq,
3057 sizeof(struct acpi_resource_irq));
3058 /* we requested a shared irq */
3059 resource->res3.data.irq.sharable = ACPI_SHARED;
3060
3061 resource->res4.type = ACPI_RESOURCE_TYPE_END_TAG;
3062
3063 }
3064 /* setup Type 2/3 resources */
3065 else {
3066 /* setup io resource */
3067 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
3068 resource->res1.length = sizeof(struct acpi_resource);
3069 memcpy(&resource->res1.data.io, &ioport->io1,
3070 sizeof(struct acpi_resource_io));
3071
3072 /* setup irq resource */
3073 resource->res2.type = ACPI_RESOURCE_TYPE_IRQ;
3074 resource->res2.length = sizeof(struct acpi_resource);
3075 memcpy(&resource->res2.data.irq, &irq->irq,
3076 sizeof(struct acpi_resource_irq));
3077 /* we requested a shared irq */
3078 resource->res2.data.irq.sharable = ACPI_SHARED;
3079
3080 resource->res3.type = ACPI_RESOURCE_TYPE_END_TAG;
3081 }
malattia@linux.it33a04452007-04-09 19:26:03 +02003082
3083 /* Attempt to set the resource */
3084 dprintk("Evaluating _SRS\n");
3085 status = acpi_set_current_resources(device->handle, &buffer);
3086
3087 /* check for total failure */
3088 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07003089 pr_err("Error evaluating _SRS\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003090 result = -ENODEV;
3091 goto end;
3092 }
3093
3094 /* Necessary device initializations calls (from sonypi) */
3095 sony_pic_call1(0x82);
3096 sony_pic_call2(0x81, 0xff);
3097 sony_pic_call1(compat ? 0x92 : 0x82);
3098
3099end:
3100 kfree(resource);
3101 return result;
3102}
3103
3104/*****************
3105 *
3106 * ISR: some event is available
3107 *
3108 *****************/
3109static irqreturn_t sony_pic_irq(int irq, void *dev_id)
3110{
3111 int i, j;
malattia@linux.it33a04452007-04-09 19:26:03 +02003112 u8 ev = 0;
3113 u8 data_mask = 0;
3114 u8 device_event = 0;
3115
3116 struct sony_pic_dev *dev = (struct sony_pic_dev *) dev_id;
3117
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003118 ev = inb_p(dev->cur_ioport->io1.minimum);
3119 if (dev->cur_ioport->io2.minimum)
3120 data_mask = inb_p(dev->cur_ioport->io2.minimum);
3121 else
Mattia Dongilide920432008-01-14 18:05:43 +09003122 data_mask = inb_p(dev->cur_ioport->io1.minimum +
Mattia Dongili31df7142009-09-16 00:05:29 +09003123 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003124
Mattia Dongili22a17782007-07-16 02:34:39 +09003125 dprintk("event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
Mattia Dongilide920432008-01-14 18:05:43 +09003126 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09003127 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003128
3129 if (ev == 0x00 || ev == 0xff)
3130 return IRQ_HANDLED;
3131
Mattia Dongili31df7142009-09-16 00:05:29 +09003132 for (i = 0; dev->event_types[i].mask; i++) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003133
Mattia Dongili31df7142009-09-16 00:05:29 +09003134 if ((data_mask & dev->event_types[i].data) !=
3135 dev->event_types[i].data)
malattia@linux.it33a04452007-04-09 19:26:03 +02003136 continue;
3137
Mattia Dongili31df7142009-09-16 00:05:29 +09003138 if (!(mask & dev->event_types[i].mask))
malattia@linux.it33a04452007-04-09 19:26:03 +02003139 continue;
3140
Mattia Dongili31df7142009-09-16 00:05:29 +09003141 for (j = 0; dev->event_types[i].events[j].event; j++) {
3142 if (ev == dev->event_types[i].events[j].data) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003143 device_event =
Mattia Dongili31df7142009-09-16 00:05:29 +09003144 dev->event_types[i].events[j].event;
Mattia Dongili4eeb5022011-02-19 11:52:27 +09003145 /* some events may require ignoring */
3146 if (!device_event)
3147 return IRQ_HANDLED;
malattia@linux.it33a04452007-04-09 19:26:03 +02003148 goto found;
3149 }
3150 }
3151 }
Mattia Dongili3eb87492008-01-14 18:05:45 +09003152 /* Still not able to decode the event try to pass
3153 * it over to the minidriver
3154 */
Mattia Dongili31df7142009-09-16 00:05:29 +09003155 if (dev->handle_irq && dev->handle_irq(data_mask, ev) == 0)
Mattia Dongili3eb87492008-01-14 18:05:45 +09003156 return IRQ_HANDLED;
3157
Mattia Dongilide920432008-01-14 18:05:43 +09003158 dprintk("unknown event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
3159 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09003160 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003161 return IRQ_HANDLED;
3162
3163found:
malattia@linux.it1549ee62007-04-09 10:19:08 +02003164 sony_laptop_report_input_event(device_event);
Mattia Dongilide920432008-01-14 18:05:43 +09003165 acpi_bus_generate_proc_event(dev->acpi_dev, 1, device_event);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003166 sonypi_compat_report_event(device_event);
malattia@linux.it33a04452007-04-09 19:26:03 +02003167 return IRQ_HANDLED;
3168}
3169
3170/*****************
3171 *
3172 * ACPI driver
3173 *
3174 *****************/
3175static int sony_pic_remove(struct acpi_device *device, int type)
3176{
3177 struct sony_pic_ioport *io, *tmp_io;
3178 struct sony_pic_irq *irq, *tmp_irq;
3179
3180 if (sony_pic_disable(device)) {
Joe Perches50f581a2011-03-29 15:21:48 -07003181 pr_err("Couldn't disable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003182 return -ENXIO;
3183 }
3184
3185 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003186 release_region(spic_dev.cur_ioport->io1.minimum,
3187 spic_dev.cur_ioport->io1.address_length);
3188 if (spic_dev.cur_ioport->io2.minimum)
3189 release_region(spic_dev.cur_ioport->io2.minimum,
3190 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02003191
Mattia Dongili015a9162007-08-12 16:20:27 +09003192 sonypi_compat_exit();
3193
malattia@linux.it1549ee62007-04-09 10:19:08 +02003194 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02003195
malattia@linux.it49a11de2007-04-09 19:28:56 +02003196 /* pf attrs */
3197 sysfs_remove_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
3198 sony_pf_remove();
3199
malattia@linux.it33a04452007-04-09 19:26:03 +02003200 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
3201 list_del(&io->list);
3202 kfree(io);
3203 }
3204 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
3205 list_del(&irq->list);
3206 kfree(irq);
3207 }
3208 spic_dev.cur_ioport = NULL;
3209 spic_dev.cur_irq = NULL;
3210
malattia@linux.itf6119b02007-04-09 19:31:06 +02003211 dprintk(SONY_PIC_DRIVER_NAME " removed.\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003212 return 0;
3213}
3214
3215static int sony_pic_add(struct acpi_device *device)
3216{
3217 int result;
3218 struct sony_pic_ioport *io, *tmp_io;
3219 struct sony_pic_irq *irq, *tmp_irq;
3220
Joe Perches50f581a2011-03-29 15:21:48 -07003221 pr_info("%s v%s\n", SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.it33a04452007-04-09 19:26:03 +02003222
3223 spic_dev.acpi_dev = device;
3224 strcpy(acpi_device_class(device), "sony/hotkey");
Mattia Dongilide920432008-01-14 18:05:43 +09003225 sony_pic_detect_device_type(&spic_dev);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003226 mutex_init(&spic_dev.lock);
malattia@linux.it33a04452007-04-09 19:26:03 +02003227
3228 /* read _PRS resources */
3229 result = sony_pic_possible_resources(device);
3230 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003231 pr_err("Unable to read possible resources\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003232 goto err_free_resources;
3233 }
3234
3235 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05003236 result = sony_laptop_setup_input(device);
malattia@linux.it33a04452007-04-09 19:26:03 +02003237 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003238 pr_err("Unable to create input devices\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003239 goto err_free_resources;
3240 }
3241
Mattia Dongili015a9162007-08-12 16:20:27 +09003242 if (sonypi_compat_init())
3243 goto err_remove_input;
3244
malattia@linux.it33a04452007-04-09 19:26:03 +02003245 /* request io port */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003246 list_for_each_entry_reverse(io, &spic_dev.ioports, list) {
3247 if (request_region(io->io1.minimum, io->io1.address_length,
Lucas De Marchic8440332011-03-17 17:18:22 -03003248 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003249 dprintk("I/O port1: 0x%.4x (0x%.4x) + 0x%.2x\n",
3250 io->io1.minimum, io->io1.maximum,
3251 io->io1.address_length);
3252 /* Type 1 have 2 ioports */
3253 if (io->io2.minimum) {
3254 if (request_region(io->io2.minimum,
3255 io->io2.address_length,
Lucas De Marchic8440332011-03-17 17:18:22 -03003256 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003257 dprintk("I/O port2: 0x%.4x (0x%.4x) + 0x%.2x\n",
3258 io->io2.minimum, io->io2.maximum,
3259 io->io2.address_length);
3260 spic_dev.cur_ioport = io;
3261 break;
3262 }
3263 else {
3264 dprintk("Unable to get I/O port2: "
3265 "0x%.4x (0x%.4x) + 0x%.2x\n",
3266 io->io2.minimum, io->io2.maximum,
3267 io->io2.address_length);
3268 release_region(io->io1.minimum,
3269 io->io1.address_length);
3270 }
3271 }
3272 else {
3273 spic_dev.cur_ioport = io;
3274 break;
3275 }
malattia@linux.it33a04452007-04-09 19:26:03 +02003276 }
3277 }
3278 if (!spic_dev.cur_ioport) {
Joe Perches50f581a2011-03-29 15:21:48 -07003279 pr_err("Failed to request_region\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003280 result = -ENODEV;
Mattia Dongili015a9162007-08-12 16:20:27 +09003281 goto err_remove_compat;
malattia@linux.it33a04452007-04-09 19:26:03 +02003282 }
3283
3284 /* request IRQ */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003285 list_for_each_entry_reverse(irq, &spic_dev.interrupts, list) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003286 if (!request_irq(irq->irq.interrupts[0], sony_pic_irq,
Yong Zhang6a0d89c2011-10-22 17:56:50 +08003287 0, "sony-laptop", &spic_dev)) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003288 dprintk("IRQ: %d - triggering: %d - "
3289 "polarity: %d - shr: %d\n",
3290 irq->irq.interrupts[0],
3291 irq->irq.triggering,
3292 irq->irq.polarity,
3293 irq->irq.sharable);
3294 spic_dev.cur_irq = irq;
3295 break;
3296 }
3297 }
3298 if (!spic_dev.cur_irq) {
Joe Perches50f581a2011-03-29 15:21:48 -07003299 pr_err("Failed to request_irq\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003300 result = -ENODEV;
3301 goto err_release_region;
3302 }
3303
3304 /* set resource status _SRS */
3305 result = sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
3306 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003307 pr_err("Couldn't enable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003308 goto err_free_irq;
3309 }
3310
malattia@linux.it49a11de2007-04-09 19:28:56 +02003311 spic_dev.bluetooth_power = -1;
3312 /* create device attributes */
3313 result = sony_pf_add();
3314 if (result)
3315 goto err_disable_device;
3316
3317 result = sysfs_create_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
3318 if (result)
3319 goto err_remove_pf;
3320
malattia@linux.it33a04452007-04-09 19:26:03 +02003321 return 0;
3322
malattia@linux.it49a11de2007-04-09 19:28:56 +02003323err_remove_pf:
3324 sony_pf_remove();
3325
3326err_disable_device:
3327 sony_pic_disable(device);
3328
malattia@linux.it33a04452007-04-09 19:26:03 +02003329err_free_irq:
3330 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
3331
3332err_release_region:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003333 release_region(spic_dev.cur_ioport->io1.minimum,
3334 spic_dev.cur_ioport->io1.address_length);
3335 if (spic_dev.cur_ioport->io2.minimum)
3336 release_region(spic_dev.cur_ioport->io2.minimum,
3337 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02003338
Mattia Dongili015a9162007-08-12 16:20:27 +09003339err_remove_compat:
3340 sonypi_compat_exit();
3341
malattia@linux.it33a04452007-04-09 19:26:03 +02003342err_remove_input:
malattia@linux.it1549ee62007-04-09 10:19:08 +02003343 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02003344
3345err_free_resources:
3346 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
3347 list_del(&io->list);
3348 kfree(io);
3349 }
3350 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
3351 list_del(&irq->list);
3352 kfree(irq);
3353 }
3354 spic_dev.cur_ioport = NULL;
3355 spic_dev.cur_irq = NULL;
3356
3357 return result;
3358}
3359
3360static int sony_pic_suspend(struct acpi_device *device, pm_message_t state)
3361{
3362 if (sony_pic_disable(device))
3363 return -ENXIO;
3364 return 0;
3365}
3366
3367static int sony_pic_resume(struct acpi_device *device)
3368{
3369 sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
3370 return 0;
3371}
3372
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003373static const struct acpi_device_id sony_pic_device_ids[] = {
3374 {SONY_PIC_HID, 0},
3375 {"", 0},
3376};
3377
malattia@linux.it33a04452007-04-09 19:26:03 +02003378static struct acpi_driver sony_pic_driver = {
3379 .name = SONY_PIC_DRIVER_NAME,
3380 .class = SONY_PIC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003381 .ids = sony_pic_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02003382 .owner = THIS_MODULE,
3383 .ops = {
3384 .add = sony_pic_add,
3385 .remove = sony_pic_remove,
3386 .suspend = sony_pic_suspend,
3387 .resume = sony_pic_resume,
3388 },
3389};
3390
3391static struct dmi_system_id __initdata sonypi_dmi_table[] = {
3392 {
3393 .ident = "Sony Vaio",
3394 .matches = {
3395 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
3396 DMI_MATCH(DMI_PRODUCT_NAME, "PCG-"),
3397 },
3398 },
3399 {
3400 .ident = "Sony Vaio",
3401 .matches = {
3402 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
3403 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-"),
3404 },
3405 },
3406 { }
3407};
3408
malattia@linux.it59b19102007-04-09 10:19:04 +02003409static int __init sony_laptop_init(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01003410{
malattia@linux.it33a04452007-04-09 19:26:03 +02003411 int result;
3412
3413 if (!no_spic && dmi_check_system(sonypi_dmi_table)) {
3414 result = acpi_bus_register_driver(&sony_pic_driver);
3415 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003416 pr_err("Unable to register SPIC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003417 goto out;
3418 }
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003419 spic_drv_registered = 1;
malattia@linux.it33a04452007-04-09 19:26:03 +02003420 }
3421
3422 result = acpi_bus_register_driver(&sony_nc_driver);
3423 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003424 pr_err("Unable to register SNC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003425 goto out_unregister_pic;
3426 }
3427
3428 return 0;
3429
3430out_unregister_pic:
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003431 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02003432 acpi_bus_unregister_driver(&sony_pic_driver);
3433out:
3434 return result;
Stelian Pop7f09c432007-01-13 23:04:31 +01003435}
3436
malattia@linux.it59b19102007-04-09 10:19:04 +02003437static void __exit sony_laptop_exit(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01003438{
malattia@linux.it59b19102007-04-09 10:19:04 +02003439 acpi_bus_unregister_driver(&sony_nc_driver);
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003440 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02003441 acpi_bus_unregister_driver(&sony_pic_driver);
Stelian Pop7f09c432007-01-13 23:04:31 +01003442}
3443
malattia@linux.it59b19102007-04-09 10:19:04 +02003444module_init(sony_laptop_init);
3445module_exit(sony_laptop_exit);