blob: 12dd0a62f305656707189cb44ae4fbe0a6ef3d09 [file] [log] [blame]
Stelian Pop7f09c432007-01-13 23:04:31 +01001/*
malattia@linux.it33a04452007-04-09 19:26:03 +02002 * ACPI Sony Notebook Control Driver (SNC and SPIC)
Stelian Pop7f09c432007-01-13 23:04:31 +01003 *
4 * Copyright (C) 2004-2005 Stelian Pop <stelian@popies.net>
Mattia Dongili37418342009-03-26 21:58:24 +09005 * Copyright (C) 2007-2009 Mattia Dongili <malattia@linux.it>
Stelian Pop7f09c432007-01-13 23:04:31 +01006 *
7 * Parts of this driver inspired from asus_acpi.c and ibm_acpi.c
8 * which are copyrighted by their respective authors.
9 *
malattia@linux.it33a04452007-04-09 19:26:03 +020010 * The SNY6001 driver part is based on the sonypi driver which includes
11 * material from:
12 *
13 * Copyright (C) 2001-2005 Stelian Pop <stelian@popies.net>
14 *
15 * Copyright (C) 2005 Narayanan R S <nars@kadamba.org>
16 *
Marcin Garskidb955172007-10-19 23:22:11 +020017 * Copyright (C) 2001-2002 AlcĂ´ve <www.alcove.com>
malattia@linux.it33a04452007-04-09 19:26:03 +020018 *
19 * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
20 *
21 * Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp>
22 *
23 * Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp>
24 *
25 * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
26 *
27 * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
28 *
Stelian Pop7f09c432007-01-13 23:04:31 +010029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
42 *
43 */
44
Joe Perches50f581a2011-03-29 15:21:48 -070045#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
46
Stelian Pop7f09c432007-01-13 23:04:31 +010047#include <linux/kernel.h>
48#include <linux/module.h>
49#include <linux/moduleparam.h>
50#include <linux/init.h>
51#include <linux/types.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010052#include <linux/backlight.h>
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010053#include <linux/platform_device.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010054#include <linux/err.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020055#include <linux/dmi.h>
56#include <linux/pci.h>
57#include <linux/interrupt.h>
58#include <linux/delay.h>
59#include <linux/input.h>
60#include <linux/kfifo.h>
61#include <linux/workqueue.h>
62#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090063#include <linux/slab.h>
Stelian Pop7f09c432007-01-13 23:04:31 +010064#include <acpi/acpi_drivers.h>
65#include <acpi/acpi_bus.h>
66#include <asm/uaccess.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020067#include <linux/sonypi.h>
malattia@linux.it1ce82c12007-04-28 23:34:36 +090068#include <linux/sony-laptop.h>
Matthew Garrett6cc056b2009-03-26 21:58:15 +090069#include <linux/rfkill.h>
Mattia Dongilia64e62a2007-05-01 11:19:53 +090070#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +020071#include <linux/poll.h>
72#include <linux/miscdevice.h>
73#endif
Stelian Pop7f09c432007-01-13 23:04:31 +010074
Joe Perches50f581a2011-03-29 15:21:48 -070075#define dprintk(fmt, ...) \
76do { \
77 if (debug) \
78 pr_warn(fmt, ##__VA_ARGS__); \
malattia@linux.itb9a218b2007-04-09 10:19:06 +020079} while (0)
80
Mattia Dongili425ef5d2008-01-14 18:05:44 +090081#define SONY_LAPTOP_DRIVER_VERSION "0.6"
Alessandro Guido50f62af2007-01-13 23:04:34 +010082
malattia@linux.it33a04452007-04-09 19:26:03 +020083#define SONY_NC_CLASS "sony-nc"
84#define SONY_NC_HID "SNY5001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020085#define SONY_NC_DRIVER_NAME "Sony Notebook Control Driver"
malattia@linux.it33a04452007-04-09 19:26:03 +020086
87#define SONY_PIC_CLASS "sony-pic"
88#define SONY_PIC_HID "SNY6001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020089#define SONY_PIC_DRIVER_NAME "Sony Programmable IO Control Driver"
Stelian Pop7f09c432007-01-13 23:04:31 +010090
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010091MODULE_AUTHOR("Stelian Pop, Mattia Dongili");
malattia@linux.it33a04452007-04-09 19:26:03 +020092MODULE_DESCRIPTION("Sony laptop extras driver (SPIC and SNC ACPI device)");
Stelian Pop7f09c432007-01-13 23:04:31 +010093MODULE_LICENSE("GPL");
malattia@linux.it33a04452007-04-09 19:26:03 +020094MODULE_VERSION(SONY_LAPTOP_DRIVER_VERSION);
Stelian Pop7f09c432007-01-13 23:04:31 +010095
96static int debug;
97module_param(debug, int, 0);
98MODULE_PARM_DESC(debug, "set this to 1 (and RTFM) if you want to help "
Len Browna02d1c12007-02-07 15:34:02 -050099 "the development of this driver");
Stelian Pop7f09c432007-01-13 23:04:31 +0100100
malattia@linux.it33a04452007-04-09 19:26:03 +0200101static int no_spic; /* = 0 */
102module_param(no_spic, int, 0444);
103MODULE_PARM_DESC(no_spic,
104 "set this if you don't want to enable the SPIC device");
105
106static int compat; /* = 0 */
107module_param(compat, int, 0444);
108MODULE_PARM_DESC(compat,
malattia@linux.it7b153f32007-04-09 19:31:25 +0200109 "set this if you want to enable backward compatibility mode");
malattia@linux.it33a04452007-04-09 19:26:03 +0200110
111static unsigned long mask = 0xffffffff;
112module_param(mask, ulong, 0644);
113MODULE_PARM_DESC(mask,
114 "set this to the mask of event you want to enable (see doc)");
115
malattia@linux.it5f3d2892007-04-28 23:18:45 +0900116static int camera; /* = 0 */
117module_param(camera, int, 0444);
118MODULE_PARM_DESC(camera,
119 "set this to 1 to enable Motion Eye camera controls "
120 "(only use it if you have a C1VE or C1VN model)");
121
Mattia Dongilia64e62a2007-05-01 11:19:53 +0900122#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +0200123static int minor = -1;
124module_param(minor, int, 0);
125MODULE_PARM_DESC(minor,
126 "minor number of the misc device for the SPIC compatibility code, "
127 "default is -1 (automatic)");
128#endif
129
Mattia Dongilibf155712011-02-19 11:52:31 +0900130static int kbd_backlight; /* = 1 */
131module_param(kbd_backlight, int, 0444);
132MODULE_PARM_DESC(kbd_backlight,
133 "set this to 0 to disable keyboard backlight, "
134 "1 to enable it (default: 0)");
135
136static int kbd_backlight_timeout; /* = 0 */
137module_param(kbd_backlight_timeout, int, 0444);
138MODULE_PARM_DESC(kbd_backlight_timeout,
139 "set this to 0 to set the default 10 seconds timeout, "
140 "1 for 30 seconds, 2 for 60 seconds and 3 to disable timeout "
141 "(default: 0)");
142
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 };
malattia@linux.it1549ee62007-04-09 10:19:08 +0200350
Almer S. Tigelaara83021a2009-04-12 11:26:28 +0000351 if (event == SONYPI_EVENT_FNKEY_RELEASED ||
352 event == SONYPI_EVENT_ANYBUTTON_RELEASED) {
malattia@linux.it1549ee62007-04-09 10:19:08 +0200353 /* Nothing, not all VAIOs generate this event */
354 return;
355 }
356
357 /* report events */
358 switch (event) {
359 /* jog_dev events */
360 case SONYPI_EVENT_JOGDIAL_UP:
361 case SONYPI_EVENT_JOGDIAL_UP_PRESSED:
362 input_report_rel(jog_dev, REL_WHEEL, 1);
363 input_sync(jog_dev);
364 return;
365
366 case SONYPI_EVENT_JOGDIAL_DOWN:
367 case SONYPI_EVENT_JOGDIAL_DOWN_PRESSED:
368 input_report_rel(jog_dev, REL_WHEEL, -1);
369 input_sync(jog_dev);
370 return;
371
372 /* key_dev events */
373 case SONYPI_EVENT_JOGDIAL_PRESSED:
374 kp.key = BTN_MIDDLE;
375 kp.dev = jog_dev;
376 break;
377
378 default:
Adrian Bunkd399d132008-02-20 00:59:03 +0200379 if (event >= ARRAY_SIZE(sony_laptop_input_index)) {
Mattia Dongilibc57f862007-07-20 02:01:57 +0900380 dprintk("sony_laptop_report_input_event, event not known: %d\n", event);
381 break;
382 }
383 if (sony_laptop_input_index[event] != -1) {
384 kp.key = sony_laptop_input_keycode_map[sony_laptop_input_index[event]];
385 if (kp.key != KEY_UNKNOWN)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200386 kp.dev = key_dev;
Mattia Dongilibc57f862007-07-20 02:01:57 +0900387 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200388 break;
389 }
390
391 if (kp.dev) {
392 input_report_key(kp.dev, kp.key, 1);
Mattia Dongilibc57f862007-07-20 02:01:57 +0900393 /* we emit the scancode so we can always remap the key */
394 input_event(kp.dev, EV_MSC, MSC_SCAN, event);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200395 input_sync(kp.dev);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200396
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800397 /* schedule key release */
398 kfifo_in_locked(&sony_laptop_input.fifo,
399 (unsigned char *)&kp, sizeof(kp),
400 &sony_laptop_input.fifo_lock);
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800401 mod_timer(&sony_laptop_input.release_key_timer,
402 jiffies + msecs_to_jiffies(10));
malattia@linux.it1549ee62007-04-09 10:19:08 +0200403 } else
404 dprintk("unknown input event %.2x\n", event);
405}
406
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500407static int sony_laptop_setup_input(struct acpi_device *acpi_device)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200408{
409 struct input_dev *jog_dev;
410 struct input_dev *key_dev;
411 int i;
412 int error;
413
414 /* don't run again if already initialized */
415 if (atomic_add_return(1, &sony_laptop_input.users) > 1)
416 return 0;
417
418 /* kfifo */
419 spin_lock_init(&sony_laptop_input.fifo_lock);
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800420 error = kfifo_alloc(&sony_laptop_input.fifo,
421 SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -0800422 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -0700423 pr_err("kfifo_alloc failed\n");
malattia@linux.it1549ee62007-04-09 10:19:08 +0200424 goto err_dec_users;
425 }
426
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800427 setup_timer(&sony_laptop_input.release_key_timer,
428 do_sony_laptop_release_key, 0);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200429
430 /* input keys */
431 key_dev = input_allocate_device();
432 if (!key_dev) {
433 error = -ENOMEM;
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800434 goto err_free_kfifo;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200435 }
436
437 key_dev->name = "Sony Vaio Keys";
438 key_dev->id.bustype = BUS_ISA;
439 key_dev->id.vendor = PCI_VENDOR_ID_SONY;
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500440 key_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200441
442 /* Initialize the Input Drivers: special keys */
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800443 input_set_capability(key_dev, EV_MSC, MSC_SCAN);
444
445 __set_bit(EV_KEY, key_dev->evbit);
Mattia Dongilibc57f862007-07-20 02:01:57 +0900446 key_dev->keycodesize = sizeof(sony_laptop_input_keycode_map[0]);
447 key_dev->keycodemax = ARRAY_SIZE(sony_laptop_input_keycode_map);
448 key_dev->keycode = &sony_laptop_input_keycode_map;
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800449 for (i = 0; i < ARRAY_SIZE(sony_laptop_input_keycode_map); i++)
450 __set_bit(sony_laptop_input_keycode_map[i], key_dev->keybit);
451 __clear_bit(KEY_RESERVED, key_dev->keybit);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200452
453 error = input_register_device(key_dev);
454 if (error)
455 goto err_free_keydev;
456
457 sony_laptop_input.key_dev = key_dev;
458
459 /* jogdial */
460 jog_dev = input_allocate_device();
461 if (!jog_dev) {
462 error = -ENOMEM;
463 goto err_unregister_keydev;
464 }
465
466 jog_dev->name = "Sony Vaio Jogdial";
467 jog_dev->id.bustype = BUS_ISA;
468 jog_dev->id.vendor = PCI_VENDOR_ID_SONY;
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500469 key_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200470
Dmitry Torokhovc45bc9d2009-12-24 00:02:23 -0800471 input_set_capability(jog_dev, EV_KEY, BTN_MIDDLE);
472 input_set_capability(jog_dev, EV_REL, REL_WHEEL);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200473
474 error = input_register_device(jog_dev);
475 if (error)
476 goto err_free_jogdev;
477
478 sony_laptop_input.jog_dev = jog_dev;
479
480 return 0;
481
482err_free_jogdev:
483 input_free_device(jog_dev);
484
485err_unregister_keydev:
486 input_unregister_device(key_dev);
487 /* to avoid kref underflow below at input_free_device */
488 key_dev = NULL;
489
490err_free_keydev:
491 input_free_device(key_dev);
492
malattia@linux.it1549ee62007-04-09 10:19:08 +0200493err_free_kfifo:
Stefani Seibold45465482009-12-21 14:37:26 -0800494 kfifo_free(&sony_laptop_input.fifo);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200495
496err_dec_users:
497 atomic_dec(&sony_laptop_input.users);
498 return error;
499}
500
501static void sony_laptop_remove_input(void)
502{
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800503 struct sony_laptop_keypress kp = { NULL };
504
505 /* Cleanup only after the last user has gone */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200506 if (!atomic_dec_and_test(&sony_laptop_input.users))
507 return;
508
Dmitry Torokhovcffdde92009-12-24 00:02:30 -0800509 del_timer_sync(&sony_laptop_input.release_key_timer);
Dmitry Torokhov9593bd02009-12-24 00:02:16 -0800510
511 /*
512 * Generate key-up events for remaining keys. Note that we don't
513 * need locking since nobody is adding new events to the kfifo.
514 */
515 while (kfifo_out(&sony_laptop_input.fifo,
516 (unsigned char *)&kp, sizeof(kp)) == sizeof(kp)) {
517 input_report_key(kp.dev, kp.key, 0);
518 input_sync(kp.dev);
519 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200520
521 /* destroy input devs */
522 input_unregister_device(sony_laptop_input.key_dev);
523 sony_laptop_input.key_dev = NULL;
524
525 if (sony_laptop_input.jog_dev) {
526 input_unregister_device(sony_laptop_input.jog_dev);
527 sony_laptop_input.jog_dev = NULL;
528 }
529
Stefani Seibold45465482009-12-21 14:37:26 -0800530 kfifo_free(&sony_laptop_input.fifo);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200531}
532
malattia@linux.it56b87562007-04-09 10:19:05 +0200533/*********** Platform Device ***********/
534
535static atomic_t sony_pf_users = ATOMIC_INIT(0);
536static struct platform_driver sony_pf_driver = {
537 .driver = {
538 .name = "sony-laptop",
539 .owner = THIS_MODULE,
540 }
541};
542static struct platform_device *sony_pf_device;
543
544static int sony_pf_add(void)
545{
546 int ret = 0;
547
548 /* don't run again if already initialized */
549 if (atomic_add_return(1, &sony_pf_users) > 1)
550 return 0;
551
552 ret = platform_driver_register(&sony_pf_driver);
553 if (ret)
554 goto out;
555
556 sony_pf_device = platform_device_alloc("sony-laptop", -1);
557 if (!sony_pf_device) {
558 ret = -ENOMEM;
559 goto out_platform_registered;
560 }
561
562 ret = platform_device_add(sony_pf_device);
563 if (ret)
564 goto out_platform_alloced;
565
566 return 0;
567
568 out_platform_alloced:
569 platform_device_put(sony_pf_device);
570 sony_pf_device = NULL;
571 out_platform_registered:
572 platform_driver_unregister(&sony_pf_driver);
573 out:
574 atomic_dec(&sony_pf_users);
575 return ret;
576}
577
578static void sony_pf_remove(void)
579{
580 /* deregister only after the last user has gone */
581 if (!atomic_dec_and_test(&sony_pf_users))
582 return;
583
Axel Lin08db2b32010-07-01 10:18:01 +0800584 platform_device_unregister(sony_pf_device);
malattia@linux.it56b87562007-04-09 10:19:05 +0200585 platform_driver_unregister(&sony_pf_driver);
586}
587
588/*********** SNC (SNY5001) Device ***********/
589
malattia@linux.it33a04452007-04-09 19:26:03 +0200590/* the device uses 1-based values, while the backlight subsystem uses
591 0-based values */
592#define SONY_MAX_BRIGHTNESS 8
593
594#define SNC_VALIDATE_IN 0
595#define SNC_VALIDATE_OUT 1
596
malattia@linux.it59b19102007-04-09 10:19:04 +0200597static ssize_t sony_nc_sysfs_show(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500598 char *);
malattia@linux.it59b19102007-04-09 10:19:04 +0200599static ssize_t sony_nc_sysfs_store(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500600 const char *, size_t);
Mattia Dongili156c2212007-02-12 22:01:07 +0100601static int boolean_validate(const int, const int);
602static int brightness_default_validate(const int, const int);
603
malattia@linux.it59b19102007-04-09 10:19:04 +0200604struct sony_nc_value {
Len Browna02d1c12007-02-07 15:34:02 -0500605 char *name; /* name of the entry */
606 char **acpiget; /* names of the ACPI get function */
607 char **acpiset; /* names of the ACPI set function */
Mattia Dongili156c2212007-02-12 22:01:07 +0100608 int (*validate)(const int, const int); /* input/output validation */
Len Browna02d1c12007-02-07 15:34:02 -0500609 int value; /* current setting */
610 int valid; /* Has ever been set */
611 int debug; /* active only in debug mode ? */
Lucas De Marchic8440332011-03-17 17:18:22 -0300612 struct device_attribute devattr; /* sysfs attribute */
Stelian Pop7f09c432007-01-13 23:04:31 +0100613};
614
malattia@linux.it59b19102007-04-09 10:19:04 +0200615#define SNC_HANDLE_NAMES(_name, _values...) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100616 static char *snc_##_name[] = { _values, NULL }
617
malattia@linux.it59b19102007-04-09 10:19:04 +0200618#define SNC_HANDLE(_name, _getters, _setters, _validate, _debug) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100619 { \
620 .name = __stringify(_name), \
621 .acpiget = _getters, \
622 .acpiset = _setters, \
Mattia Dongili156c2212007-02-12 22:01:07 +0100623 .validate = _validate, \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100624 .debug = _debug, \
malattia@linux.it59b19102007-04-09 10:19:04 +0200625 .devattr = __ATTR(_name, 0, sony_nc_sysfs_show, sony_nc_sysfs_store), \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100626 }
627
malattia@linux.it59b19102007-04-09 10:19:04 +0200628#define SNC_HANDLE_NULL { .name = NULL }
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100629
malattia@linux.it59b19102007-04-09 10:19:04 +0200630SNC_HANDLE_NAMES(fnkey_get, "GHKE");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100631
malattia@linux.it59b19102007-04-09 10:19:04 +0200632SNC_HANDLE_NAMES(brightness_def_get, "GPBR");
633SNC_HANDLE_NAMES(brightness_def_set, "SPBR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100634
malattia@linux.it59b19102007-04-09 10:19:04 +0200635SNC_HANDLE_NAMES(cdpower_get, "GCDP");
636SNC_HANDLE_NAMES(cdpower_set, "SCDP", "CDPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100637
malattia@linux.it59b19102007-04-09 10:19:04 +0200638SNC_HANDLE_NAMES(audiopower_get, "GAZP");
639SNC_HANDLE_NAMES(audiopower_set, "AZPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100640
malattia@linux.it59b19102007-04-09 10:19:04 +0200641SNC_HANDLE_NAMES(lanpower_get, "GLNP");
642SNC_HANDLE_NAMES(lanpower_set, "LNPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100643
Mattia Dongili044847e2007-07-16 02:34:33 +0900644SNC_HANDLE_NAMES(lidstate_get, "GLID");
645
646SNC_HANDLE_NAMES(indicatorlamp_get, "GILS");
647SNC_HANDLE_NAMES(indicatorlamp_set, "SILS");
648
649SNC_HANDLE_NAMES(gainbass_get, "GMGB");
650SNC_HANDLE_NAMES(gainbass_set, "CMGB");
651
malattia@linux.it59b19102007-04-09 10:19:04 +0200652SNC_HANDLE_NAMES(PID_get, "GPID");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100653
malattia@linux.it59b19102007-04-09 10:19:04 +0200654SNC_HANDLE_NAMES(CTR_get, "GCTR");
655SNC_HANDLE_NAMES(CTR_set, "SCTR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100656
malattia@linux.it59b19102007-04-09 10:19:04 +0200657SNC_HANDLE_NAMES(PCR_get, "GPCR");
658SNC_HANDLE_NAMES(PCR_set, "SPCR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100659
malattia@linux.it59b19102007-04-09 10:19:04 +0200660SNC_HANDLE_NAMES(CMI_get, "GCMI");
661SNC_HANDLE_NAMES(CMI_set, "SCMI");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100662
malattia@linux.it59b19102007-04-09 10:19:04 +0200663static struct sony_nc_value sony_nc_values[] = {
664 SNC_HANDLE(brightness_default, snc_brightness_def_get,
Mattia Dongili156c2212007-02-12 22:01:07 +0100665 snc_brightness_def_set, brightness_default_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200666 SNC_HANDLE(fnkey, snc_fnkey_get, NULL, NULL, 0),
667 SNC_HANDLE(cdpower, snc_cdpower_get, snc_cdpower_set, boolean_validate, 0),
668 SNC_HANDLE(audiopower, snc_audiopower_get, snc_audiopower_set,
Mattia Dongili156c2212007-02-12 22:01:07 +0100669 boolean_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200670 SNC_HANDLE(lanpower, snc_lanpower_get, snc_lanpower_set,
Mattia Dongili156c2212007-02-12 22:01:07 +0100671 boolean_validate, 1),
Mattia Dongili044847e2007-07-16 02:34:33 +0900672 SNC_HANDLE(lidstate, snc_lidstate_get, NULL,
673 boolean_validate, 0),
674 SNC_HANDLE(indicatorlamp, snc_indicatorlamp_get, snc_indicatorlamp_set,
675 boolean_validate, 0),
676 SNC_HANDLE(gainbass, snc_gainbass_get, snc_gainbass_set,
677 boolean_validate, 0),
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100678 /* unknown methods */
malattia@linux.it59b19102007-04-09 10:19:04 +0200679 SNC_HANDLE(PID, snc_PID_get, NULL, NULL, 1),
680 SNC_HANDLE(CTR, snc_CTR_get, snc_CTR_set, NULL, 1),
681 SNC_HANDLE(PCR, snc_PCR_get, snc_PCR_set, NULL, 1),
682 SNC_HANDLE(CMI, snc_CMI_get, snc_CMI_set, NULL, 1),
683 SNC_HANDLE_NULL
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100684};
685
malattia@linux.it59b19102007-04-09 10:19:04 +0200686static acpi_handle sony_nc_acpi_handle;
687static struct acpi_device *sony_nc_acpi_device = NULL;
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100688
Mattia Dongilid78865c2007-02-07 20:01:56 +0100689/*
690 * acpi_evaluate_object wrappers
691 */
Stelian Pop7f09c432007-01-13 23:04:31 +0100692static int acpi_callgetfunc(acpi_handle handle, char *name, int *result)
693{
694 struct acpi_buffer output;
695 union acpi_object out_obj;
696 acpi_status status;
697
698 output.length = sizeof(out_obj);
699 output.pointer = &out_obj;
700
701 status = acpi_evaluate_object(handle, name, NULL, &output);
702 if ((status == AE_OK) && (out_obj.type == ACPI_TYPE_INTEGER)) {
703 *result = out_obj.integer.value;
704 return 0;
705 }
706
Joe Perches50f581a2011-03-29 15:21:48 -0700707 pr_warn("acpi_callreadfunc failed\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100708
709 return -1;
710}
711
712static int acpi_callsetfunc(acpi_handle handle, char *name, int value,
713 int *result)
714{
715 struct acpi_object_list params;
716 union acpi_object in_obj;
717 struct acpi_buffer output;
718 union acpi_object out_obj;
719 acpi_status status;
720
721 params.count = 1;
722 params.pointer = &in_obj;
723 in_obj.type = ACPI_TYPE_INTEGER;
724 in_obj.integer.value = value;
725
726 output.length = sizeof(out_obj);
727 output.pointer = &out_obj;
728
729 status = acpi_evaluate_object(handle, name, &params, &output);
730 if (status == AE_OK) {
731 if (result != NULL) {
732 if (out_obj.type != ACPI_TYPE_INTEGER) {
Joe Perches50f581a2011-03-29 15:21:48 -0700733 pr_warn("acpi_evaluate_object bad return type\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100734 return -1;
735 }
736 *result = out_obj.integer.value;
737 }
738 return 0;
739 }
740
Joe Perches50f581a2011-03-29 15:21:48 -0700741 pr_warn("acpi_evaluate_object failed\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100742
743 return -1;
744}
745
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900746struct sony_nc_handles {
747 u16 cap[0x10];
748 struct device_attribute devattr;
749};
750
Dan Carpenterf11113b2011-02-26 15:54:27 +0300751static struct sony_nc_handles *handles;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900752
753static ssize_t sony_nc_handles_show(struct device *dev,
754 struct device_attribute *attr, char *buffer)
755{
756 ssize_t len = 0;
757 int i;
758
759 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
760 len += snprintf(buffer + len, PAGE_SIZE - len, "0x%.4x ",
761 handles->cap[i]);
762 }
763 len += snprintf(buffer + len, PAGE_SIZE - len, "\n");
764
765 return len;
766}
767
768static int sony_nc_handles_setup(struct platform_device *pd)
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900769{
770 int i;
771 int result;
772
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900773 handles = kzalloc(sizeof(*handles), GFP_KERNEL);
Dan Carpenter31f00752011-02-26 15:55:24 +0300774 if (!handles)
775 return -ENOMEM;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900776
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900777 for (i = 0; i < ARRAY_SIZE(handles->cap); i++) {
778 if (!acpi_callsetfunc(sony_nc_acpi_handle,
779 "SN00", i + 0x20, &result)) {
780 dprintk("caching handle 0x%.4x (offset: 0x%.2x)\n",
781 result, i);
782 handles->cap[i] = result;
Mattia Dongili56e6e712011-02-19 11:52:25 +0900783 }
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900784 }
785
Mattia Dongili855b8bc2011-04-05 23:38:35 +0900786 if (debug) {
787 sysfs_attr_init(&handles->devattr.attr);
788 handles->devattr.attr.name = "handles";
789 handles->devattr.attr.mode = S_IRUGO;
790 handles->devattr.show = sony_nc_handles_show;
791
792 /* allow reading capabilities via sysfs */
793 if (device_create_file(&pd->dev, &handles->devattr)) {
794 kfree(handles);
795 handles = NULL;
796 return -1;
797 }
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900798 }
799
800 return 0;
801}
802
803static int sony_nc_handles_cleanup(struct platform_device *pd)
804{
805 if (handles) {
Mattia Dongili855b8bc2011-04-05 23:38:35 +0900806 if (debug)
807 device_remove_file(&pd->dev, &handles->devattr);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900808 kfree(handles);
809 handles = NULL;
810 }
811 return 0;
812}
813
814static int sony_find_snc_handle(int handle)
815{
816 int i;
Mattia Dongilifef34862011-04-02 19:00:44 +0900817
818 /* not initialized yet, return early */
819 if (!handles)
820 return -1;
821
Mattia Dongili2a4f0c82011-02-19 11:52:30 +0900822 for (i = 0; i < 0x10; i++) {
823 if (handles->cap[i] == handle) {
824 dprintk("found handle 0x%.4x (offset: 0x%.2x)\n",
825 handle, i);
826 return i;
827 }
828 }
Mattia Dongili56e6e712011-02-19 11:52:25 +0900829 dprintk("handle 0x%.4x not found\n", handle);
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900830 return -1;
831}
832
833static int sony_call_snc_handle(int handle, int argument, int *result)
834{
Mattia Dongili56e6e712011-02-19 11:52:25 +0900835 int ret = 0;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900836 int offset = sony_find_snc_handle(handle);
837
838 if (offset < 0)
839 return -1;
840
Mattia Dongili56e6e712011-02-19 11:52:25 +0900841 ret = acpi_callsetfunc(sony_nc_acpi_handle, "SN07", offset | argument,
842 result);
843 dprintk("called SN07 with 0x%.4x (result: 0x%.4x)\n", offset | argument,
844 *result);
845 return ret;
Matthew Garrettbadf26f2009-03-26 21:58:12 +0900846}
847
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100848/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200849 * sony_nc_values input/output validate functions
Mattia Dongili156c2212007-02-12 22:01:07 +0100850 */
851
852/* brightness_default_validate:
853 *
854 * manipulate input output values to keep consistency with the
855 * backlight framework for which brightness values are 0-based.
856 */
857static int brightness_default_validate(const int direction, const int value)
858{
859 switch (direction) {
860 case SNC_VALIDATE_OUT:
861 return value - 1;
862 case SNC_VALIDATE_IN:
863 if (value >= 0 && value < SONY_MAX_BRIGHTNESS)
864 return value + 1;
865 }
866 return -EINVAL;
867}
868
869/* boolean_validate:
870 *
871 * on input validate boolean values 0/1, on output just pass the
872 * received value.
873 */
874static int boolean_validate(const int direction, const int value)
875{
876 if (direction == SNC_VALIDATE_IN) {
877 if (value != 0 && value != 1)
878 return -EINVAL;
879 }
880 return value;
881}
882
883/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200884 * Sysfs show/store common to all sony_nc_values
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100885 */
malattia@linux.it59b19102007-04-09 10:19:04 +0200886static ssize_t sony_nc_sysfs_show(struct device *dev, struct device_attribute *attr,
Len Browna02d1c12007-02-07 15:34:02 -0500887 char *buffer)
Stelian Pop7f09c432007-01-13 23:04:31 +0100888{
Stelian Pop7f09c432007-01-13 23:04:31 +0100889 int value;
malattia@linux.it59b19102007-04-09 10:19:04 +0200890 struct sony_nc_value *item =
891 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100892
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100893 if (!*item->acpiget)
Stelian Pop7f09c432007-01-13 23:04:31 +0100894 return -EIO;
895
malattia@linux.it59b19102007-04-09 10:19:04 +0200896 if (acpi_callgetfunc(sony_nc_acpi_handle, *item->acpiget, &value) < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +0100897 return -EIO;
898
Mattia Dongili156c2212007-02-12 22:01:07 +0100899 if (item->validate)
900 value = item->validate(SNC_VALIDATE_OUT, value);
901
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100902 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
Stelian Pop7f09c432007-01-13 23:04:31 +0100903}
904
malattia@linux.it59b19102007-04-09 10:19:04 +0200905static ssize_t sony_nc_sysfs_store(struct device *dev,
Len Browna02d1c12007-02-07 15:34:02 -0500906 struct device_attribute *attr,
907 const char *buffer, size_t count)
Stelian Pop7f09c432007-01-13 23:04:31 +0100908{
Stelian Pop7f09c432007-01-13 23:04:31 +0100909 int value;
malattia@linux.it59b19102007-04-09 10:19:04 +0200910 struct sony_nc_value *item =
911 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100912
913 if (!item->acpiset)
914 return -EIO;
915
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100916 if (count > 31)
917 return -EINVAL;
918
919 value = simple_strtoul(buffer, NULL, 10);
Stelian Pop7f09c432007-01-13 23:04:31 +0100920
Mattia Dongili156c2212007-02-12 22:01:07 +0100921 if (item->validate)
922 value = item->validate(SNC_VALIDATE_IN, value);
923
924 if (value < 0)
925 return value;
Stelian Pop7f09c432007-01-13 23:04:31 +0100926
malattia@linux.it59b19102007-04-09 10:19:04 +0200927 if (acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset, value, NULL) < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +0100928 return -EIO;
Andrew Morton3f4f4612007-01-13 23:04:32 +0100929 item->value = value;
930 item->valid = 1;
Stelian Pop7f09c432007-01-13 23:04:31 +0100931 return count;
932}
933
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100934
Mattia Dongilid78865c2007-02-07 20:01:56 +0100935/*
936 * Backlight device
937 */
Mattia Dongili62d2f232011-05-09 10:20:29 -0400938struct sony_backlight_props {
939 struct backlight_device *dev;
940 int handle;
941 u8 offset;
942 u8 maxlvl;
943};
944struct sony_backlight_props sony_bl_props;
945
Mattia Dongilid78865c2007-02-07 20:01:56 +0100946static int sony_backlight_update_status(struct backlight_device *bd)
Andrew Morton3f4f4612007-01-13 23:04:32 +0100947{
malattia@linux.it59b19102007-04-09 10:19:04 +0200948 return acpi_callsetfunc(sony_nc_acpi_handle, "SBRT",
Richard Purdie321709c2007-02-10 15:04:08 +0000949 bd->props.brightness + 1, NULL);
Andrew Morton3f4f4612007-01-13 23:04:32 +0100950}
951
Mattia Dongilid78865c2007-02-07 20:01:56 +0100952static int sony_backlight_get_brightness(struct backlight_device *bd)
953{
954 int value;
955
malattia@linux.it59b19102007-04-09 10:19:04 +0200956 if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value))
Mattia Dongilid78865c2007-02-07 20:01:56 +0100957 return 0;
958 /* brightness levels are 1-based, while backlight ones are 0-based */
959 return value - 1;
960}
961
Mattia Dongili7751ab82011-02-19 11:52:32 +0900962static int sony_nc_get_brightness_ng(struct backlight_device *bd)
963{
964 int result;
965 int *handle = (int *)bl_get_data(bd);
Mattia Dongili62d2f232011-05-09 10:20:29 -0400966 struct sony_backlight_props *sdev =
967 (struct sony_backlight_props *)bl_get_data(bd);
Mattia Dongili7751ab82011-02-19 11:52:32 +0900968
Mattia Dongili62d2f232011-05-09 10:20:29 -0400969 sony_call_snc_handle(sdev->handle, 0x0200, &result);
Mattia Dongili7751ab82011-02-19 11:52:32 +0900970
Mattia Dongili62d2f232011-05-09 10:20:29 -0400971 return (result & 0xff) - sdev->offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +0900972}
973
974static int sony_nc_update_status_ng(struct backlight_device *bd)
975{
976 int value, result;
977 int *handle = (int *)bl_get_data(bd);
Mattia Dongili62d2f232011-05-09 10:20:29 -0400978 struct sony_backlight_props *sdev =
979 (struct sony_backlight_props *)bl_get_data(bd);
Mattia Dongili7751ab82011-02-19 11:52:32 +0900980
Mattia Dongili62d2f232011-05-09 10:20:29 -0400981 value = bd->props.brightness + sdev->offset;
982 if (sony_call_snc_handle(sdev->handle, 0x0100 | (value << 16), &result))
Mattia Dongili6192fa72011-04-05 23:38:36 +0900983 return -EIO;
Mattia Dongili7751ab82011-02-19 11:52:32 +0900984
Mattia Dongili6192fa72011-04-05 23:38:36 +0900985 return value;
Mattia Dongili7751ab82011-02-19 11:52:32 +0900986}
987
Lionel Debrouxacc24722010-11-16 14:14:02 +0100988static const struct backlight_ops sony_backlight_ops = {
Mattia Dongili7751ab82011-02-19 11:52:32 +0900989 .options = BL_CORE_SUSPENDRESUME,
Len Browna02d1c12007-02-07 15:34:02 -0500990 .update_status = sony_backlight_update_status,
991 .get_brightness = sony_backlight_get_brightness,
Mattia Dongilid78865c2007-02-07 20:01:56 +0100992};
Mattia Dongili7751ab82011-02-19 11:52:32 +0900993static const struct backlight_ops sony_backlight_ng_ops = {
994 .options = BL_CORE_SUSPENDRESUME,
995 .update_status = sony_nc_update_status_ng,
996 .get_brightness = sony_nc_get_brightness_ng,
997};
Mattia Dongilid78865c2007-02-07 20:01:56 +0100998
999/*
Mattia Dongili6315fd12007-07-16 02:34:35 +09001000 * New SNC-only Vaios event mapping to driver known keys
1001 */
1002struct sony_nc_event {
1003 u8 data;
1004 u8 event;
1005};
1006
Matthew Garrett45c79422009-03-26 21:58:16 +09001007static struct sony_nc_event sony_100_events[] = {
Matthew Garrett9b578962009-03-26 21:58:14 +09001008 { 0x90, SONYPI_EVENT_PKEY_P1 },
1009 { 0x10, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthias Welwarsky6479efb2009-04-01 22:10:45 +09001010 { 0x91, SONYPI_EVENT_PKEY_P2 },
Matthew Garrett9b578962009-03-26 21:58:14 +09001011 { 0x11, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001012 { 0x81, SONYPI_EVENT_FNKEY_F1 },
1013 { 0x01, SONYPI_EVENT_FNKEY_RELEASED },
Anton Veretenenkof5acf5e2009-03-26 22:44:26 +09001014 { 0x82, SONYPI_EVENT_FNKEY_F2 },
1015 { 0x02, SONYPI_EVENT_FNKEY_RELEASED },
1016 { 0x83, SONYPI_EVENT_FNKEY_F3 },
1017 { 0x03, SONYPI_EVENT_FNKEY_RELEASED },
1018 { 0x84, SONYPI_EVENT_FNKEY_F4 },
1019 { 0x04, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001020 { 0x85, SONYPI_EVENT_FNKEY_F5 },
1021 { 0x05, SONYPI_EVENT_FNKEY_RELEASED },
1022 { 0x86, SONYPI_EVENT_FNKEY_F6 },
1023 { 0x06, SONYPI_EVENT_FNKEY_RELEASED },
1024 { 0x87, SONYPI_EVENT_FNKEY_F7 },
1025 { 0x07, SONYPI_EVENT_FNKEY_RELEASED },
Matthew Garrett9b578962009-03-26 21:58:14 +09001026 { 0x89, SONYPI_EVENT_FNKEY_F9 },
1027 { 0x09, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001028 { 0x8A, SONYPI_EVENT_FNKEY_F10 },
1029 { 0x0A, SONYPI_EVENT_FNKEY_RELEASED },
1030 { 0x8C, SONYPI_EVENT_FNKEY_F12 },
1031 { 0x0C, SONYPI_EVENT_FNKEY_RELEASED },
Mattia Dongili1a7d9462011-01-08 18:47:29 +09001032 { 0x9d, SONYPI_EVENT_ZOOM_PRESSED },
1033 { 0x1d, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthew Garrett9b578962009-03-26 21:58:14 +09001034 { 0x9f, SONYPI_EVENT_CD_EJECT_PRESSED },
1035 { 0x1f, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili4f924ba2009-12-17 00:08:33 +09001036 { 0xa1, SONYPI_EVENT_MEDIA_PRESSED },
1037 { 0x21, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili1a7d9462011-01-08 18:47:29 +09001038 { 0xa4, SONYPI_EVENT_CD_EJECT_PRESSED },
1039 { 0x24, SONYPI_EVENT_ANYBUTTON_RELEASED },
1040 { 0xa5, SONYPI_EVENT_VENDOR_PRESSED },
1041 { 0x25, SONYPI_EVENT_ANYBUTTON_RELEASED },
1042 { 0xa6, SONYPI_EVENT_HELP_PRESSED },
1043 { 0x26, SONYPI_EVENT_ANYBUTTON_RELEASED },
Mattia Dongili6315fd12007-07-16 02:34:35 +09001044 { 0, 0 },
1045};
1046
Matthew Garrett45c79422009-03-26 21:58:16 +09001047static struct sony_nc_event sony_127_events[] = {
1048 { 0x81, SONYPI_EVENT_MODEKEY_PRESSED },
1049 { 0x01, SONYPI_EVENT_ANYBUTTON_RELEASED },
1050 { 0x82, SONYPI_EVENT_PKEY_P1 },
1051 { 0x02, SONYPI_EVENT_ANYBUTTON_RELEASED },
1052 { 0x83, SONYPI_EVENT_PKEY_P2 },
1053 { 0x03, SONYPI_EVENT_ANYBUTTON_RELEASED },
1054 { 0x84, SONYPI_EVENT_PKEY_P3 },
1055 { 0x04, SONYPI_EVENT_ANYBUTTON_RELEASED },
1056 { 0x85, SONYPI_EVENT_PKEY_P4 },
1057 { 0x05, SONYPI_EVENT_ANYBUTTON_RELEASED },
1058 { 0x86, SONYPI_EVENT_PKEY_P5 },
1059 { 0x06, SONYPI_EVENT_ANYBUTTON_RELEASED },
Matthew Garrett45c79422009-03-26 21:58:16 +09001060 { 0x87, SONYPI_EVENT_SETTINGKEY_PRESSED },
1061 { 0x07, SONYPI_EVENT_ANYBUTTON_RELEASED },
1062 { 0, 0 },
1063};
1064
Mattia Dongili6315fd12007-07-16 02:34:35 +09001065/*
Mattia Dongilid78865c2007-02-07 20:01:56 +01001066 * ACPI callbacks
1067 */
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001068static void sony_nc_notify(struct acpi_device *device, u32 event)
Stelian Pop7f09c432007-01-13 23:04:31 +01001069{
Mattia Dongili6315fd12007-07-16 02:34:35 +09001070 u32 ev = event;
Mattia Dongili6315fd12007-07-16 02:34:35 +09001071
Matthew Garrett9b578962009-03-26 21:58:14 +09001072 if (ev >= 0x90) {
1073 /* New-style event */
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001074 int result;
Matthew Garrett45c79422009-03-26 21:58:16 +09001075 int key_handle = 0;
Matthew Garrett9b578962009-03-26 21:58:14 +09001076 ev -= 0x90;
Mattia Dongili6315fd12007-07-16 02:34:35 +09001077
Matthew Garrett45c79422009-03-26 21:58:16 +09001078 if (sony_find_snc_handle(0x100) == ev)
1079 key_handle = 0x100;
1080 if (sony_find_snc_handle(0x127) == ev)
1081 key_handle = 0x127;
Matthew Garrett9b578962009-03-26 21:58:14 +09001082
Matthias Welwarsky6479efb2009-04-01 22:10:45 +09001083 if (key_handle) {
Matthew Garrett45c79422009-03-26 21:58:16 +09001084 struct sony_nc_event *key_event;
1085
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001086 if (sony_call_snc_handle(key_handle, 0x200, &result)) {
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001087 dprintk("sony_nc_notify, unable to decode"
Matthew Garrett45c79422009-03-26 21:58:16 +09001088 " event 0x%.2x 0x%.2x\n", key_handle,
1089 ev);
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001090 /* restore the original event */
1091 ev = event;
1092 } else {
Matthew Garrett9b578962009-03-26 21:58:14 +09001093 ev = result & 0xFF;
1094
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001095 if (key_handle == 0x100)
1096 key_event = sony_100_events;
1097 else
1098 key_event = sony_127_events;
Matthew Garrett45c79422009-03-26 21:58:16 +09001099
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001100 for (; key_event->data; key_event++) {
1101 if (key_event->data == ev) {
1102 ev = key_event->event;
1103 break;
1104 }
Matthew Garrett9b578962009-03-26 21:58:14 +09001105 }
Mattia Dongili6315fd12007-07-16 02:34:35 +09001106
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001107 if (!key_event->data)
Joe Perches50f581a2011-03-29 15:21:48 -07001108 pr_info("Unknown event: 0x%x 0x%x\n",
1109 key_handle, ev);
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001110 else
1111 sony_laptop_report_input_event(ev);
Matthew Garrett45c79422009-03-26 21:58:16 +09001112 }
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001113 } else if (sony_find_snc_handle(sony_rfkill_handle) == ev) {
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001114 sony_nc_rfkill_update();
1115 return;
Matthew Garrett9b578962009-03-26 21:58:14 +09001116 }
Matthias Welwarsky16dd55f2009-04-01 22:10:47 +09001117 } else
1118 sony_laptop_report_input_event(ev);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001119
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001120 dprintk("sony_nc_notify, event: 0x%.2x\n", ev);
Len Brown14e04fb2007-08-23 15:20:26 -04001121 acpi_bus_generate_proc_event(sony_nc_acpi_device, 1, ev);
Stelian Pop7f09c432007-01-13 23:04:31 +01001122}
1123
1124static acpi_status sony_walk_callback(acpi_handle handle, u32 level,
1125 void *context, void **return_value)
1126{
Lin Ming30823732008-12-16 16:59:35 +08001127 struct acpi_device_info *info;
Stelian Pop7f09c432007-01-13 23:04:31 +01001128
Bob Moore15b8dd52009-06-29 13:39:29 +08001129 if (ACPI_SUCCESS(acpi_get_object_info(handle, &info))) {
Joe Perches50f581a2011-03-29 15:21:48 -07001130 pr_warn("method: name: %4.4s, args %X\n",
Lin Ming30823732008-12-16 16:59:35 +08001131 (char *)&info->name, info->param_count);
1132
Bob Moore15b8dd52009-06-29 13:39:29 +08001133 kfree(info);
Lin Ming30823732008-12-16 16:59:35 +08001134 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001135
1136 return AE_OK;
1137}
1138
Mattia Dongilid78865c2007-02-07 20:01:56 +01001139/*
1140 * ACPI device
1141 */
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001142static int sony_nc_function_setup(struct acpi_device *device)
1143{
1144 int result;
1145
1146 /* Enable all events */
1147 acpi_callsetfunc(sony_nc_acpi_handle, "SN02", 0xffff, &result);
1148
1149 /* Setup hotkeys */
1150 sony_call_snc_handle(0x0100, 0, &result);
1151 sony_call_snc_handle(0x0101, 0, &result);
1152 sony_call_snc_handle(0x0102, 0x100, &result);
Almer S. Tigelaar560e84a2009-04-12 11:26:27 +00001153 sony_call_snc_handle(0x0127, 0, &result);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001154
1155 return 0;
1156}
1157
malattia@linux.it59b19102007-04-09 10:19:04 +02001158static int sony_nc_resume(struct acpi_device *device)
Mattia Dongilid78865c2007-02-07 20:01:56 +01001159{
malattia@linux.it59b19102007-04-09 10:19:04 +02001160 struct sony_nc_value *item;
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001161 acpi_handle handle;
Mattia Dongilid78865c2007-02-07 20:01:56 +01001162
malattia@linux.it59b19102007-04-09 10:19:04 +02001163 for (item = sony_nc_values; item->name; item++) {
Mattia Dongilid78865c2007-02-07 20:01:56 +01001164 int ret;
1165
1166 if (!item->valid)
1167 continue;
malattia@linux.it59b19102007-04-09 10:19:04 +02001168 ret = acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset,
Len Browna02d1c12007-02-07 15:34:02 -05001169 item->value, NULL);
Mattia Dongilid78865c2007-02-07 20:01:56 +01001170 if (ret < 0) {
Joe Perches50f581a2011-03-29 15:21:48 -07001171 pr_err("%s: %d\n", __func__, ret);
Mattia Dongilid78865c2007-02-07 20:01:56 +01001172 break;
1173 }
1174 }
Mattia Dongili6315fd12007-07-16 02:34:35 +09001175
Matthew Garrett82734bf2009-03-26 21:58:13 +09001176 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
1177 &handle))) {
1178 if (acpi_callsetfunc(sony_nc_acpi_handle, "ECON", 1, NULL))
1179 dprintk("ECON Method failed\n");
1180 }
1181
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001182 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
1183 &handle))) {
1184 dprintk("Doing SNC setup\n");
1185 sony_nc_function_setup(device);
1186 }
1187
Alan Jenkinsa0d97d62009-09-25 10:18:21 +01001188 /* re-read rfkill state */
1189 sony_nc_rfkill_update();
1190
Marco Chiapperodf410d52011-04-05 23:38:34 +09001191 /* restore kbd backlight states */
1192 sony_nc_kbd_backlight_resume();
1193
Mattia Dongilid78865c2007-02-07 20:01:56 +01001194 return 0;
1195}
1196
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001197static void sony_nc_rfkill_cleanup(void)
1198{
1199 int i;
1200
Johannes Berg19d337d2009-06-02 13:01:37 +02001201 for (i = 0; i < N_SONY_RFKILL; i++) {
1202 if (sony_rfkill_devices[i]) {
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001203 rfkill_unregister(sony_rfkill_devices[i]);
Johannes Berg19d337d2009-06-02 13:01:37 +02001204 rfkill_destroy(sony_rfkill_devices[i]);
1205 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001206 }
1207}
1208
Johannes Berg19d337d2009-06-02 13:01:37 +02001209static int sony_nc_rfkill_set(void *data, bool blocked)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001210{
1211 int result;
1212 int argument = sony_rfkill_address[(long) data] + 0x100;
1213
Johannes Berg19d337d2009-06-02 13:01:37 +02001214 if (!blocked)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001215 argument |= 0xff0000;
1216
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001217 return sony_call_snc_handle(sony_rfkill_handle, argument, &result);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001218}
1219
Johannes Berg19d337d2009-06-02 13:01:37 +02001220static const struct rfkill_ops sony_rfkill_ops = {
1221 .set_block = sony_nc_rfkill_set,
1222};
1223
1224static int sony_nc_setup_rfkill(struct acpi_device *device,
1225 enum sony_nc_rfkill nc_type)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001226{
1227 int err = 0;
Johannes Berg19d337d2009-06-02 13:01:37 +02001228 struct rfkill *rfk;
1229 enum rfkill_type type;
1230 const char *name;
Alan Jenkins50fab072009-09-24 20:15:24 +01001231 int result;
1232 bool hwblock;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001233
Johannes Berg19d337d2009-06-02 13:01:37 +02001234 switch (nc_type) {
1235 case SONY_WIFI:
1236 type = RFKILL_TYPE_WLAN;
1237 name = "sony-wifi";
1238 break;
1239 case SONY_BLUETOOTH:
1240 type = RFKILL_TYPE_BLUETOOTH;
1241 name = "sony-bluetooth";
1242 break;
1243 case SONY_WWAN:
1244 type = RFKILL_TYPE_WWAN;
1245 name = "sony-wwan";
1246 break;
1247 case SONY_WIMAX:
1248 type = RFKILL_TYPE_WIMAX;
1249 name = "sony-wimax";
1250 break;
1251 default:
1252 return -EINVAL;
Mattia Dongili53005a02009-04-12 11:26:31 +00001253 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001254
Johannes Berg19d337d2009-06-02 13:01:37 +02001255 rfk = rfkill_alloc(name, &device->dev, type,
1256 &sony_rfkill_ops, (void *)nc_type);
1257 if (!rfk)
1258 return -ENOMEM;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001259
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001260 sony_call_snc_handle(sony_rfkill_handle, 0x200, &result);
Alan Jenkins50fab072009-09-24 20:15:24 +01001261 hwblock = !(result & 0x1);
1262 rfkill_set_hw_state(rfk, hwblock);
1263
Johannes Berg19d337d2009-06-02 13:01:37 +02001264 err = rfkill_register(rfk);
1265 if (err) {
1266 rfkill_destroy(rfk);
1267 return err;
Mattia Dongili53005a02009-04-12 11:26:31 +00001268 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001269 sony_rfkill_devices[nc_type] = rfk;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001270 return err;
1271}
1272
Randy Dunlapa46a7802011-01-08 19:56:44 -08001273static void sony_nc_rfkill_update(void)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001274{
Johannes Berg19d337d2009-06-02 13:01:37 +02001275 enum sony_nc_rfkill i;
1276 int result;
1277 bool hwblock;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001278
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001279 sony_call_snc_handle(sony_rfkill_handle, 0x200, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001280 hwblock = !(result & 0x1);
1281
1282 for (i = 0; i < N_SONY_RFKILL; i++) {
1283 int argument = sony_rfkill_address[i];
1284
1285 if (!sony_rfkill_devices[i])
1286 continue;
1287
1288 if (hwblock) {
Johannes Berge1f8a192009-06-11 12:08:15 +02001289 if (rfkill_set_hw_state(sony_rfkill_devices[i], true)) {
1290 /* we already know we're blocked */
1291 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001292 continue;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001293 }
Johannes Berg19d337d2009-06-02 13:01:37 +02001294
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001295 sony_call_snc_handle(sony_rfkill_handle, argument, &result);
Johannes Berg19d337d2009-06-02 13:01:37 +02001296 rfkill_set_states(sony_rfkill_devices[i],
1297 !(result & 0xf), false);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001298 }
1299}
1300
Mattia Dongili528809c2009-12-17 00:08:36 +09001301static void sony_nc_rfkill_setup(struct acpi_device *device)
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001302{
Mattia Dongili528809c2009-12-17 00:08:36 +09001303 int offset;
1304 u8 dev_code, i;
1305 acpi_status status;
1306 struct acpi_object_list params;
1307 union acpi_object in_obj;
1308 union acpi_object *device_enum;
1309 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001310
Mattia Dongili528809c2009-12-17 00:08:36 +09001311 offset = sony_find_snc_handle(0x124);
1312 if (offset == -1) {
1313 offset = sony_find_snc_handle(0x135);
1314 if (offset == -1)
1315 return;
Mattia Dongilid5a664a2009-12-17 00:08:35 +09001316 else
1317 sony_rfkill_handle = 0x135;
1318 } else
1319 sony_rfkill_handle = 0x124;
Mattia Dongili528809c2009-12-17 00:08:36 +09001320 dprintk("Found rkfill handle: 0x%.4x\n", sony_rfkill_handle);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001321
Mattia Dongili528809c2009-12-17 00:08:36 +09001322 /* need to read the whole buffer returned by the acpi call to SN06
1323 * here otherwise we may miss some features
1324 */
1325 params.count = 1;
1326 params.pointer = &in_obj;
1327 in_obj.type = ACPI_TYPE_INTEGER;
1328 in_obj.integer.value = offset;
1329 status = acpi_evaluate_object(sony_nc_acpi_handle, "SN06", &params,
1330 &buffer);
1331 if (ACPI_FAILURE(status)) {
1332 dprintk("Radio device enumeration failed\n");
1333 return;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001334 }
1335
Mattia Dongili528809c2009-12-17 00:08:36 +09001336 device_enum = (union acpi_object *) buffer.pointer;
Dan Carpenter200140b2011-02-27 17:13:25 +03001337 if (!device_enum) {
Joe Perches50f581a2011-03-29 15:21:48 -07001338 pr_err("No SN06 return object\n");
Dan Carpenter200140b2011-02-27 17:13:25 +03001339 goto out_no_enum;
1340 }
1341 if (device_enum->type != ACPI_TYPE_BUFFER) {
Joe Perches50f581a2011-03-29 15:21:48 -07001342 pr_err("Invalid SN06 return object 0x%.2x\n",
1343 device_enum->type);
Mattia Dongili528809c2009-12-17 00:08:36 +09001344 goto out_no_enum;
1345 }
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001346
Mattia Dongili528809c2009-12-17 00:08:36 +09001347 /* the buffer is filled with magic numbers describing the devices
1348 * available, 0xff terminates the enumeration
1349 */
Dmitry Torokhovc14973f2010-01-10 00:15:44 -08001350 for (i = 0; i < device_enum->buffer.length; i++) {
1351
1352 dev_code = *(device_enum->buffer.pointer + i);
1353 if (dev_code == 0xff)
1354 break;
1355
Mattia Dongili528809c2009-12-17 00:08:36 +09001356 dprintk("Radio devices, looking at 0x%.2x\n", dev_code);
1357
1358 if (dev_code == 0 && !sony_rfkill_devices[SONY_WIFI])
1359 sony_nc_setup_rfkill(device, SONY_WIFI);
1360
1361 if (dev_code == 0x10 && !sony_rfkill_devices[SONY_BLUETOOTH])
1362 sony_nc_setup_rfkill(device, SONY_BLUETOOTH);
1363
1364 if ((0xf0 & dev_code) == 0x20 &&
1365 !sony_rfkill_devices[SONY_WWAN])
1366 sony_nc_setup_rfkill(device, SONY_WWAN);
1367
1368 if (dev_code == 0x30 && !sony_rfkill_devices[SONY_WIMAX])
1369 sony_nc_setup_rfkill(device, SONY_WIMAX);
1370 }
1371
1372out_no_enum:
1373 kfree(buffer.pointer);
1374 return;
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001375}
1376
Mattia Dongilibf155712011-02-19 11:52:31 +09001377/* Keyboard backlight feature */
1378#define KBDBL_HANDLER 0x137
1379#define KBDBL_PRESENT 0xB00
1380#define SET_MODE 0xC00
Marco Chiapperodf410d52011-04-05 23:38:34 +09001381#define SET_STATE 0xD00
Mattia Dongilibf155712011-02-19 11:52:31 +09001382#define SET_TIMEOUT 0xE00
1383
1384struct kbd_backlight {
1385 int mode;
1386 int timeout;
1387 struct device_attribute mode_attr;
1388 struct device_attribute timeout_attr;
1389};
1390
Dan Carpenterf11113b2011-02-26 15:54:27 +03001391static struct kbd_backlight *kbdbl_handle;
Mattia Dongilibf155712011-02-19 11:52:31 +09001392
1393static ssize_t __sony_nc_kbd_backlight_mode_set(u8 value)
1394{
1395 int result;
1396
1397 if (value > 1)
1398 return -EINVAL;
1399
1400 if (sony_call_snc_handle(KBDBL_HANDLER,
1401 (value << 0x10) | SET_MODE, &result))
1402 return -EIO;
1403
Marco Chiapperodf410d52011-04-05 23:38:34 +09001404 /* Try to turn the light on/off immediately */
1405 sony_call_snc_handle(KBDBL_HANDLER, (value << 0x10) | SET_STATE,
1406 &result);
1407
Mattia Dongilibf155712011-02-19 11:52:31 +09001408 kbdbl_handle->mode = value;
1409
1410 return 0;
1411}
1412
1413static ssize_t sony_nc_kbd_backlight_mode_store(struct device *dev,
1414 struct device_attribute *attr,
1415 const char *buffer, size_t count)
1416{
1417 int ret = 0;
1418 unsigned long value;
1419
1420 if (count > 31)
1421 return -EINVAL;
1422
1423 if (strict_strtoul(buffer, 10, &value))
1424 return -EINVAL;
1425
1426 ret = __sony_nc_kbd_backlight_mode_set(value);
1427 if (ret < 0)
1428 return ret;
1429
1430 return count;
1431}
1432
1433static ssize_t sony_nc_kbd_backlight_mode_show(struct device *dev,
1434 struct device_attribute *attr, char *buffer)
1435{
1436 ssize_t count = 0;
1437 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_handle->mode);
1438 return count;
1439}
1440
1441static int __sony_nc_kbd_backlight_timeout_set(u8 value)
1442{
1443 int result;
1444
1445 if (value > 3)
1446 return -EINVAL;
1447
1448 if (sony_call_snc_handle(KBDBL_HANDLER,
1449 (value << 0x10) | SET_TIMEOUT, &result))
1450 return -EIO;
1451
1452 kbdbl_handle->timeout = value;
1453
1454 return 0;
1455}
1456
1457static ssize_t sony_nc_kbd_backlight_timeout_store(struct device *dev,
1458 struct device_attribute *attr,
1459 const char *buffer, size_t count)
1460{
1461 int ret = 0;
1462 unsigned long value;
1463
1464 if (count > 31)
1465 return -EINVAL;
1466
1467 if (strict_strtoul(buffer, 10, &value))
1468 return -EINVAL;
1469
1470 ret = __sony_nc_kbd_backlight_timeout_set(value);
1471 if (ret < 0)
1472 return ret;
1473
1474 return count;
1475}
1476
1477static ssize_t sony_nc_kbd_backlight_timeout_show(struct device *dev,
1478 struct device_attribute *attr, char *buffer)
1479{
1480 ssize_t count = 0;
1481 count = snprintf(buffer, PAGE_SIZE, "%d\n", kbdbl_handle->timeout);
1482 return count;
1483}
1484
1485static int sony_nc_kbd_backlight_setup(struct platform_device *pd)
1486{
1487 int result;
1488
Marco Chiapperodf410d52011-04-05 23:38:34 +09001489 if (sony_call_snc_handle(KBDBL_HANDLER, KBDBL_PRESENT, &result))
Mattia Dongilibf155712011-02-19 11:52:31 +09001490 return 0;
1491 if (!(result & 0x02))
1492 return 0;
1493
1494 kbdbl_handle = kzalloc(sizeof(*kbdbl_handle), GFP_KERNEL);
Dan Carpenter31f00752011-02-26 15:55:24 +03001495 if (!kbdbl_handle)
1496 return -ENOMEM;
Mattia Dongilibf155712011-02-19 11:52:31 +09001497
1498 sysfs_attr_init(&kbdbl_handle->mode_attr.attr);
1499 kbdbl_handle->mode_attr.attr.name = "kbd_backlight";
1500 kbdbl_handle->mode_attr.attr.mode = S_IRUGO | S_IWUSR;
1501 kbdbl_handle->mode_attr.show = sony_nc_kbd_backlight_mode_show;
1502 kbdbl_handle->mode_attr.store = sony_nc_kbd_backlight_mode_store;
1503
1504 sysfs_attr_init(&kbdbl_handle->timeout_attr.attr);
1505 kbdbl_handle->timeout_attr.attr.name = "kbd_backlight_timeout";
1506 kbdbl_handle->timeout_attr.attr.mode = S_IRUGO | S_IWUSR;
1507 kbdbl_handle->timeout_attr.show = sony_nc_kbd_backlight_timeout_show;
1508 kbdbl_handle->timeout_attr.store = sony_nc_kbd_backlight_timeout_store;
1509
1510 if (device_create_file(&pd->dev, &kbdbl_handle->mode_attr))
1511 goto outkzalloc;
1512
1513 if (device_create_file(&pd->dev, &kbdbl_handle->timeout_attr))
1514 goto outmode;
1515
1516 __sony_nc_kbd_backlight_mode_set(kbd_backlight);
1517 __sony_nc_kbd_backlight_timeout_set(kbd_backlight_timeout);
1518
1519 return 0;
1520
1521outmode:
1522 device_remove_file(&pd->dev, &kbdbl_handle->mode_attr);
1523outkzalloc:
1524 kfree(kbdbl_handle);
1525 kbdbl_handle = NULL;
1526 return -1;
1527}
1528
1529static int sony_nc_kbd_backlight_cleanup(struct platform_device *pd)
1530{
1531 if (kbdbl_handle) {
Marco Chiapperodf410d52011-04-05 23:38:34 +09001532 int result;
1533
Mattia Dongilibf155712011-02-19 11:52:31 +09001534 device_remove_file(&pd->dev, &kbdbl_handle->mode_attr);
1535 device_remove_file(&pd->dev, &kbdbl_handle->timeout_attr);
Marco Chiapperodf410d52011-04-05 23:38:34 +09001536
1537 /* restore the default hw behaviour */
1538 sony_call_snc_handle(KBDBL_HANDLER, 0x1000 | SET_MODE, &result);
1539 sony_call_snc_handle(KBDBL_HANDLER, SET_TIMEOUT, &result);
1540
Mattia Dongilibf155712011-02-19 11:52:31 +09001541 kfree(kbdbl_handle);
1542 }
1543 return 0;
1544}
1545
Marco Chiapperodf410d52011-04-05 23:38:34 +09001546static void sony_nc_kbd_backlight_resume(void)
1547{
1548 int ignore = 0;
1549
1550 if (!kbdbl_handle)
1551 return;
1552
1553 if (kbdbl_handle->mode == 0)
1554 sony_call_snc_handle(KBDBL_HANDLER, SET_MODE, &ignore);
1555
1556 if (kbdbl_handle->timeout != 0)
1557 sony_call_snc_handle(KBDBL_HANDLER,
1558 (kbdbl_handle->timeout << 0x10) | SET_TIMEOUT,
1559 &ignore);
1560}
1561
Mattia Dongili62d2f232011-05-09 10:20:29 -04001562static void sony_nc_backlight_ng_read_limits(int handle,
1563 struct sony_backlight_props *props)
1564{
1565 int offset;
1566 acpi_status status;
1567 u8 brlvl, i;
1568 u8 min = 0xff, max = 0x00;
1569 struct acpi_object_list params;
1570 union acpi_object in_obj;
1571 union acpi_object *lvl_enum;
1572 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1573
1574 props->handle = handle;
1575 props->offset = 0;
1576 props->maxlvl = 0xff;
1577
1578 offset = sony_find_snc_handle(handle);
1579 if (offset < 0)
1580 return;
1581
1582 /* try to read the boundaries from ACPI tables, if we fail the above
1583 * defaults should be reasonable
1584 */
1585 params.count = 1;
1586 params.pointer = &in_obj;
1587 in_obj.type = ACPI_TYPE_INTEGER;
1588 in_obj.integer.value = offset;
1589 status = acpi_evaluate_object(sony_nc_acpi_handle, "SN06", &params,
1590 &buffer);
1591 if (ACPI_FAILURE(status))
1592 return;
1593
1594 lvl_enum = (union acpi_object *) buffer.pointer;
1595 if (!lvl_enum) {
1596 pr_err("No SN06 return object.");
1597 return;
1598 }
1599 if (lvl_enum->type != ACPI_TYPE_BUFFER) {
1600 pr_err("Invalid SN06 return object 0x%.2x\n",
1601 lvl_enum->type);
1602 goto out_invalid;
1603 }
1604
1605 /* the buffer lists brightness levels available, brightness levels are
1606 * from 0 to 8 in the array, other values are used by ALS control.
1607 */
1608 for (i = 0; i < 9 && i < lvl_enum->buffer.length; i++) {
1609
1610 brlvl = *(lvl_enum->buffer.pointer + i);
1611 dprintk("Brightness level: %d\n", brlvl);
1612
1613 if (!brlvl)
1614 break;
1615
1616 if (brlvl > max)
1617 max = brlvl;
1618 if (brlvl < min)
1619 min = brlvl;
1620 }
1621 props->offset = min;
1622 props->maxlvl = max;
1623 dprintk("Brightness levels: min=%d max=%d\n", props->offset,
1624 props->maxlvl);
1625
1626out_invalid:
1627 kfree(buffer.pointer);
1628 return;
1629}
1630
Mattia Dongili7751ab82011-02-19 11:52:32 +09001631static void sony_nc_backlight_setup(void)
1632{
1633 acpi_handle unused;
1634 int max_brightness = 0;
1635 const struct backlight_ops *ops = NULL;
1636 struct backlight_properties props;
1637
1638 if (sony_find_snc_handle(0x12f) != -1) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09001639 ops = &sony_backlight_ng_ops;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001640 sony_nc_backlight_ng_read_limits(0x12f, &sony_bl_props);
1641 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001642
1643 } else if (sony_find_snc_handle(0x137) != -1) {
Mattia Dongili7751ab82011-02-19 11:52:32 +09001644 ops = &sony_backlight_ng_ops;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001645 sony_nc_backlight_ng_read_limits(0x137, &sony_bl_props);
1646 max_brightness = sony_bl_props.maxlvl - sony_bl_props.offset;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001647
1648 } else if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT",
1649 &unused))) {
1650 ops = &sony_backlight_ops;
1651 max_brightness = SONY_MAX_BRIGHTNESS - 1;
1652
1653 } else
1654 return;
1655
1656 memset(&props, 0, sizeof(struct backlight_properties));
1657 props.type = BACKLIGHT_PLATFORM;
1658 props.max_brightness = max_brightness;
Mattia Dongili62d2f232011-05-09 10:20:29 -04001659 sony_bl_props.dev = backlight_device_register("sony", NULL,
1660 &sony_bl_props,
1661 ops, &props);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001662
Mattia Dongili62d2f232011-05-09 10:20:29 -04001663 if (IS_ERR(sony_bl_props.dev)) {
Joe Perches50f581a2011-03-29 15:21:48 -07001664 pr_warn("unable to register backlight device\n");
Mattia Dongili62d2f232011-05-09 10:20:29 -04001665 sony_bl_props.dev = NULL;
Mattia Dongili7751ab82011-02-19 11:52:32 +09001666 } else
Mattia Dongili62d2f232011-05-09 10:20:29 -04001667 sony_bl_props.dev->props.brightness =
1668 ops->get_brightness(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001669}
1670
1671static void sony_nc_backlight_cleanup(void)
1672{
Mattia Dongili62d2f232011-05-09 10:20:29 -04001673 if (sony_bl_props.dev)
1674 backlight_device_unregister(sony_bl_props.dev);
Mattia Dongili7751ab82011-02-19 11:52:32 +09001675}
1676
malattia@linux.it59b19102007-04-09 10:19:04 +02001677static int sony_nc_add(struct acpi_device *device)
Stelian Pop7f09c432007-01-13 23:04:31 +01001678{
1679 acpi_status status;
Andrew Morton8607c672007-03-06 02:29:42 -08001680 int result = 0;
Alessandro Guido50f62af2007-01-13 23:04:34 +01001681 acpi_handle handle;
malattia@linux.it56b87562007-04-09 10:19:05 +02001682 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01001683
Joe Perches50f581a2011-03-29 15:21:48 -07001684 pr_info("%s v%s\n", SONY_NC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.itf6119b02007-04-09 19:31:06 +02001685
malattia@linux.it59b19102007-04-09 10:19:04 +02001686 sony_nc_acpi_device = device;
malattia@linux.it33a04452007-04-09 19:26:03 +02001687 strcpy(acpi_device_class(device), "sony/hotkey");
Stelian Popc5611622007-01-13 23:04:37 +01001688
malattia@linux.it59b19102007-04-09 10:19:04 +02001689 sony_nc_acpi_handle = device->handle;
Stelian Pop7f09c432007-01-13 23:04:31 +01001690
Mattia Dongilib25b7322007-07-16 02:34:36 +09001691 /* read device status */
1692 result = acpi_bus_get_status(device);
1693 /* bail IFF the above call was successful and the device is not present */
1694 if (!result && !device->status.present) {
1695 dprintk("Device not present\n");
1696 result = -ENODEV;
1697 goto outwalk;
1698 }
1699
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001700 result = sony_pf_add();
1701 if (result)
1702 goto outpresent;
1703
Stelian Pop7f09c432007-01-13 23:04:31 +01001704 if (debug) {
Mattia Dongilid6697932011-02-19 11:52:28 +09001705 status = acpi_walk_namespace(ACPI_TYPE_METHOD,
1706 sony_nc_acpi_handle, 1, sony_walk_callback,
1707 NULL, NULL, NULL);
Stelian Pop7f09c432007-01-13 23:04:31 +01001708 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07001709 pr_warn("unable to walk acpi resources\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001710 result = -ENODEV;
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001711 goto outpresent;
Stelian Pop7f09c432007-01-13 23:04:31 +01001712 }
Stelian Popc5611622007-01-13 23:04:37 +01001713 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001714
Matthew Garrett82734bf2009-03-26 21:58:13 +09001715 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "ECON",
1716 &handle))) {
1717 if (acpi_callsetfunc(sony_nc_acpi_handle, "ECON", 1, NULL))
1718 dprintk("ECON Method failed\n");
1719 }
1720
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001721 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "SN00",
1722 &handle))) {
1723 dprintk("Doing SNC setup\n");
Dan Carpenter7227ded2011-02-26 15:54:57 +03001724 result = sony_nc_handles_setup(sony_pf_device);
1725 if (result)
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001726 goto outpresent;
Dan Carpenter7227ded2011-02-26 15:54:57 +03001727 result = sony_nc_kbd_backlight_setup(sony_pf_device);
1728 if (result)
Mattia Dongilibf155712011-02-19 11:52:31 +09001729 goto outsnc;
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001730 sony_nc_function_setup(device);
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001731 sony_nc_rfkill_setup(device);
Matthew Garrettbadf26f2009-03-26 21:58:12 +09001732 }
1733
malattia@linux.it1549ee62007-04-09 10:19:08 +02001734 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05001735 result = sony_laptop_setup_input(device);
malattia@linux.it1549ee62007-04-09 10:19:08 +02001736 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07001737 pr_err("Unable to create input devices\n");
Mattia Dongilibf155712011-02-19 11:52:31 +09001738 goto outkbdbacklight;
malattia@linux.it1549ee62007-04-09 10:19:08 +02001739 }
1740
Alessandro Guido38cfc142008-11-12 23:03:28 +01001741 if (acpi_video_backlight_support()) {
Joe Perches50f581a2011-03-29 15:21:48 -07001742 pr_info("brightness ignored, must be controlled by ACPI video driver\n");
Mattia Dongili7751ab82011-02-19 11:52:32 +09001743 } else {
1744 sony_nc_backlight_setup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01001745 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001746
malattia@linux.it56b87562007-04-09 10:19:05 +02001747 /* create sony_pf sysfs attributes related to the SNC device */
1748 for (item = sony_nc_values; item->name; ++item) {
1749
1750 if (!debug && item->debug)
1751 continue;
1752
1753 /* find the available acpiget as described in the DSDT */
1754 for (; item->acpiget && *item->acpiget; ++item->acpiget) {
1755 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1756 *item->acpiget,
1757 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001758 dprintk("Found %s getter: %s\n",
1759 item->name, *item->acpiget);
malattia@linux.it56b87562007-04-09 10:19:05 +02001760 item->devattr.attr.mode |= S_IRUGO;
1761 break;
1762 }
1763 }
1764
1765 /* find the available acpiset as described in the DSDT */
1766 for (; item->acpiset && *item->acpiset; ++item->acpiset) {
1767 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1768 *item->acpiset,
1769 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001770 dprintk("Found %s setter: %s\n",
1771 item->name, *item->acpiset);
malattia@linux.it56b87562007-04-09 10:19:05 +02001772 item->devattr.attr.mode |= S_IWUSR;
1773 break;
1774 }
1775 }
1776
1777 if (item->devattr.attr.mode != 0) {
1778 result =
1779 device_create_file(&sony_pf_device->dev,
1780 &item->devattr);
1781 if (result)
1782 goto out_sysfs;
1783 }
1784 }
1785
Stelian Pop7f09c432007-01-13 23:04:31 +01001786 return 0;
1787
malattia@linux.it56b87562007-04-09 10:19:05 +02001788 out_sysfs:
1789 for (item = sony_nc_values; item->name; ++item) {
1790 device_remove_file(&sony_pf_device->dev, &item->devattr);
1791 }
Mattia Dongili7751ab82011-02-19 11:52:32 +09001792 sony_nc_backlight_cleanup();
Mattia Dongili7df03b82007-01-13 23:04:41 +01001793
malattia@linux.it1549ee62007-04-09 10:19:08 +02001794 sony_laptop_remove_input();
1795
Mattia Dongilibf155712011-02-19 11:52:31 +09001796 outkbdbacklight:
1797 sony_nc_kbd_backlight_cleanup(sony_pf_device);
1798
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001799 outsnc:
1800 sony_nc_handles_cleanup(sony_pf_device);
1801
1802 outpresent:
1803 sony_pf_remove();
1804
Len Browna02d1c12007-02-07 15:34:02 -05001805 outwalk:
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001806 sony_nc_rfkill_cleanup();
Stelian Pop7f09c432007-01-13 23:04:31 +01001807 return result;
1808}
1809
malattia@linux.it59b19102007-04-09 10:19:04 +02001810static int sony_nc_remove(struct acpi_device *device, int type)
Stelian Pop7f09c432007-01-13 23:04:31 +01001811{
malattia@linux.it56b87562007-04-09 10:19:05 +02001812 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01001813
Mattia Dongili7751ab82011-02-19 11:52:32 +09001814 sony_nc_backlight_cleanup();
Alessandro Guido50f62af2007-01-13 23:04:34 +01001815
malattia@linux.it59b19102007-04-09 10:19:04 +02001816 sony_nc_acpi_device = NULL;
Stelian Popc5611622007-01-13 23:04:37 +01001817
malattia@linux.it56b87562007-04-09 10:19:05 +02001818 for (item = sony_nc_values; item->name; ++item) {
1819 device_remove_file(&sony_pf_device->dev, &item->devattr);
1820 }
1821
Mattia Dongilibf155712011-02-19 11:52:31 +09001822 sony_nc_kbd_backlight_cleanup(sony_pf_device);
Mattia Dongili2a4f0c82011-02-19 11:52:30 +09001823 sony_nc_handles_cleanup(sony_pf_device);
malattia@linux.it56b87562007-04-09 10:19:05 +02001824 sony_pf_remove();
malattia@linux.it1549ee62007-04-09 10:19:08 +02001825 sony_laptop_remove_input();
Matthew Garrett6cc056b2009-03-26 21:58:15 +09001826 sony_nc_rfkill_cleanup();
malattia@linux.itf6119b02007-04-09 19:31:06 +02001827 dprintk(SONY_NC_DRIVER_NAME " removed.\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001828
1829 return 0;
1830}
1831
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001832static const struct acpi_device_id sony_device_ids[] = {
1833 {SONY_NC_HID, 0},
1834 {SONY_PIC_HID, 0},
1835 {"", 0},
1836};
1837MODULE_DEVICE_TABLE(acpi, sony_device_ids);
1838
1839static const struct acpi_device_id sony_nc_device_ids[] = {
1840 {SONY_NC_HID, 0},
1841 {"", 0},
1842};
1843
malattia@linux.it59b19102007-04-09 10:19:04 +02001844static struct acpi_driver sony_nc_driver = {
1845 .name = SONY_NC_DRIVER_NAME,
1846 .class = SONY_NC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001847 .ids = sony_nc_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02001848 .owner = THIS_MODULE,
Len Browna02d1c12007-02-07 15:34:02 -05001849 .ops = {
malattia@linux.it59b19102007-04-09 10:19:04 +02001850 .add = sony_nc_add,
1851 .remove = sony_nc_remove,
1852 .resume = sony_nc_resume,
Bjorn Helgaas8037d6e2009-04-07 15:37:32 +00001853 .notify = sony_nc_notify,
Len Browna02d1c12007-02-07 15:34:02 -05001854 },
Andrew Morton3f4f4612007-01-13 23:04:32 +01001855};
1856
malattia@linux.it33a04452007-04-09 19:26:03 +02001857/*********** SPIC (SNY6001) Device ***********/
1858
1859#define SONYPI_DEVICE_TYPE1 0x00000001
1860#define SONYPI_DEVICE_TYPE2 0x00000002
1861#define SONYPI_DEVICE_TYPE3 0x00000004
1862
Mattia Dongili22a17782007-07-16 02:34:39 +09001863#define SONYPI_TYPE1_OFFSET 0x04
1864#define SONYPI_TYPE2_OFFSET 0x12
1865#define SONYPI_TYPE3_OFFSET 0x12
malattia@linux.it33a04452007-04-09 19:26:03 +02001866
malattia@linux.it33a04452007-04-09 19:26:03 +02001867struct sony_pic_ioport {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001868 struct acpi_resource_io io1;
1869 struct acpi_resource_io io2;
malattia@linux.it33a04452007-04-09 19:26:03 +02001870 struct list_head list;
1871};
1872
1873struct sony_pic_irq {
1874 struct acpi_resource_irq irq;
1875 struct list_head list;
1876};
1877
Mattia Dongilide920432008-01-14 18:05:43 +09001878struct sonypi_eventtypes {
1879 u8 data;
1880 unsigned long mask;
1881 struct sonypi_event *events;
1882};
1883
malattia@linux.it33a04452007-04-09 19:26:03 +02001884struct sony_pic_dev {
Mattia Dongili31df7142009-09-16 00:05:29 +09001885 struct acpi_device *acpi_dev;
1886 struct sony_pic_irq *cur_irq;
1887 struct sony_pic_ioport *cur_ioport;
1888 struct list_head interrupts;
1889 struct list_head ioports;
1890 struct mutex lock;
1891 struct sonypi_eventtypes *event_types;
1892 int (*handle_irq)(const u8, const u8);
1893 int model;
1894 u16 evport_offset;
1895 u8 camera_power;
1896 u8 bluetooth_power;
1897 u8 wwan_power;
malattia@linux.it33a04452007-04-09 19:26:03 +02001898};
1899
1900static struct sony_pic_dev spic_dev = {
1901 .interrupts = LIST_HEAD_INIT(spic_dev.interrupts),
1902 .ioports = LIST_HEAD_INIT(spic_dev.ioports),
1903};
1904
Alan Jenkins5e6f9722009-09-16 00:05:32 +09001905static int spic_drv_registered;
1906
malattia@linux.it33a04452007-04-09 19:26:03 +02001907/* Event masks */
1908#define SONYPI_JOGGER_MASK 0x00000001
1909#define SONYPI_CAPTURE_MASK 0x00000002
1910#define SONYPI_FNKEY_MASK 0x00000004
1911#define SONYPI_BLUETOOTH_MASK 0x00000008
1912#define SONYPI_PKEY_MASK 0x00000010
1913#define SONYPI_BACK_MASK 0x00000020
1914#define SONYPI_HELP_MASK 0x00000040
1915#define SONYPI_LID_MASK 0x00000080
1916#define SONYPI_ZOOM_MASK 0x00000100
1917#define SONYPI_THUMBPHRASE_MASK 0x00000200
1918#define SONYPI_MEYE_MASK 0x00000400
1919#define SONYPI_MEMORYSTICK_MASK 0x00000800
1920#define SONYPI_BATTERY_MASK 0x00001000
1921#define SONYPI_WIRELESS_MASK 0x00002000
1922
1923struct sonypi_event {
1924 u8 data;
1925 u8 event;
1926};
1927
1928/* The set of possible button release events */
1929static struct sonypi_event sonypi_releaseev[] = {
1930 { 0x00, SONYPI_EVENT_ANYBUTTON_RELEASED },
1931 { 0, 0 }
1932};
1933
1934/* The set of possible jogger events */
1935static struct sonypi_event sonypi_joggerev[] = {
1936 { 0x1f, SONYPI_EVENT_JOGDIAL_UP },
1937 { 0x01, SONYPI_EVENT_JOGDIAL_DOWN },
1938 { 0x5f, SONYPI_EVENT_JOGDIAL_UP_PRESSED },
1939 { 0x41, SONYPI_EVENT_JOGDIAL_DOWN_PRESSED },
1940 { 0x1e, SONYPI_EVENT_JOGDIAL_FAST_UP },
1941 { 0x02, SONYPI_EVENT_JOGDIAL_FAST_DOWN },
1942 { 0x5e, SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED },
1943 { 0x42, SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED },
1944 { 0x1d, SONYPI_EVENT_JOGDIAL_VFAST_UP },
1945 { 0x03, SONYPI_EVENT_JOGDIAL_VFAST_DOWN },
1946 { 0x5d, SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED },
1947 { 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED },
1948 { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED },
1949 { 0, 0 }
1950};
1951
1952/* The set of possible capture button events */
1953static struct sonypi_event sonypi_captureev[] = {
1954 { 0x05, SONYPI_EVENT_CAPTURE_PARTIALPRESSED },
1955 { 0x07, SONYPI_EVENT_CAPTURE_PRESSED },
Mattia Dongili3eb87492008-01-14 18:05:45 +09001956 { 0x40, SONYPI_EVENT_CAPTURE_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02001957 { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED },
1958 { 0, 0 }
1959};
1960
1961/* The set of possible fnkeys events */
1962static struct sonypi_event sonypi_fnkeyev[] = {
1963 { 0x10, SONYPI_EVENT_FNKEY_ESC },
1964 { 0x11, SONYPI_EVENT_FNKEY_F1 },
1965 { 0x12, SONYPI_EVENT_FNKEY_F2 },
1966 { 0x13, SONYPI_EVENT_FNKEY_F3 },
1967 { 0x14, SONYPI_EVENT_FNKEY_F4 },
1968 { 0x15, SONYPI_EVENT_FNKEY_F5 },
1969 { 0x16, SONYPI_EVENT_FNKEY_F6 },
1970 { 0x17, SONYPI_EVENT_FNKEY_F7 },
1971 { 0x18, SONYPI_EVENT_FNKEY_F8 },
1972 { 0x19, SONYPI_EVENT_FNKEY_F9 },
1973 { 0x1a, SONYPI_EVENT_FNKEY_F10 },
1974 { 0x1b, SONYPI_EVENT_FNKEY_F11 },
1975 { 0x1c, SONYPI_EVENT_FNKEY_F12 },
1976 { 0x1f, SONYPI_EVENT_FNKEY_RELEASED },
1977 { 0x21, SONYPI_EVENT_FNKEY_1 },
1978 { 0x22, SONYPI_EVENT_FNKEY_2 },
1979 { 0x31, SONYPI_EVENT_FNKEY_D },
1980 { 0x32, SONYPI_EVENT_FNKEY_E },
1981 { 0x33, SONYPI_EVENT_FNKEY_F },
1982 { 0x34, SONYPI_EVENT_FNKEY_S },
1983 { 0x35, SONYPI_EVENT_FNKEY_B },
1984 { 0x36, SONYPI_EVENT_FNKEY_ONLY },
1985 { 0, 0 }
1986};
1987
1988/* The set of possible program key events */
1989static struct sonypi_event sonypi_pkeyev[] = {
1990 { 0x01, SONYPI_EVENT_PKEY_P1 },
1991 { 0x02, SONYPI_EVENT_PKEY_P2 },
1992 { 0x04, SONYPI_EVENT_PKEY_P3 },
Harald Jenny1cae7102009-03-26 21:58:18 +09001993 { 0x20, SONYPI_EVENT_PKEY_P1 },
malattia@linux.it33a04452007-04-09 19:26:03 +02001994 { 0, 0 }
1995};
1996
1997/* The set of possible bluetooth events */
1998static struct sonypi_event sonypi_blueev[] = {
1999 { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED },
2000 { 0x59, SONYPI_EVENT_BLUETOOTH_ON },
2001 { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF },
2002 { 0, 0 }
2003};
2004
2005/* The set of possible wireless events */
2006static struct sonypi_event sonypi_wlessev[] = {
Mattia Dongili4eeb5022011-02-19 11:52:27 +09002007 { 0x59, SONYPI_EVENT_IGNORE },
2008 { 0x5a, SONYPI_EVENT_IGNORE },
malattia@linux.it33a04452007-04-09 19:26:03 +02002009 { 0, 0 }
2010};
2011
2012/* The set of possible back button events */
2013static struct sonypi_event sonypi_backev[] = {
2014 { 0x20, SONYPI_EVENT_BACK_PRESSED },
2015 { 0, 0 }
2016};
2017
2018/* The set of possible help button events */
2019static struct sonypi_event sonypi_helpev[] = {
2020 { 0x3b, SONYPI_EVENT_HELP_PRESSED },
2021 { 0, 0 }
2022};
2023
2024
2025/* The set of possible lid events */
2026static struct sonypi_event sonypi_lidev[] = {
2027 { 0x51, SONYPI_EVENT_LID_CLOSED },
2028 { 0x50, SONYPI_EVENT_LID_OPENED },
2029 { 0, 0 }
2030};
2031
2032/* The set of possible zoom events */
2033static struct sonypi_event sonypi_zoomev[] = {
2034 { 0x39, SONYPI_EVENT_ZOOM_PRESSED },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002035 { 0x10, SONYPI_EVENT_ZOOM_IN_PRESSED },
2036 { 0x20, SONYPI_EVENT_ZOOM_OUT_PRESSED },
Harald Jenny1cae7102009-03-26 21:58:18 +09002037 { 0x04, SONYPI_EVENT_ZOOM_PRESSED },
malattia@linux.it33a04452007-04-09 19:26:03 +02002038 { 0, 0 }
2039};
2040
2041/* The set of possible thumbphrase events */
2042static struct sonypi_event sonypi_thumbphraseev[] = {
2043 { 0x3a, SONYPI_EVENT_THUMBPHRASE_PRESSED },
2044 { 0, 0 }
2045};
2046
2047/* The set of possible motioneye camera events */
2048static struct sonypi_event sonypi_meyeev[] = {
2049 { 0x00, SONYPI_EVENT_MEYE_FACE },
2050 { 0x01, SONYPI_EVENT_MEYE_OPPOSITE },
2051 { 0, 0 }
2052};
2053
2054/* The set of possible memorystick events */
2055static struct sonypi_event sonypi_memorystickev[] = {
2056 { 0x53, SONYPI_EVENT_MEMORYSTICK_INSERT },
2057 { 0x54, SONYPI_EVENT_MEMORYSTICK_EJECT },
2058 { 0, 0 }
2059};
2060
2061/* The set of possible battery events */
2062static struct sonypi_event sonypi_batteryev[] = {
2063 { 0x20, SONYPI_EVENT_BATTERY_INSERT },
2064 { 0x30, SONYPI_EVENT_BATTERY_REMOVE },
2065 { 0, 0 }
2066};
2067
Harald Jenny1cae7102009-03-26 21:58:18 +09002068/* The set of possible volume events */
2069static struct sonypi_event sonypi_volumeev[] = {
2070 { 0x01, SONYPI_EVENT_VOLUME_INC_PRESSED },
2071 { 0x02, SONYPI_EVENT_VOLUME_DEC_PRESSED },
2072 { 0, 0 }
2073};
2074
2075/* The set of possible brightness events */
2076static struct sonypi_event sonypi_brightnessev[] = {
2077 { 0x80, SONYPI_EVENT_BRIGHTNESS_PRESSED },
2078 { 0, 0 }
2079};
2080
Mattia Dongilide920432008-01-14 18:05:43 +09002081static struct sonypi_eventtypes type1_events[] = {
2082 { 0, 0xffffffff, sonypi_releaseev },
2083 { 0x70, SONYPI_MEYE_MASK, sonypi_meyeev },
2084 { 0x30, SONYPI_LID_MASK, sonypi_lidev },
2085 { 0x60, SONYPI_CAPTURE_MASK, sonypi_captureev },
2086 { 0x10, SONYPI_JOGGER_MASK, sonypi_joggerev },
2087 { 0x20, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2088 { 0x30, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
2089 { 0x40, SONYPI_PKEY_MASK, sonypi_pkeyev },
2090 { 0x30, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2091 { 0x40, SONYPI_BATTERY_MASK, sonypi_batteryev },
2092 { 0 },
2093};
2094static struct sonypi_eventtypes type2_events[] = {
2095 { 0, 0xffffffff, sonypi_releaseev },
2096 { 0x38, SONYPI_LID_MASK, sonypi_lidev },
2097 { 0x11, SONYPI_JOGGER_MASK, sonypi_joggerev },
2098 { 0x61, SONYPI_CAPTURE_MASK, sonypi_captureev },
2099 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2100 { 0x31, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
2101 { 0x08, SONYPI_PKEY_MASK, sonypi_pkeyev },
2102 { 0x11, SONYPI_BACK_MASK, sonypi_backev },
2103 { 0x21, SONYPI_HELP_MASK, sonypi_helpev },
2104 { 0x21, SONYPI_ZOOM_MASK, sonypi_zoomev },
2105 { 0x20, SONYPI_THUMBPHRASE_MASK, sonypi_thumbphraseev },
2106 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2107 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
2108 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
2109 { 0 },
2110};
2111static struct sonypi_eventtypes type3_events[] = {
2112 { 0, 0xffffffff, sonypi_releaseev },
2113 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
2114 { 0x31, SONYPI_WIRELESS_MASK, sonypi_wlessev },
2115 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
2116 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
2117 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002118 { 0x05, SONYPI_PKEY_MASK, sonypi_pkeyev },
2119 { 0x05, SONYPI_ZOOM_MASK, sonypi_zoomev },
2120 { 0x05, SONYPI_CAPTURE_MASK, sonypi_captureev },
Harald Jenny1cae7102009-03-26 21:58:18 +09002121 { 0x05, SONYPI_PKEY_MASK, sonypi_volumeev },
2122 { 0x05, SONYPI_PKEY_MASK, sonypi_brightnessev },
Mattia Dongili3eb87492008-01-14 18:05:45 +09002123 { 0 },
Mattia Dongilide920432008-01-14 18:05:43 +09002124};
2125
Mattia Dongili3eb87492008-01-14 18:05:45 +09002126/* low level spic calls */
malattia@linux.it33a04452007-04-09 19:26:03 +02002127#define ITERATIONS_LONG 10000
2128#define ITERATIONS_SHORT 10
2129#define wait_on_command(command, iterations) { \
2130 unsigned int n = iterations; \
2131 while (--n && (command)) \
2132 udelay(1); \
2133 if (!n) \
2134 dprintk("command failed at %s : %s (line %d)\n", \
Harvey Harrison6e574192008-04-29 00:59:20 -07002135 __FILE__, __func__, __LINE__); \
malattia@linux.it33a04452007-04-09 19:26:03 +02002136}
2137
2138static u8 sony_pic_call1(u8 dev)
2139{
2140 u8 v1, v2;
2141
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002142 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002143 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002144 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2145 v1 = inb_p(spic_dev.cur_ioport->io1.minimum + 4);
2146 v2 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002147 dprintk("sony_pic_call1(0x%.2x): 0x%.4x\n", dev, (v2 << 8) | v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02002148 return v2;
2149}
2150
2151static u8 sony_pic_call2(u8 dev, u8 fn)
2152{
2153 u8 v1;
2154
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002155 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002156 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002157 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2158 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02002159 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002160 outb(fn, spic_dev.cur_ioport->io1.minimum);
2161 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002162 dprintk("sony_pic_call2(0x%.2x - 0x%.2x): 0x%.4x\n", dev, fn, v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02002163 return v1;
2164}
2165
malattia@linux.it49a11de2007-04-09 19:28:56 +02002166static u8 sony_pic_call3(u8 dev, u8 fn, u8 v)
2167{
2168 u8 v1;
2169
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002170 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2171 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
2172 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2173 outb(fn, spic_dev.cur_ioport->io1.minimum);
2174 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
2175 outb(v, spic_dev.cur_ioport->io1.minimum);
2176 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09002177 dprintk("sony_pic_call3(0x%.2x - 0x%.2x - 0x%.2x): 0x%.4x\n",
2178 dev, fn, v, v1);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002179 return v1;
2180}
2181
Mattia Dongili3eb87492008-01-14 18:05:45 +09002182/*
2183 * minidrivers for SPIC models
2184 */
Mattia Dongilie93c8a62009-03-26 21:58:17 +09002185static int type3_handle_irq(const u8 data_mask, const u8 ev)
Mattia Dongili3eb87492008-01-14 18:05:45 +09002186{
2187 /*
2188 * 0x31 could mean we have to take some extra action and wait for
Mattia Dongilie93c8a62009-03-26 21:58:17 +09002189 * the next irq for some Type3 models, it will generate a new
Mattia Dongili3eb87492008-01-14 18:05:45 +09002190 * irq and we can read new data from the device:
2191 * - 0x5c and 0x5f requires 0xA0
2192 * - 0x61 requires 0xB3
2193 */
2194 if (data_mask == 0x31) {
2195 if (ev == 0x5c || ev == 0x5f)
2196 sony_pic_call1(0xA0);
2197 else if (ev == 0x61)
2198 sony_pic_call1(0xB3);
2199 return 0;
2200 }
2201 return 1;
2202}
2203
Mattia Dongili3eb87492008-01-14 18:05:45 +09002204static void sony_pic_detect_device_type(struct sony_pic_dev *dev)
2205{
2206 struct pci_dev *pcidev;
2207
2208 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2209 PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
2210 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002211 dev->model = SONYPI_DEVICE_TYPE1;
2212 dev->evport_offset = SONYPI_TYPE1_OFFSET;
2213 dev->event_types = type1_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002214 goto out;
2215 }
2216
2217 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2218 PCI_DEVICE_ID_INTEL_ICH6_1, NULL);
2219 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002220 dev->model = SONYPI_DEVICE_TYPE2;
2221 dev->evport_offset = SONYPI_TYPE2_OFFSET;
2222 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002223 goto out;
2224 }
2225
2226 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2227 PCI_DEVICE_ID_INTEL_ICH7_1, NULL);
2228 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002229 dev->model = SONYPI_DEVICE_TYPE3;
2230 dev->handle_irq = type3_handle_irq;
2231 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2232 dev->event_types = type3_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002233 goto out;
2234 }
2235
2236 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2237 PCI_DEVICE_ID_INTEL_ICH8_4, NULL);
2238 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002239 dev->model = SONYPI_DEVICE_TYPE3;
2240 dev->handle_irq = type3_handle_irq;
2241 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2242 dev->event_types = type3_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002243 goto out;
2244 }
2245
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09002246 pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
2247 PCI_DEVICE_ID_INTEL_ICH9_1, NULL);
2248 if (pcidev) {
Mattia Dongili31df7142009-09-16 00:05:29 +09002249 dev->model = SONYPI_DEVICE_TYPE3;
2250 dev->handle_irq = type3_handle_irq;
2251 dev->evport_offset = SONYPI_TYPE3_OFFSET;
2252 dev->event_types = type3_events;
ISHIKAWA Mutsumid5b02692009-03-26 21:58:20 +09002253 goto out;
2254 }
2255
Mattia Dongili3eb87492008-01-14 18:05:45 +09002256 /* default */
Mattia Dongili31df7142009-09-16 00:05:29 +09002257 dev->model = SONYPI_DEVICE_TYPE2;
2258 dev->evport_offset = SONYPI_TYPE2_OFFSET;
2259 dev->event_types = type2_events;
Mattia Dongili3eb87492008-01-14 18:05:45 +09002260
2261out:
2262 if (pcidev)
2263 pci_dev_put(pcidev);
2264
Joe Perches50f581a2011-03-29 15:21:48 -07002265 pr_info("detected Type%d model\n",
2266 dev->model == SONYPI_DEVICE_TYPE1 ? 1 :
2267 dev->model == SONYPI_DEVICE_TYPE2 ? 2 : 3);
Mattia Dongili3eb87492008-01-14 18:05:45 +09002268}
2269
malattia@linux.it49a11de2007-04-09 19:28:56 +02002270/* camera tests and poweron/poweroff */
2271#define SONYPI_CAMERA_PICTURE 5
malattia@linux.it49a11de2007-04-09 19:28:56 +02002272#define SONYPI_CAMERA_CONTROL 0x10
malattia@linux.ite3646322007-04-28 23:34:22 +09002273
2274#define SONYPI_CAMERA_BRIGHTNESS 0
2275#define SONYPI_CAMERA_CONTRAST 1
2276#define SONYPI_CAMERA_HUE 2
2277#define SONYPI_CAMERA_COLOR 3
2278#define SONYPI_CAMERA_SHARPNESS 4
2279
2280#define SONYPI_CAMERA_EXPOSURE_MASK 0xC
2281#define SONYPI_CAMERA_WHITE_BALANCE_MASK 0x3
2282#define SONYPI_CAMERA_PICTURE_MODE_MASK 0x30
2283#define SONYPI_CAMERA_MUTE_MASK 0x40
2284
2285/* the rest don't need a loop until not 0xff */
2286#define SONYPI_CAMERA_AGC 6
2287#define SONYPI_CAMERA_AGC_MASK 0x30
2288#define SONYPI_CAMERA_SHUTTER_MASK 0x7
2289
2290#define SONYPI_CAMERA_SHUTDOWN_REQUEST 7
2291#define SONYPI_CAMERA_CONTROL 0x10
2292
2293#define SONYPI_CAMERA_STATUS 7
2294#define SONYPI_CAMERA_STATUS_READY 0x2
2295#define SONYPI_CAMERA_STATUS_POSITION 0x4
2296
2297#define SONYPI_DIRECTION_BACKWARDS 0x4
2298
2299#define SONYPI_CAMERA_REVISION 8
2300#define SONYPI_CAMERA_ROMVERSION 9
malattia@linux.it49a11de2007-04-09 19:28:56 +02002301
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002302static int __sony_pic_camera_ready(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002303{
2304 u8 v;
2305
2306 v = sony_pic_call2(0x8f, SONYPI_CAMERA_STATUS);
2307 return (v != 0xff && (v & SONYPI_CAMERA_STATUS_READY));
2308}
2309
malattia@linux.ite3646322007-04-28 23:34:22 +09002310static int __sony_pic_camera_off(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002311{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002312 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07002313 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002314 return -ENODEV;
2315 }
2316
malattia@linux.it49a11de2007-04-09 19:28:56 +02002317 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE,
2318 SONYPI_CAMERA_MUTE_MASK),
2319 ITERATIONS_SHORT);
2320
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002321 if (spic_dev.camera_power) {
2322 sony_pic_call2(0x91, 0);
2323 spic_dev.camera_power = 0;
2324 }
2325 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002326}
2327
malattia@linux.ite3646322007-04-28 23:34:22 +09002328static int __sony_pic_camera_on(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002329{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002330 int i, j, x;
2331
2332 if (!camera) {
Joe Perches50f581a2011-03-29 15:21:48 -07002333 pr_warn("camera control not enabled\n");
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002334 return -ENODEV;
2335 }
malattia@linux.it49a11de2007-04-09 19:28:56 +02002336
2337 if (spic_dev.camera_power)
malattia@linux.ite3646322007-04-28 23:34:22 +09002338 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002339
2340 for (j = 5; j > 0; j--) {
2341
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002342 for (x = 0; x < 100 && sony_pic_call2(0x91, 0x1); x++)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002343 msleep(10);
2344 sony_pic_call1(0x93);
2345
2346 for (i = 400; i > 0; i--) {
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002347 if (__sony_pic_camera_ready())
malattia@linux.it49a11de2007-04-09 19:28:56 +02002348 break;
2349 msleep(10);
2350 }
2351 if (i)
2352 break;
2353 }
2354
2355 if (j == 0) {
Joe Perches50f581a2011-03-29 15:21:48 -07002356 pr_warn("failed to power on camera\n");
malattia@linux.ite3646322007-04-28 23:34:22 +09002357 return -ENODEV;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002358 }
2359
2360 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTROL,
2361 0x5a),
2362 ITERATIONS_SHORT);
2363
2364 spic_dev.camera_power = 1;
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002365 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002366}
2367
malattia@linux.ite3646322007-04-28 23:34:22 +09002368/* External camera command (exported to the motion eye v4l driver) */
2369int sony_pic_camera_command(int command, u8 value)
2370{
2371 if (!camera)
2372 return -EIO;
2373
2374 mutex_lock(&spic_dev.lock);
2375
2376 switch (command) {
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002377 case SONY_PIC_COMMAND_SETCAMERA:
malattia@linux.ite3646322007-04-28 23:34:22 +09002378 if (value)
2379 __sony_pic_camera_on();
2380 else
2381 __sony_pic_camera_off();
2382 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002383 case SONY_PIC_COMMAND_SETCAMERABRIGHTNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09002384 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_BRIGHTNESS, value),
2385 ITERATIONS_SHORT);
2386 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002387 case SONY_PIC_COMMAND_SETCAMERACONTRAST:
malattia@linux.ite3646322007-04-28 23:34:22 +09002388 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTRAST, value),
2389 ITERATIONS_SHORT);
2390 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002391 case SONY_PIC_COMMAND_SETCAMERAHUE:
malattia@linux.ite3646322007-04-28 23:34:22 +09002392 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_HUE, value),
2393 ITERATIONS_SHORT);
2394 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002395 case SONY_PIC_COMMAND_SETCAMERACOLOR:
malattia@linux.ite3646322007-04-28 23:34:22 +09002396 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_COLOR, value),
2397 ITERATIONS_SHORT);
2398 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002399 case SONY_PIC_COMMAND_SETCAMERASHARPNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09002400 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_SHARPNESS, value),
2401 ITERATIONS_SHORT);
2402 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002403 case SONY_PIC_COMMAND_SETCAMERAPICTURE:
malattia@linux.ite3646322007-04-28 23:34:22 +09002404 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, value),
2405 ITERATIONS_SHORT);
2406 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09002407 case SONY_PIC_COMMAND_SETCAMERAAGC:
malattia@linux.ite3646322007-04-28 23:34:22 +09002408 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_AGC, value),
2409 ITERATIONS_SHORT);
2410 break;
2411 default:
Joe Perches50f581a2011-03-29 15:21:48 -07002412 pr_err("sony_pic_camera_command invalid: %d\n", command);
malattia@linux.ite3646322007-04-28 23:34:22 +09002413 break;
2414 }
2415 mutex_unlock(&spic_dev.lock);
2416 return 0;
2417}
2418EXPORT_SYMBOL(sony_pic_camera_command);
2419
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002420/* gprs/edge modem (SZ460N and SZ210P), thanks to Joshua Wise */
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002421static void __sony_pic_set_wwanpower(u8 state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002422{
2423 state = !!state;
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002424 if (spic_dev.wwan_power == state)
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002425 return;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002426 sony_pic_call2(0xB0, state);
Sergey Yanovich3ad1b762009-03-26 21:58:21 +09002427 sony_pic_call1(0x82);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002428 spic_dev.wwan_power = state;
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002429}
2430
2431static ssize_t sony_pic_wwanpower_store(struct device *dev,
2432 struct device_attribute *attr,
2433 const char *buffer, size_t count)
2434{
2435 unsigned long value;
2436 if (count > 31)
2437 return -EINVAL;
2438
2439 value = simple_strtoul(buffer, NULL, 10);
Mattia Dongilic9f1e6f2009-03-26 21:58:23 +09002440 mutex_lock(&spic_dev.lock);
2441 __sony_pic_set_wwanpower(value);
2442 mutex_unlock(&spic_dev.lock);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002443
2444 return count;
2445}
2446
2447static ssize_t sony_pic_wwanpower_show(struct device *dev,
2448 struct device_attribute *attr, char *buffer)
2449{
2450 ssize_t count;
2451 mutex_lock(&spic_dev.lock);
2452 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.wwan_power);
2453 mutex_unlock(&spic_dev.lock);
2454 return count;
2455}
2456
malattia@linux.it49a11de2007-04-09 19:28:56 +02002457/* bluetooth subsystem power state */
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002458static void __sony_pic_set_bluetoothpower(u8 state)
malattia@linux.it49a11de2007-04-09 19:28:56 +02002459{
2460 state = !!state;
2461 if (spic_dev.bluetooth_power == state)
2462 return;
2463 sony_pic_call2(0x96, state);
2464 sony_pic_call1(0x82);
2465 spic_dev.bluetooth_power = state;
2466}
2467
2468static ssize_t sony_pic_bluetoothpower_store(struct device *dev,
2469 struct device_attribute *attr,
2470 const char *buffer, size_t count)
2471{
2472 unsigned long value;
2473 if (count > 31)
2474 return -EINVAL;
2475
2476 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002477 mutex_lock(&spic_dev.lock);
2478 __sony_pic_set_bluetoothpower(value);
2479 mutex_unlock(&spic_dev.lock);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002480
2481 return count;
2482}
2483
2484static ssize_t sony_pic_bluetoothpower_show(struct device *dev,
2485 struct device_attribute *attr, char *buffer)
2486{
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002487 ssize_t count = 0;
2488 mutex_lock(&spic_dev.lock);
2489 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.bluetooth_power);
2490 mutex_unlock(&spic_dev.lock);
2491 return count;
malattia@linux.it49a11de2007-04-09 19:28:56 +02002492}
2493
2494/* fan speed */
2495/* FAN0 information (reverse engineered from ACPI tables) */
2496#define SONY_PIC_FAN0_STATUS 0x93
malattia@linux.it7b153f32007-04-09 19:31:25 +02002497static int sony_pic_set_fanspeed(unsigned long value)
2498{
2499 return ec_write(SONY_PIC_FAN0_STATUS, value);
2500}
2501
2502static int sony_pic_get_fanspeed(u8 *value)
2503{
2504 return ec_read(SONY_PIC_FAN0_STATUS, value);
2505}
2506
malattia@linux.it49a11de2007-04-09 19:28:56 +02002507static ssize_t sony_pic_fanspeed_store(struct device *dev,
2508 struct device_attribute *attr,
2509 const char *buffer, size_t count)
2510{
2511 unsigned long value;
2512 if (count > 31)
2513 return -EINVAL;
2514
2515 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002516 if (sony_pic_set_fanspeed(value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02002517 return -EIO;
2518
2519 return count;
2520}
2521
2522static ssize_t sony_pic_fanspeed_show(struct device *dev,
2523 struct device_attribute *attr, char *buffer)
2524{
2525 u8 value = 0;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002526 if (sony_pic_get_fanspeed(&value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02002527 return -EIO;
2528
2529 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
2530}
2531
2532#define SPIC_ATTR(_name, _mode) \
2533struct device_attribute spic_attr_##_name = __ATTR(_name, \
2534 _mode, sony_pic_## _name ##_show, \
2535 sony_pic_## _name ##_store)
2536
malattia@linux.it49a11de2007-04-09 19:28:56 +02002537static SPIC_ATTR(bluetoothpower, 0644);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002538static SPIC_ATTR(wwanpower, 0644);
malattia@linux.it49a11de2007-04-09 19:28:56 +02002539static SPIC_ATTR(fanspeed, 0644);
2540
2541static struct attribute *spic_attributes[] = {
malattia@linux.it49a11de2007-04-09 19:28:56 +02002542 &spic_attr_bluetoothpower.attr,
malattia@linux.it9476cdf2007-04-28 23:21:42 +09002543 &spic_attr_wwanpower.attr,
malattia@linux.it49a11de2007-04-09 19:28:56 +02002544 &spic_attr_fanspeed.attr,
2545 NULL
2546};
2547
2548static struct attribute_group spic_attribute_group = {
2549 .attrs = spic_attributes
2550};
2551
malattia@linux.it7b153f32007-04-09 19:31:25 +02002552/******** SONYPI compatibility **********/
Mattia Dongilia64e62a2007-05-01 11:19:53 +09002553#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +02002554
2555/* battery / brightness / temperature addresses */
2556#define SONYPI_BAT_FLAGS 0x81
2557#define SONYPI_LCD_LIGHT 0x96
2558#define SONYPI_BAT1_PCTRM 0xa0
2559#define SONYPI_BAT1_LEFT 0xa2
2560#define SONYPI_BAT1_MAXRT 0xa4
2561#define SONYPI_BAT2_PCTRM 0xa8
2562#define SONYPI_BAT2_LEFT 0xaa
2563#define SONYPI_BAT2_MAXRT 0xac
2564#define SONYPI_BAT1_MAXTK 0xb0
2565#define SONYPI_BAT1_FULL 0xb2
2566#define SONYPI_BAT2_MAXTK 0xb8
2567#define SONYPI_BAT2_FULL 0xba
2568#define SONYPI_TEMP_STATUS 0xC1
2569
2570struct sonypi_compat_s {
2571 struct fasync_struct *fifo_async;
Stefani Seibold45465482009-12-21 14:37:26 -08002572 struct kfifo fifo;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002573 spinlock_t fifo_lock;
2574 wait_queue_head_t fifo_proc_list;
2575 atomic_t open_count;
2576};
2577static struct sonypi_compat_s sonypi_compat = {
2578 .open_count = ATOMIC_INIT(0),
2579};
2580
2581static int sonypi_misc_fasync(int fd, struct file *filp, int on)
2582{
Jonathan Corbet60aa4922009-02-01 14:52:56 -07002583 return fasync_helper(fd, filp, on, &sonypi_compat.fifo_async);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002584}
2585
2586static int sonypi_misc_release(struct inode *inode, struct file *file)
2587{
malattia@linux.it7b153f32007-04-09 19:31:25 +02002588 atomic_dec(&sonypi_compat.open_count);
2589 return 0;
2590}
2591
2592static int sonypi_misc_open(struct inode *inode, struct file *file)
2593{
2594 /* Flush input queue on first open */
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002595 unsigned long flags;
2596
Stefani Seibold45465482009-12-21 14:37:26 -08002597 spin_lock_irqsave(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002598
malattia@linux.it7b153f32007-04-09 19:31:25 +02002599 if (atomic_inc_return(&sonypi_compat.open_count) == 1)
Stefani Seibolde64c0262009-12-21 14:37:28 -08002600 kfifo_reset(&sonypi_compat.fifo);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002601
Stefani Seibold45465482009-12-21 14:37:26 -08002602 spin_unlock_irqrestore(&sonypi_compat.fifo_lock, flags);
Alessio Igor Bogani4ef4cbb2009-03-26 21:58:25 +09002603
malattia@linux.it7b153f32007-04-09 19:31:25 +02002604 return 0;
2605}
2606
2607static ssize_t sonypi_misc_read(struct file *file, char __user *buf,
2608 size_t count, loff_t *pos)
2609{
2610 ssize_t ret;
2611 unsigned char c;
2612
Stefani Seibold45465482009-12-21 14:37:26 -08002613 if ((kfifo_len(&sonypi_compat.fifo) == 0) &&
malattia@linux.it7b153f32007-04-09 19:31:25 +02002614 (file->f_flags & O_NONBLOCK))
2615 return -EAGAIN;
2616
2617 ret = wait_event_interruptible(sonypi_compat.fifo_proc_list,
Stefani Seibold45465482009-12-21 14:37:26 -08002618 kfifo_len(&sonypi_compat.fifo) != 0);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002619 if (ret)
2620 return ret;
2621
2622 while (ret < count &&
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002623 (kfifo_out_locked(&sonypi_compat.fifo, &c, sizeof(c),
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002624 &sonypi_compat.fifo_lock) == sizeof(c))) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002625 if (put_user(c, buf++))
2626 return -EFAULT;
2627 ret++;
2628 }
2629
2630 if (ret > 0) {
2631 struct inode *inode = file->f_path.dentry->d_inode;
2632 inode->i_atime = current_fs_time(inode->i_sb);
2633 }
2634
2635 return ret;
2636}
2637
2638static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait)
2639{
2640 poll_wait(file, &sonypi_compat.fifo_proc_list, wait);
Stefani Seibold45465482009-12-21 14:37:26 -08002641 if (kfifo_len(&sonypi_compat.fifo))
malattia@linux.it7b153f32007-04-09 19:31:25 +02002642 return POLLIN | POLLRDNORM;
2643 return 0;
2644}
2645
2646static int ec_read16(u8 addr, u16 *value)
2647{
2648 u8 val_lb, val_hb;
2649 if (ec_read(addr, &val_lb))
2650 return -1;
2651 if (ec_read(addr + 1, &val_hb))
2652 return -1;
2653 *value = val_lb | (val_hb << 8);
2654 return 0;
2655}
2656
Alan Cox2b24ef02009-03-26 21:58:19 +09002657static long sonypi_misc_ioctl(struct file *fp, unsigned int cmd,
2658 unsigned long arg)
malattia@linux.it7b153f32007-04-09 19:31:25 +02002659{
2660 int ret = 0;
2661 void __user *argp = (void __user *)arg;
2662 u8 val8;
2663 u16 val16;
2664 int value;
2665
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002666 mutex_lock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002667 switch (cmd) {
2668 case SONYPI_IOCGBRT:
Mattia Dongili62d2f232011-05-09 10:20:29 -04002669 if (sony_bl_props.dev == NULL) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002670 ret = -EIO;
2671 break;
2672 }
2673 if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value)) {
2674 ret = -EIO;
2675 break;
2676 }
2677 val8 = ((value & 0xff) - 1) << 5;
2678 if (copy_to_user(argp, &val8, sizeof(val8)))
2679 ret = -EFAULT;
2680 break;
2681 case SONYPI_IOCSBRT:
Mattia Dongili62d2f232011-05-09 10:20:29 -04002682 if (sony_bl_props.dev == NULL) {
malattia@linux.it7b153f32007-04-09 19:31:25 +02002683 ret = -EIO;
2684 break;
2685 }
2686 if (copy_from_user(&val8, argp, sizeof(val8))) {
2687 ret = -EFAULT;
2688 break;
2689 }
2690 if (acpi_callsetfunc(sony_nc_acpi_handle, "SBRT",
2691 (val8 >> 5) + 1, NULL)) {
2692 ret = -EIO;
2693 break;
2694 }
2695 /* sync the backlight device status */
Mattia Dongili62d2f232011-05-09 10:20:29 -04002696 sony_bl_props.dev->props.brightness =
2697 sony_backlight_get_brightness(sony_bl_props.dev);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002698 break;
2699 case SONYPI_IOCGBAT1CAP:
2700 if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
2701 ret = -EIO;
2702 break;
2703 }
2704 if (copy_to_user(argp, &val16, sizeof(val16)))
2705 ret = -EFAULT;
2706 break;
2707 case SONYPI_IOCGBAT1REM:
2708 if (ec_read16(SONYPI_BAT1_LEFT, &val16)) {
2709 ret = -EIO;
2710 break;
2711 }
2712 if (copy_to_user(argp, &val16, sizeof(val16)))
2713 ret = -EFAULT;
2714 break;
2715 case SONYPI_IOCGBAT2CAP:
2716 if (ec_read16(SONYPI_BAT2_FULL, &val16)) {
2717 ret = -EIO;
2718 break;
2719 }
2720 if (copy_to_user(argp, &val16, sizeof(val16)))
2721 ret = -EFAULT;
2722 break;
2723 case SONYPI_IOCGBAT2REM:
2724 if (ec_read16(SONYPI_BAT2_LEFT, &val16)) {
2725 ret = -EIO;
2726 break;
2727 }
2728 if (copy_to_user(argp, &val16, sizeof(val16)))
2729 ret = -EFAULT;
2730 break;
2731 case SONYPI_IOCGBATFLAGS:
2732 if (ec_read(SONYPI_BAT_FLAGS, &val8)) {
2733 ret = -EIO;
2734 break;
2735 }
2736 val8 &= 0x07;
2737 if (copy_to_user(argp, &val8, sizeof(val8)))
2738 ret = -EFAULT;
2739 break;
2740 case SONYPI_IOCGBLUE:
2741 val8 = spic_dev.bluetooth_power;
2742 if (copy_to_user(argp, &val8, sizeof(val8)))
2743 ret = -EFAULT;
2744 break;
2745 case SONYPI_IOCSBLUE:
2746 if (copy_from_user(&val8, argp, sizeof(val8))) {
2747 ret = -EFAULT;
2748 break;
2749 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002750 __sony_pic_set_bluetoothpower(val8);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002751 break;
2752 /* FAN Controls */
2753 case SONYPI_IOCGFAN:
2754 if (sony_pic_get_fanspeed(&val8)) {
2755 ret = -EIO;
2756 break;
2757 }
2758 if (copy_to_user(argp, &val8, sizeof(val8)))
2759 ret = -EFAULT;
2760 break;
2761 case SONYPI_IOCSFAN:
2762 if (copy_from_user(&val8, argp, sizeof(val8))) {
2763 ret = -EFAULT;
2764 break;
2765 }
2766 if (sony_pic_set_fanspeed(val8))
2767 ret = -EIO;
2768 break;
2769 /* GET Temperature (useful under APM) */
2770 case SONYPI_IOCGTEMP:
2771 if (ec_read(SONYPI_TEMP_STATUS, &val8)) {
2772 ret = -EIO;
2773 break;
2774 }
2775 if (copy_to_user(argp, &val8, sizeof(val8)))
2776 ret = -EFAULT;
2777 break;
2778 default:
2779 ret = -EINVAL;
2780 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002781 mutex_unlock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002782 return ret;
2783}
2784
2785static const struct file_operations sonypi_misc_fops = {
2786 .owner = THIS_MODULE,
2787 .read = sonypi_misc_read,
2788 .poll = sonypi_misc_poll,
2789 .open = sonypi_misc_open,
2790 .release = sonypi_misc_release,
2791 .fasync = sonypi_misc_fasync,
Alan Cox2b24ef02009-03-26 21:58:19 +09002792 .unlocked_ioctl = sonypi_misc_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002793 .llseek = noop_llseek,
malattia@linux.it7b153f32007-04-09 19:31:25 +02002794};
2795
2796static struct miscdevice sonypi_misc_device = {
2797 .minor = MISC_DYNAMIC_MINOR,
2798 .name = "sonypi",
2799 .fops = &sonypi_misc_fops,
2800};
2801
2802static void sonypi_compat_report_event(u8 event)
2803{
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002804 kfifo_in_locked(&sonypi_compat.fifo, (unsigned char *)&event,
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002805 sizeof(event), &sonypi_compat.fifo_lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002806 kill_fasync(&sonypi_compat.fifo_async, SIGIO, POLL_IN);
2807 wake_up_interruptible(&sonypi_compat.fifo_proc_list);
2808}
2809
2810static int sonypi_compat_init(void)
2811{
2812 int error;
2813
2814 spin_lock_init(&sonypi_compat.fifo_lock);
Stefani Seibold45465482009-12-21 14:37:26 -08002815 error =
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002816 kfifo_alloc(&sonypi_compat.fifo, SONY_LAPTOP_BUF_SIZE, GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -08002817 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07002818 pr_err("kfifo_alloc failed\n");
Stefani Seibold45465482009-12-21 14:37:26 -08002819 return error;
malattia@linux.it7b153f32007-04-09 19:31:25 +02002820 }
2821
2822 init_waitqueue_head(&sonypi_compat.fifo_proc_list);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002823
2824 if (minor != -1)
2825 sonypi_misc_device.minor = minor;
2826 error = misc_register(&sonypi_misc_device);
2827 if (error) {
Joe Perches50f581a2011-03-29 15:21:48 -07002828 pr_err("misc_register failed\n");
malattia@linux.it7b153f32007-04-09 19:31:25 +02002829 goto err_free_kfifo;
2830 }
2831 if (minor == -1)
Joe Perches50f581a2011-03-29 15:21:48 -07002832 pr_info("device allocated minor is %d\n",
2833 sonypi_misc_device.minor);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002834
2835 return 0;
2836
2837err_free_kfifo:
Stefani Seibold45465482009-12-21 14:37:26 -08002838 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002839 return error;
2840}
2841
2842static void sonypi_compat_exit(void)
2843{
2844 misc_deregister(&sonypi_misc_device);
Stefani Seibold45465482009-12-21 14:37:26 -08002845 kfifo_free(&sonypi_compat.fifo);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002846}
2847#else
2848static int sonypi_compat_init(void) { return 0; }
2849static void sonypi_compat_exit(void) { }
2850static void sonypi_compat_report_event(u8 event) { }
Mattia Dongilia64e62a2007-05-01 11:19:53 +09002851#endif /* CONFIG_SONYPI_COMPAT */
malattia@linux.it7b153f32007-04-09 19:31:25 +02002852
malattia@linux.it1549ee62007-04-09 10:19:08 +02002853/*
malattia@linux.it33a04452007-04-09 19:26:03 +02002854 * ACPI callbacks
malattia@linux.it1549ee62007-04-09 10:19:08 +02002855 */
malattia@linux.it33a04452007-04-09 19:26:03 +02002856static acpi_status
2857sony_pic_read_possible_resource(struct acpi_resource *resource, void *context)
2858{
2859 u32 i;
2860 struct sony_pic_dev *dev = (struct sony_pic_dev *)context;
2861
2862 switch (resource->type) {
2863 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002864 {
2865 /* start IO enumeration */
2866 struct sony_pic_ioport *ioport = kzalloc(sizeof(*ioport), GFP_KERNEL);
2867 if (!ioport)
2868 return AE_ERROR;
2869
2870 list_add(&ioport->list, &dev->ioports);
2871 return AE_OK;
2872 }
2873
malattia@linux.it33a04452007-04-09 19:26:03 +02002874 case ACPI_RESOURCE_TYPE_END_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002875 /* end IO enumeration */
malattia@linux.it33a04452007-04-09 19:26:03 +02002876 return AE_OK;
2877
2878 case ACPI_RESOURCE_TYPE_IRQ:
2879 {
2880 struct acpi_resource_irq *p = &resource->data.irq;
2881 struct sony_pic_irq *interrupt = NULL;
2882 if (!p || !p->interrupt_count) {
2883 /*
2884 * IRQ descriptors may have no IRQ# bits set,
2885 * particularly those those w/ _STA disabled
2886 */
2887 dprintk("Blank IRQ resource\n");
2888 return AE_OK;
2889 }
2890 for (i = 0; i < p->interrupt_count; i++) {
2891 if (!p->interrupts[i]) {
Joe Perches50f581a2011-03-29 15:21:48 -07002892 pr_warn("Invalid IRQ %d\n",
2893 p->interrupts[i]);
malattia@linux.it33a04452007-04-09 19:26:03 +02002894 continue;
2895 }
2896 interrupt = kzalloc(sizeof(*interrupt),
2897 GFP_KERNEL);
2898 if (!interrupt)
2899 return AE_ERROR;
2900
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002901 list_add(&interrupt->list, &dev->interrupts);
malattia@linux.it33a04452007-04-09 19:26:03 +02002902 interrupt->irq.triggering = p->triggering;
2903 interrupt->irq.polarity = p->polarity;
2904 interrupt->irq.sharable = p->sharable;
2905 interrupt->irq.interrupt_count = 1;
2906 interrupt->irq.interrupts[0] = p->interrupts[i];
2907 }
2908 return AE_OK;
2909 }
2910 case ACPI_RESOURCE_TYPE_IO:
2911 {
2912 struct acpi_resource_io *io = &resource->data.io;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002913 struct sony_pic_ioport *ioport =
2914 list_first_entry(&dev->ioports, struct sony_pic_ioport, list);
malattia@linux.it33a04452007-04-09 19:26:03 +02002915 if (!io) {
2916 dprintk("Blank IO resource\n");
2917 return AE_OK;
2918 }
2919
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002920 if (!ioport->io1.minimum) {
2921 memcpy(&ioport->io1, io, sizeof(*io));
2922 dprintk("IO1 at 0x%.4x (0x%.2x)\n", ioport->io1.minimum,
2923 ioport->io1.address_length);
2924 }
2925 else if (!ioport->io2.minimum) {
2926 memcpy(&ioport->io2, io, sizeof(*io));
2927 dprintk("IO2 at 0x%.4x (0x%.2x)\n", ioport->io2.minimum,
2928 ioport->io2.address_length);
2929 }
2930 else {
Joe Perches50f581a2011-03-29 15:21:48 -07002931 pr_err("Unknown SPIC Type, more than 2 IO Ports\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002932 return AE_ERROR;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002933 }
malattia@linux.it33a04452007-04-09 19:26:03 +02002934 return AE_OK;
2935 }
2936 default:
2937 dprintk("Resource %d isn't an IRQ nor an IO port\n",
Joe Perches50f581a2011-03-29 15:21:48 -07002938 resource->type);
malattia@linux.it33a04452007-04-09 19:26:03 +02002939
2940 case ACPI_RESOURCE_TYPE_END_TAG:
2941 return AE_OK;
2942 }
2943 return AE_CTRL_TERMINATE;
2944}
2945
2946static int sony_pic_possible_resources(struct acpi_device *device)
2947{
2948 int result = 0;
2949 acpi_status status = AE_OK;
2950
2951 if (!device)
2952 return -EINVAL;
2953
2954 /* get device status */
2955 /* see acpi_pci_link_get_current acpi_pci_link_get_possible */
2956 dprintk("Evaluating _STA\n");
2957 result = acpi_bus_get_status(device);
2958 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07002959 pr_warn("Unable to read status\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002960 goto end;
2961 }
2962
2963 if (!device->status.enabled)
2964 dprintk("Device disabled\n");
2965 else
2966 dprintk("Device enabled\n");
2967
2968 /*
2969 * Query and parse 'method'
2970 */
2971 dprintk("Evaluating %s\n", METHOD_NAME__PRS);
2972 status = acpi_walk_resources(device->handle, METHOD_NAME__PRS,
2973 sony_pic_read_possible_resource, &spic_dev);
2974 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07002975 pr_warn("Failure evaluating %s\n", METHOD_NAME__PRS);
malattia@linux.it33a04452007-04-09 19:26:03 +02002976 result = -ENODEV;
2977 }
2978end:
2979 return result;
2980}
2981
2982/*
2983 * Disable the spic device by calling its _DIS method
2984 */
2985static int sony_pic_disable(struct acpi_device *device)
2986{
Matthew Garrett6158d3a2008-10-29 14:01:03 -07002987 acpi_status ret = acpi_evaluate_object(device->handle, "_DIS", NULL,
2988 NULL);
2989
2990 if (ACPI_FAILURE(ret) && ret != AE_NOT_FOUND)
malattia@linux.it33a04452007-04-09 19:26:03 +02002991 return -ENXIO;
2992
2993 dprintk("Device disabled\n");
2994 return 0;
2995}
2996
2997
2998/*
2999 * Based on drivers/acpi/pci_link.c:acpi_pci_link_set
3000 *
3001 * Call _SRS to set current resources
3002 */
3003static int sony_pic_enable(struct acpi_device *device,
3004 struct sony_pic_ioport *ioport, struct sony_pic_irq *irq)
3005{
3006 acpi_status status;
3007 int result = 0;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003008 /* Type 1 resource layout is:
3009 * IO
3010 * IO
3011 * IRQNoFlags
3012 * End
3013 *
3014 * Type 2 and 3 resource layout is:
3015 * IO
3016 * IRQNoFlags
3017 * End
3018 */
malattia@linux.it33a04452007-04-09 19:26:03 +02003019 struct {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003020 struct acpi_resource res1;
3021 struct acpi_resource res2;
3022 struct acpi_resource res3;
3023 struct acpi_resource res4;
malattia@linux.it33a04452007-04-09 19:26:03 +02003024 } *resource;
3025 struct acpi_buffer buffer = { 0, NULL };
3026
3027 if (!ioport || !irq)
3028 return -EINVAL;
3029
3030 /* init acpi_buffer */
3031 resource = kzalloc(sizeof(*resource) + 1, GFP_KERNEL);
3032 if (!resource)
3033 return -ENOMEM;
3034
3035 buffer.length = sizeof(*resource) + 1;
3036 buffer.pointer = resource;
3037
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003038 /* setup Type 1 resources */
Mattia Dongili31df7142009-09-16 00:05:29 +09003039 if (spic_dev.model == SONYPI_DEVICE_TYPE1) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003040
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003041 /* setup io resources */
3042 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
3043 resource->res1.length = sizeof(struct acpi_resource);
3044 memcpy(&resource->res1.data.io, &ioport->io1,
3045 sizeof(struct acpi_resource_io));
malattia@linux.it33a04452007-04-09 19:26:03 +02003046
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003047 resource->res2.type = ACPI_RESOURCE_TYPE_IO;
3048 resource->res2.length = sizeof(struct acpi_resource);
3049 memcpy(&resource->res2.data.io, &ioport->io2,
3050 sizeof(struct acpi_resource_io));
3051
3052 /* setup irq resource */
3053 resource->res3.type = ACPI_RESOURCE_TYPE_IRQ;
3054 resource->res3.length = sizeof(struct acpi_resource);
3055 memcpy(&resource->res3.data.irq, &irq->irq,
3056 sizeof(struct acpi_resource_irq));
3057 /* we requested a shared irq */
3058 resource->res3.data.irq.sharable = ACPI_SHARED;
3059
3060 resource->res4.type = ACPI_RESOURCE_TYPE_END_TAG;
3061
3062 }
3063 /* setup Type 2/3 resources */
3064 else {
3065 /* setup io resource */
3066 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
3067 resource->res1.length = sizeof(struct acpi_resource);
3068 memcpy(&resource->res1.data.io, &ioport->io1,
3069 sizeof(struct acpi_resource_io));
3070
3071 /* setup irq resource */
3072 resource->res2.type = ACPI_RESOURCE_TYPE_IRQ;
3073 resource->res2.length = sizeof(struct acpi_resource);
3074 memcpy(&resource->res2.data.irq, &irq->irq,
3075 sizeof(struct acpi_resource_irq));
3076 /* we requested a shared irq */
3077 resource->res2.data.irq.sharable = ACPI_SHARED;
3078
3079 resource->res3.type = ACPI_RESOURCE_TYPE_END_TAG;
3080 }
malattia@linux.it33a04452007-04-09 19:26:03 +02003081
3082 /* Attempt to set the resource */
3083 dprintk("Evaluating _SRS\n");
3084 status = acpi_set_current_resources(device->handle, &buffer);
3085
3086 /* check for total failure */
3087 if (ACPI_FAILURE(status)) {
Joe Perches50f581a2011-03-29 15:21:48 -07003088 pr_err("Error evaluating _SRS\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003089 result = -ENODEV;
3090 goto end;
3091 }
3092
3093 /* Necessary device initializations calls (from sonypi) */
3094 sony_pic_call1(0x82);
3095 sony_pic_call2(0x81, 0xff);
3096 sony_pic_call1(compat ? 0x92 : 0x82);
3097
3098end:
3099 kfree(resource);
3100 return result;
3101}
3102
3103/*****************
3104 *
3105 * ISR: some event is available
3106 *
3107 *****************/
3108static irqreturn_t sony_pic_irq(int irq, void *dev_id)
3109{
3110 int i, j;
malattia@linux.it33a04452007-04-09 19:26:03 +02003111 u8 ev = 0;
3112 u8 data_mask = 0;
3113 u8 device_event = 0;
3114
3115 struct sony_pic_dev *dev = (struct sony_pic_dev *) dev_id;
3116
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003117 ev = inb_p(dev->cur_ioport->io1.minimum);
3118 if (dev->cur_ioport->io2.minimum)
3119 data_mask = inb_p(dev->cur_ioport->io2.minimum);
3120 else
Mattia Dongilide920432008-01-14 18:05:43 +09003121 data_mask = inb_p(dev->cur_ioport->io1.minimum +
Mattia Dongili31df7142009-09-16 00:05:29 +09003122 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003123
Mattia Dongili22a17782007-07-16 02:34:39 +09003124 dprintk("event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
Mattia Dongilide920432008-01-14 18:05:43 +09003125 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09003126 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003127
3128 if (ev == 0x00 || ev == 0xff)
3129 return IRQ_HANDLED;
3130
Mattia Dongili31df7142009-09-16 00:05:29 +09003131 for (i = 0; dev->event_types[i].mask; i++) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003132
Mattia Dongili31df7142009-09-16 00:05:29 +09003133 if ((data_mask & dev->event_types[i].data) !=
3134 dev->event_types[i].data)
malattia@linux.it33a04452007-04-09 19:26:03 +02003135 continue;
3136
Mattia Dongili31df7142009-09-16 00:05:29 +09003137 if (!(mask & dev->event_types[i].mask))
malattia@linux.it33a04452007-04-09 19:26:03 +02003138 continue;
3139
Mattia Dongili31df7142009-09-16 00:05:29 +09003140 for (j = 0; dev->event_types[i].events[j].event; j++) {
3141 if (ev == dev->event_types[i].events[j].data) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003142 device_event =
Mattia Dongili31df7142009-09-16 00:05:29 +09003143 dev->event_types[i].events[j].event;
Mattia Dongili4eeb5022011-02-19 11:52:27 +09003144 /* some events may require ignoring */
3145 if (!device_event)
3146 return IRQ_HANDLED;
malattia@linux.it33a04452007-04-09 19:26:03 +02003147 goto found;
3148 }
3149 }
3150 }
Mattia Dongili3eb87492008-01-14 18:05:45 +09003151 /* Still not able to decode the event try to pass
3152 * it over to the minidriver
3153 */
Mattia Dongili31df7142009-09-16 00:05:29 +09003154 if (dev->handle_irq && dev->handle_irq(data_mask, ev) == 0)
Mattia Dongili3eb87492008-01-14 18:05:45 +09003155 return IRQ_HANDLED;
3156
Mattia Dongilide920432008-01-14 18:05:43 +09003157 dprintk("unknown event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
3158 ev, data_mask, dev->cur_ioport->io1.minimum,
Mattia Dongili31df7142009-09-16 00:05:29 +09003159 dev->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02003160 return IRQ_HANDLED;
3161
3162found:
malattia@linux.it1549ee62007-04-09 10:19:08 +02003163 sony_laptop_report_input_event(device_event);
Mattia Dongilide920432008-01-14 18:05:43 +09003164 acpi_bus_generate_proc_event(dev->acpi_dev, 1, device_event);
malattia@linux.it7b153f32007-04-09 19:31:25 +02003165 sonypi_compat_report_event(device_event);
malattia@linux.it33a04452007-04-09 19:26:03 +02003166 return IRQ_HANDLED;
3167}
3168
3169/*****************
3170 *
3171 * ACPI driver
3172 *
3173 *****************/
3174static int sony_pic_remove(struct acpi_device *device, int type)
3175{
3176 struct sony_pic_ioport *io, *tmp_io;
3177 struct sony_pic_irq *irq, *tmp_irq;
3178
3179 if (sony_pic_disable(device)) {
Joe Perches50f581a2011-03-29 15:21:48 -07003180 pr_err("Couldn't disable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003181 return -ENXIO;
3182 }
3183
3184 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003185 release_region(spic_dev.cur_ioport->io1.minimum,
3186 spic_dev.cur_ioport->io1.address_length);
3187 if (spic_dev.cur_ioport->io2.minimum)
3188 release_region(spic_dev.cur_ioport->io2.minimum,
3189 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02003190
Mattia Dongili015a9162007-08-12 16:20:27 +09003191 sonypi_compat_exit();
3192
malattia@linux.it1549ee62007-04-09 10:19:08 +02003193 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02003194
malattia@linux.it49a11de2007-04-09 19:28:56 +02003195 /* pf attrs */
3196 sysfs_remove_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
3197 sony_pf_remove();
3198
malattia@linux.it33a04452007-04-09 19:26:03 +02003199 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
3200 list_del(&io->list);
3201 kfree(io);
3202 }
3203 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
3204 list_del(&irq->list);
3205 kfree(irq);
3206 }
3207 spic_dev.cur_ioport = NULL;
3208 spic_dev.cur_irq = NULL;
3209
malattia@linux.itf6119b02007-04-09 19:31:06 +02003210 dprintk(SONY_PIC_DRIVER_NAME " removed.\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003211 return 0;
3212}
3213
3214static int sony_pic_add(struct acpi_device *device)
3215{
3216 int result;
3217 struct sony_pic_ioport *io, *tmp_io;
3218 struct sony_pic_irq *irq, *tmp_irq;
3219
Joe Perches50f581a2011-03-29 15:21:48 -07003220 pr_info("%s v%s\n", SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.it33a04452007-04-09 19:26:03 +02003221
3222 spic_dev.acpi_dev = device;
3223 strcpy(acpi_device_class(device), "sony/hotkey");
Mattia Dongilide920432008-01-14 18:05:43 +09003224 sony_pic_detect_device_type(&spic_dev);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09003225 mutex_init(&spic_dev.lock);
malattia@linux.it33a04452007-04-09 19:26:03 +02003226
3227 /* read _PRS resources */
3228 result = sony_pic_possible_resources(device);
3229 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003230 pr_err("Unable to read possible resources\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003231 goto err_free_resources;
3232 }
3233
3234 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05003235 result = sony_laptop_setup_input(device);
malattia@linux.it33a04452007-04-09 19:26:03 +02003236 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003237 pr_err("Unable to create input devices\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003238 goto err_free_resources;
3239 }
3240
Mattia Dongili015a9162007-08-12 16:20:27 +09003241 if (sonypi_compat_init())
3242 goto err_remove_input;
3243
malattia@linux.it33a04452007-04-09 19:26:03 +02003244 /* request io port */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003245 list_for_each_entry_reverse(io, &spic_dev.ioports, list) {
3246 if (request_region(io->io1.minimum, io->io1.address_length,
Lucas De Marchic8440332011-03-17 17:18:22 -03003247 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003248 dprintk("I/O port1: 0x%.4x (0x%.4x) + 0x%.2x\n",
3249 io->io1.minimum, io->io1.maximum,
3250 io->io1.address_length);
3251 /* Type 1 have 2 ioports */
3252 if (io->io2.minimum) {
3253 if (request_region(io->io2.minimum,
3254 io->io2.address_length,
Lucas De Marchic8440332011-03-17 17:18:22 -03003255 "Sony Programmable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003256 dprintk("I/O port2: 0x%.4x (0x%.4x) + 0x%.2x\n",
3257 io->io2.minimum, io->io2.maximum,
3258 io->io2.address_length);
3259 spic_dev.cur_ioport = io;
3260 break;
3261 }
3262 else {
3263 dprintk("Unable to get I/O port2: "
3264 "0x%.4x (0x%.4x) + 0x%.2x\n",
3265 io->io2.minimum, io->io2.maximum,
3266 io->io2.address_length);
3267 release_region(io->io1.minimum,
3268 io->io1.address_length);
3269 }
3270 }
3271 else {
3272 spic_dev.cur_ioport = io;
3273 break;
3274 }
malattia@linux.it33a04452007-04-09 19:26:03 +02003275 }
3276 }
3277 if (!spic_dev.cur_ioport) {
Joe Perches50f581a2011-03-29 15:21:48 -07003278 pr_err("Failed to request_region\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003279 result = -ENODEV;
Mattia Dongili015a9162007-08-12 16:20:27 +09003280 goto err_remove_compat;
malattia@linux.it33a04452007-04-09 19:26:03 +02003281 }
3282
3283 /* request IRQ */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003284 list_for_each_entry_reverse(irq, &spic_dev.interrupts, list) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003285 if (!request_irq(irq->irq.interrupts[0], sony_pic_irq,
Mattia Dongilid1e0de92009-09-16 00:05:30 +09003286 IRQF_DISABLED, "sony-laptop", &spic_dev)) {
malattia@linux.it33a04452007-04-09 19:26:03 +02003287 dprintk("IRQ: %d - triggering: %d - "
3288 "polarity: %d - shr: %d\n",
3289 irq->irq.interrupts[0],
3290 irq->irq.triggering,
3291 irq->irq.polarity,
3292 irq->irq.sharable);
3293 spic_dev.cur_irq = irq;
3294 break;
3295 }
3296 }
3297 if (!spic_dev.cur_irq) {
Joe Perches50f581a2011-03-29 15:21:48 -07003298 pr_err("Failed to request_irq\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003299 result = -ENODEV;
3300 goto err_release_region;
3301 }
3302
3303 /* set resource status _SRS */
3304 result = sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
3305 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003306 pr_err("Couldn't enable device\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003307 goto err_free_irq;
3308 }
3309
malattia@linux.it49a11de2007-04-09 19:28:56 +02003310 spic_dev.bluetooth_power = -1;
3311 /* create device attributes */
3312 result = sony_pf_add();
3313 if (result)
3314 goto err_disable_device;
3315
3316 result = sysfs_create_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
3317 if (result)
3318 goto err_remove_pf;
3319
malattia@linux.it33a04452007-04-09 19:26:03 +02003320 return 0;
3321
malattia@linux.it49a11de2007-04-09 19:28:56 +02003322err_remove_pf:
3323 sony_pf_remove();
3324
3325err_disable_device:
3326 sony_pic_disable(device);
3327
malattia@linux.it33a04452007-04-09 19:26:03 +02003328err_free_irq:
3329 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
3330
3331err_release_region:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09003332 release_region(spic_dev.cur_ioport->io1.minimum,
3333 spic_dev.cur_ioport->io1.address_length);
3334 if (spic_dev.cur_ioport->io2.minimum)
3335 release_region(spic_dev.cur_ioport->io2.minimum,
3336 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02003337
Mattia Dongili015a9162007-08-12 16:20:27 +09003338err_remove_compat:
3339 sonypi_compat_exit();
3340
malattia@linux.it33a04452007-04-09 19:26:03 +02003341err_remove_input:
malattia@linux.it1549ee62007-04-09 10:19:08 +02003342 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02003343
3344err_free_resources:
3345 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
3346 list_del(&io->list);
3347 kfree(io);
3348 }
3349 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
3350 list_del(&irq->list);
3351 kfree(irq);
3352 }
3353 spic_dev.cur_ioport = NULL;
3354 spic_dev.cur_irq = NULL;
3355
3356 return result;
3357}
3358
3359static int sony_pic_suspend(struct acpi_device *device, pm_message_t state)
3360{
3361 if (sony_pic_disable(device))
3362 return -ENXIO;
3363 return 0;
3364}
3365
3366static int sony_pic_resume(struct acpi_device *device)
3367{
3368 sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
3369 return 0;
3370}
3371
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003372static const struct acpi_device_id sony_pic_device_ids[] = {
3373 {SONY_PIC_HID, 0},
3374 {"", 0},
3375};
3376
malattia@linux.it33a04452007-04-09 19:26:03 +02003377static struct acpi_driver sony_pic_driver = {
3378 .name = SONY_PIC_DRIVER_NAME,
3379 .class = SONY_PIC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02003380 .ids = sony_pic_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02003381 .owner = THIS_MODULE,
3382 .ops = {
3383 .add = sony_pic_add,
3384 .remove = sony_pic_remove,
3385 .suspend = sony_pic_suspend,
3386 .resume = sony_pic_resume,
3387 },
3388};
3389
3390static struct dmi_system_id __initdata sonypi_dmi_table[] = {
3391 {
3392 .ident = "Sony Vaio",
3393 .matches = {
3394 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
3395 DMI_MATCH(DMI_PRODUCT_NAME, "PCG-"),
3396 },
3397 },
3398 {
3399 .ident = "Sony Vaio",
3400 .matches = {
3401 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
3402 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-"),
3403 },
3404 },
3405 { }
3406};
3407
malattia@linux.it59b19102007-04-09 10:19:04 +02003408static int __init sony_laptop_init(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01003409{
malattia@linux.it33a04452007-04-09 19:26:03 +02003410 int result;
3411
3412 if (!no_spic && dmi_check_system(sonypi_dmi_table)) {
3413 result = acpi_bus_register_driver(&sony_pic_driver);
3414 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003415 pr_err("Unable to register SPIC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003416 goto out;
3417 }
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003418 spic_drv_registered = 1;
malattia@linux.it33a04452007-04-09 19:26:03 +02003419 }
3420
3421 result = acpi_bus_register_driver(&sony_nc_driver);
3422 if (result) {
Joe Perches50f581a2011-03-29 15:21:48 -07003423 pr_err("Unable to register SNC driver\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02003424 goto out_unregister_pic;
3425 }
3426
3427 return 0;
3428
3429out_unregister_pic:
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003430 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02003431 acpi_bus_unregister_driver(&sony_pic_driver);
3432out:
3433 return result;
Stelian Pop7f09c432007-01-13 23:04:31 +01003434}
3435
malattia@linux.it59b19102007-04-09 10:19:04 +02003436static void __exit sony_laptop_exit(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01003437{
malattia@linux.it59b19102007-04-09 10:19:04 +02003438 acpi_bus_unregister_driver(&sony_nc_driver);
Alan Jenkins5e6f9722009-09-16 00:05:32 +09003439 if (spic_drv_registered)
malattia@linux.it33a04452007-04-09 19:26:03 +02003440 acpi_bus_unregister_driver(&sony_pic_driver);
Stelian Pop7f09c432007-01-13 23:04:31 +01003441}
3442
malattia@linux.it59b19102007-04-09 10:19:04 +02003443module_init(sony_laptop_init);
3444module_exit(sony_laptop_exit);