blob: c6dc3f741ccd3147ada37b3897fa0629d998bb54 [file] [log] [blame]
Stelian Pop7f09c432007-01-13 23:04:31 +01001/*
malattia@linux.it33a04452007-04-09 19:26:03 +02002 * ACPI Sony Notebook Control Driver (SNC and SPIC)
Stelian Pop7f09c432007-01-13 23:04:31 +01003 *
4 * Copyright (C) 2004-2005 Stelian Pop <stelian@popies.net>
Mattia Dongili37418342009-03-26 21:58:24 +09005 * Copyright (C) 2007-2009 Mattia Dongili <malattia@linux.it>
Stelian Pop7f09c432007-01-13 23:04:31 +01006 *
7 * Parts of this driver inspired from asus_acpi.c and ibm_acpi.c
8 * which are copyrighted by their respective authors.
9 *
malattia@linux.it33a04452007-04-09 19:26:03 +020010 * The SNY6001 driver part is based on the sonypi driver which includes
11 * material from:
12 *
13 * Copyright (C) 2001-2005 Stelian Pop <stelian@popies.net>
14 *
15 * Copyright (C) 2005 Narayanan R S <nars@kadamba.org>
16 *
Marcin Garskidb9551702007-10-19 23:22:11 +020017 * Copyright (C) 2001-2002 AlcĂ´ve <www.alcove.com>
malattia@linux.it33a04452007-04-09 19:26:03 +020018 *
19 * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
20 *
21 * Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp>
22 *
23 * Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp>
24 *
25 * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
26 *
27 * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
28 *
Stelian Pop7f09c432007-01-13 23:04:31 +010029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
42 *
43 */
44
Joe Perches50f581a2011-03-29 15:21:48 -070045#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
46
Stelian Pop7f09c432007-01-13 23:04:31 +010047#include <linux/kernel.h>
48#include <linux/module.h>
49#include <linux/moduleparam.h>
50#include <linux/init.h>
51#include <linux/types.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010052#include <linux/backlight.h>
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010053#include <linux/platform_device.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010054#include <linux/err.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020055#include <linux/dmi.h>
56#include <linux/pci.h>
57#include <linux/interrupt.h>
58#include <linux/delay.h>
59#include <linux/input.h>
60#include <linux/kfifo.h>
61#include <linux/workqueue.h>
62#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Stelian Pop7f09c432007-01-13 23:04:31 +010064#include <acpi/acpi_drivers.h>
65#include <acpi/acpi_bus.h>
66#include <asm/uaccess.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020067#include <linux/sonypi.h>
malattia@linux.it1ce82c12007-04-28 23:34:36 +090068#include <linux/sony-laptop.h>
Matthew Garrett6cc056b2009-03-26 21:58:15 +090069#include <linux/rfkill.h>
Mattia Dongilia64e62a2007-05-01 11:19:53 +090070#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +020071#include <linux/poll.h>
72#include <linux/miscdevice.h>
73#endif
Stelian Pop7f09c432007-01-13 23:04:31 +010074
Joe Perches50f581a2011-03-29 15:21:48 -070075#define dprintk(fmt, ...) \
76do { \
77 if (debug) \
78 pr_warn(fmt, ##__VA_ARGS__); \
malattia@linux.itb9a218b2007-04-09 10:19:06 +020079} while (0)
80
Mattia Dongili425ef5d2008-01-14 18:05:44 +090081#define SONY_LAPTOP_DRIVER_VERSION "0.6"
Alessandro Guido50f62af2007-01-13 23:04:34 +010082
malattia@linux.it33a04452007-04-09 19:26:03 +020083#define SONY_NC_CLASS "sony-nc"
84#define SONY_NC_HID "SNY5001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020085#define SONY_NC_DRIVER_NAME "Sony Notebook Control Driver"
malattia@linux.it33a04452007-04-09 19:26:03 +020086
87#define SONY_PIC_CLASS "sony-pic"
88#define SONY_PIC_HID "SNY6001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020089#define SONY_PIC_DRIVER_NAME "Sony Programmable IO Control Driver"
Stelian Pop7f09c432007-01-13 23:04:31 +010090
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010091MODULE_AUTHOR("Stelian Pop, Mattia Dongili");
malattia@linux.it33a04452007-04-09 19:26:03 +020092MODULE_DESCRIPTION("Sony laptop extras driver (SPIC and SNC ACPI device)");
Stelian Pop7f09c432007-01-13 23:04:31 +010093MODULE_LICENSE("GPL");
malattia@linux.it33a04452007-04-09 19:26:03 +020094MODULE_VERSION(SONY_LAPTOP_DRIVER_VERSION);
Stelian Pop7f09c432007-01-13 23:04:31 +010095
96static int debug;
97module_param(debug, int, 0);
98MODULE_PARM_DESC(debug, "set this to 1 (and RTFM) if you want to help "
Len Browna02d1c12007-02-07 15:34:02 -050099 "the development of this driver");
Stelian Pop7f09c432007-01-13 23:04:31 +0100100
malattia@linux.it33a04452007-04-09 19:26:03 +0200101static int no_spic; /* = 0 */
102module_param(no_spic, int, 0444);
103MODULE_PARM_DESC(no_spic,
104 "set this if you don't want to enable the SPIC device");
105
106static int compat; /* = 0 */
107module_param(compat, int, 0444);
108MODULE_PARM_DESC(compat,
malattia@linux.it7b153f32007-04-09 19:31:25 +0200109 "set this if you want to enable backward compatibility mode");
malattia@linux.it33a04452007-04-09 19:26:03 +0200110
111static unsigned long mask = 0xffffffff;
112module_param(mask, ulong, 0644);
113MODULE_PARM_DESC(mask,
114 "set this to the mask of event you want to enable (see doc)");
115
malattia@linux.it5f3d2892007-04-28 23:18:45 +0900116static int camera; /* = 0 */
117module_param(camera, int, 0444);
118MODULE_PARM_DESC(camera,
119 "set this to 1 to enable Motion Eye camera controls "
120 "(only use it if you have a C1VE or C1VN model)");
121
Mattia Dongilia64e62a2007-05-01 11:19:53 +0900122#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +0200123static int minor = -1;
124module_param(minor, int, 0);
125MODULE_PARM_DESC(minor,
126 "minor number of the misc device for the SPIC compatibility code, "
127 "default is -1 (automatic)");
128#endif
129
Josh Boyer6fe6ae52011-11-02 14:32:00 -0400130static int kbd_backlight = 1;
Mattia Dongilibf155712011-02-19 11:52:31 +0900131module_param(kbd_backlight, int, 0444);
132MODULE_PARM_DESC(kbd_backlight,
133 "set this to 0 to disable keyboard backlight, "
134 "1 to enable it (default: 0)");
135
136static int kbd_backlight_timeout; /* = 0 */
137module_param(kbd_backlight_timeout, int, 0444);
138MODULE_PARM_DESC(kbd_backlight_timeout,
139 "set this to 0 to set the default 10 seconds timeout, "
140 "1 for 30 seconds, 2 for 60 seconds and 3 to disable timeout "
141 "(default: 0)");
142
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)
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001216 argument |= 0x030000;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001217
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;
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001233 bool hwblock, swblock;
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
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001261 if (sony_call_snc_handle(sony_rfkill_handle, 0x200, &result) < 0) {
1262 rfkill_destroy(rfk);
1263 return -1;
1264 }
Alan Jenkins50fab072009-09-24 20:15:24 +01001265 hwblock = !(result & 0x1);
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001266
1267 if (sony_call_snc_handle(sony_rfkill_handle,
1268 sony_rfkill_address[nc_type],
1269 &result) < 0) {
1270 rfkill_destroy(rfk);
1271 return -1;
1272 }
1273 swblock = !(result & 0x2);
1274
1275 rfkill_init_sw_state(rfk, swblock);
Alan Jenkins50fab072009-09-24 20:15:24 +01001276 rfkill_set_hw_state(rfk, hwblock);
1277
Johannes Berg19d337d2009-06-02 13:01:37 +02001278 err = rfkill_register(rfk);
1279 if (err) {
1280 rfkill_destroy(rfk);
1281 return err;
Mattia Dongili53005a02009-04-12 11:26:31 +00001282 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001283 sony_rfkill_devices[nc_type] = rfk;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001284 return err;
1285}
1286
Randy Dunlapa46a7802011-01-08 19:56:44 -08001287static void sony_nc_rfkill_update(void)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001288{
Johannes Berg19d337d2009-06-02 13:01:37 +02001289 enum sony_nc_rfkill i;
1290 int result;
1291 bool hwblock;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001292
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001293 sony_call_snc_handle(sony_rfkill_handle, 0x200, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001294 hwblock = !(result & 0x1);
1295
1296 for (i = 0; i < N_SONY_RFKILL; i++) {
1297 int argument = sony_rfkill_address[i];
1298
1299 if (!sony_rfkill_devices[i])
1300 continue;
1301
1302 if (hwblock) {
Johannes Berge1f8a192009-06-11 12:08:15 +02001303 if (rfkill_set_hw_state(sony_rfkill_devices[i], true)) {
1304 /* we already know we're blocked */
1305 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001306 continue;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001307 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001308
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001309 sony_call_snc_handle(sony_rfkill_handle, argument, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001310 rfkill_set_states(sony_rfkill_devices[i],
Marco Chiapperod6f15ed2012-05-19 22:35:44 +09001311 !(result & 0x2), false);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001312 }
1313}
1314
Mattia Dongili528809c2009-12-17 00:08:36 +09001315static void sony_nc_rfkill_setup(struct acpi_device *device)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001316{
Mattia Dongili528809c2009-12-17 00:08:36 +09001317 int offset;
1318 u8 dev_code, i;
1319 acpi_status status;
1320 struct acpi_object_list params;
1321 union acpi_object in_obj;
1322 union acpi_object *device_enum;
1323 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001324
Mattia Dongili528809c2009-12-17 00:08:36 +09001325 offset = sony_find_snc_handle(0x124);
1326 if (offset == -1) {
1327 offset = sony_find_snc_handle(0x135);
1328 if (offset == -1)
1329 return;
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001330 else
1331 sony_rfkill_handle = 0x135;
1332 } else
1333 sony_rfkill_handle = 0x124;
Mattia Dongili528809c2009-12-17 00:08:36 +09001334 dprintk("Found rkfill handle: 0x%.4x\n", sony_rfkill_handle);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001335
Mattia Dongili528809c2009-12-17 00:08:36 +09001336 /* need to read the whole buffer returned by the acpi call to SN06
1337 * here otherwise we may miss some features
1338 */
1339 params.count = 1;
1340 params.pointer = &in_obj;
1341 in_obj.type = ACPI_TYPE_INTEGER;
1342 in_obj.integer.value = offset;
1343 status = acpi_evaluate_object(sony_nc_acpi_handle, "SN06", &params,
1344 &buffer);
1345 if (ACPI_FAILURE(status)) {
1346 dprintk("Radio device enumeration failed\n");
1347 return;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001348 }
1349
Mattia Dongili528809c2009-12-17 00:08:36 +09001350 device_enum = (union acpi_object *) buffer.pointer;
Dan Carpenter200140b2011-02-27 17:13:25 +03001351 if (!device_enum) {
Joe Perches50f581a2011-03-29 15:21:48 -07001352 pr_err("No SN06 return object\n");
Dan Carpenter200140b2011-02-27 17:13:25 +03001353 goto out_no_enum;
1354 }
1355 if (device_enum->type != ACPI_TYPE_BUFFER) {
Joe Perches50f581a2011-03-29 15:21:48 -07001356 pr_err("Invalid SN06 return object 0x%.2x\n",
1357 device_enum->type);
Mattia Dongili528809c2009-12-17 00:08:36 +09001358 goto out_no_enum;
1359 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001360
Mattia Dongili528809c2009-12-17 00:08:36 +09001361 /* the buffer is filled with magic numbers describing the devices
1362 * available, 0xff terminates the enumeration
1363 */
Dmitry Torokhovc14973f2010-01-10 00:15:44 -08001364 for (i = 0; i < device_enum->buffer.length; i++) {
1365
1366 dev_code = *(device_enum->buffer.pointer + i);
1367 if (dev_code == 0xff)
1368 break;
1369
Mattia Dongili528809c2009-12-17 00:08:36 +09001370 dprintk("Radio devices, looking at 0x%.2x\n", dev_code);
1371
1372 if (dev_code == 0 && !sony_rfkill_devices[SONY_WIFI])
1373 sony_nc_setup_rfkill(device, SONY_WIFI);
1374
1375 if (dev_code == 0x10 && !sony_rfkill_devices[SONY_BLUETOOTH])
1376 sony_nc_setup_rfkill(device, SONY_BLUETOOTH);
1377
1378 if ((0xf0 & dev_code) == 0x20 &&
1379 !sony_rfkill_devices[SONY_WWAN])
1380 sony_nc_setup_rfkill(device, SONY_WWAN);
1381
1382 if (dev_code == 0x30 && !sony_rfkill_devices[SONY_WIMAX])
1383 sony_nc_setup_rfkill(device, SONY_WIMAX);
1384 }
1385
1386out_no_enum:
1387 kfree(buffer.pointer);
1388 return;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001389}
1390
Mattia Dongilibf155712011-02-19 11:52:31 +09001391/* Keyboard backlight feature */
1392#define KBDBL_HANDLER 0x137
1393#define KBDBL_PRESENT 0xB00
1394#define SET_MODE 0xC00
Marco Chiapperodf410d52011-04-05 23:38:34 +09001395#define SET_STATE 0xD00
Mattia Dongilibf155712011-02-19 11:52:31 +09001396#define SET_TIMEOUT 0xE00
1397
1398struct kbd_backlight {
1399 int mode;
1400 int timeout;
1401 struct device_attribute mode_attr;
1402 struct device_attribute timeout_attr;
1403};
1404
Dan Carpenterf11113b2011-02-26 15:54:27 +03001405static struct kbd_backlight *kbdbl_handle;
Mattia Dongilibf155712011-02-19 11:52:31 +09001406
1407static ssize_t __sony_nc_kbd_backlight_mode_set(u8 value)
1408{
1409 int result;
1410
1411 if (value > 1)
1412 return -EINVAL;
1413
1414 if (sony_call_snc_handle(KBDBL_HANDLER,
1415 (value << 0x10) | SET_MODE, &result))
1416 return -EIO;
1417
Marco Chiapperodf410d52011-04-05 23:38:34 +09001418 /* Try to turn the light on/off immediately */
1419 sony_call_snc_handle(KBDBL_HANDLER, (value << 0x10) | SET_STATE,
1420 &result);
1421
Mattia Dongilibf155712011-02-19 11:52:31 +09001422 kbdbl_handle->mode = value;
1423
1424 return 0;
1425}
1426
1427static ssize_t sony_nc_kbd_backlight_mode_store(struct device *dev,
1428 struct device_attribute *attr,
1429 const char *buffer, size_t count)
1430{
1431 int ret = 0;
1432 unsigned long value;
1433
1434 if (count > 31)
1435 return -EINVAL;
1436
1437 if (strict_strtoul(buffer, 10, &value))
1438 return -EINVAL;
1439
1440 ret = __sony_nc_kbd_backlight_mode_set(value);
1441 if (ret < 0)
1442 return ret;
1443
1444 return count;
1445}
1446
1447static ssize_t sony_nc_kbd_backlight_mode_show(struct device *dev,
1448 struct device_attribute *attr, char *buffer)
1449{
1450 ssize_t count = 0;
1451 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_handle->mode);
1452 return count;
1453}
1454
1455static int __sony_nc_kbd_backlight_timeout_set(u8 value)
1456{
1457 int result;
1458
1459 if (value > 3)
1460 return -EINVAL;
1461
1462 if (sony_call_snc_handle(KBDBL_HANDLER,
1463 (value << 0x10) | SET_TIMEOUT, &result))
1464 return -EIO;
1465
1466 kbdbl_handle->timeout = value;
1467
1468 return 0;
1469}
1470
1471static ssize_t sony_nc_kbd_backlight_timeout_store(struct device *dev,
1472 struct device_attribute *attr,
1473 const char *buffer, size_t count)
1474{
1475 int ret = 0;
1476 unsigned long value;
1477
1478 if (count > 31)
1479 return -EINVAL;
1480
1481 if (strict_strtoul(buffer, 10, &value))
1482 return -EINVAL;
1483
1484 ret = __sony_nc_kbd_backlight_timeout_set(value);
1485 if (ret < 0)
1486 return ret;
1487
1488 return count;
1489}
1490
1491static ssize_t sony_nc_kbd_backlight_timeout_show(struct device *dev,
1492 struct device_attribute *attr, char *buffer)
1493{
1494 ssize_t count = 0;
1495 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_handle->timeout);
1496 return count;
1497}
1498
1499static int sony_nc_kbd_backlight_setup(struct platform_device *pd)
1500{
1501 int result;
1502
Marco Chiapperodf410d52011-04-05 23:38:34 +09001503 if (sony_call_snc_handle(KBDBL_HANDLER, KBDBL_PRESENT, &result))
Mattia Dongilibf155712011-02-19 11:52:31 +09001504 return 0;
1505 if (!(result & 0x02))
1506 return 0;
1507
1508 kbdbl_handle = kzalloc(sizeof(*kbdbl_handle), GFP_KERNEL);
Dan Carpenter31f00752011-02-26 15:55:24 +03001509 if (!kbdbl_handle)
1510 return -ENOMEM;
Mattia Dongilibf155712011-02-19 11:52:31 +09001511
1512 sysfs_attr_init(&kbdbl_handle->mode_attr.attr);
1513 kbdbl_handle->mode_attr.attr.name = "kbd_backlight";
1514 kbdbl_handle->mode_attr.attr.mode = S_IRUGO | S_IWUSR;
1515 kbdbl_handle->mode_attr.show = sony_nc_kbd_backlight_mode_show;
1516 kbdbl_handle->mode_attr.store = sony_nc_kbd_backlight_mode_store;
1517
1518 sysfs_attr_init(&kbdbl_handle->timeout_attr.attr);
1519 kbdbl_handle->timeout_attr.attr.name = "kbd_backlight_timeout";
1520 kbdbl_handle->timeout_attr.attr.mode = S_IRUGO | S_IWUSR;
1521 kbdbl_handle->timeout_attr.show = sony_nc_kbd_backlight_timeout_show;
1522 kbdbl_handle->timeout_attr.store = sony_nc_kbd_backlight_timeout_store;
1523
1524 if (device_create_file(&pd->dev, &kbdbl_handle->mode_attr))
1525 goto outkzalloc;
1526
1527 if (device_create_file(&pd->dev, &kbdbl_handle->timeout_attr))
1528 goto outmode;
1529
1530 __sony_nc_kbd_backlight_mode_set(kbd_backlight);
1531 __sony_nc_kbd_backlight_timeout_set(kbd_backlight_timeout);
1532
1533 return 0;
1534
1535outmode:
1536 device_remove_file(&pd->dev, &kbdbl_handle->mode_attr);
1537outkzalloc:
1538 kfree(kbdbl_handle);
1539 kbdbl_handle = NULL;
1540 return -1;
1541}
1542
1543static int sony_nc_kbd_backlight_cleanup(struct platform_device *pd)
1544{
1545 if (kbdbl_handle) {
Marco Chiapperodf410d52011-04-05 23:38:34 +09001546 int result;
1547
Mattia Dongilibf155712011-02-19 11:52:31 +09001548 device_remove_file(&pd->dev, &kbdbl_handle->mode_attr);
1549 device_remove_file(&pd->dev, &kbdbl_handle->timeout_attr);
Marco Chiapperodf410d52011-04-05 23:38:34 +09001550
1551 /* restore the default hw behaviour */
1552 sony_call_snc_handle(KBDBL_HANDLER, 0x1000 | SET_MODE, &result);
1553 sony_call_snc_handle(KBDBL_HANDLER, SET_TIMEOUT, &result);
1554
Mattia Dongilibf155712011-02-19 11:52:31 +09001555 kfree(kbdbl_handle);
1556 }
1557 return 0;
1558}
1559
Marco Chiapperodf410d52011-04-05 23:38:34 +09001560static void sony_nc_kbd_backlight_resume(void)
1561{
1562 int ignore = 0;
1563
1564 if (!kbdbl_handle)
1565 return;
1566
1567 if (kbdbl_handle->mode == 0)
1568 sony_call_snc_handle(KBDBL_HANDLER, SET_MODE, &ignore);
1569
1570 if (kbdbl_handle->timeout != 0)
1571 sony_call_snc_handle(KBDBL_HANDLER,
1572 (kbdbl_handle->timeout << 0x10) | SET_TIMEOUT,
1573 &ignore);
1574}
1575
Mattia Dongili62d2f232011-05-09 10:20:29 -04001576static void sony_nc_backlight_ng_read_limits(int handle,
1577 struct sony_backlight_props *props)
1578{
1579 int offset;
1580 acpi_status status;
1581 u8 brlvl, i;
1582 u8 min = 0xff, max = 0x00;
1583 struct acpi_object_list params;
1584 union acpi_object in_obj;
1585 union acpi_object *lvl_enum;
1586 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1587
1588 props->handle = handle;
1589 props->offset = 0;
1590 props->maxlvl = 0xff;
1591
1592 offset = sony_find_snc_handle(handle);
1593 if (offset < 0)
1594 return;
1595
1596 /* try to read the boundaries from ACPI tables, if we fail the above
1597 * defaults should be reasonable
1598 */
1599 params.count = 1;
1600 params.pointer = &in_obj;
1601 in_obj.type = ACPI_TYPE_INTEGER;
1602 in_obj.integer.value = offset;
1603 status = acpi_evaluate_object(sony_nc_acpi_handle, "SN06", &params,
1604 &buffer);
1605 if (ACPI_FAILURE(status))
1606 return;
1607
1608 lvl_enum = (union acpi_object *) buffer.pointer;
1609 if (!lvl_enum) {
1610 pr_err("No SN06 return object.");
1611 return;
1612 }
1613 if (lvl_enum->type != ACPI_TYPE_BUFFER) {
1614 pr_err("Invalid SN06 return object 0x%.2x\n",
1615 lvl_enum->type);
1616 goto out_invalid;
1617 }
1618
1619 /* the buffer lists brightness levels available, brightness levels are
1620 * from 0 to 8 in the array, other values are used by ALS control.
1621 */
1622 for (i = 0; i < 9 && i < lvl_enum->buffer.length; i++) {
1623
1624 brlvl = *(lvl_enum->buffer.pointer + i);
1625 dprintk("Brightness level: %d\n", brlvl);
1626
1627 if (!brlvl)
1628 break;
1629
1630 if (brlvl > max)
1631 max = brlvl;
1632 if (brlvl < min)
1633 min = brlvl;
1634 }
1635 props->offset = min;
1636 props->maxlvl = max;
1637 dprintk("Brightness levels: min=%d max=%d\n", props->offset,
1638 props->maxlvl);
1639
1640out_invalid:
1641 kfree(buffer.pointer);
1642 return;
1643}
1644
Mattia Dongili7751ab82011-02-19 11:52:32 +09001645static void sony_nc_backlight_setup(void)
1646{
1647 acpi_handle unused;
1648 int max_brightness = 0;
1649 const struct backlight_ops *ops = NULL;
1650 struct backlight_properties props;
1651
1652 if (sony_find_snc_handle(0x12f) != -1) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09001653 ops = &sony_backlight_ng_ops;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001654 sony_nc_backlight_ng_read_limits(0x12f, &sony_bl_props);
1655 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001656
1657 } else if (sony_find_snc_handle(0x137) != -1) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09001658 ops = &sony_backlight_ng_ops;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001659 sony_nc_backlight_ng_read_limits(0x137, &sony_bl_props);
1660 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001661
1662 } else if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT",
1663 &unused))) {
1664 ops = &sony_backlight_ops;
1665 max_brightness = SONY_MAX_BRIGHTNESS - 1;
1666
1667 } else
1668 return;
1669
1670 memset(&props, 0, sizeof(struct backlight_properties));
1671 props.type = BACKLIGHT_PLATFORM;
1672 props.max_brightness = max_brightness;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001673 sony_bl_props.dev = backlight_device_register("sony", NULL,
1674 &sony_bl_props,
1675 ops, &props);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001676
Mattia Dongili62d2f232011-05-09 10:20:29 -04001677 if (IS_ERR(sony_bl_props.dev)) {
Joe Perches50f581a2011-03-29 15:21:48 -07001678 pr_warn("unable to register backlight device\n");
Mattia Dongili62d2f232011-05-09 10:20:29 -04001679 sony_bl_props.dev = NULL;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001680 } else
Mattia Dongili62d2f232011-05-09 10:20:29 -04001681 sony_bl_props.dev->props.brightness =
1682 ops->get_brightness(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001683}
1684
1685static void sony_nc_backlight_cleanup(void)
1686{
Mattia Dongili62d2f232011-05-09 10:20:29 -04001687 if (sony_bl_props.dev)
1688 backlight_device_unregister(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001689}
1690
malattia@linux.it59b19102007-04-09 10:19:04 +02001691static int sony_nc_add(struct acpi_device *device)
Stelian Pop7f09c432007-01-13 23:04:31 +01001692{
1693 acpi_status status;
Andrew Morton8607c672007-03-06 02:29:42 -08001694 int result = 0;
Alessandro Guido50f62af2007-01-13 23:04:34 +01001695 acpi_handle handle;
malattia@linux.it56b87562007-04-09 10:19:05 +02001696 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01001697
Joe Perches50f581a2011-03-29 15:21:48 -07001698 pr_info("%s v%s\n", SONY_NC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.itf6119b02007-04-09 19:31:06 +02001699
malattia@linux.it59b19102007-04-09 10:19:04 +02001700 sony_nc_acpi_device = device;
malattia@linux.it33a04452007-04-09 19:26:03 +02001701 strcpy(acpi_device_class(device), "sony/hotkey");
Stelian Popc5611622007-01-13 23:04:37 +01001702
malattia@linux.it59b19102007-04-09 10:19:04 +02001703 sony_nc_acpi_handle = device->handle;
Stelian Pop7f09c432007-01-13 23:04:31 +01001704
Mattia Dongilib25b7322007-07-16 02:34:36 +09001705 /* read device status */
1706 result = acpi_bus_get_status(device);
1707 /* bail IFF the above call was successful and the device is not present */
1708 if (!result && !device->status.present) {
1709 dprintk("Device not present\n");
1710 result = -ENODEV;
1711 goto outwalk;
1712 }
1713
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001714 result = sony_pf_add();
1715 if (result)
1716 goto outpresent;
1717
Stelian Pop7f09c432007-01-13 23:04:31 +01001718 if (debug) {
Mattia Dongilid6697932011-02-19 11:52:28 +09001719 status = acpi_walk_namespace(ACPI_TYPE_METHOD,
1720 sony_nc_acpi_handle, 1, sony_walk_callback,
1721 NULL, NULL, NULL);
Stelian Pop7f09c432007-01-13 23:04:31 +01001722 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07001723 pr_warn("unable to walk acpi resources\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001724 result = -ENODEV;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001725 goto outpresent;
Stelian Pop7f09c432007-01-13 23:04:31 +01001726 }
Stelian Popc5611622007-01-13 23:04:37 +01001727 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001728
Matthew Garrett82734bf2009-03-26 21:58:13 +09001729 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
1730 &handle))) {
1731 if (acpi_callsetfunc(sony_nc_acpi_handle, "ECON", 1, NULL))
1732 dprintk("ECON Method failed\n");
1733 }
1734
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001735 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
1736 &handle))) {
1737 dprintk("Doing SNC setup\n");
Dan Carpenter7227ded2011-02-26 15:54:57 +03001738 result = sony_nc_handles_setup(sony_pf_device);
1739 if (result)
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001740 goto outpresent;
Dan Carpenter7227ded2011-02-26 15:54:57 +03001741 result = sony_nc_kbd_backlight_setup(sony_pf_device);
1742 if (result)
Mattia Dongilibf155712011-02-19 11:52:31 +09001743 goto outsnc;
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001744 sony_nc_function_setup(device);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001745 sony_nc_rfkill_setup(device);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001746 }
1747
malattia@linux.it1549ee62007-04-09 10:19:08 +02001748 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05001749 result = sony_laptop_setup_input(device);
malattia@linux.it1549ee62007-04-09 10:19:08 +02001750 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07001751 pr_err("Unable to create input devices\n");
Mattia Dongilibf155712011-02-19 11:52:31 +09001752 goto outkbdbacklight;
malattia@linux.it1549ee62007-04-09 10:19:08 +02001753 }
1754
Alessandro Guido38cfc142008-11-12 23:03:28 +01001755 if (acpi_video_backlight_support()) {
Joe Perches50f581a2011-03-29 15:21:48 -07001756 pr_info("brightness ignored, must be controlled by ACPI video driver\n");
Mattia Dongili7751ab82011-02-19 11:52:32 +09001757 } else {
1758 sony_nc_backlight_setup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01001759 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001760
malattia@linux.it56b87562007-04-09 10:19:05 +02001761 /* create sony_pf sysfs attributes related to the SNC device */
1762 for (item = sony_nc_values; item->name; ++item) {
1763
1764 if (!debug && item->debug)
1765 continue;
1766
1767 /* find the available acpiget as described in the DSDT */
1768 for (; item->acpiget && *item->acpiget; ++item->acpiget) {
1769 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1770 *item->acpiget,
1771 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001772 dprintk("Found %s getter: %s\n",
1773 item->name, *item->acpiget);
malattia@linux.it56b87562007-04-09 10:19:05 +02001774 item->devattr.attr.mode |= S_IRUGO;
1775 break;
1776 }
1777 }
1778
1779 /* find the available acpiset as described in the DSDT */
1780 for (; item->acpiset && *item->acpiset; ++item->acpiset) {
1781 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1782 *item->acpiset,
1783 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001784 dprintk("Found %s setter: %s\n",
1785 item->name, *item->acpiset);
malattia@linux.it56b87562007-04-09 10:19:05 +02001786 item->devattr.attr.mode |= S_IWUSR;
1787 break;
1788 }
1789 }
1790
1791 if (item->devattr.attr.mode != 0) {
1792 result =
1793 device_create_file(&sony_pf_device->dev,
1794 &item->devattr);
1795 if (result)
1796 goto out_sysfs;
1797 }
1798 }
1799
Stelian Pop7f09c432007-01-13 23:04:31 +01001800 return 0;
1801
malattia@linux.it56b87562007-04-09 10:19:05 +02001802 out_sysfs:
1803 for (item = sony_nc_values; item->name; ++item) {
1804 device_remove_file(&sony_pf_device->dev, &item->devattr);
1805 }
Mattia Dongili7751ab82011-02-19 11:52:32 +09001806 sony_nc_backlight_cleanup();
Mattia Dongili7df03b82007-01-13 23:04:41 +01001807
malattia@linux.it1549ee62007-04-09 10:19:08 +02001808 sony_laptop_remove_input();
1809
Mattia Dongilibf155712011-02-19 11:52:31 +09001810 outkbdbacklight:
1811 sony_nc_kbd_backlight_cleanup(sony_pf_device);
1812
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001813 outsnc:
1814 sony_nc_handles_cleanup(sony_pf_device);
1815
1816 outpresent:
1817 sony_pf_remove();
1818
Len Browna02d1c12007-02-07 15:34:02 -05001819 outwalk:
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001820 sony_nc_rfkill_cleanup();
Stelian Pop7f09c432007-01-13 23:04:31 +01001821 return result;
1822}
1823
malattia@linux.it59b19102007-04-09 10:19:04 +02001824static int sony_nc_remove(struct acpi_device *device, int type)
Stelian Pop7f09c432007-01-13 23:04:31 +01001825{
malattia@linux.it56b87562007-04-09 10:19:05 +02001826 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01001827
Mattia Dongili7751ab82011-02-19 11:52:32 +09001828 sony_nc_backlight_cleanup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01001829
malattia@linux.it59b19102007-04-09 10:19:04 +02001830 sony_nc_acpi_device = NULL;
Stelian Popc5611622007-01-13 23:04:37 +01001831
malattia@linux.it56b87562007-04-09 10:19:05 +02001832 for (item = sony_nc_values; item->name; ++item) {
1833 device_remove_file(&sony_pf_device->dev, &item->devattr);
1834 }
1835
Mattia Dongilibf155712011-02-19 11:52:31 +09001836 sony_nc_kbd_backlight_cleanup(sony_pf_device);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001837 sony_nc_handles_cleanup(sony_pf_device);
malattia@linux.it56b87562007-04-09 10:19:05 +02001838 sony_pf_remove();
malattia@linux.it1549ee62007-04-09 10:19:08 +02001839 sony_laptop_remove_input();
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001840 sony_nc_rfkill_cleanup();
malattia@linux.itf6119b02007-04-09 19:31:06 +02001841 dprintk(SONY_NC_DRIVER_NAME " removed.\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001842
1843 return 0;
1844}
1845
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001846static const struct acpi_device_id sony_device_ids[] = {
1847 {SONY_NC_HID, 0},
1848 {SONY_PIC_HID, 0},
1849 {"", 0},
1850};
1851MODULE_DEVICE_TABLE(acpi, sony_device_ids);
1852
1853static const struct acpi_device_id sony_nc_device_ids[] = {
1854 {SONY_NC_HID, 0},
1855 {"", 0},
1856};
1857
malattia@linux.it59b19102007-04-09 10:19:04 +02001858static struct acpi_driver sony_nc_driver = {
1859 .name = SONY_NC_DRIVER_NAME,
1860 .class = SONY_NC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001861 .ids = sony_nc_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02001862 .owner = THIS_MODULE,
Len Browna02d1c12007-02-07 15:34:02 -05001863 .ops = {
malattia@linux.it59b19102007-04-09 10:19:04 +02001864 .add = sony_nc_add,
1865 .remove = sony_nc_remove,
1866 .resume = sony_nc_resume,
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001867 .notify = sony_nc_notify,
Len Browna02d1c12007-02-07 15:34:02 -05001868 },
Andrew Morton3f4f4612007-01-13 23:04:32 +01001869};
1870
malattia@linux.it33a04452007-04-09 19:26:03 +02001871/*********** SPIC (SNY6001) Device ***********/
1872
1873#define SONYPI_DEVICE_TYPE1 0x00000001
1874#define SONYPI_DEVICE_TYPE2 0x00000002
1875#define SONYPI_DEVICE_TYPE3 0x00000004
1876
Mattia Dongili22a17782007-07-16 02:34:39 +09001877#define SONYPI_TYPE1_OFFSET 0x04
1878#define SONYPI_TYPE2_OFFSET 0x12
1879#define SONYPI_TYPE3_OFFSET 0x12
malattia@linux.it33a04452007-04-09 19:26:03 +02001880
malattia@linux.it33a04452007-04-09 19:26:03 +02001881struct sony_pic_ioport {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001882 struct acpi_resource_io io1;
1883 struct acpi_resource_io io2;
malattia@linux.it33a04452007-04-09 19:26:03 +02001884 struct list_head list;
1885};
1886
1887struct sony_pic_irq {
1888 struct acpi_resource_irq irq;
1889 struct list_head list;
1890};
1891
Mattia Dongilide920432008-01-14 18:05:43 +09001892struct sonypi_eventtypes {
1893 u8 data;
1894 unsigned long mask;
1895 struct sonypi_event *events;
1896};
1897
malattia@linux.it33a04452007-04-09 19:26:03 +02001898struct sony_pic_dev {
Mattia Dongili31df7142009-09-16 00:05:29 +09001899 struct acpi_device *acpi_dev;
1900 struct sony_pic_irq *cur_irq;
1901 struct sony_pic_ioport *cur_ioport;
1902 struct list_head interrupts;
1903 struct list_head ioports;
1904 struct mutex lock;
1905 struct sonypi_eventtypes *event_types;
1906 int (*handle_irq)(const u8, const u8);
1907 int model;
1908 u16 evport_offset;
1909 u8 camera_power;
1910 u8 bluetooth_power;
1911 u8 wwan_power;
malattia@linux.it33a04452007-04-09 19:26:03 +02001912};
1913
1914static struct sony_pic_dev spic_dev = {
1915 .interrupts = LIST_HEAD_INIT(spic_dev.interrupts),
1916 .ioports = LIST_HEAD_INIT(spic_dev.ioports),
1917};
1918
Alan Jenkins5e6f9722009-09-16 00:05:32 +09001919static int spic_drv_registered;
1920
malattia@linux.it33a04452007-04-09 19:26:03 +02001921/* Event masks */
1922#define SONYPI_JOGGER_MASK 0x00000001
1923#define SONYPI_CAPTURE_MASK 0x00000002
1924#define SONYPI_FNKEY_MASK 0x00000004
1925#define SONYPI_BLUETOOTH_MASK 0x00000008
1926#define SONYPI_PKEY_MASK 0x00000010
1927#define SONYPI_BACK_MASK 0x00000020
1928#define SONYPI_HELP_MASK 0x00000040
1929#define SONYPI_LID_MASK 0x00000080
1930#define SONYPI_ZOOM_MASK 0x00000100
1931#define SONYPI_THUMBPHRASE_MASK 0x00000200
1932#define SONYPI_MEYE_MASK 0x00000400
1933#define SONYPI_MEMORYSTICK_MASK 0x00000800
1934#define SONYPI_BATTERY_MASK 0x00001000
1935#define SONYPI_WIRELESS_MASK 0x00002000
1936
1937struct sonypi_event {
1938 u8 data;
1939 u8 event;
1940};
1941
1942/* The set of possible button release events */
1943static struct sonypi_event sonypi_releaseev[] = {
1944 { 0x00, SONYPI_EVENT_ANYBUTTON_RELEASED },
1945 { 0, 0 }
1946};
1947
1948/* The set of possible jogger events */
1949static struct sonypi_event sonypi_joggerev[] = {
1950 { 0x1f, SONYPI_EVENT_JOGDIAL_UP },
1951 { 0x01, SONYPI_EVENT_JOGDIAL_DOWN },
1952 { 0x5f, SONYPI_EVENT_JOGDIAL_UP_PRESSED },
1953 { 0x41, SONYPI_EVENT_JOGDIAL_DOWN_PRESSED },
1954 { 0x1e, SONYPI_EVENT_JOGDIAL_FAST_UP },
1955 { 0x02, SONYPI_EVENT_JOGDIAL_FAST_DOWN },
1956 { 0x5e, SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED },
1957 { 0x42, SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED },
1958 { 0x1d, SONYPI_EVENT_JOGDIAL_VFAST_UP },
1959 { 0x03, SONYPI_EVENT_JOGDIAL_VFAST_DOWN },
1960 { 0x5d, SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED },
1961 { 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED },
1962 { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED },
1963 { 0, 0 }
1964};
1965
1966/* The set of possible capture button events */
1967static struct sonypi_event sonypi_captureev[] = {
1968 { 0x05, SONYPI_EVENT_CAPTURE_PARTIALPRESSED },
1969 { 0x07, SONYPI_EVENT_CAPTURE_PRESSED },
Mattia Dongili3eb87492008-01-14 18:05:45 +09001970 { 0x40, SONYPI_EVENT_CAPTURE_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02001971 { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED },
1972 { 0, 0 }
1973};
1974
1975/* The set of possible fnkeys events */
1976static struct sonypi_event sonypi_fnkeyev[] = {
1977 { 0x10, SONYPI_EVENT_FNKEY_ESC },
1978 { 0x11, SONYPI_EVENT_FNKEY_F1 },
1979 { 0x12, SONYPI_EVENT_FNKEY_F2 },
1980 { 0x13, SONYPI_EVENT_FNKEY_F3 },
1981 { 0x14, SONYPI_EVENT_FNKEY_F4 },
1982 { 0x15, SONYPI_EVENT_FNKEY_F5 },
1983 { 0x16, SONYPI_EVENT_FNKEY_F6 },
1984 { 0x17, SONYPI_EVENT_FNKEY_F7 },
1985 { 0x18, SONYPI_EVENT_FNKEY_F8 },
1986 { 0x19, SONYPI_EVENT_FNKEY_F9 },
1987 { 0x1a, SONYPI_EVENT_FNKEY_F10 },
1988 { 0x1b, SONYPI_EVENT_FNKEY_F11 },
1989 { 0x1c, SONYPI_EVENT_FNKEY_F12 },
1990 { 0x1f, SONYPI_EVENT_FNKEY_RELEASED },
1991 { 0x21, SONYPI_EVENT_FNKEY_1 },
1992 { 0x22, SONYPI_EVENT_FNKEY_2 },
1993 { 0x31, SONYPI_EVENT_FNKEY_D },
1994 { 0x32, SONYPI_EVENT_FNKEY_E },
1995 { 0x33, SONYPI_EVENT_FNKEY_F },
1996 { 0x34, SONYPI_EVENT_FNKEY_S },
1997 { 0x35, SONYPI_EVENT_FNKEY_B },
1998 { 0x36, SONYPI_EVENT_FNKEY_ONLY },
1999 { 0, 0 }
2000};
2001
2002/* The set of possible program key events */
2003static struct sonypi_event sonypi_pkeyev[] = {
2004 { 0x01, SONYPI_EVENT_PKEY_P1 },
2005 { 0x02, SONYPI_EVENT_PKEY_P2 },
2006 { 0x04, SONYPI_EVENT_PKEY_P3 },
Harald Jenny1cae7102009-03-26 21:58:18 +09002007 { 0x20, SONYPI_EVENT_PKEY_P1 },
malattia@linux.it33a04452007-04-09 19:26:03 +02002008 { 0, 0 }
2009};
2010
2011/* The set of possible bluetooth events */
2012static struct sonypi_event sonypi_blueev[] = {
2013 { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED },
2014 { 0x59, SONYPI_EVENT_BLUETOOTH_ON },
2015 { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF },
2016 { 0, 0 }
2017};
2018
2019/* The set of possible wireless events */
2020static struct sonypi_event sonypi_wlessev[] = {
Mattia Dongili4eeb5022011-02-19 11:52:27 +09002021 { 0x59, SONYPI_EVENT_IGNORE },
2022 { 0x5a, SONYPI_EVENT_IGNORE },
malattia@linux.it33a04452007-04-09 19:26:03 +02002023 { 0, 0 }
2024};
2025
2026/* The set of possible back button events */
2027static struct sonypi_event sonypi_backev[] = {
2028 { 0x20, SONYPI_EVENT_BACK_PRESSED },
2029 { 0, 0 }
2030};
2031
2032/* The set of possible help button events */
2033static struct sonypi_event sonypi_helpev[] = {
2034 { 0x3b, SONYPI_EVENT_HELP_PRESSED },
2035 { 0, 0 }
2036};
2037
2038
2039/* The set of possible lid events */
2040static struct sonypi_event sonypi_lidev[] = {
2041 { 0x51, SONYPI_EVENT_LID_CLOSED },
2042 { 0x50, SONYPI_EVENT_LID_OPENED },
2043 { 0, 0 }
2044};
2045
2046/* The set of possible zoom events */
2047static struct sonypi_event sonypi_zoomev[] = {
2048 { 0x39, SONYPI_EVENT_ZOOM_PRESSED },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002049 { 0x10, SONYPI_EVENT_ZOOM_IN_PRESSED },
2050 { 0x20, SONYPI_EVENT_ZOOM_OUT_PRESSED },
Harald Jenny1cae7102009-03-26 21:58:18 +09002051 { 0x04, SONYPI_EVENT_ZOOM_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02002052 { 0, 0 }
2053};
2054
2055/* The set of possible thumbphrase events */
2056static struct sonypi_event sonypi_thumbphraseev[] = {
2057 { 0x3a, SONYPI_EVENT_THUMBPHRASE_PRESSED },
2058 { 0, 0 }
2059};
2060
2061/* The set of possible motioneye camera events */
2062static struct sonypi_event sonypi_meyeev[] = {
2063 { 0x00, SONYPI_EVENT_MEYE_FACE },
2064 { 0x01, SONYPI_EVENT_MEYE_OPPOSITE },
2065 { 0, 0 }
2066};
2067
2068/* The set of possible memorystick events */
2069static struct sonypi_event sonypi_memorystickev[] = {
2070 { 0x53, SONYPI_EVENT_MEMORYSTICK_INSERT },
2071 { 0x54, SONYPI_EVENT_MEMORYSTICK_EJECT },
2072 { 0, 0 }
2073};
2074
2075/* The set of possible battery events */
2076static struct sonypi_event sonypi_batteryev[] = {
2077 { 0x20, SONYPI_EVENT_BATTERY_INSERT },
2078 { 0x30, SONYPI_EVENT_BATTERY_REMOVE },
2079 { 0, 0 }
2080};
2081
Harald Jenny1cae7102009-03-26 21:58:18 +09002082/* The set of possible volume events */
2083static struct sonypi_event sonypi_volumeev[] = {
2084 { 0x01, SONYPI_EVENT_VOLUME_INC_PRESSED },
2085 { 0x02, SONYPI_EVENT_VOLUME_DEC_PRESSED },
2086 { 0, 0 }
2087};
2088
2089/* The set of possible brightness events */
2090static struct sonypi_event sonypi_brightnessev[] = {
2091 { 0x80, SONYPI_EVENT_BRIGHTNESS_PRESSED },
2092 { 0, 0 }
2093};
2094
Mattia Dongilide920432008-01-14 18:05:43 +09002095static struct sonypi_eventtypes type1_events[] = {
2096 { 0, 0xffffffff, sonypi_releaseev },
2097 { 0x70, SONYPI_MEYE_MASK, sonypi_meyeev },
2098 { 0x30, SONYPI_LID_MASK, sonypi_lidev },
2099 { 0x60, SONYPI_CAPTURE_MASK, sonypi_captureev },
2100 { 0x10, SONYPI_JOGGER_MASK, sonypi_joggerev },
2101 { 0x20, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2102 { 0x30, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
2103 { 0x40, SONYPI_PKEY_MASK, sonypi_pkeyev },
2104 { 0x30, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2105 { 0x40, SONYPI_BATTERY_MASK, sonypi_batteryev },
2106 { 0 },
2107};
2108static struct sonypi_eventtypes type2_events[] = {
2109 { 0, 0xffffffff, sonypi_releaseev },
2110 { 0x38, SONYPI_LID_MASK, sonypi_lidev },
2111 { 0x11, SONYPI_JOGGER_MASK, sonypi_joggerev },
2112 { 0x61, SONYPI_CAPTURE_MASK, sonypi_captureev },
2113 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2114 { 0x31, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
2115 { 0x08, SONYPI_PKEY_MASK, sonypi_pkeyev },
2116 { 0x11, SONYPI_BACK_MASK, sonypi_backev },
2117 { 0x21, SONYPI_HELP_MASK, sonypi_helpev },
2118 { 0x21, SONYPI_ZOOM_MASK, sonypi_zoomev },
2119 { 0x20, SONYPI_THUMBPHRASE_MASK, sonypi_thumbphraseev },
2120 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2121 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
2122 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
2123 { 0 },
2124};
2125static struct sonypi_eventtypes type3_events[] = {
2126 { 0, 0xffffffff, sonypi_releaseev },
2127 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2128 { 0x31, SONYPI_WIRELESS_MASK, sonypi_wlessev },
2129 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2130 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
2131 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002132 { 0x05, SONYPI_PKEY_MASK, sonypi_pkeyev },
2133 { 0x05, SONYPI_ZOOM_MASK, sonypi_zoomev },
2134 { 0x05, SONYPI_CAPTURE_MASK, sonypi_captureev },
Harald Jenny1cae7102009-03-26 21:58:18 +09002135 { 0x05, SONYPI_PKEY_MASK, sonypi_volumeev },
2136 { 0x05, SONYPI_PKEY_MASK, sonypi_brightnessev },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002137 { 0 },
Mattia Dongilide920432008-01-14 18:05:43 +09002138};
2139
Mattia Dongili3eb87492008-01-14 18:05:45 +09002140/* low level spic calls */
malattia@linux.it33a04452007-04-09 19:26:03 +02002141#define ITERATIONS_LONG 10000
2142#define ITERATIONS_SHORT 10
2143#define wait_on_command(command, iterations) { \
2144 unsigned int n = iterations; \
2145 while (--n && (command)) \
2146 udelay(1); \
2147 if (!n) \
2148 dprintk("command failed at %s : %s (line %d)\n", \
Harvey Harrison6e574192008-04-29 00:59:20 -07002149 __FILE__, __func__, __LINE__); \
malattia@linux.it33a04452007-04-09 19:26:03 +02002150}
2151
2152static u8 sony_pic_call1(u8 dev)
2153{
2154 u8 v1, v2;
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 v1 = inb_p(spic_dev.cur_ioport->io1.minimum + 4);
2160 v2 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002161 dprintk("sony_pic_call1(0x%.2x): 0x%.4x\n", dev, (v2 << 8) | v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02002162 return v2;
2163}
2164
2165static u8 sony_pic_call2(u8 dev, u8 fn)
2166{
2167 u8 v1;
2168
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002169 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002170 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002171 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2172 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002173 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002174 outb(fn, spic_dev.cur_ioport->io1.minimum);
2175 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002176 dprintk("sony_pic_call2(0x%.2x - 0x%.2x): 0x%.4x\n", dev, fn, v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02002177 return v1;
2178}
2179
malattia@linux.it49a11de2007-04-09 19:28:56 +02002180static u8 sony_pic_call3(u8 dev, u8 fn, u8 v)
2181{
2182 u8 v1;
2183
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002184 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2185 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2186 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2187 outb(fn, spic_dev.cur_ioport->io1.minimum);
2188 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2189 outb(v, spic_dev.cur_ioport->io1.minimum);
2190 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002191 dprintk("sony_pic_call3(0x%.2x - 0x%.2x - 0x%.2x): 0x%.4x\n",
2192 dev, fn, v, v1);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002193 return v1;
2194}
2195
Mattia Dongili3eb87492008-01-14 18:05:45 +09002196/*
2197 * minidrivers for SPIC models
2198 */
Mattia Dongilie93c8a62009-03-26 21:58:17 +09002199static int type3_handle_irq(const u8 data_mask, const u8 ev)
Mattia Dongili3eb87492008-01-14 18:05:45 +09002200{
2201 /*
2202 * 0x31 could mean we have to take some extra action and wait for
Mattia Dongilie93c8a62009-03-26 21:58:17 +09002203 * the next irq for some Type3 models, it will generate a new
Mattia Dongili3eb87492008-01-14 18:05:45 +09002204 * irq and we can read new data from the device:
2205 * - 0x5c and 0x5f requires 0xA0
2206 * - 0x61 requires 0xB3
2207 */
2208 if (data_mask == 0x31) {
2209 if (ev == 0x5c || ev == 0x5f)
2210 sony_pic_call1(0xA0);
2211 else if (ev == 0x61)
2212 sony_pic_call1(0xB3);
2213 return 0;
2214 }
2215 return 1;
2216}
2217
Mattia Dongili3eb87492008-01-14 18:05:45 +09002218static void sony_pic_detect_device_type(struct sony_pic_dev *dev)
2219{
2220 struct pci_dev *pcidev;
2221
2222 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2223 PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
2224 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002225 dev->model = SONYPI_DEVICE_TYPE1;
2226 dev->evport_offset = SONYPI_TYPE1_OFFSET;
2227 dev->event_types = type1_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002228 goto out;
2229 }
2230
2231 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2232 PCI_DEVICE_ID_INTEL_ICH6_1, NULL);
2233 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002234 dev->model = SONYPI_DEVICE_TYPE2;
2235 dev->evport_offset = SONYPI_TYPE2_OFFSET;
2236 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002237 goto out;
2238 }
2239
2240 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2241 PCI_DEVICE_ID_INTEL_ICH7_1, NULL);
2242 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002243 dev->model = SONYPI_DEVICE_TYPE3;
2244 dev->handle_irq = type3_handle_irq;
2245 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2246 dev->event_types = type3_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002247 goto out;
2248 }
2249
2250 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2251 PCI_DEVICE_ID_INTEL_ICH8_4, NULL);
2252 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002253 dev->model = SONYPI_DEVICE_TYPE3;
2254 dev->handle_irq = type3_handle_irq;
2255 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2256 dev->event_types = type3_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002257 goto out;
2258 }
2259
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09002260 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2261 PCI_DEVICE_ID_INTEL_ICH9_1, NULL);
2262 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002263 dev->model = SONYPI_DEVICE_TYPE3;
2264 dev->handle_irq = type3_handle_irq;
2265 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2266 dev->event_types = type3_events;
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09002267 goto out;
2268 }
2269
Mattia Dongili3eb87492008-01-14 18:05:45 +09002270 /* default */
Mattia Dongili31df7142009-09-16 00:05:29 +09002271 dev->model = SONYPI_DEVICE_TYPE2;
2272 dev->evport_offset = SONYPI_TYPE2_OFFSET;
2273 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002274
2275out:
2276 if (pcidev)
2277 pci_dev_put(pcidev);
2278
Joe Perches50f581a2011-03-29 15:21:48 -07002279 pr_info("detected Type%d model\n",
2280 dev->model == SONYPI_DEVICE_TYPE1 ? 1 :
2281 dev->model == SONYPI_DEVICE_TYPE2 ? 2 : 3);
Mattia Dongili3eb87492008-01-14 18:05:45 +09002282}
2283
malattia@linux.it49a11de2007-04-09 19:28:56 +02002284/* camera tests and poweron/poweroff */
2285#define SONYPI_CAMERA_PICTURE 5
malattia@linux.it49a11de2007-04-09 19:28:56 +02002286#define SONYPI_CAMERA_CONTROL 0x10
malattia@linux.ite3646322007-04-28 23:34:22 +09002287
2288#define SONYPI_CAMERA_BRIGHTNESS 0
2289#define SONYPI_CAMERA_CONTRAST 1
2290#define SONYPI_CAMERA_HUE 2
2291#define SONYPI_CAMERA_COLOR 3
2292#define SONYPI_CAMERA_SHARPNESS 4
2293
2294#define SONYPI_CAMERA_EXPOSURE_MASK 0xC
2295#define SONYPI_CAMERA_WHITE_BALANCE_MASK 0x3
2296#define SONYPI_CAMERA_PICTURE_MODE_MASK 0x30
2297#define SONYPI_CAMERA_MUTE_MASK 0x40
2298
2299/* the rest don't need a loop until not 0xff */
2300#define SONYPI_CAMERA_AGC 6
2301#define SONYPI_CAMERA_AGC_MASK 0x30
2302#define SONYPI_CAMERA_SHUTTER_MASK 0x7
2303
2304#define SONYPI_CAMERA_SHUTDOWN_REQUEST 7
2305#define SONYPI_CAMERA_CONTROL 0x10
2306
2307#define SONYPI_CAMERA_STATUS 7
2308#define SONYPI_CAMERA_STATUS_READY 0x2
2309#define SONYPI_CAMERA_STATUS_POSITION 0x4
2310
2311#define SONYPI_DIRECTION_BACKWARDS 0x4
2312
2313#define SONYPI_CAMERA_REVISION 8
2314#define SONYPI_CAMERA_ROMVERSION 9
malattia@linux.it49a11de2007-04-09 19:28:56 +02002315
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002316static int __sony_pic_camera_ready(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002317{
2318 u8 v;
2319
2320 v = sony_pic_call2(0x8f, SONYPI_CAMERA_STATUS);
2321 return (v != 0xff && (v & SONYPI_CAMERA_STATUS_READY));
2322}
2323
malattia@linux.ite3646322007-04-28 23:34:22 +09002324static int __sony_pic_camera_off(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002325{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002326 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07002327 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002328 return -ENODEV;
2329 }
2330
malattia@linux.it49a11de2007-04-09 19:28:56 +02002331 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE,
2332 SONYPI_CAMERA_MUTE_MASK),
2333 ITERATIONS_SHORT);
2334
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002335 if (spic_dev.camera_power) {
2336 sony_pic_call2(0x91, 0);
2337 spic_dev.camera_power = 0;
2338 }
2339 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002340}
2341
malattia@linux.ite3646322007-04-28 23:34:22 +09002342static int __sony_pic_camera_on(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002343{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002344 int i, j, x;
2345
2346 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07002347 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002348 return -ENODEV;
2349 }
malattia@linux.it49a11de2007-04-09 19:28:56 +02002350
2351 if (spic_dev.camera_power)
malattia@linux.ite3646322007-04-28 23:34:22 +09002352 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002353
2354 for (j = 5; j > 0; j--) {
2355
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002356 for (x = 0; x < 100 && sony_pic_call2(0x91, 0x1); x++)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002357 msleep(10);
2358 sony_pic_call1(0x93);
2359
2360 for (i = 400; i > 0; i--) {
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002361 if (__sony_pic_camera_ready())
malattia@linux.it49a11de2007-04-09 19:28:56 +02002362 break;
2363 msleep(10);
2364 }
2365 if (i)
2366 break;
2367 }
2368
2369 if (j == 0) {
Joe Perches50f581a2011-03-29 15:21:48 -07002370 pr_warn("failed to power on camera\n");
malattia@linux.ite3646322007-04-28 23:34:22 +09002371 return -ENODEV;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002372 }
2373
2374 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTROL,
2375 0x5a),
2376 ITERATIONS_SHORT);
2377
2378 spic_dev.camera_power = 1;
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002379 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002380}
2381
malattia@linux.ite3646322007-04-28 23:34:22 +09002382/* External camera command (exported to the motion eye v4l driver) */
2383int sony_pic_camera_command(int command, u8 value)
2384{
2385 if (!camera)
2386 return -EIO;
2387
2388 mutex_lock(&spic_dev.lock);
2389
2390 switch (command) {
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002391 case SONY_PIC_COMMAND_SETCAMERA:
malattia@linux.ite3646322007-04-28 23:34:22 +09002392 if (value)
2393 __sony_pic_camera_on();
2394 else
2395 __sony_pic_camera_off();
2396 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002397 case SONY_PIC_COMMAND_SETCAMERABRIGHTNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09002398 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_BRIGHTNESS, value),
2399 ITERATIONS_SHORT);
2400 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002401 case SONY_PIC_COMMAND_SETCAMERACONTRAST:
malattia@linux.ite3646322007-04-28 23:34:22 +09002402 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTRAST, value),
2403 ITERATIONS_SHORT);
2404 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002405 case SONY_PIC_COMMAND_SETCAMERAHUE:
malattia@linux.ite3646322007-04-28 23:34:22 +09002406 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_HUE, value),
2407 ITERATIONS_SHORT);
2408 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002409 case SONY_PIC_COMMAND_SETCAMERACOLOR:
malattia@linux.ite3646322007-04-28 23:34:22 +09002410 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_COLOR, value),
2411 ITERATIONS_SHORT);
2412 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002413 case SONY_PIC_COMMAND_SETCAMERASHARPNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09002414 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_SHARPNESS, value),
2415 ITERATIONS_SHORT);
2416 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002417 case SONY_PIC_COMMAND_SETCAMERAPICTURE:
malattia@linux.ite3646322007-04-28 23:34:22 +09002418 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, value),
2419 ITERATIONS_SHORT);
2420 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002421 case SONY_PIC_COMMAND_SETCAMERAAGC:
malattia@linux.ite3646322007-04-28 23:34:22 +09002422 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_AGC, value),
2423 ITERATIONS_SHORT);
2424 break;
2425 default:
Joe Perches50f581a2011-03-29 15:21:48 -07002426 pr_err("sony_pic_camera_command invalid: %d\n", command);
malattia@linux.ite3646322007-04-28 23:34:22 +09002427 break;
2428 }
2429 mutex_unlock(&spic_dev.lock);
2430 return 0;
2431}
2432EXPORT_SYMBOL(sony_pic_camera_command);
2433
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002434/* gprs/edge modem (SZ460N and SZ210P), thanks to Joshua Wise */
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002435static void __sony_pic_set_wwanpower(u8 state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002436{
2437 state = !!state;
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002438 if (spic_dev.wwan_power == state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002439 return;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002440 sony_pic_call2(0xB0, state);
Sergey Yanovich3ad1b762009-03-26 21:58:21 +09002441 sony_pic_call1(0x82);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002442 spic_dev.wwan_power = state;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002443}
2444
2445static ssize_t sony_pic_wwanpower_store(struct device *dev,
2446 struct device_attribute *attr,
2447 const char *buffer, size_t count)
2448{
2449 unsigned long value;
2450 if (count > 31)
2451 return -EINVAL;
2452
2453 value = simple_strtoul(buffer, NULL, 10);
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002454 mutex_lock(&spic_dev.lock);
2455 __sony_pic_set_wwanpower(value);
2456 mutex_unlock(&spic_dev.lock);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002457
2458 return count;
2459}
2460
2461static ssize_t sony_pic_wwanpower_show(struct device *dev,
2462 struct device_attribute *attr, char *buffer)
2463{
2464 ssize_t count;
2465 mutex_lock(&spic_dev.lock);
2466 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.wwan_power);
2467 mutex_unlock(&spic_dev.lock);
2468 return count;
2469}
2470
malattia@linux.it49a11de2007-04-09 19:28:56 +02002471/* bluetooth subsystem power state */
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002472static void __sony_pic_set_bluetoothpower(u8 state)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002473{
2474 state = !!state;
2475 if (spic_dev.bluetooth_power == state)
2476 return;
2477 sony_pic_call2(0x96, state);
2478 sony_pic_call1(0x82);
2479 spic_dev.bluetooth_power = state;
2480}
2481
2482static ssize_t sony_pic_bluetoothpower_store(struct device *dev,
2483 struct device_attribute *attr,
2484 const char *buffer, size_t count)
2485{
2486 unsigned long value;
2487 if (count > 31)
2488 return -EINVAL;
2489
2490 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002491 mutex_lock(&spic_dev.lock);
2492 __sony_pic_set_bluetoothpower(value);
2493 mutex_unlock(&spic_dev.lock);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002494
2495 return count;
2496}
2497
2498static ssize_t sony_pic_bluetoothpower_show(struct device *dev,
2499 struct device_attribute *attr, char *buffer)
2500{
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002501 ssize_t count = 0;
2502 mutex_lock(&spic_dev.lock);
2503 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.bluetooth_power);
2504 mutex_unlock(&spic_dev.lock);
2505 return count;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002506}
2507
2508/* fan speed */
2509/* FAN0 information (reverse engineered from ACPI tables) */
2510#define SONY_PIC_FAN0_STATUS 0x93
malattia@linux.it7b153f32007-04-09 19:31:25 +02002511static int sony_pic_set_fanspeed(unsigned long value)
2512{
2513 return ec_write(SONY_PIC_FAN0_STATUS, value);
2514}
2515
2516static int sony_pic_get_fanspeed(u8 *value)
2517{
2518 return ec_read(SONY_PIC_FAN0_STATUS, value);
2519}
2520
malattia@linux.it49a11de2007-04-09 19:28:56 +02002521static ssize_t sony_pic_fanspeed_store(struct device *dev,
2522 struct device_attribute *attr,
2523 const char *buffer, size_t count)
2524{
2525 unsigned long value;
2526 if (count > 31)
2527 return -EINVAL;
2528
2529 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002530 if (sony_pic_set_fanspeed(value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02002531 return -EIO;
2532
2533 return count;
2534}
2535
2536static ssize_t sony_pic_fanspeed_show(struct device *dev,
2537 struct device_attribute *attr, char *buffer)
2538{
2539 u8 value = 0;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002540 if (sony_pic_get_fanspeed(&value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02002541 return -EIO;
2542
2543 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
2544}
2545
2546#define SPIC_ATTR(_name, _mode) \
2547struct device_attribute spic_attr_##_name = __ATTR(_name, \
2548 _mode, sony_pic_## _name ##_show, \
2549 sony_pic_## _name ##_store)
2550
malattia@linux.it49a11de2007-04-09 19:28:56 +02002551static SPIC_ATTR(bluetoothpower, 0644);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002552static SPIC_ATTR(wwanpower, 0644);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002553static SPIC_ATTR(fanspeed, 0644);
2554
2555static struct attribute *spic_attributes[] = {
malattia@linux.it49a11de2007-04-09 19:28:56 +02002556 &spic_attr_bluetoothpower.attr,
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002557 &spic_attr_wwanpower.attr,
malattia@linux.it49a11de2007-04-09 19:28:56 +02002558 &spic_attr_fanspeed.attr,
2559 NULL
2560};
2561
2562static struct attribute_group spic_attribute_group = {
2563 .attrs = spic_attributes
2564};
2565
malattia@linux.it7b153f32007-04-09 19:31:25 +02002566/******** SONYPI compatibility **********/
Mattia Dongilia64e62a2007-05-01 11:19:53 +09002567#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +02002568
2569/* battery / brightness / temperature addresses */
2570#define SONYPI_BAT_FLAGS 0x81
2571#define SONYPI_LCD_LIGHT 0x96
2572#define SONYPI_BAT1_PCTRM 0xa0
2573#define SONYPI_BAT1_LEFT 0xa2
2574#define SONYPI_BAT1_MAXRT 0xa4
2575#define SONYPI_BAT2_PCTRM 0xa8
2576#define SONYPI_BAT2_LEFT 0xaa
2577#define SONYPI_BAT2_MAXRT 0xac
2578#define SONYPI_BAT1_MAXTK 0xb0
2579#define SONYPI_BAT1_FULL 0xb2
2580#define SONYPI_BAT2_MAXTK 0xb8
2581#define SONYPI_BAT2_FULL 0xba
2582#define SONYPI_TEMP_STATUS 0xC1
2583
2584struct sonypi_compat_s {
2585 struct fasync_struct *fifo_async;
Stefani Seibold45465482009-12-21 14:37:26 -08002586 struct kfifo fifo;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002587 spinlock_t fifo_lock;
2588 wait_queue_head_t fifo_proc_list;
2589 atomic_t open_count;
2590};
2591static struct sonypi_compat_s sonypi_compat = {
2592 .open_count = ATOMIC_INIT(0),
2593};
2594
2595static int sonypi_misc_fasync(int fd, struct file *filp, int on)
2596{
Jonathan Corbet60aa4922009-02-01 14:52:56 -07002597 return fasync_helper(fd, filp, on, &sonypi_compat.fifo_async);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002598}
2599
2600static int sonypi_misc_release(struct inode *inode, struct file *file)
2601{
malattia@linux.it7b153f32007-04-09 19:31:25 +02002602 atomic_dec(&sonypi_compat.open_count);
2603 return 0;
2604}
2605
2606static int sonypi_misc_open(struct inode *inode, struct file *file)
2607{
2608 /* Flush input queue on first open */
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002609 unsigned long flags;
2610
Stefani Seibold45465482009-12-21 14:37:26 -08002611 spin_lock_irqsave(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002612
malattia@linux.it7b153f32007-04-09 19:31:25 +02002613 if (atomic_inc_return(&sonypi_compat.open_count) == 1)
Stefani Seibolde64c0262009-12-21 14:37:28 -08002614 kfifo_reset(&sonypi_compat.fifo);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002615
Stefani Seibold45465482009-12-21 14:37:26 -08002616 spin_unlock_irqrestore(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002617
malattia@linux.it7b153f32007-04-09 19:31:25 +02002618 return 0;
2619}
2620
2621static ssize_t sonypi_misc_read(struct file *file, char __user *buf,
2622 size_t count, loff_t *pos)
2623{
2624 ssize_t ret;
2625 unsigned char c;
2626
Stefani Seibold45465482009-12-21 14:37:26 -08002627 if ((kfifo_len(&sonypi_compat.fifo) == 0) &&
malattia@linux.it7b153f32007-04-09 19:31:25 +02002628 (file->f_flags & O_NONBLOCK))
2629 return -EAGAIN;
2630
2631 ret = wait_event_interruptible(sonypi_compat.fifo_proc_list,
Stefani Seibold45465482009-12-21 14:37:26 -08002632 kfifo_len(&sonypi_compat.fifo) != 0);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002633 if (ret)
2634 return ret;
2635
2636 while (ret < count &&
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002637 (kfifo_out_locked(&sonypi_compat.fifo, &c, sizeof(c),
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002638 &sonypi_compat.fifo_lock) == sizeof(c))) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002639 if (put_user(c, buf++))
2640 return -EFAULT;
2641 ret++;
2642 }
2643
2644 if (ret > 0) {
2645 struct inode *inode = file->f_path.dentry->d_inode;
2646 inode->i_atime = current_fs_time(inode->i_sb);
2647 }
2648
2649 return ret;
2650}
2651
2652static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait)
2653{
2654 poll_wait(file, &sonypi_compat.fifo_proc_list, wait);
Stefani Seibold45465482009-12-21 14:37:26 -08002655 if (kfifo_len(&sonypi_compat.fifo))
malattia@linux.it7b153f32007-04-09 19:31:25 +02002656 return POLLIN | POLLRDNORM;
2657 return 0;
2658}
2659
2660static int ec_read16(u8 addr, u16 *value)
2661{
2662 u8 val_lb, val_hb;
2663 if (ec_read(addr, &val_lb))
2664 return -1;
2665 if (ec_read(addr + 1, &val_hb))
2666 return -1;
2667 *value = val_lb | (val_hb << 8);
2668 return 0;
2669}
2670
Alan Cox2b24ef02009-03-26 21:58:19 +09002671static long sonypi_misc_ioctl(struct file *fp, unsigned int cmd,
2672 unsigned long arg)
malattia@linux.it7b153f32007-04-09 19:31:25 +02002673{
2674 int ret = 0;
2675 void __user *argp = (void __user *)arg;
2676 u8 val8;
2677 u16 val16;
2678 int value;
2679
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002680 mutex_lock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002681 switch (cmd) {
2682 case SONYPI_IOCGBRT:
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 (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value)) {
2688 ret = -EIO;
2689 break;
2690 }
2691 val8 = ((value & 0xff) - 1) << 5;
2692 if (copy_to_user(argp, &val8, sizeof(val8)))
2693 ret = -EFAULT;
2694 break;
2695 case SONYPI_IOCSBRT:
Mattia Dongili62d2f232011-05-09 10:20:29 -04002696 if (sony_bl_props.dev == NULL) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002697 ret = -EIO;
2698 break;
2699 }
2700 if (copy_from_user(&val8, argp, sizeof(val8))) {
2701 ret = -EFAULT;
2702 break;
2703 }
2704 if (acpi_callsetfunc(sony_nc_acpi_handle, "SBRT",
2705 (val8 >> 5) + 1, NULL)) {
2706 ret = -EIO;
2707 break;
2708 }
2709 /* sync the backlight device status */
Mattia Dongili62d2f232011-05-09 10:20:29 -04002710 sony_bl_props.dev->props.brightness =
2711 sony_backlight_get_brightness(sony_bl_props.dev);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002712 break;
2713 case SONYPI_IOCGBAT1CAP:
2714 if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
2715 ret = -EIO;
2716 break;
2717 }
2718 if (copy_to_user(argp, &val16, sizeof(val16)))
2719 ret = -EFAULT;
2720 break;
2721 case SONYPI_IOCGBAT1REM:
2722 if (ec_read16(SONYPI_BAT1_LEFT, &val16)) {
2723 ret = -EIO;
2724 break;
2725 }
2726 if (copy_to_user(argp, &val16, sizeof(val16)))
2727 ret = -EFAULT;
2728 break;
2729 case SONYPI_IOCGBAT2CAP:
2730 if (ec_read16(SONYPI_BAT2_FULL, &val16)) {
2731 ret = -EIO;
2732 break;
2733 }
2734 if (copy_to_user(argp, &val16, sizeof(val16)))
2735 ret = -EFAULT;
2736 break;
2737 case SONYPI_IOCGBAT2REM:
2738 if (ec_read16(SONYPI_BAT2_LEFT, &val16)) {
2739 ret = -EIO;
2740 break;
2741 }
2742 if (copy_to_user(argp, &val16, sizeof(val16)))
2743 ret = -EFAULT;
2744 break;
2745 case SONYPI_IOCGBATFLAGS:
2746 if (ec_read(SONYPI_BAT_FLAGS, &val8)) {
2747 ret = -EIO;
2748 break;
2749 }
2750 val8 &= 0x07;
2751 if (copy_to_user(argp, &val8, sizeof(val8)))
2752 ret = -EFAULT;
2753 break;
2754 case SONYPI_IOCGBLUE:
2755 val8 = spic_dev.bluetooth_power;
2756 if (copy_to_user(argp, &val8, sizeof(val8)))
2757 ret = -EFAULT;
2758 break;
2759 case SONYPI_IOCSBLUE:
2760 if (copy_from_user(&val8, argp, sizeof(val8))) {
2761 ret = -EFAULT;
2762 break;
2763 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002764 __sony_pic_set_bluetoothpower(val8);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002765 break;
2766 /* FAN Controls */
2767 case SONYPI_IOCGFAN:
2768 if (sony_pic_get_fanspeed(&val8)) {
2769 ret = -EIO;
2770 break;
2771 }
2772 if (copy_to_user(argp, &val8, sizeof(val8)))
2773 ret = -EFAULT;
2774 break;
2775 case SONYPI_IOCSFAN:
2776 if (copy_from_user(&val8, argp, sizeof(val8))) {
2777 ret = -EFAULT;
2778 break;
2779 }
2780 if (sony_pic_set_fanspeed(val8))
2781 ret = -EIO;
2782 break;
2783 /* GET Temperature (useful under APM) */
2784 case SONYPI_IOCGTEMP:
2785 if (ec_read(SONYPI_TEMP_STATUS, &val8)) {
2786 ret = -EIO;
2787 break;
2788 }
2789 if (copy_to_user(argp, &val8, sizeof(val8)))
2790 ret = -EFAULT;
2791 break;
2792 default:
2793 ret = -EINVAL;
2794 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002795 mutex_unlock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002796 return ret;
2797}
2798
2799static const struct file_operations sonypi_misc_fops = {
2800 .owner = THIS_MODULE,
2801 .read = sonypi_misc_read,
2802 .poll = sonypi_misc_poll,
2803 .open = sonypi_misc_open,
2804 .release = sonypi_misc_release,
2805 .fasync = sonypi_misc_fasync,
Alan Cox2b24ef02009-03-26 21:58:19 +09002806 .unlocked_ioctl = sonypi_misc_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002807 .llseek = noop_llseek,
malattia@linux.it7b153f32007-04-09 19:31:25 +02002808};
2809
2810static struct miscdevice sonypi_misc_device = {
2811 .minor = MISC_DYNAMIC_MINOR,
2812 .name = "sonypi",
2813 .fops = &sonypi_misc_fops,
2814};
2815
2816static void sonypi_compat_report_event(u8 event)
2817{
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002818 kfifo_in_locked(&sonypi_compat.fifo, (unsigned char *)&event,
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002819 sizeof(event), &sonypi_compat.fifo_lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002820 kill_fasync(&sonypi_compat.fifo_async, SIGIO, POLL_IN);
2821 wake_up_interruptible(&sonypi_compat.fifo_proc_list);
2822}
2823
2824static int sonypi_compat_init(void)
2825{
2826 int error;
2827
2828 spin_lock_init(&sonypi_compat.fifo_lock);
Stefani Seibold45465482009-12-21 14:37:26 -08002829 error =
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002830 kfifo_alloc(&sonypi_compat.fifo, SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -08002831 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07002832 pr_err("kfifo_alloc failed\n");
Stefani Seibold45465482009-12-21 14:37:26 -08002833 return error;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002834 }
2835
2836 init_waitqueue_head(&sonypi_compat.fifo_proc_list);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002837
2838 if (minor != -1)
2839 sonypi_misc_device.minor = minor;
2840 error = misc_register(&sonypi_misc_device);
2841 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07002842 pr_err("misc_register failed\n");
malattia@linux.it7b153f32007-04-09 19:31:25 +02002843 goto err_free_kfifo;
2844 }
2845 if (minor == -1)
Joe Perches50f581a2011-03-29 15:21:48 -07002846 pr_info("device allocated minor is %d\n",
2847 sonypi_misc_device.minor);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002848
2849 return 0;
2850
2851err_free_kfifo:
Stefani Seibold45465482009-12-21 14:37:26 -08002852 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002853 return error;
2854}
2855
2856static void sonypi_compat_exit(void)
2857{
2858 misc_deregister(&sonypi_misc_device);
Stefani Seibold45465482009-12-21 14:37:26 -08002859 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002860}
2861#else
2862static int sonypi_compat_init(void) { return 0; }
2863static void sonypi_compat_exit(void) { }
2864static void sonypi_compat_report_event(u8 event) { }
Mattia Dongilia64e62a2007-05-01 11:19:53 +09002865#endif /* CONFIG_SONYPI_COMPAT */
malattia@linux.it7b153f32007-04-09 19:31:25 +02002866
malattia@linux.it1549ee62007-04-09 10:19:08 +02002867/*
malattia@linux.it33a04452007-04-09 19:26:03 +02002868 * ACPI callbacks
malattia@linux.it1549ee62007-04-09 10:19:08 +02002869 */
malattia@linux.it33a04452007-04-09 19:26:03 +02002870static acpi_status
2871sony_pic_read_possible_resource(struct acpi_resource *resource, void *context)
2872{
2873 u32 i;
2874 struct sony_pic_dev *dev = (struct sony_pic_dev *)context;
2875
2876 switch (resource->type) {
2877 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002878 {
2879 /* start IO enumeration */
2880 struct sony_pic_ioport *ioport = kzalloc(sizeof(*ioport), GFP_KERNEL);
2881 if (!ioport)
2882 return AE_ERROR;
2883
2884 list_add(&ioport->list, &dev->ioports);
2885 return AE_OK;
2886 }
2887
malattia@linux.it33a04452007-04-09 19:26:03 +02002888 case ACPI_RESOURCE_TYPE_END_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002889 /* end IO enumeration */
malattia@linux.it33a04452007-04-09 19:26:03 +02002890 return AE_OK;
2891
2892 case ACPI_RESOURCE_TYPE_IRQ:
2893 {
2894 struct acpi_resource_irq *p = &resource->data.irq;
2895 struct sony_pic_irq *interrupt = NULL;
2896 if (!p || !p->interrupt_count) {
2897 /*
2898 * IRQ descriptors may have no IRQ# bits set,
2899 * particularly those those w/ _STA disabled
2900 */
2901 dprintk("Blank IRQ resource\n");
2902 return AE_OK;
2903 }
2904 for (i = 0; i < p->interrupt_count; i++) {
2905 if (!p->interrupts[i]) {
Joe Perches50f581a2011-03-29 15:21:48 -07002906 pr_warn("Invalid IRQ %d\n",
2907 p->interrupts[i]);
malattia@linux.it33a04452007-04-09 19:26:03 +02002908 continue;
2909 }
2910 interrupt = kzalloc(sizeof(*interrupt),
2911 GFP_KERNEL);
2912 if (!interrupt)
2913 return AE_ERROR;
2914
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002915 list_add(&interrupt->list, &dev->interrupts);
malattia@linux.it33a04452007-04-09 19:26:03 +02002916 interrupt->irq.triggering = p->triggering;
2917 interrupt->irq.polarity = p->polarity;
2918 interrupt->irq.sharable = p->sharable;
2919 interrupt->irq.interrupt_count = 1;
2920 interrupt->irq.interrupts[0] = p->interrupts[i];
2921 }
2922 return AE_OK;
2923 }
2924 case ACPI_RESOURCE_TYPE_IO:
2925 {
2926 struct acpi_resource_io *io = &resource->data.io;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002927 struct sony_pic_ioport *ioport =
2928 list_first_entry(&dev->ioports, struct sony_pic_ioport, list);
malattia@linux.it33a04452007-04-09 19:26:03 +02002929 if (!io) {
2930 dprintk("Blank IO resource\n");
2931 return AE_OK;
2932 }
2933
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002934 if (!ioport->io1.minimum) {
2935 memcpy(&ioport->io1, io, sizeof(*io));
2936 dprintk("IO1 at 0x%.4x (0x%.2x)\n", ioport->io1.minimum,
2937 ioport->io1.address_length);
2938 }
2939 else if (!ioport->io2.minimum) {
2940 memcpy(&ioport->io2, io, sizeof(*io));
2941 dprintk("IO2 at 0x%.4x (0x%.2x)\n", ioport->io2.minimum,
2942 ioport->io2.address_length);
2943 }
2944 else {
Joe Perches50f581a2011-03-29 15:21:48 -07002945 pr_err("Unknown SPIC Type, more than 2 IO Ports\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002946 return AE_ERROR;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002947 }
malattia@linux.it33a04452007-04-09 19:26:03 +02002948 return AE_OK;
2949 }
2950 default:
2951 dprintk("Resource %d isn't an IRQ nor an IO port\n",
Joe Perches50f581a2011-03-29 15:21:48 -07002952 resource->type);
malattia@linux.it33a04452007-04-09 19:26:03 +02002953
2954 case ACPI_RESOURCE_TYPE_END_TAG:
2955 return AE_OK;
2956 }
2957 return AE_CTRL_TERMINATE;
2958}
2959
2960static int sony_pic_possible_resources(struct acpi_device *device)
2961{
2962 int result = 0;
2963 acpi_status status = AE_OK;
2964
2965 if (!device)
2966 return -EINVAL;
2967
2968 /* get device status */
2969 /* see acpi_pci_link_get_current acpi_pci_link_get_possible */
2970 dprintk("Evaluating _STA\n");
2971 result = acpi_bus_get_status(device);
2972 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07002973 pr_warn("Unable to read status\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002974 goto end;
2975 }
2976
2977 if (!device->status.enabled)
2978 dprintk("Device disabled\n");
2979 else
2980 dprintk("Device enabled\n");
2981
2982 /*
2983 * Query and parse 'method'
2984 */
2985 dprintk("Evaluating %s\n", METHOD_NAME__PRS);
2986 status = acpi_walk_resources(device->handle, METHOD_NAME__PRS,
2987 sony_pic_read_possible_resource, &spic_dev);
2988 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07002989 pr_warn("Failure evaluating %s\n", METHOD_NAME__PRS);
malattia@linux.it33a04452007-04-09 19:26:03 +02002990 result = -ENODEV;
2991 }
2992end:
2993 return result;
2994}
2995
2996/*
2997 * Disable the spic device by calling its _DIS method
2998 */
2999static int sony_pic_disable(struct acpi_device *device)
3000{
Matthew Garrett6158d3a2008-10-29 14:01:03 -07003001 acpi_status ret = acpi_evaluate_object(device->handle, "_DIS", NULL,
3002 NULL);
3003
3004 if (ACPI_FAILURE(ret) && ret != AE_NOT_FOUND)
malattia@linux.it33a04452007-04-09 19:26:03 +02003005 return -ENXIO;
3006
3007 dprintk("Device disabled\n");
3008 return 0;
3009}
3010
3011
3012/*
3013 * Based on drivers/acpi/pci_link.c:acpi_pci_link_set
3014 *
3015 * Call _SRS to set current resources
3016 */
3017static int sony_pic_enable(struct acpi_device *device,
3018 struct sony_pic_ioport *ioport, struct sony_pic_irq *irq)
3019{
3020 acpi_status status;
3021 int result = 0;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003022 /* Type 1 resource layout is:
3023 * IO
3024 * IO
3025 * IRQNoFlags
3026 * End
3027 *
3028 * Type 2 and 3 resource layout is:
3029 * IO
3030 * IRQNoFlags
3031 * End
3032 */
malattia@linux.it33a04452007-04-09 19:26:03 +02003033 struct {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003034 struct acpi_resource res1;
3035 struct acpi_resource res2;
3036 struct acpi_resource res3;
3037 struct acpi_resource res4;
malattia@linux.it33a04452007-04-09 19:26:03 +02003038 } *resource;
3039 struct acpi_buffer buffer = { 0, NULL };
3040
3041 if (!ioport || !irq)
3042 return -EINVAL;
3043
3044 /* init acpi_buffer */
3045 resource = kzalloc(sizeof(*resource) + 1, GFP_KERNEL);
3046 if (!resource)
3047 return -ENOMEM;
3048
3049 buffer.length = sizeof(*resource) + 1;
3050 buffer.pointer = resource;
3051
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003052 /* setup Type 1 resources */
Mattia Dongili31df7142009-09-16 00:05:29 +09003053 if (spic_dev.model == SONYPI_DEVICE_TYPE1) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003054
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003055 /* setup io resources */
3056 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
3057 resource->res1.length = sizeof(struct acpi_resource);
3058 memcpy(&resource->res1.data.io, &ioport->io1,
3059 sizeof(struct acpi_resource_io));
malattia@linux.it33a04452007-04-09 19:26:03 +02003060
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003061 resource->res2.type = ACPI_RESOURCE_TYPE_IO;
3062 resource->res2.length = sizeof(struct acpi_resource);
3063 memcpy(&resource->res2.data.io, &ioport->io2,
3064 sizeof(struct acpi_resource_io));
3065
3066 /* setup irq resource */
3067 resource->res3.type = ACPI_RESOURCE_TYPE_IRQ;
3068 resource->res3.length = sizeof(struct acpi_resource);
3069 memcpy(&resource->res3.data.irq, &irq->irq,
3070 sizeof(struct acpi_resource_irq));
3071 /* we requested a shared irq */
3072 resource->res3.data.irq.sharable = ACPI_SHARED;
3073
3074 resource->res4.type = ACPI_RESOURCE_TYPE_END_TAG;
3075
3076 }
3077 /* setup Type 2/3 resources */
3078 else {
3079 /* setup io resource */
3080 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
3081 resource->res1.length = sizeof(struct acpi_resource);
3082 memcpy(&resource->res1.data.io, &ioport->io1,
3083 sizeof(struct acpi_resource_io));
3084
3085 /* setup irq resource */
3086 resource->res2.type = ACPI_RESOURCE_TYPE_IRQ;
3087 resource->res2.length = sizeof(struct acpi_resource);
3088 memcpy(&resource->res2.data.irq, &irq->irq,
3089 sizeof(struct acpi_resource_irq));
3090 /* we requested a shared irq */
3091 resource->res2.data.irq.sharable = ACPI_SHARED;
3092
3093 resource->res3.type = ACPI_RESOURCE_TYPE_END_TAG;
3094 }
malattia@linux.it33a04452007-04-09 19:26:03 +02003095
3096 /* Attempt to set the resource */
3097 dprintk("Evaluating _SRS\n");
3098 status = acpi_set_current_resources(device->handle, &buffer);
3099
3100 /* check for total failure */
3101 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07003102 pr_err("Error evaluating _SRS\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003103 result = -ENODEV;
3104 goto end;
3105 }
3106
3107 /* Necessary device initializations calls (from sonypi) */
3108 sony_pic_call1(0x82);
3109 sony_pic_call2(0x81, 0xff);
3110 sony_pic_call1(compat ? 0x92 : 0x82);
3111
3112end:
3113 kfree(resource);
3114 return result;
3115}
3116
3117/*****************
3118 *
3119 * ISR: some event is available
3120 *
3121 *****************/
3122static irqreturn_t sony_pic_irq(int irq, void *dev_id)
3123{
3124 int i, j;
malattia@linux.it33a04452007-04-09 19:26:03 +02003125 u8 ev = 0;
3126 u8 data_mask = 0;
3127 u8 device_event = 0;
3128
3129 struct sony_pic_dev *dev = (struct sony_pic_dev *) dev_id;
3130
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003131 ev = inb_p(dev->cur_ioport->io1.minimum);
3132 if (dev->cur_ioport->io2.minimum)
3133 data_mask = inb_p(dev->cur_ioport->io2.minimum);
3134 else
Mattia Dongilide920432008-01-14 18:05:43 +09003135 data_mask = inb_p(dev->cur_ioport->io1.minimum +
Mattia Dongili31df7142009-09-16 00:05:29 +09003136 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003137
Mattia Dongili22a17782007-07-16 02:34:39 +09003138 dprintk("event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
Mattia Dongilide920432008-01-14 18:05:43 +09003139 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09003140 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003141
3142 if (ev == 0x00 || ev == 0xff)
3143 return IRQ_HANDLED;
3144
Mattia Dongili31df7142009-09-16 00:05:29 +09003145 for (i = 0; dev->event_types[i].mask; i++) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003146
Mattia Dongili31df7142009-09-16 00:05:29 +09003147 if ((data_mask & dev->event_types[i].data) !=
3148 dev->event_types[i].data)
malattia@linux.it33a04452007-04-09 19:26:03 +02003149 continue;
3150
Mattia Dongili31df7142009-09-16 00:05:29 +09003151 if (!(mask & dev->event_types[i].mask))
malattia@linux.it33a04452007-04-09 19:26:03 +02003152 continue;
3153
Mattia Dongili31df7142009-09-16 00:05:29 +09003154 for (j = 0; dev->event_types[i].events[j].event; j++) {
3155 if (ev == dev->event_types[i].events[j].data) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003156 device_event =
Mattia Dongili31df7142009-09-16 00:05:29 +09003157 dev->event_types[i].events[j].event;
Mattia Dongili4eeb5022011-02-19 11:52:27 +09003158 /* some events may require ignoring */
3159 if (!device_event)
3160 return IRQ_HANDLED;
malattia@linux.it33a04452007-04-09 19:26:03 +02003161 goto found;
3162 }
3163 }
3164 }
Mattia Dongili3eb87492008-01-14 18:05:45 +09003165 /* Still not able to decode the event try to pass
3166 * it over to the minidriver
3167 */
Mattia Dongili31df7142009-09-16 00:05:29 +09003168 if (dev->handle_irq && dev->handle_irq(data_mask, ev) == 0)
Mattia Dongili3eb87492008-01-14 18:05:45 +09003169 return IRQ_HANDLED;
3170
Mattia Dongilide920432008-01-14 18:05:43 +09003171 dprintk("unknown event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
3172 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09003173 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003174 return IRQ_HANDLED;
3175
3176found:
malattia@linux.it1549ee62007-04-09 10:19:08 +02003177 sony_laptop_report_input_event(device_event);
Mattia Dongilide920432008-01-14 18:05:43 +09003178 acpi_bus_generate_proc_event(dev->acpi_dev, 1, device_event);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003179 sonypi_compat_report_event(device_event);
malattia@linux.it33a04452007-04-09 19:26:03 +02003180 return IRQ_HANDLED;
3181}
3182
3183/*****************
3184 *
3185 * ACPI driver
3186 *
3187 *****************/
3188static int sony_pic_remove(struct acpi_device *device, int type)
3189{
3190 struct sony_pic_ioport *io, *tmp_io;
3191 struct sony_pic_irq *irq, *tmp_irq;
3192
3193 if (sony_pic_disable(device)) {
Joe Perches50f581a2011-03-29 15:21:48 -07003194 pr_err("Couldn't disable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003195 return -ENXIO;
3196 }
3197
3198 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003199 release_region(spic_dev.cur_ioport->io1.minimum,
3200 spic_dev.cur_ioport->io1.address_length);
3201 if (spic_dev.cur_ioport->io2.minimum)
3202 release_region(spic_dev.cur_ioport->io2.minimum,
3203 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02003204
Mattia Dongili015a9162007-08-12 16:20:27 +09003205 sonypi_compat_exit();
3206
malattia@linux.it1549ee62007-04-09 10:19:08 +02003207 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02003208
malattia@linux.it49a11de2007-04-09 19:28:56 +02003209 /* pf attrs */
3210 sysfs_remove_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
3211 sony_pf_remove();
3212
malattia@linux.it33a04452007-04-09 19:26:03 +02003213 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
3214 list_del(&io->list);
3215 kfree(io);
3216 }
3217 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
3218 list_del(&irq->list);
3219 kfree(irq);
3220 }
3221 spic_dev.cur_ioport = NULL;
3222 spic_dev.cur_irq = NULL;
3223
malattia@linux.itf6119b02007-04-09 19:31:06 +02003224 dprintk(SONY_PIC_DRIVER_NAME " removed.\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003225 return 0;
3226}
3227
3228static int sony_pic_add(struct acpi_device *device)
3229{
3230 int result;
3231 struct sony_pic_ioport *io, *tmp_io;
3232 struct sony_pic_irq *irq, *tmp_irq;
3233
Joe Perches50f581a2011-03-29 15:21:48 -07003234 pr_info("%s v%s\n", SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.it33a04452007-04-09 19:26:03 +02003235
3236 spic_dev.acpi_dev = device;
3237 strcpy(acpi_device_class(device), "sony/hotkey");
Mattia Dongilide920432008-01-14 18:05:43 +09003238 sony_pic_detect_device_type(&spic_dev);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003239 mutex_init(&spic_dev.lock);
malattia@linux.it33a04452007-04-09 19:26:03 +02003240
3241 /* read _PRS resources */
3242 result = sony_pic_possible_resources(device);
3243 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003244 pr_err("Unable to read possible resources\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003245 goto err_free_resources;
3246 }
3247
3248 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05003249 result = sony_laptop_setup_input(device);
malattia@linux.it33a04452007-04-09 19:26:03 +02003250 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003251 pr_err("Unable to create input devices\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003252 goto err_free_resources;
3253 }
3254
Mattia Dongili015a9162007-08-12 16:20:27 +09003255 if (sonypi_compat_init())
3256 goto err_remove_input;
3257
malattia@linux.it33a04452007-04-09 19:26:03 +02003258 /* request io port */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003259 list_for_each_entry_reverse(io, &spic_dev.ioports, list) {
3260 if (request_region(io->io1.minimum, io->io1.address_length,
Lucas De Marchic8440332011-03-17 17:18:22 -03003261 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003262 dprintk("I/O port1: 0x%.4x (0x%.4x) + 0x%.2x\n",
3263 io->io1.minimum, io->io1.maximum,
3264 io->io1.address_length);
3265 /* Type 1 have 2 ioports */
3266 if (io->io2.minimum) {
3267 if (request_region(io->io2.minimum,
3268 io->io2.address_length,
Lucas De Marchic8440332011-03-17 17:18:22 -03003269 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003270 dprintk("I/O port2: 0x%.4x (0x%.4x) + 0x%.2x\n",
3271 io->io2.minimum, io->io2.maximum,
3272 io->io2.address_length);
3273 spic_dev.cur_ioport = io;
3274 break;
3275 }
3276 else {
3277 dprintk("Unable to get I/O port2: "
3278 "0x%.4x (0x%.4x) + 0x%.2x\n",
3279 io->io2.minimum, io->io2.maximum,
3280 io->io2.address_length);
3281 release_region(io->io1.minimum,
3282 io->io1.address_length);
3283 }
3284 }
3285 else {
3286 spic_dev.cur_ioport = io;
3287 break;
3288 }
malattia@linux.it33a04452007-04-09 19:26:03 +02003289 }
3290 }
3291 if (!spic_dev.cur_ioport) {
Joe Perches50f581a2011-03-29 15:21:48 -07003292 pr_err("Failed to request_region\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003293 result = -ENODEV;
Mattia Dongili015a9162007-08-12 16:20:27 +09003294 goto err_remove_compat;
malattia@linux.it33a04452007-04-09 19:26:03 +02003295 }
3296
3297 /* request IRQ */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003298 list_for_each_entry_reverse(irq, &spic_dev.interrupts, list) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003299 if (!request_irq(irq->irq.interrupts[0], sony_pic_irq,
Yong Zhang6a0d89c2011-10-22 17:56:50 +08003300 0, "sony-laptop", &spic_dev)) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003301 dprintk("IRQ: %d - triggering: %d - "
3302 "polarity: %d - shr: %d\n",
3303 irq->irq.interrupts[0],
3304 irq->irq.triggering,
3305 irq->irq.polarity,
3306 irq->irq.sharable);
3307 spic_dev.cur_irq = irq;
3308 break;
3309 }
3310 }
3311 if (!spic_dev.cur_irq) {
Joe Perches50f581a2011-03-29 15:21:48 -07003312 pr_err("Failed to request_irq\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003313 result = -ENODEV;
3314 goto err_release_region;
3315 }
3316
3317 /* set resource status _SRS */
3318 result = sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
3319 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003320 pr_err("Couldn't enable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003321 goto err_free_irq;
3322 }
3323
malattia@linux.it49a11de2007-04-09 19:28:56 +02003324 spic_dev.bluetooth_power = -1;
3325 /* create device attributes */
3326 result = sony_pf_add();
3327 if (result)
3328 goto err_disable_device;
3329
3330 result = sysfs_create_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
3331 if (result)
3332 goto err_remove_pf;
3333
malattia@linux.it33a04452007-04-09 19:26:03 +02003334 return 0;
3335
malattia@linux.it49a11de2007-04-09 19:28:56 +02003336err_remove_pf:
3337 sony_pf_remove();
3338
3339err_disable_device:
3340 sony_pic_disable(device);
3341
malattia@linux.it33a04452007-04-09 19:26:03 +02003342err_free_irq:
3343 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
3344
3345err_release_region:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003346 release_region(spic_dev.cur_ioport->io1.minimum,
3347 spic_dev.cur_ioport->io1.address_length);
3348 if (spic_dev.cur_ioport->io2.minimum)
3349 release_region(spic_dev.cur_ioport->io2.minimum,
3350 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02003351
Mattia Dongili015a9162007-08-12 16:20:27 +09003352err_remove_compat:
3353 sonypi_compat_exit();
3354
malattia@linux.it33a04452007-04-09 19:26:03 +02003355err_remove_input:
malattia@linux.it1549ee62007-04-09 10:19:08 +02003356 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02003357
3358err_free_resources:
3359 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
3360 list_del(&io->list);
3361 kfree(io);
3362 }
3363 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
3364 list_del(&irq->list);
3365 kfree(irq);
3366 }
3367 spic_dev.cur_ioport = NULL;
3368 spic_dev.cur_irq = NULL;
3369
3370 return result;
3371}
3372
3373static int sony_pic_suspend(struct acpi_device *device, pm_message_t state)
3374{
3375 if (sony_pic_disable(device))
3376 return -ENXIO;
3377 return 0;
3378}
3379
3380static int sony_pic_resume(struct acpi_device *device)
3381{
3382 sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
3383 return 0;
3384}
3385
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003386static const struct acpi_device_id sony_pic_device_ids[] = {
3387 {SONY_PIC_HID, 0},
3388 {"", 0},
3389};
3390
malattia@linux.it33a04452007-04-09 19:26:03 +02003391static struct acpi_driver sony_pic_driver = {
3392 .name = SONY_PIC_DRIVER_NAME,
3393 .class = SONY_PIC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003394 .ids = sony_pic_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02003395 .owner = THIS_MODULE,
3396 .ops = {
3397 .add = sony_pic_add,
3398 .remove = sony_pic_remove,
3399 .suspend = sony_pic_suspend,
3400 .resume = sony_pic_resume,
3401 },
3402};
3403
3404static struct dmi_system_id __initdata sonypi_dmi_table[] = {
3405 {
3406 .ident = "Sony Vaio",
3407 .matches = {
3408 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
3409 DMI_MATCH(DMI_PRODUCT_NAME, "PCG-"),
3410 },
3411 },
3412 {
3413 .ident = "Sony Vaio",
3414 .matches = {
3415 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
3416 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-"),
3417 },
3418 },
3419 { }
3420};
3421
malattia@linux.it59b19102007-04-09 10:19:04 +02003422static int __init sony_laptop_init(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01003423{
malattia@linux.it33a04452007-04-09 19:26:03 +02003424 int result;
3425
3426 if (!no_spic && dmi_check_system(sonypi_dmi_table)) {
3427 result = acpi_bus_register_driver(&sony_pic_driver);
3428 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003429 pr_err("Unable to register SPIC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003430 goto out;
3431 }
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003432 spic_drv_registered = 1;
malattia@linux.it33a04452007-04-09 19:26:03 +02003433 }
3434
3435 result = acpi_bus_register_driver(&sony_nc_driver);
3436 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003437 pr_err("Unable to register SNC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003438 goto out_unregister_pic;
3439 }
3440
3441 return 0;
3442
3443out_unregister_pic:
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003444 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02003445 acpi_bus_unregister_driver(&sony_pic_driver);
3446out:
3447 return result;
Stelian Pop7f09c432007-01-13 23:04:31 +01003448}
3449
malattia@linux.it59b19102007-04-09 10:19:04 +02003450static void __exit sony_laptop_exit(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01003451{
malattia@linux.it59b19102007-04-09 10:19:04 +02003452 acpi_bus_unregister_driver(&sony_nc_driver);
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003453 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02003454 acpi_bus_unregister_driver(&sony_pic_driver);
Stelian Pop7f09c432007-01-13 23:04:31 +01003455}
3456
malattia@linux.it59b19102007-04-09 10:19:04 +02003457module_init(sony_laptop_init);
3458module_exit(sony_laptop_exit);