blob: a650f25d76c55b8036a401d2e543ada822155afb [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 Dongilied3aa4b2007-02-07 20:01:54 +01005 * Copyright (C) 2007 Mattia Dongili <malattia@linux.it>
Stelian Pop7f09c432007-01-13 23:04:31 +01006 *
7 * Parts of this driver inspired from asus_acpi.c and ibm_acpi.c
8 * which are copyrighted by their respective authors.
9 *
malattia@linux.it33a04452007-04-09 19:26:03 +020010 * The SNY6001 driver part is based on the sonypi driver which includes
11 * material from:
12 *
13 * Copyright (C) 2001-2005 Stelian Pop <stelian@popies.net>
14 *
15 * Copyright (C) 2005 Narayanan R S <nars@kadamba.org>
16 *
Marcin Garskidb9551702007-10-19 23:22:11 +020017 * Copyright (C) 2001-2002 AlcĂ´ve <www.alcove.com>
malattia@linux.it33a04452007-04-09 19:26:03 +020018 *
19 * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
20 *
21 * Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp>
22 *
23 * Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp>
24 *
25 * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
26 *
27 * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
28 *
Stelian Pop7f09c432007-01-13 23:04:31 +010029 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
42 *
43 */
44
45#include <linux/kernel.h>
46#include <linux/module.h>
47#include <linux/moduleparam.h>
48#include <linux/init.h>
49#include <linux/types.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010050#include <linux/backlight.h>
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010051#include <linux/platform_device.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010052#include <linux/err.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020053#include <linux/dmi.h>
54#include <linux/pci.h>
55#include <linux/interrupt.h>
56#include <linux/delay.h>
57#include <linux/input.h>
58#include <linux/kfifo.h>
59#include <linux/workqueue.h>
60#include <linux/acpi.h>
Stelian Pop7f09c432007-01-13 23:04:31 +010061#include <acpi/acpi_drivers.h>
62#include <acpi/acpi_bus.h>
63#include <asm/uaccess.h>
malattia@linux.it33a04452007-04-09 19:26:03 +020064#include <linux/sonypi.h>
malattia@linux.it1ce82c12007-04-28 23:34:36 +090065#include <linux/sony-laptop.h>
Mattia Dongilia64e62a2007-05-01 11:19:53 +090066#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +020067#include <linux/poll.h>
68#include <linux/miscdevice.h>
69#endif
Stelian Pop7f09c432007-01-13 23:04:31 +010070
malattia@linux.it33a04452007-04-09 19:26:03 +020071#define DRV_PFX "sony-laptop: "
malattia@linux.itb9a218b2007-04-09 10:19:06 +020072#define dprintk(msg...) do { \
malattia@linux.itf6119b02007-04-09 19:31:06 +020073 if (debug) printk(KERN_WARNING DRV_PFX msg); \
malattia@linux.itb9a218b2007-04-09 10:19:06 +020074} while (0)
75
malattia@linux.it33a04452007-04-09 19:26:03 +020076#define SONY_LAPTOP_DRIVER_VERSION "0.5"
Alessandro Guido50f62af2007-01-13 23:04:34 +010077
malattia@linux.it33a04452007-04-09 19:26:03 +020078#define SONY_NC_CLASS "sony-nc"
79#define SONY_NC_HID "SNY5001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020080#define SONY_NC_DRIVER_NAME "Sony Notebook Control Driver"
malattia@linux.it33a04452007-04-09 19:26:03 +020081
82#define SONY_PIC_CLASS "sony-pic"
83#define SONY_PIC_HID "SNY6001"
malattia@linux.itf6119b02007-04-09 19:31:06 +020084#define SONY_PIC_DRIVER_NAME "Sony Programmable IO Control Driver"
Stelian Pop7f09c432007-01-13 23:04:31 +010085
Mattia Dongilied3aa4b2007-02-07 20:01:54 +010086MODULE_AUTHOR("Stelian Pop, Mattia Dongili");
malattia@linux.it33a04452007-04-09 19:26:03 +020087MODULE_DESCRIPTION("Sony laptop extras driver (SPIC and SNC ACPI device)");
Stelian Pop7f09c432007-01-13 23:04:31 +010088MODULE_LICENSE("GPL");
malattia@linux.it33a04452007-04-09 19:26:03 +020089MODULE_VERSION(SONY_LAPTOP_DRIVER_VERSION);
Stelian Pop7f09c432007-01-13 23:04:31 +010090
91static int debug;
92module_param(debug, int, 0);
93MODULE_PARM_DESC(debug, "set this to 1 (and RTFM) if you want to help "
Len Browna02d1c12007-02-07 15:34:02 -050094 "the development of this driver");
Stelian Pop7f09c432007-01-13 23:04:31 +010095
malattia@linux.it33a04452007-04-09 19:26:03 +020096static int no_spic; /* = 0 */
97module_param(no_spic, int, 0444);
98MODULE_PARM_DESC(no_spic,
99 "set this if you don't want to enable the SPIC device");
100
101static int compat; /* = 0 */
102module_param(compat, int, 0444);
103MODULE_PARM_DESC(compat,
malattia@linux.it7b153f32007-04-09 19:31:25 +0200104 "set this if you want to enable backward compatibility mode");
malattia@linux.it33a04452007-04-09 19:26:03 +0200105
106static unsigned long mask = 0xffffffff;
107module_param(mask, ulong, 0644);
108MODULE_PARM_DESC(mask,
109 "set this to the mask of event you want to enable (see doc)");
110
malattia@linux.it5f3d2892007-04-28 23:18:45 +0900111static int camera; /* = 0 */
112module_param(camera, int, 0444);
113MODULE_PARM_DESC(camera,
114 "set this to 1 to enable Motion Eye camera controls "
115 "(only use it if you have a C1VE or C1VN model)");
116
Mattia Dongilia64e62a2007-05-01 11:19:53 +0900117#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +0200118static int minor = -1;
119module_param(minor, int, 0);
120MODULE_PARM_DESC(minor,
121 "minor number of the misc device for the SPIC compatibility code, "
122 "default is -1 (automatic)");
123#endif
124
malattia@linux.it1549ee62007-04-09 10:19:08 +0200125/*********** Input Devices ***********/
126
127#define SONY_LAPTOP_BUF_SIZE 128
128struct sony_laptop_input_s {
129 atomic_t users;
130 struct input_dev *jog_dev;
131 struct input_dev *key_dev;
132 struct kfifo *fifo;
133 spinlock_t fifo_lock;
134 struct workqueue_struct *wq;
135};
136static struct sony_laptop_input_s sony_laptop_input = {
137 .users = ATOMIC_INIT(0),
138};
139
140struct sony_laptop_keypress {
141 struct input_dev *dev;
142 int key;
143};
144
Mattia Dongilibc57f862007-07-20 02:01:57 +0900145/* Correspondance table between sonypi events
146 * and input layer indexes in the keymap
147 */
148static int sony_laptop_input_index[] = {
149 -1, /* no event */
150 -1, /* SONYPI_EVENT_JOGDIAL_DOWN */
151 -1, /* SONYPI_EVENT_JOGDIAL_UP */
152 -1, /* SONYPI_EVENT_JOGDIAL_DOWN_PRESSED */
153 -1, /* SONYPI_EVENT_JOGDIAL_UP_PRESSED */
154 -1, /* SONYPI_EVENT_JOGDIAL_PRESSED */
155 -1, /* SONYPI_EVENT_JOGDIAL_RELEASED */
156 0, /* SONYPI_EVENT_CAPTURE_PRESSED */
157 1, /* SONYPI_EVENT_CAPTURE_RELEASED */
158 2, /* SONYPI_EVENT_CAPTURE_PARTIALPRESSED */
159 3, /* SONYPI_EVENT_CAPTURE_PARTIALRELEASED */
160 4, /* SONYPI_EVENT_FNKEY_ESC */
161 5, /* SONYPI_EVENT_FNKEY_F1 */
162 6, /* SONYPI_EVENT_FNKEY_F2 */
163 7, /* SONYPI_EVENT_FNKEY_F3 */
164 8, /* SONYPI_EVENT_FNKEY_F4 */
165 9, /* SONYPI_EVENT_FNKEY_F5 */
166 10, /* SONYPI_EVENT_FNKEY_F6 */
167 11, /* SONYPI_EVENT_FNKEY_F7 */
168 12, /* SONYPI_EVENT_FNKEY_F8 */
169 13, /* SONYPI_EVENT_FNKEY_F9 */
170 14, /* SONYPI_EVENT_FNKEY_F10 */
171 15, /* SONYPI_EVENT_FNKEY_F11 */
172 16, /* SONYPI_EVENT_FNKEY_F12 */
173 17, /* SONYPI_EVENT_FNKEY_1 */
174 18, /* SONYPI_EVENT_FNKEY_2 */
175 19, /* SONYPI_EVENT_FNKEY_D */
176 20, /* SONYPI_EVENT_FNKEY_E */
177 21, /* SONYPI_EVENT_FNKEY_F */
178 22, /* SONYPI_EVENT_FNKEY_S */
179 23, /* SONYPI_EVENT_FNKEY_B */
180 24, /* SONYPI_EVENT_BLUETOOTH_PRESSED */
181 25, /* SONYPI_EVENT_PKEY_P1 */
182 26, /* SONYPI_EVENT_PKEY_P2 */
183 27, /* SONYPI_EVENT_PKEY_P3 */
184 28, /* SONYPI_EVENT_BACK_PRESSED */
185 -1, /* SONYPI_EVENT_LID_CLOSED */
186 -1, /* SONYPI_EVENT_LID_OPENED */
187 29, /* SONYPI_EVENT_BLUETOOTH_ON */
188 30, /* SONYPI_EVENT_BLUETOOTH_OFF */
189 31, /* SONYPI_EVENT_HELP_PRESSED */
190 32, /* SONYPI_EVENT_FNKEY_ONLY */
191 33, /* SONYPI_EVENT_JOGDIAL_FAST_DOWN */
192 34, /* SONYPI_EVENT_JOGDIAL_FAST_UP */
193 35, /* SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */
194 36, /* SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */
195 37, /* SONYPI_EVENT_JOGDIAL_VFAST_DOWN */
196 38, /* SONYPI_EVENT_JOGDIAL_VFAST_UP */
197 39, /* SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */
198 40, /* SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */
199 41, /* SONYPI_EVENT_ZOOM_PRESSED */
200 42, /* SONYPI_EVENT_THUMBPHRASE_PRESSED */
201 43, /* SONYPI_EVENT_MEYE_FACE */
202 44, /* SONYPI_EVENT_MEYE_OPPOSITE */
203 45, /* SONYPI_EVENT_MEMORYSTICK_INSERT */
204 46, /* SONYPI_EVENT_MEMORYSTICK_EJECT */
205 -1, /* SONYPI_EVENT_ANYBUTTON_RELEASED */
206 -1, /* SONYPI_EVENT_BATTERY_INSERT */
207 -1, /* SONYPI_EVENT_BATTERY_REMOVE */
208 -1, /* SONYPI_EVENT_FNKEY_RELEASED */
209 47, /* SONYPI_EVENT_WIRELESS_ON */
210 48, /* SONYPI_EVENT_WIRELESS_OFF */
211};
212
213static int sony_laptop_input_keycode_map[] = {
214 KEY_CAMERA, /* 0 SONYPI_EVENT_CAPTURE_PRESSED */
215 KEY_RESERVED, /* 1 SONYPI_EVENT_CAPTURE_RELEASED */
216 KEY_RESERVED, /* 2 SONYPI_EVENT_CAPTURE_PARTIALPRESSED */
217 KEY_RESERVED, /* 3 SONYPI_EVENT_CAPTURE_PARTIALRELEASED */
218 KEY_FN_ESC, /* 4 SONYPI_EVENT_FNKEY_ESC */
219 KEY_FN_F1, /* 5 SONYPI_EVENT_FNKEY_F1 */
220 KEY_FN_F2, /* 6 SONYPI_EVENT_FNKEY_F2 */
221 KEY_FN_F3, /* 7 SONYPI_EVENT_FNKEY_F3 */
222 KEY_FN_F4, /* 8 SONYPI_EVENT_FNKEY_F4 */
223 KEY_FN_F5, /* 9 SONYPI_EVENT_FNKEY_F5 */
224 KEY_FN_F6, /* 10 SONYPI_EVENT_FNKEY_F6 */
225 KEY_FN_F7, /* 11 SONYPI_EVENT_FNKEY_F7 */
226 KEY_FN_F8, /* 12 SONYPI_EVENT_FNKEY_F8 */
227 KEY_FN_F9, /* 13 SONYPI_EVENT_FNKEY_F9 */
228 KEY_FN_F10, /* 14 SONYPI_EVENT_FNKEY_F10 */
229 KEY_FN_F11, /* 15 SONYPI_EVENT_FNKEY_F11 */
230 KEY_FN_F12, /* 16 SONYPI_EVENT_FNKEY_F12 */
231 KEY_FN_F1, /* 17 SONYPI_EVENT_FNKEY_1 */
232 KEY_FN_F2, /* 18 SONYPI_EVENT_FNKEY_2 */
233 KEY_FN_D, /* 19 SONYPI_EVENT_FNKEY_D */
234 KEY_FN_E, /* 20 SONYPI_EVENT_FNKEY_E */
235 KEY_FN_F, /* 21 SONYPI_EVENT_FNKEY_F */
236 KEY_FN_S, /* 22 SONYPI_EVENT_FNKEY_S */
237 KEY_FN_B, /* 23 SONYPI_EVENT_FNKEY_B */
238 KEY_BLUETOOTH, /* 24 SONYPI_EVENT_BLUETOOTH_PRESSED */
239 KEY_PROG1, /* 25 SONYPI_EVENT_PKEY_P1 */
240 KEY_PROG2, /* 26 SONYPI_EVENT_PKEY_P2 */
241 KEY_PROG3, /* 27 SONYPI_EVENT_PKEY_P3 */
242 KEY_BACK, /* 28 SONYPI_EVENT_BACK_PRESSED */
243 KEY_BLUETOOTH, /* 29 SONYPI_EVENT_BLUETOOTH_ON */
244 KEY_BLUETOOTH, /* 30 SONYPI_EVENT_BLUETOOTH_OFF */
245 KEY_HELP, /* 31 SONYPI_EVENT_HELP_PRESSED */
246 KEY_FN, /* 32 SONYPI_EVENT_FNKEY_ONLY */
247 KEY_RESERVED, /* 33 SONYPI_EVENT_JOGDIAL_FAST_DOWN */
248 KEY_RESERVED, /* 34 SONYPI_EVENT_JOGDIAL_FAST_UP */
249 KEY_RESERVED, /* 35 SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED */
250 KEY_RESERVED, /* 36 SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED */
251 KEY_RESERVED, /* 37 SONYPI_EVENT_JOGDIAL_VFAST_DOWN */
252 KEY_RESERVED, /* 38 SONYPI_EVENT_JOGDIAL_VFAST_UP */
253 KEY_RESERVED, /* 39 SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED */
254 KEY_RESERVED, /* 40 SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED */
255 KEY_ZOOM, /* 41 SONYPI_EVENT_ZOOM_PRESSED */
256 BTN_THUMB, /* 42 SONYPI_EVENT_THUMBPHRASE_PRESSED */
257 KEY_RESERVED, /* 43 SONYPI_EVENT_MEYE_FACE */
258 KEY_RESERVED, /* 44 SONYPI_EVENT_MEYE_OPPOSITE */
259 KEY_RESERVED, /* 45 SONYPI_EVENT_MEMORYSTICK_INSERT */
260 KEY_RESERVED, /* 46 SONYPI_EVENT_MEMORYSTICK_EJECT */
261 KEY_WLAN, /* 47 SONYPI_EVENT_WIRELESS_ON */
262 KEY_WLAN, /* 48 SONYPI_EVENT_WIRELESS_OFF */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200263};
264
265/* release buttons after a short delay if pressed */
266static void do_sony_laptop_release_key(struct work_struct *work)
267{
268 struct sony_laptop_keypress kp;
269
270 while (kfifo_get(sony_laptop_input.fifo, (unsigned char *)&kp,
271 sizeof(kp)) == sizeof(kp)) {
272 msleep(10);
273 input_report_key(kp.dev, kp.key, 0);
274 input_sync(kp.dev);
275 }
276}
277static DECLARE_WORK(sony_laptop_release_key_work,
278 do_sony_laptop_release_key);
279
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200280/* forward event to the input subsystem */
malattia@linux.it1549ee62007-04-09 10:19:08 +0200281static void sony_laptop_report_input_event(u8 event)
282{
283 struct input_dev *jog_dev = sony_laptop_input.jog_dev;
284 struct input_dev *key_dev = sony_laptop_input.key_dev;
285 struct sony_laptop_keypress kp = { NULL };
malattia@linux.it1549ee62007-04-09 10:19:08 +0200286
287 if (event == SONYPI_EVENT_FNKEY_RELEASED) {
288 /* Nothing, not all VAIOs generate this event */
289 return;
290 }
291
292 /* report events */
293 switch (event) {
294 /* jog_dev events */
295 case SONYPI_EVENT_JOGDIAL_UP:
296 case SONYPI_EVENT_JOGDIAL_UP_PRESSED:
297 input_report_rel(jog_dev, REL_WHEEL, 1);
298 input_sync(jog_dev);
299 return;
300
301 case SONYPI_EVENT_JOGDIAL_DOWN:
302 case SONYPI_EVENT_JOGDIAL_DOWN_PRESSED:
303 input_report_rel(jog_dev, REL_WHEEL, -1);
304 input_sync(jog_dev);
305 return;
306
307 /* key_dev events */
308 case SONYPI_EVENT_JOGDIAL_PRESSED:
309 kp.key = BTN_MIDDLE;
310 kp.dev = jog_dev;
311 break;
312
313 default:
Mattia Dongilibc57f862007-07-20 02:01:57 +0900314 if (event > ARRAY_SIZE (sony_laptop_input_keycode_map)) {
315 dprintk("sony_laptop_report_input_event, event not known: %d\n", event);
316 break;
317 }
318 if (sony_laptop_input_index[event] != -1) {
319 kp.key = sony_laptop_input_keycode_map[sony_laptop_input_index[event]];
320 if (kp.key != KEY_UNKNOWN)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200321 kp.dev = key_dev;
Mattia Dongilibc57f862007-07-20 02:01:57 +0900322 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200323 break;
324 }
325
326 if (kp.dev) {
327 input_report_key(kp.dev, kp.key, 1);
Mattia Dongilibc57f862007-07-20 02:01:57 +0900328 /* we emit the scancode so we can always remap the key */
329 input_event(kp.dev, EV_MSC, MSC_SCAN, event);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200330 input_sync(kp.dev);
331 kfifo_put(sony_laptop_input.fifo,
332 (unsigned char *)&kp, sizeof(kp));
333
334 if (!work_pending(&sony_laptop_release_key_work))
335 queue_work(sony_laptop_input.wq,
336 &sony_laptop_release_key_work);
337 } else
338 dprintk("unknown input event %.2x\n", event);
339}
340
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500341static int sony_laptop_setup_input(struct acpi_device *acpi_device)
malattia@linux.it1549ee62007-04-09 10:19:08 +0200342{
343 struct input_dev *jog_dev;
344 struct input_dev *key_dev;
345 int i;
346 int error;
347
348 /* don't run again if already initialized */
349 if (atomic_add_return(1, &sony_laptop_input.users) > 1)
350 return 0;
351
352 /* kfifo */
353 spin_lock_init(&sony_laptop_input.fifo_lock);
354 sony_laptop_input.fifo =
355 kfifo_alloc(SONY_LAPTOP_BUF_SIZE, GFP_KERNEL,
356 &sony_laptop_input.fifo_lock);
357 if (IS_ERR(sony_laptop_input.fifo)) {
358 printk(KERN_ERR DRV_PFX "kfifo_alloc failed\n");
359 error = PTR_ERR(sony_laptop_input.fifo);
360 goto err_dec_users;
361 }
362
363 /* init workqueue */
364 sony_laptop_input.wq = create_singlethread_workqueue("sony-laptop");
365 if (!sony_laptop_input.wq) {
366 printk(KERN_ERR DRV_PFX
367 "Unabe to create workqueue.\n");
368 error = -ENXIO;
369 goto err_free_kfifo;
370 }
371
372 /* input keys */
373 key_dev = input_allocate_device();
374 if (!key_dev) {
375 error = -ENOMEM;
376 goto err_destroy_wq;
377 }
378
379 key_dev->name = "Sony Vaio Keys";
380 key_dev->id.bustype = BUS_ISA;
381 key_dev->id.vendor = PCI_VENDOR_ID_SONY;
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500382 key_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200383
384 /* Initialize the Input Drivers: special keys */
Mattia Dongilibc57f862007-07-20 02:01:57 +0900385 set_bit(EV_KEY, key_dev->evbit);
386 set_bit(EV_MSC, key_dev->evbit);
387 set_bit(MSC_SCAN, key_dev->mscbit);
388 key_dev->keycodesize = sizeof(sony_laptop_input_keycode_map[0]);
389 key_dev->keycodemax = ARRAY_SIZE(sony_laptop_input_keycode_map);
390 key_dev->keycode = &sony_laptop_input_keycode_map;
391 for (i = 0; i < ARRAY_SIZE(sony_laptop_input_keycode_map); i++) {
392 if (sony_laptop_input_keycode_map[i] != KEY_RESERVED) {
393 set_bit(sony_laptop_input_keycode_map[i],
394 key_dev->keybit);
395 }
396 }
malattia@linux.it1549ee62007-04-09 10:19:08 +0200397
398 error = input_register_device(key_dev);
399 if (error)
400 goto err_free_keydev;
401
402 sony_laptop_input.key_dev = key_dev;
403
404 /* jogdial */
405 jog_dev = input_allocate_device();
406 if (!jog_dev) {
407 error = -ENOMEM;
408 goto err_unregister_keydev;
409 }
410
411 jog_dev->name = "Sony Vaio Jogdial";
412 jog_dev->id.bustype = BUS_ISA;
413 jog_dev->id.vendor = PCI_VENDOR_ID_SONY;
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -0500414 key_dev->dev.parent = &acpi_device->dev;
malattia@linux.it1549ee62007-04-09 10:19:08 +0200415
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700416 jog_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
417 jog_dev->keybit[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_MIDDLE);
418 jog_dev->relbit[0] = BIT_MASK(REL_WHEEL);
malattia@linux.it1549ee62007-04-09 10:19:08 +0200419
420 error = input_register_device(jog_dev);
421 if (error)
422 goto err_free_jogdev;
423
424 sony_laptop_input.jog_dev = jog_dev;
425
426 return 0;
427
428err_free_jogdev:
429 input_free_device(jog_dev);
430
431err_unregister_keydev:
432 input_unregister_device(key_dev);
433 /* to avoid kref underflow below at input_free_device */
434 key_dev = NULL;
435
436err_free_keydev:
437 input_free_device(key_dev);
438
439err_destroy_wq:
440 destroy_workqueue(sony_laptop_input.wq);
441
442err_free_kfifo:
443 kfifo_free(sony_laptop_input.fifo);
444
445err_dec_users:
446 atomic_dec(&sony_laptop_input.users);
447 return error;
448}
449
450static void sony_laptop_remove_input(void)
451{
452 /* cleanup only after the last user has gone */
453 if (!atomic_dec_and_test(&sony_laptop_input.users))
454 return;
455
456 /* flush workqueue first */
457 flush_workqueue(sony_laptop_input.wq);
458
459 /* destroy input devs */
460 input_unregister_device(sony_laptop_input.key_dev);
461 sony_laptop_input.key_dev = NULL;
462
463 if (sony_laptop_input.jog_dev) {
464 input_unregister_device(sony_laptop_input.jog_dev);
465 sony_laptop_input.jog_dev = NULL;
466 }
467
468 destroy_workqueue(sony_laptop_input.wq);
469 kfifo_free(sony_laptop_input.fifo);
470}
471
malattia@linux.it56b87562007-04-09 10:19:05 +0200472/*********** Platform Device ***********/
473
474static atomic_t sony_pf_users = ATOMIC_INIT(0);
475static struct platform_driver sony_pf_driver = {
476 .driver = {
477 .name = "sony-laptop",
478 .owner = THIS_MODULE,
479 }
480};
481static struct platform_device *sony_pf_device;
482
483static int sony_pf_add(void)
484{
485 int ret = 0;
486
487 /* don't run again if already initialized */
488 if (atomic_add_return(1, &sony_pf_users) > 1)
489 return 0;
490
491 ret = platform_driver_register(&sony_pf_driver);
492 if (ret)
493 goto out;
494
495 sony_pf_device = platform_device_alloc("sony-laptop", -1);
496 if (!sony_pf_device) {
497 ret = -ENOMEM;
498 goto out_platform_registered;
499 }
500
501 ret = platform_device_add(sony_pf_device);
502 if (ret)
503 goto out_platform_alloced;
504
505 return 0;
506
507 out_platform_alloced:
508 platform_device_put(sony_pf_device);
509 sony_pf_device = NULL;
510 out_platform_registered:
511 platform_driver_unregister(&sony_pf_driver);
512 out:
513 atomic_dec(&sony_pf_users);
514 return ret;
515}
516
517static void sony_pf_remove(void)
518{
519 /* deregister only after the last user has gone */
520 if (!atomic_dec_and_test(&sony_pf_users))
521 return;
522
523 platform_device_del(sony_pf_device);
524 platform_device_put(sony_pf_device);
525 platform_driver_unregister(&sony_pf_driver);
526}
527
528/*********** SNC (SNY5001) Device ***********/
529
malattia@linux.it33a04452007-04-09 19:26:03 +0200530/* the device uses 1-based values, while the backlight subsystem uses
531 0-based values */
532#define SONY_MAX_BRIGHTNESS 8
533
534#define SNC_VALIDATE_IN 0
535#define SNC_VALIDATE_OUT 1
536
malattia@linux.it59b19102007-04-09 10:19:04 +0200537static ssize_t sony_nc_sysfs_show(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500538 char *);
malattia@linux.it59b19102007-04-09 10:19:04 +0200539static ssize_t sony_nc_sysfs_store(struct device *, struct device_attribute *,
Len Browna02d1c12007-02-07 15:34:02 -0500540 const char *, size_t);
Mattia Dongili156c2212007-02-12 22:01:07 +0100541static int boolean_validate(const int, const int);
542static int brightness_default_validate(const int, const int);
543
malattia@linux.it59b19102007-04-09 10:19:04 +0200544struct sony_nc_value {
Len Browna02d1c12007-02-07 15:34:02 -0500545 char *name; /* name of the entry */
546 char **acpiget; /* names of the ACPI get function */
547 char **acpiset; /* names of the ACPI set function */
Mattia Dongili156c2212007-02-12 22:01:07 +0100548 int (*validate)(const int, const int); /* input/output validation */
Len Browna02d1c12007-02-07 15:34:02 -0500549 int value; /* current setting */
550 int valid; /* Has ever been set */
551 int debug; /* active only in debug mode ? */
552 struct device_attribute devattr; /* sysfs atribute */
Stelian Pop7f09c432007-01-13 23:04:31 +0100553};
554
malattia@linux.it59b19102007-04-09 10:19:04 +0200555#define SNC_HANDLE_NAMES(_name, _values...) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100556 static char *snc_##_name[] = { _values, NULL }
557
malattia@linux.it59b19102007-04-09 10:19:04 +0200558#define SNC_HANDLE(_name, _getters, _setters, _validate, _debug) \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100559 { \
560 .name = __stringify(_name), \
561 .acpiget = _getters, \
562 .acpiset = _setters, \
Mattia Dongili156c2212007-02-12 22:01:07 +0100563 .validate = _validate, \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100564 .debug = _debug, \
malattia@linux.it59b19102007-04-09 10:19:04 +0200565 .devattr = __ATTR(_name, 0, sony_nc_sysfs_show, sony_nc_sysfs_store), \
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100566 }
567
malattia@linux.it59b19102007-04-09 10:19:04 +0200568#define SNC_HANDLE_NULL { .name = NULL }
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100569
malattia@linux.it59b19102007-04-09 10:19:04 +0200570SNC_HANDLE_NAMES(fnkey_get, "GHKE");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100571
malattia@linux.it59b19102007-04-09 10:19:04 +0200572SNC_HANDLE_NAMES(brightness_def_get, "GPBR");
573SNC_HANDLE_NAMES(brightness_def_set, "SPBR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100574
malattia@linux.it59b19102007-04-09 10:19:04 +0200575SNC_HANDLE_NAMES(cdpower_get, "GCDP");
576SNC_HANDLE_NAMES(cdpower_set, "SCDP", "CDPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100577
malattia@linux.it59b19102007-04-09 10:19:04 +0200578SNC_HANDLE_NAMES(audiopower_get, "GAZP");
579SNC_HANDLE_NAMES(audiopower_set, "AZPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100580
malattia@linux.it59b19102007-04-09 10:19:04 +0200581SNC_HANDLE_NAMES(lanpower_get, "GLNP");
582SNC_HANDLE_NAMES(lanpower_set, "LNPW");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100583
Mattia Dongili044847e2007-07-16 02:34:33 +0900584SNC_HANDLE_NAMES(lidstate_get, "GLID");
585
586SNC_HANDLE_NAMES(indicatorlamp_get, "GILS");
587SNC_HANDLE_NAMES(indicatorlamp_set, "SILS");
588
589SNC_HANDLE_NAMES(gainbass_get, "GMGB");
590SNC_HANDLE_NAMES(gainbass_set, "CMGB");
591
malattia@linux.it59b19102007-04-09 10:19:04 +0200592SNC_HANDLE_NAMES(PID_get, "GPID");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100593
malattia@linux.it59b19102007-04-09 10:19:04 +0200594SNC_HANDLE_NAMES(CTR_get, "GCTR");
595SNC_HANDLE_NAMES(CTR_set, "SCTR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100596
malattia@linux.it59b19102007-04-09 10:19:04 +0200597SNC_HANDLE_NAMES(PCR_get, "GPCR");
598SNC_HANDLE_NAMES(PCR_set, "SPCR");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100599
malattia@linux.it59b19102007-04-09 10:19:04 +0200600SNC_HANDLE_NAMES(CMI_get, "GCMI");
601SNC_HANDLE_NAMES(CMI_set, "SCMI");
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100602
malattia@linux.it59b19102007-04-09 10:19:04 +0200603static struct sony_nc_value sony_nc_values[] = {
604 SNC_HANDLE(brightness_default, snc_brightness_def_get,
Mattia Dongili156c2212007-02-12 22:01:07 +0100605 snc_brightness_def_set, brightness_default_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200606 SNC_HANDLE(fnkey, snc_fnkey_get, NULL, NULL, 0),
607 SNC_HANDLE(cdpower, snc_cdpower_get, snc_cdpower_set, boolean_validate, 0),
608 SNC_HANDLE(audiopower, snc_audiopower_get, snc_audiopower_set,
Mattia Dongili156c2212007-02-12 22:01:07 +0100609 boolean_validate, 0),
malattia@linux.it59b19102007-04-09 10:19:04 +0200610 SNC_HANDLE(lanpower, snc_lanpower_get, snc_lanpower_set,
Mattia Dongili156c2212007-02-12 22:01:07 +0100611 boolean_validate, 1),
Mattia Dongili044847e2007-07-16 02:34:33 +0900612 SNC_HANDLE(lidstate, snc_lidstate_get, NULL,
613 boolean_validate, 0),
614 SNC_HANDLE(indicatorlamp, snc_indicatorlamp_get, snc_indicatorlamp_set,
615 boolean_validate, 0),
616 SNC_HANDLE(gainbass, snc_gainbass_get, snc_gainbass_set,
617 boolean_validate, 0),
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100618 /* unknown methods */
malattia@linux.it59b19102007-04-09 10:19:04 +0200619 SNC_HANDLE(PID, snc_PID_get, NULL, NULL, 1),
620 SNC_HANDLE(CTR, snc_CTR_get, snc_CTR_set, NULL, 1),
621 SNC_HANDLE(PCR, snc_PCR_get, snc_PCR_set, NULL, 1),
622 SNC_HANDLE(CMI, snc_CMI_get, snc_CMI_set, NULL, 1),
623 SNC_HANDLE_NULL
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100624};
625
malattia@linux.it59b19102007-04-09 10:19:04 +0200626static acpi_handle sony_nc_acpi_handle;
627static struct acpi_device *sony_nc_acpi_device = NULL;
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100628
Mattia Dongilid78865c2007-02-07 20:01:56 +0100629/*
630 * acpi_evaluate_object wrappers
631 */
Stelian Pop7f09c432007-01-13 23:04:31 +0100632static int acpi_callgetfunc(acpi_handle handle, char *name, int *result)
633{
634 struct acpi_buffer output;
635 union acpi_object out_obj;
636 acpi_status status;
637
638 output.length = sizeof(out_obj);
639 output.pointer = &out_obj;
640
641 status = acpi_evaluate_object(handle, name, NULL, &output);
642 if ((status == AE_OK) && (out_obj.type == ACPI_TYPE_INTEGER)) {
643 *result = out_obj.integer.value;
644 return 0;
645 }
646
malattia@linux.itf6119b02007-04-09 19:31:06 +0200647 printk(KERN_WARNING DRV_PFX "acpi_callreadfunc failed\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100648
649 return -1;
650}
651
652static int acpi_callsetfunc(acpi_handle handle, char *name, int value,
653 int *result)
654{
655 struct acpi_object_list params;
656 union acpi_object in_obj;
657 struct acpi_buffer output;
658 union acpi_object out_obj;
659 acpi_status status;
660
661 params.count = 1;
662 params.pointer = &in_obj;
663 in_obj.type = ACPI_TYPE_INTEGER;
664 in_obj.integer.value = value;
665
666 output.length = sizeof(out_obj);
667 output.pointer = &out_obj;
668
669 status = acpi_evaluate_object(handle, name, &params, &output);
670 if (status == AE_OK) {
671 if (result != NULL) {
672 if (out_obj.type != ACPI_TYPE_INTEGER) {
malattia@linux.itf6119b02007-04-09 19:31:06 +0200673 printk(KERN_WARNING DRV_PFX "acpi_evaluate_object bad "
Stelian Pop7f09c432007-01-13 23:04:31 +0100674 "return type\n");
675 return -1;
676 }
677 *result = out_obj.integer.value;
678 }
679 return 0;
680 }
681
malattia@linux.itf6119b02007-04-09 19:31:06 +0200682 printk(KERN_WARNING DRV_PFX "acpi_evaluate_object failed\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100683
684 return -1;
685}
686
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100687/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200688 * sony_nc_values input/output validate functions
Mattia Dongili156c2212007-02-12 22:01:07 +0100689 */
690
691/* brightness_default_validate:
692 *
693 * manipulate input output values to keep consistency with the
694 * backlight framework for which brightness values are 0-based.
695 */
696static int brightness_default_validate(const int direction, const int value)
697{
698 switch (direction) {
699 case SNC_VALIDATE_OUT:
700 return value - 1;
701 case SNC_VALIDATE_IN:
702 if (value >= 0 && value < SONY_MAX_BRIGHTNESS)
703 return value + 1;
704 }
705 return -EINVAL;
706}
707
708/* boolean_validate:
709 *
710 * on input validate boolean values 0/1, on output just pass the
711 * received value.
712 */
713static int boolean_validate(const int direction, const int value)
714{
715 if (direction == SNC_VALIDATE_IN) {
716 if (value != 0 && value != 1)
717 return -EINVAL;
718 }
719 return value;
720}
721
722/*
malattia@linux.it59b19102007-04-09 10:19:04 +0200723 * Sysfs show/store common to all sony_nc_values
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100724 */
malattia@linux.it59b19102007-04-09 10:19:04 +0200725static ssize_t sony_nc_sysfs_show(struct device *dev, struct device_attribute *attr,
Len Browna02d1c12007-02-07 15:34:02 -0500726 char *buffer)
Stelian Pop7f09c432007-01-13 23:04:31 +0100727{
Stelian Pop7f09c432007-01-13 23:04:31 +0100728 int value;
malattia@linux.it59b19102007-04-09 10:19:04 +0200729 struct sony_nc_value *item =
730 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100731
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100732 if (!*item->acpiget)
Stelian Pop7f09c432007-01-13 23:04:31 +0100733 return -EIO;
734
malattia@linux.it59b19102007-04-09 10:19:04 +0200735 if (acpi_callgetfunc(sony_nc_acpi_handle, *item->acpiget, &value) < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +0100736 return -EIO;
737
Mattia Dongili156c2212007-02-12 22:01:07 +0100738 if (item->validate)
739 value = item->validate(SNC_VALIDATE_OUT, value);
740
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100741 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
Stelian Pop7f09c432007-01-13 23:04:31 +0100742}
743
malattia@linux.it59b19102007-04-09 10:19:04 +0200744static ssize_t sony_nc_sysfs_store(struct device *dev,
Len Browna02d1c12007-02-07 15:34:02 -0500745 struct device_attribute *attr,
746 const char *buffer, size_t count)
Stelian Pop7f09c432007-01-13 23:04:31 +0100747{
Stelian Pop7f09c432007-01-13 23:04:31 +0100748 int value;
malattia@linux.it59b19102007-04-09 10:19:04 +0200749 struct sony_nc_value *item =
750 container_of(attr, struct sony_nc_value, devattr);
Stelian Pop7f09c432007-01-13 23:04:31 +0100751
752 if (!item->acpiset)
753 return -EIO;
754
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100755 if (count > 31)
756 return -EINVAL;
757
758 value = simple_strtoul(buffer, NULL, 10);
Stelian Pop7f09c432007-01-13 23:04:31 +0100759
Mattia Dongili156c2212007-02-12 22:01:07 +0100760 if (item->validate)
761 value = item->validate(SNC_VALIDATE_IN, value);
762
763 if (value < 0)
764 return value;
Stelian Pop7f09c432007-01-13 23:04:31 +0100765
malattia@linux.it59b19102007-04-09 10:19:04 +0200766 if (acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset, value, NULL) < 0)
Stelian Pop7f09c432007-01-13 23:04:31 +0100767 return -EIO;
Andrew Morton3f4f4612007-01-13 23:04:32 +0100768 item->value = value;
769 item->valid = 1;
Stelian Pop7f09c432007-01-13 23:04:31 +0100770 return count;
771}
772
Mattia Dongilied3aa4b2007-02-07 20:01:54 +0100773
Mattia Dongilid78865c2007-02-07 20:01:56 +0100774/*
775 * Backlight device
776 */
777static int sony_backlight_update_status(struct backlight_device *bd)
Andrew Morton3f4f4612007-01-13 23:04:32 +0100778{
malattia@linux.it59b19102007-04-09 10:19:04 +0200779 return acpi_callsetfunc(sony_nc_acpi_handle, "SBRT",
Richard Purdie321709c2007-02-10 15:04:08 +0000780 bd->props.brightness + 1, NULL);
Andrew Morton3f4f4612007-01-13 23:04:32 +0100781}
782
Mattia Dongilid78865c2007-02-07 20:01:56 +0100783static int sony_backlight_get_brightness(struct backlight_device *bd)
784{
785 int value;
786
malattia@linux.it59b19102007-04-09 10:19:04 +0200787 if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value))
Mattia Dongilid78865c2007-02-07 20:01:56 +0100788 return 0;
789 /* brightness levels are 1-based, while backlight ones are 0-based */
790 return value - 1;
791}
792
793static struct backlight_device *sony_backlight_device;
Richard Purdie321709c2007-02-10 15:04:08 +0000794static struct backlight_ops sony_backlight_ops = {
Len Browna02d1c12007-02-07 15:34:02 -0500795 .update_status = sony_backlight_update_status,
796 .get_brightness = sony_backlight_get_brightness,
Mattia Dongilid78865c2007-02-07 20:01:56 +0100797};
798
799/*
Mattia Dongili6315fd12007-07-16 02:34:35 +0900800 * New SNC-only Vaios event mapping to driver known keys
801 */
802struct sony_nc_event {
803 u8 data;
804 u8 event;
805};
806
807static struct sony_nc_event *sony_nc_events;
808
809/* Vaio C* --maybe also FE*, N* and AR* ?-- special init sequence
810 * for Fn keys
811 */
Jeff Garzik18552562007-10-03 15:15:40 -0400812static int sony_nc_C_enable(const struct dmi_system_id *id)
Mattia Dongili6315fd12007-07-16 02:34:35 +0900813{
814 int result = 0;
815
816 printk(KERN_NOTICE DRV_PFX "detected %s\n", id->ident);
817
818 sony_nc_events = id->driver_data;
819
820 if (acpi_callsetfunc(sony_nc_acpi_handle, "SN02", 0x4, &result) < 0
821 || acpi_callsetfunc(sony_nc_acpi_handle, "SN07", 0x2, &result) < 0
822 || acpi_callsetfunc(sony_nc_acpi_handle, "SN02", 0x10, &result) < 0
823 || acpi_callsetfunc(sony_nc_acpi_handle, "SN07", 0x0, &result) < 0
824 || acpi_callsetfunc(sony_nc_acpi_handle, "SN03", 0x2, &result) < 0
825 || acpi_callsetfunc(sony_nc_acpi_handle, "SN07", 0x101, &result) < 0) {
826 printk(KERN_WARNING DRV_PFX "failed to initialize SNC, some "
827 "functionalities may be missing\n");
828 return 1;
829 }
830 return 0;
831}
832
833static struct sony_nc_event sony_C_events[] = {
834 { 0x81, SONYPI_EVENT_FNKEY_F1 },
835 { 0x01, SONYPI_EVENT_FNKEY_RELEASED },
836 { 0x85, SONYPI_EVENT_FNKEY_F5 },
837 { 0x05, SONYPI_EVENT_FNKEY_RELEASED },
838 { 0x86, SONYPI_EVENT_FNKEY_F6 },
839 { 0x06, SONYPI_EVENT_FNKEY_RELEASED },
840 { 0x87, SONYPI_EVENT_FNKEY_F7 },
841 { 0x07, SONYPI_EVENT_FNKEY_RELEASED },
842 { 0x8A, SONYPI_EVENT_FNKEY_F10 },
843 { 0x0A, SONYPI_EVENT_FNKEY_RELEASED },
844 { 0x8C, SONYPI_EVENT_FNKEY_F12 },
845 { 0x0C, SONYPI_EVENT_FNKEY_RELEASED },
846 { 0, 0 },
847};
848
849/* SNC-only model map */
Jeff Garzik18552562007-10-03 15:15:40 -0400850static const struct dmi_system_id sony_nc_ids[] = {
Mattia Dongili6315fd12007-07-16 02:34:35 +0900851 {
Mattia Dongili89892d12007-07-16 02:34:38 +0900852 .ident = "Sony Vaio FE Series",
853 .callback = sony_nc_C_enable,
854 .driver_data = sony_C_events,
855 .matches = {
856 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
857 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FE"),
858 },
859 },
860 {
Mattia Dongilif46d1602007-08-12 16:20:26 +0900861 .ident = "Sony Vaio FZ Series",
862 .callback = sony_nc_C_enable,
863 .driver_data = sony_C_events,
864 .matches = {
865 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
866 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FZ"),
867 },
868 },
869 {
Mattia Dongili6315fd12007-07-16 02:34:35 +0900870 .ident = "Sony Vaio C Series",
871 .callback = sony_nc_C_enable,
872 .driver_data = sony_C_events,
873 .matches = {
874 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
875 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-C"),
876 },
877 },
Mattia Dongili88877c22008-01-14 18:05:42 +0900878 {
879 .ident = "Sony Vaio N Series",
880 .callback = sony_nc_C_enable,
881 .driver_data = sony_C_events,
882 .matches = {
883 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
884 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-N"),
885 },
886 },
Mattia Dongili6315fd12007-07-16 02:34:35 +0900887 { }
888};
889
890/*
Mattia Dongilid78865c2007-02-07 20:01:56 +0100891 * ACPI callbacks
892 */
Stelian Pop7f09c432007-01-13 23:04:31 +0100893static void sony_acpi_notify(acpi_handle handle, u32 event, void *data)
894{
Mattia Dongili6315fd12007-07-16 02:34:35 +0900895 struct sony_nc_event *evmap;
896 u32 ev = event;
897 int result;
898
899 if (ev == 0x92) {
900 /* read the key pressed from EC.GECR
901 * A call to SN07 with 0x0202 will do it as well respecting
902 * the current protocol on different OSes
903 *
904 * Note: the path for GECR may be
905 * \_SB.PCI0.LPCB.EC (C, FE, AR, N and friends)
906 * \_SB.PCI0.PIB.EC0 (VGN-FR notifications are sent directly, no GECR)
907 *
908 * TODO: we may want to do the same for the older GHKE -need
909 * dmi list- so this snippet may become one more callback.
910 */
911 if (acpi_callsetfunc(handle, "SN07", 0x0202, &result) < 0)
912 dprintk("sony_acpi_notify, unable to decode event 0x%.2x\n", ev);
913 else
914 ev = result & 0xFF;
915 }
916
917 if (sony_nc_events)
918 for (evmap = sony_nc_events; evmap->event; evmap++) {
919 if (evmap->data == ev) {
920 ev = evmap->event;
921 break;
922 }
923 }
924
925 dprintk("sony_acpi_notify, event: 0x%.2x\n", ev);
926 sony_laptop_report_input_event(ev);
Len Brown14e04fb2007-08-23 15:20:26 -0400927 acpi_bus_generate_proc_event(sony_nc_acpi_device, 1, ev);
Stelian Pop7f09c432007-01-13 23:04:31 +0100928}
929
930static acpi_status sony_walk_callback(acpi_handle handle, u32 level,
931 void *context, void **return_value)
932{
933 struct acpi_namespace_node *node;
934 union acpi_operand_object *operand;
935
Len Browna02d1c12007-02-07 15:34:02 -0500936 node = (struct acpi_namespace_node *)handle;
937 operand = (union acpi_operand_object *)node->object;
Stelian Pop7f09c432007-01-13 23:04:31 +0100938
malattia@linux.itf6119b02007-04-09 19:31:06 +0200939 printk(KERN_WARNING DRV_PFX "method: name: %4.4s, args %X\n", node->name.ascii,
Stelian Pop7f09c432007-01-13 23:04:31 +0100940 (u32) operand->method.param_count);
941
942 return AE_OK;
943}
944
Mattia Dongilid78865c2007-02-07 20:01:56 +0100945/*
946 * ACPI device
947 */
malattia@linux.it59b19102007-04-09 10:19:04 +0200948static int sony_nc_resume(struct acpi_device *device)
Mattia Dongilid78865c2007-02-07 20:01:56 +0100949{
malattia@linux.it59b19102007-04-09 10:19:04 +0200950 struct sony_nc_value *item;
Mattia Dongilid78865c2007-02-07 20:01:56 +0100951
malattia@linux.it59b19102007-04-09 10:19:04 +0200952 for (item = sony_nc_values; item->name; item++) {
Mattia Dongilid78865c2007-02-07 20:01:56 +0100953 int ret;
954
955 if (!item->valid)
956 continue;
malattia@linux.it59b19102007-04-09 10:19:04 +0200957 ret = acpi_callsetfunc(sony_nc_acpi_handle, *item->acpiset,
Len Browna02d1c12007-02-07 15:34:02 -0500958 item->value, NULL);
Mattia Dongilid78865c2007-02-07 20:01:56 +0100959 if (ret < 0) {
960 printk("%s: %d\n", __FUNCTION__, ret);
961 break;
962 }
963 }
Mattia Dongili6315fd12007-07-16 02:34:35 +0900964
Mattia Dongilie84a02b2007-08-04 00:22:30 +0900965 /* set the last requested brightness level */
966 if (sony_backlight_device &&
967 !sony_backlight_update_status(sony_backlight_device))
968 printk(KERN_WARNING DRV_PFX "unable to restore brightness level");
969
Mattia Dongili6315fd12007-07-16 02:34:35 +0900970 /* re-initialize models with specific requirements */
971 dmi_check_system(sony_nc_ids);
972
Mattia Dongilid78865c2007-02-07 20:01:56 +0100973 return 0;
974}
975
malattia@linux.it59b19102007-04-09 10:19:04 +0200976static int sony_nc_add(struct acpi_device *device)
Stelian Pop7f09c432007-01-13 23:04:31 +0100977{
978 acpi_status status;
Andrew Morton8607c672007-03-06 02:29:42 -0800979 int result = 0;
Alessandro Guido50f62af2007-01-13 23:04:34 +0100980 acpi_handle handle;
malattia@linux.it56b87562007-04-09 10:19:05 +0200981 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +0100982
malattia@linux.itf6119b02007-04-09 19:31:06 +0200983 printk(KERN_INFO DRV_PFX "%s v%s.\n",
984 SONY_NC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
985
malattia@linux.it59b19102007-04-09 10:19:04 +0200986 sony_nc_acpi_device = device;
malattia@linux.it33a04452007-04-09 19:26:03 +0200987 strcpy(acpi_device_class(device), "sony/hotkey");
Stelian Popc5611622007-01-13 23:04:37 +0100988
malattia@linux.it59b19102007-04-09 10:19:04 +0200989 sony_nc_acpi_handle = device->handle;
Stelian Pop7f09c432007-01-13 23:04:31 +0100990
Mattia Dongilib25b7322007-07-16 02:34:36 +0900991 /* read device status */
992 result = acpi_bus_get_status(device);
993 /* bail IFF the above call was successful and the device is not present */
994 if (!result && !device->status.present) {
995 dprintk("Device not present\n");
996 result = -ENODEV;
997 goto outwalk;
998 }
999
Stelian Pop7f09c432007-01-13 23:04:31 +01001000 if (debug) {
malattia@linux.it59b19102007-04-09 10:19:04 +02001001 status = acpi_walk_namespace(ACPI_TYPE_METHOD, sony_nc_acpi_handle,
Stelian Pop7f09c432007-01-13 23:04:31 +01001002 1, sony_walk_callback, NULL, NULL);
1003 if (ACPI_FAILURE(status)) {
malattia@linux.itf6119b02007-04-09 19:31:06 +02001004 printk(KERN_WARNING DRV_PFX "unable to walk acpi resources\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001005 result = -ENODEV;
1006 goto outwalk;
1007 }
Stelian Popc5611622007-01-13 23:04:37 +01001008 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001009
Mattia Dongilib25b7322007-07-16 02:34:36 +09001010 /* try to _INI the device if such method exists (ACPI spec 3.0-6.5.1
1011 * should be respected as we already checked for the device presence above */
1012 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, METHOD_NAME__INI, &handle))) {
1013 dprintk("Invoking _INI\n");
1014 if (ACPI_FAILURE(acpi_evaluate_object(sony_nc_acpi_handle, METHOD_NAME__INI,
1015 NULL, NULL)))
1016 dprintk("_INI Method failed\n");
1017 }
1018
malattia@linux.it1549ee62007-04-09 10:19:08 +02001019 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05001020 result = sony_laptop_setup_input(device);
malattia@linux.it1549ee62007-04-09 10:19:08 +02001021 if (result) {
1022 printk(KERN_ERR DRV_PFX
1023 "Unabe to create input devices.\n");
1024 goto outwalk;
1025 }
1026
malattia@linux.it59b19102007-04-09 10:19:04 +02001027 status = acpi_install_notify_handler(sony_nc_acpi_handle,
Stelian Popc5611622007-01-13 23:04:37 +01001028 ACPI_DEVICE_NOTIFY,
Len Browna02d1c12007-02-07 15:34:02 -05001029 sony_acpi_notify, NULL);
Stelian Popc5611622007-01-13 23:04:37 +01001030 if (ACPI_FAILURE(status)) {
Mattia Dongilib25b7322007-07-16 02:34:36 +09001031 printk(KERN_WARNING DRV_PFX "unable to install notify handler (%u)\n", status);
Stelian Popc5611622007-01-13 23:04:37 +01001032 result = -ENODEV;
malattia@linux.it1549ee62007-04-09 10:19:08 +02001033 goto outinput;
Stelian Pop7f09c432007-01-13 23:04:31 +01001034 }
1035
malattia@linux.it59b19102007-04-09 10:19:04 +02001036 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle, "GBRT", &handle))) {
Alessandro Guido50f62af2007-01-13 23:04:34 +01001037 sony_backlight_device = backlight_device_register("sony", NULL,
Len Browna02d1c12007-02-07 15:34:02 -05001038 NULL,
Richard Purdie321709c2007-02-10 15:04:08 +00001039 &sony_backlight_ops);
Mattia Dongili7df03b822007-01-13 23:04:41 +01001040
Len Browna02d1c12007-02-07 15:34:02 -05001041 if (IS_ERR(sony_backlight_device)) {
malattia@linux.itf6119b02007-04-09 19:31:06 +02001042 printk(KERN_WARNING DRV_PFX "unable to register backlight device\n");
Mattia Dongili7df03b822007-01-13 23:04:41 +01001043 sony_backlight_device = NULL;
Richard Purdie321709c2007-02-10 15:04:08 +00001044 } else {
1045 sony_backlight_device->props.brightness =
Len Browna02d1c12007-02-07 15:34:02 -05001046 sony_backlight_get_brightness
1047 (sony_backlight_device);
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05001048 sony_backlight_device->props.max_brightness =
Richard Purdie321709c2007-02-10 15:04:08 +00001049 SONY_MAX_BRIGHTNESS - 1;
1050 }
1051
Alessandro Guido50f62af2007-01-13 23:04:34 +01001052 }
Stelian Pop7f09c432007-01-13 23:04:31 +01001053
Mattia Dongili6315fd12007-07-16 02:34:35 +09001054 /* initialize models with specific requirements */
1055 dmi_check_system(sony_nc_ids);
1056
malattia@linux.it49a11de2007-04-09 19:28:56 +02001057 result = sony_pf_add();
1058 if (result)
Mattia Dongilied3aa4b2007-02-07 20:01:54 +01001059 goto outbacklight;
Stelian Pop7f09c432007-01-13 23:04:31 +01001060
malattia@linux.it56b87562007-04-09 10:19:05 +02001061 /* create sony_pf sysfs attributes related to the SNC device */
1062 for (item = sony_nc_values; item->name; ++item) {
1063
1064 if (!debug && item->debug)
1065 continue;
1066
1067 /* find the available acpiget as described in the DSDT */
1068 for (; item->acpiget && *item->acpiget; ++item->acpiget) {
1069 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1070 *item->acpiget,
1071 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001072 dprintk("Found %s getter: %s\n",
1073 item->name, *item->acpiget);
malattia@linux.it56b87562007-04-09 10:19:05 +02001074 item->devattr.attr.mode |= S_IRUGO;
1075 break;
1076 }
1077 }
1078
1079 /* find the available acpiset as described in the DSDT */
1080 for (; item->acpiset && *item->acpiset; ++item->acpiset) {
1081 if (ACPI_SUCCESS(acpi_get_handle(sony_nc_acpi_handle,
1082 *item->acpiset,
1083 &handle))) {
malattia@linux.itb9a218b2007-04-09 10:19:06 +02001084 dprintk("Found %s setter: %s\n",
1085 item->name, *item->acpiset);
malattia@linux.it56b87562007-04-09 10:19:05 +02001086 item->devattr.attr.mode |= S_IWUSR;
1087 break;
1088 }
1089 }
1090
1091 if (item->devattr.attr.mode != 0) {
1092 result =
1093 device_create_file(&sony_pf_device->dev,
1094 &item->devattr);
1095 if (result)
1096 goto out_sysfs;
1097 }
1098 }
1099
Stelian Pop7f09c432007-01-13 23:04:31 +01001100 return 0;
1101
malattia@linux.it56b87562007-04-09 10:19:05 +02001102 out_sysfs:
1103 for (item = sony_nc_values; item->name; ++item) {
1104 device_remove_file(&sony_pf_device->dev, &item->devattr);
1105 }
1106 sony_pf_remove();
malattia@linux.it1549ee62007-04-09 10:19:08 +02001107
Len Browna02d1c12007-02-07 15:34:02 -05001108 outbacklight:
Mattia Dongili7df03b822007-01-13 23:04:41 +01001109 if (sony_backlight_device)
1110 backlight_device_unregister(sony_backlight_device);
1111
malattia@linux.it59b19102007-04-09 10:19:04 +02001112 status = acpi_remove_notify_handler(sony_nc_acpi_handle,
Stelian Popc5611622007-01-13 23:04:37 +01001113 ACPI_DEVICE_NOTIFY,
1114 sony_acpi_notify);
1115 if (ACPI_FAILURE(status))
malattia@linux.itf6119b02007-04-09 19:31:06 +02001116 printk(KERN_WARNING DRV_PFX "unable to remove notify handler\n");
malattia@linux.it1549ee62007-04-09 10:19:08 +02001117
1118 outinput:
1119 sony_laptop_remove_input();
1120
Len Browna02d1c12007-02-07 15:34:02 -05001121 outwalk:
Stelian Pop7f09c432007-01-13 23:04:31 +01001122 return result;
1123}
1124
malattia@linux.it59b19102007-04-09 10:19:04 +02001125static int sony_nc_remove(struct acpi_device *device, int type)
Stelian Pop7f09c432007-01-13 23:04:31 +01001126{
1127 acpi_status status;
malattia@linux.it56b87562007-04-09 10:19:05 +02001128 struct sony_nc_value *item;
Stelian Pop7f09c432007-01-13 23:04:31 +01001129
Alessandro Guido50f62af2007-01-13 23:04:34 +01001130 if (sony_backlight_device)
1131 backlight_device_unregister(sony_backlight_device);
1132
malattia@linux.it59b19102007-04-09 10:19:04 +02001133 sony_nc_acpi_device = NULL;
Stelian Popc5611622007-01-13 23:04:37 +01001134
malattia@linux.it59b19102007-04-09 10:19:04 +02001135 status = acpi_remove_notify_handler(sony_nc_acpi_handle,
Stelian Popc5611622007-01-13 23:04:37 +01001136 ACPI_DEVICE_NOTIFY,
1137 sony_acpi_notify);
1138 if (ACPI_FAILURE(status))
malattia@linux.itf6119b02007-04-09 19:31:06 +02001139 printk(KERN_WARNING DRV_PFX "unable to remove notify handler\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001140
malattia@linux.it56b87562007-04-09 10:19:05 +02001141 for (item = sony_nc_values; item->name; ++item) {
1142 device_remove_file(&sony_pf_device->dev, &item->devattr);
1143 }
1144
1145 sony_pf_remove();
malattia@linux.it1549ee62007-04-09 10:19:08 +02001146 sony_laptop_remove_input();
malattia@linux.itf6119b02007-04-09 19:31:06 +02001147 dprintk(SONY_NC_DRIVER_NAME " removed.\n");
Stelian Pop7f09c432007-01-13 23:04:31 +01001148
1149 return 0;
1150}
1151
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001152static const struct acpi_device_id sony_device_ids[] = {
1153 {SONY_NC_HID, 0},
1154 {SONY_PIC_HID, 0},
1155 {"", 0},
1156};
1157MODULE_DEVICE_TABLE(acpi, sony_device_ids);
1158
1159static const struct acpi_device_id sony_nc_device_ids[] = {
1160 {SONY_NC_HID, 0},
1161 {"", 0},
1162};
1163
malattia@linux.it59b19102007-04-09 10:19:04 +02001164static struct acpi_driver sony_nc_driver = {
1165 .name = SONY_NC_DRIVER_NAME,
1166 .class = SONY_NC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02001167 .ids = sony_nc_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02001168 .owner = THIS_MODULE,
Len Browna02d1c12007-02-07 15:34:02 -05001169 .ops = {
malattia@linux.it59b19102007-04-09 10:19:04 +02001170 .add = sony_nc_add,
1171 .remove = sony_nc_remove,
1172 .resume = sony_nc_resume,
Len Browna02d1c12007-02-07 15:34:02 -05001173 },
Andrew Morton3f4f4612007-01-13 23:04:32 +01001174};
1175
malattia@linux.it33a04452007-04-09 19:26:03 +02001176/*********** SPIC (SNY6001) Device ***********/
1177
1178#define SONYPI_DEVICE_TYPE1 0x00000001
1179#define SONYPI_DEVICE_TYPE2 0x00000002
1180#define SONYPI_DEVICE_TYPE3 0x00000004
1181
Mattia Dongili22a17782007-07-16 02:34:39 +09001182#define SONYPI_TYPE1_OFFSET 0x04
1183#define SONYPI_TYPE2_OFFSET 0x12
1184#define SONYPI_TYPE3_OFFSET 0x12
malattia@linux.it33a04452007-04-09 19:26:03 +02001185
malattia@linux.it33a04452007-04-09 19:26:03 +02001186struct sony_pic_ioport {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001187 struct acpi_resource_io io1;
1188 struct acpi_resource_io io2;
malattia@linux.it33a04452007-04-09 19:26:03 +02001189 struct list_head list;
1190};
1191
1192struct sony_pic_irq {
1193 struct acpi_resource_irq irq;
1194 struct list_head list;
1195};
1196
Mattia Dongilide920432008-01-14 18:05:43 +09001197struct sonypi_eventtypes {
1198 u8 data;
1199 unsigned long mask;
1200 struct sonypi_event *events;
1201};
1202
1203struct device_ctrl {
1204 int model;
1205 int (*handle_irq)(void);
1206 u16 evport_offset;
1207 u8 has_camera;
1208 u8 has_bluetooth;
1209 u8 has_wwan;
1210 struct sonypi_eventtypes *event_types;
1211};
1212
malattia@linux.it33a04452007-04-09 19:26:03 +02001213struct sony_pic_dev {
Mattia Dongilide920432008-01-14 18:05:43 +09001214 struct device_ctrl *control;
malattia@linux.it33a04452007-04-09 19:26:03 +02001215 struct acpi_device *acpi_dev;
1216 struct sony_pic_irq *cur_irq;
1217 struct sony_pic_ioport *cur_ioport;
1218 struct list_head interrupts;
1219 struct list_head ioports;
malattia@linux.it9f9f0762007-04-28 23:19:36 +09001220 struct mutex lock;
Mattia Dongilide920432008-01-14 18:05:43 +09001221 u8 camera_power;
1222 u8 bluetooth_power;
1223 u8 wwan_power;
malattia@linux.it33a04452007-04-09 19:26:03 +02001224};
1225
1226static struct sony_pic_dev spic_dev = {
1227 .interrupts = LIST_HEAD_INIT(spic_dev.interrupts),
1228 .ioports = LIST_HEAD_INIT(spic_dev.ioports),
1229};
1230
1231/* Event masks */
1232#define SONYPI_JOGGER_MASK 0x00000001
1233#define SONYPI_CAPTURE_MASK 0x00000002
1234#define SONYPI_FNKEY_MASK 0x00000004
1235#define SONYPI_BLUETOOTH_MASK 0x00000008
1236#define SONYPI_PKEY_MASK 0x00000010
1237#define SONYPI_BACK_MASK 0x00000020
1238#define SONYPI_HELP_MASK 0x00000040
1239#define SONYPI_LID_MASK 0x00000080
1240#define SONYPI_ZOOM_MASK 0x00000100
1241#define SONYPI_THUMBPHRASE_MASK 0x00000200
1242#define SONYPI_MEYE_MASK 0x00000400
1243#define SONYPI_MEMORYSTICK_MASK 0x00000800
1244#define SONYPI_BATTERY_MASK 0x00001000
1245#define SONYPI_WIRELESS_MASK 0x00002000
1246
1247struct sonypi_event {
1248 u8 data;
1249 u8 event;
1250};
1251
1252/* The set of possible button release events */
1253static struct sonypi_event sonypi_releaseev[] = {
1254 { 0x00, SONYPI_EVENT_ANYBUTTON_RELEASED },
1255 { 0, 0 }
1256};
1257
1258/* The set of possible jogger events */
1259static struct sonypi_event sonypi_joggerev[] = {
1260 { 0x1f, SONYPI_EVENT_JOGDIAL_UP },
1261 { 0x01, SONYPI_EVENT_JOGDIAL_DOWN },
1262 { 0x5f, SONYPI_EVENT_JOGDIAL_UP_PRESSED },
1263 { 0x41, SONYPI_EVENT_JOGDIAL_DOWN_PRESSED },
1264 { 0x1e, SONYPI_EVENT_JOGDIAL_FAST_UP },
1265 { 0x02, SONYPI_EVENT_JOGDIAL_FAST_DOWN },
1266 { 0x5e, SONYPI_EVENT_JOGDIAL_FAST_UP_PRESSED },
1267 { 0x42, SONYPI_EVENT_JOGDIAL_FAST_DOWN_PRESSED },
1268 { 0x1d, SONYPI_EVENT_JOGDIAL_VFAST_UP },
1269 { 0x03, SONYPI_EVENT_JOGDIAL_VFAST_DOWN },
1270 { 0x5d, SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED },
1271 { 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED },
1272 { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED },
1273 { 0, 0 }
1274};
1275
1276/* The set of possible capture button events */
1277static struct sonypi_event sonypi_captureev[] = {
1278 { 0x05, SONYPI_EVENT_CAPTURE_PARTIALPRESSED },
1279 { 0x07, SONYPI_EVENT_CAPTURE_PRESSED },
1280 { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED },
1281 { 0, 0 }
1282};
1283
1284/* The set of possible fnkeys events */
1285static struct sonypi_event sonypi_fnkeyev[] = {
1286 { 0x10, SONYPI_EVENT_FNKEY_ESC },
1287 { 0x11, SONYPI_EVENT_FNKEY_F1 },
1288 { 0x12, SONYPI_EVENT_FNKEY_F2 },
1289 { 0x13, SONYPI_EVENT_FNKEY_F3 },
1290 { 0x14, SONYPI_EVENT_FNKEY_F4 },
1291 { 0x15, SONYPI_EVENT_FNKEY_F5 },
1292 { 0x16, SONYPI_EVENT_FNKEY_F6 },
1293 { 0x17, SONYPI_EVENT_FNKEY_F7 },
1294 { 0x18, SONYPI_EVENT_FNKEY_F8 },
1295 { 0x19, SONYPI_EVENT_FNKEY_F9 },
1296 { 0x1a, SONYPI_EVENT_FNKEY_F10 },
1297 { 0x1b, SONYPI_EVENT_FNKEY_F11 },
1298 { 0x1c, SONYPI_EVENT_FNKEY_F12 },
1299 { 0x1f, SONYPI_EVENT_FNKEY_RELEASED },
1300 { 0x21, SONYPI_EVENT_FNKEY_1 },
1301 { 0x22, SONYPI_EVENT_FNKEY_2 },
1302 { 0x31, SONYPI_EVENT_FNKEY_D },
1303 { 0x32, SONYPI_EVENT_FNKEY_E },
1304 { 0x33, SONYPI_EVENT_FNKEY_F },
1305 { 0x34, SONYPI_EVENT_FNKEY_S },
1306 { 0x35, SONYPI_EVENT_FNKEY_B },
1307 { 0x36, SONYPI_EVENT_FNKEY_ONLY },
1308 { 0, 0 }
1309};
1310
1311/* The set of possible program key events */
1312static struct sonypi_event sonypi_pkeyev[] = {
1313 { 0x01, SONYPI_EVENT_PKEY_P1 },
1314 { 0x02, SONYPI_EVENT_PKEY_P2 },
1315 { 0x04, SONYPI_EVENT_PKEY_P3 },
1316 { 0x5c, SONYPI_EVENT_PKEY_P1 },
1317 { 0, 0 }
1318};
1319
1320/* The set of possible bluetooth events */
1321static struct sonypi_event sonypi_blueev[] = {
1322 { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED },
1323 { 0x59, SONYPI_EVENT_BLUETOOTH_ON },
1324 { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF },
1325 { 0, 0 }
1326};
1327
1328/* The set of possible wireless events */
1329static struct sonypi_event sonypi_wlessev[] = {
1330 { 0x59, SONYPI_EVENT_WIRELESS_ON },
1331 { 0x5a, SONYPI_EVENT_WIRELESS_OFF },
1332 { 0, 0 }
1333};
1334
1335/* The set of possible back button events */
1336static struct sonypi_event sonypi_backev[] = {
1337 { 0x20, SONYPI_EVENT_BACK_PRESSED },
1338 { 0, 0 }
1339};
1340
1341/* The set of possible help button events */
1342static struct sonypi_event sonypi_helpev[] = {
1343 { 0x3b, SONYPI_EVENT_HELP_PRESSED },
1344 { 0, 0 }
1345};
1346
1347
1348/* The set of possible lid events */
1349static struct sonypi_event sonypi_lidev[] = {
1350 { 0x51, SONYPI_EVENT_LID_CLOSED },
1351 { 0x50, SONYPI_EVENT_LID_OPENED },
1352 { 0, 0 }
1353};
1354
1355/* The set of possible zoom events */
1356static struct sonypi_event sonypi_zoomev[] = {
1357 { 0x39, SONYPI_EVENT_ZOOM_PRESSED },
1358 { 0, 0 }
1359};
1360
1361/* The set of possible thumbphrase events */
1362static struct sonypi_event sonypi_thumbphraseev[] = {
1363 { 0x3a, SONYPI_EVENT_THUMBPHRASE_PRESSED },
1364 { 0, 0 }
1365};
1366
1367/* The set of possible motioneye camera events */
1368static struct sonypi_event sonypi_meyeev[] = {
1369 { 0x00, SONYPI_EVENT_MEYE_FACE },
1370 { 0x01, SONYPI_EVENT_MEYE_OPPOSITE },
1371 { 0, 0 }
1372};
1373
1374/* The set of possible memorystick events */
1375static struct sonypi_event sonypi_memorystickev[] = {
1376 { 0x53, SONYPI_EVENT_MEMORYSTICK_INSERT },
1377 { 0x54, SONYPI_EVENT_MEMORYSTICK_EJECT },
1378 { 0, 0 }
1379};
1380
1381/* The set of possible battery events */
1382static struct sonypi_event sonypi_batteryev[] = {
1383 { 0x20, SONYPI_EVENT_BATTERY_INSERT },
1384 { 0x30, SONYPI_EVENT_BATTERY_REMOVE },
1385 { 0, 0 }
1386};
1387
Mattia Dongilide920432008-01-14 18:05:43 +09001388static struct sonypi_eventtypes type1_events[] = {
1389 { 0, 0xffffffff, sonypi_releaseev },
1390 { 0x70, SONYPI_MEYE_MASK, sonypi_meyeev },
1391 { 0x30, SONYPI_LID_MASK, sonypi_lidev },
1392 { 0x60, SONYPI_CAPTURE_MASK, sonypi_captureev },
1393 { 0x10, SONYPI_JOGGER_MASK, sonypi_joggerev },
1394 { 0x20, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
1395 { 0x30, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
1396 { 0x40, SONYPI_PKEY_MASK, sonypi_pkeyev },
1397 { 0x30, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
1398 { 0x40, SONYPI_BATTERY_MASK, sonypi_batteryev },
1399 { 0 },
1400};
1401static struct sonypi_eventtypes type2_events[] = {
1402 { 0, 0xffffffff, sonypi_releaseev },
1403 { 0x38, SONYPI_LID_MASK, sonypi_lidev },
1404 { 0x11, SONYPI_JOGGER_MASK, sonypi_joggerev },
1405 { 0x61, SONYPI_CAPTURE_MASK, sonypi_captureev },
1406 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
1407 { 0x31, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
1408 { 0x08, SONYPI_PKEY_MASK, sonypi_pkeyev },
1409 { 0x11, SONYPI_BACK_MASK, sonypi_backev },
1410 { 0x21, SONYPI_HELP_MASK, sonypi_helpev },
1411 { 0x21, SONYPI_ZOOM_MASK, sonypi_zoomev },
1412 { 0x20, SONYPI_THUMBPHRASE_MASK, sonypi_thumbphraseev },
1413 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
1414 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
1415 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
1416 { 0 },
1417};
1418static struct sonypi_eventtypes type3_events[] = {
1419 { 0, 0xffffffff, sonypi_releaseev },
1420 { 0x21, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
1421 { 0x31, SONYPI_WIRELESS_MASK, sonypi_wlessev },
1422 { 0x31, SONYPI_MEMORYSTICK_MASK, sonypi_memorystickev },
1423 { 0x41, SONYPI_BATTERY_MASK, sonypi_batteryev },
1424 { 0x31, SONYPI_PKEY_MASK, sonypi_pkeyev },
1425 { 0 },
malattia@linux.it33a04452007-04-09 19:26:03 +02001426};
1427
Mattia Dongilide920432008-01-14 18:05:43 +09001428static struct device_ctrl spic_types[] = {
1429 {
1430 .model = SONYPI_DEVICE_TYPE1,
1431 .handle_irq = NULL,
1432 .evport_offset = SONYPI_TYPE1_OFFSET,
1433 .event_types = type1_events,
1434 },
1435 {
1436 .model = SONYPI_DEVICE_TYPE2,
1437 .handle_irq = NULL,
1438 .evport_offset = SONYPI_TYPE2_OFFSET,
1439 .event_types = type2_events,
1440 },
1441 {
1442 .model = SONYPI_DEVICE_TYPE3,
1443 .handle_irq = NULL,
1444 .evport_offset = SONYPI_TYPE3_OFFSET,
1445 .event_types = type3_events,
1446 },
1447};
1448
1449static void sony_pic_detect_device_type(struct sony_pic_dev *dev)
malattia@linux.it33a04452007-04-09 19:26:03 +02001450{
1451 struct pci_dev *pcidev;
malattia@linux.it33a04452007-04-09 19:26:03 +02001452
1453 if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
1454 PCI_DEVICE_ID_INTEL_82371AB_3, NULL)))
Mattia Dongilide920432008-01-14 18:05:43 +09001455 dev->control = &spic_types[0];
malattia@linux.it33a04452007-04-09 19:26:03 +02001456
1457 else if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
1458 PCI_DEVICE_ID_INTEL_ICH6_1, NULL)))
Mattia Dongilide920432008-01-14 18:05:43 +09001459 dev->control = &spic_types[2];
malattia@linux.it33a04452007-04-09 19:26:03 +02001460
1461 else if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL,
1462 PCI_DEVICE_ID_INTEL_ICH7_1, NULL)))
Mattia Dongilide920432008-01-14 18:05:43 +09001463 dev->control = &spic_types[2];
malattia@linux.it33a04452007-04-09 19:26:03 +02001464
1465 else
Mattia Dongilide920432008-01-14 18:05:43 +09001466 dev->control = &spic_types[1];
malattia@linux.it33a04452007-04-09 19:26:03 +02001467
1468 if (pcidev)
1469 pci_dev_put(pcidev);
1470
1471 printk(KERN_INFO DRV_PFX "detected Type%d model\n",
Mattia Dongilide920432008-01-14 18:05:43 +09001472 dev->control->model == SONYPI_DEVICE_TYPE1 ? 1 :
1473 dev->control->model == SONYPI_DEVICE_TYPE2 ? 2 : 3);
malattia@linux.it33a04452007-04-09 19:26:03 +02001474}
1475
1476#define ITERATIONS_LONG 10000
1477#define ITERATIONS_SHORT 10
1478#define wait_on_command(command, iterations) { \
1479 unsigned int n = iterations; \
1480 while (--n && (command)) \
1481 udelay(1); \
1482 if (!n) \
1483 dprintk("command failed at %s : %s (line %d)\n", \
1484 __FILE__, __FUNCTION__, __LINE__); \
1485}
1486
1487static u8 sony_pic_call1(u8 dev)
1488{
1489 u8 v1, v2;
1490
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001491 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02001492 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001493 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
1494 v1 = inb_p(spic_dev.cur_ioport->io1.minimum + 4);
1495 v2 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09001496 dprintk("sony_pic_call1(0x%.2x): 0x%.4x\n", dev, (v2 << 8) | v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02001497 return v2;
1498}
1499
1500static u8 sony_pic_call2(u8 dev, u8 fn)
1501{
1502 u8 v1;
1503
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001504 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02001505 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001506 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
1507 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2,
malattia@linux.it33a04452007-04-09 19:26:03 +02001508 ITERATIONS_LONG);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001509 outb(fn, spic_dev.cur_ioport->io1.minimum);
1510 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09001511 dprintk("sony_pic_call2(0x%.2x - 0x%.2x): 0x%.4x\n", dev, fn, v1);
malattia@linux.it33a04452007-04-09 19:26:03 +02001512 return v1;
1513}
1514
malattia@linux.it49a11de2007-04-09 19:28:56 +02001515static u8 sony_pic_call3(u8 dev, u8 fn, u8 v)
1516{
1517 u8 v1;
1518
Mattia Dongilifd1caae2007-08-12 16:20:28 +09001519 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
1520 outb(dev, spic_dev.cur_ioport->io1.minimum + 4);
1521 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
1522 outb(fn, spic_dev.cur_ioport->io1.minimum);
1523 wait_on_command(inb_p(spic_dev.cur_ioport->io1.minimum + 4) & 2, ITERATIONS_LONG);
1524 outb(v, spic_dev.cur_ioport->io1.minimum);
1525 v1 = inb_p(spic_dev.cur_ioport->io1.minimum);
Mattia Dongili75a1f9c2008-01-14 18:05:41 +09001526 dprintk("sony_pic_call3(0x%.2x - 0x%.2x - 0x%.2x): 0x%.4x\n",
1527 dev, fn, v, v1);
malattia@linux.it49a11de2007-04-09 19:28:56 +02001528 return v1;
1529}
1530
1531/* camera tests and poweron/poweroff */
1532#define SONYPI_CAMERA_PICTURE 5
malattia@linux.it49a11de2007-04-09 19:28:56 +02001533#define SONYPI_CAMERA_CONTROL 0x10
malattia@linux.ite3646322007-04-28 23:34:22 +09001534
1535#define SONYPI_CAMERA_BRIGHTNESS 0
1536#define SONYPI_CAMERA_CONTRAST 1
1537#define SONYPI_CAMERA_HUE 2
1538#define SONYPI_CAMERA_COLOR 3
1539#define SONYPI_CAMERA_SHARPNESS 4
1540
1541#define SONYPI_CAMERA_EXPOSURE_MASK 0xC
1542#define SONYPI_CAMERA_WHITE_BALANCE_MASK 0x3
1543#define SONYPI_CAMERA_PICTURE_MODE_MASK 0x30
1544#define SONYPI_CAMERA_MUTE_MASK 0x40
1545
1546/* the rest don't need a loop until not 0xff */
1547#define SONYPI_CAMERA_AGC 6
1548#define SONYPI_CAMERA_AGC_MASK 0x30
1549#define SONYPI_CAMERA_SHUTTER_MASK 0x7
1550
1551#define SONYPI_CAMERA_SHUTDOWN_REQUEST 7
1552#define SONYPI_CAMERA_CONTROL 0x10
1553
1554#define SONYPI_CAMERA_STATUS 7
1555#define SONYPI_CAMERA_STATUS_READY 0x2
1556#define SONYPI_CAMERA_STATUS_POSITION 0x4
1557
1558#define SONYPI_DIRECTION_BACKWARDS 0x4
1559
1560#define SONYPI_CAMERA_REVISION 8
1561#define SONYPI_CAMERA_ROMVERSION 9
malattia@linux.it49a11de2007-04-09 19:28:56 +02001562
malattia@linux.it9f9f0762007-04-28 23:19:36 +09001563static int __sony_pic_camera_ready(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02001564{
1565 u8 v;
1566
1567 v = sony_pic_call2(0x8f, SONYPI_CAMERA_STATUS);
1568 return (v != 0xff && (v & SONYPI_CAMERA_STATUS_READY));
1569}
1570
malattia@linux.ite3646322007-04-28 23:34:22 +09001571static int __sony_pic_camera_off(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02001572{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09001573 if (!camera) {
1574 printk(KERN_WARNING DRV_PFX "camera control not enabled\n");
1575 return -ENODEV;
1576 }
1577
malattia@linux.it49a11de2007-04-09 19:28:56 +02001578 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE,
1579 SONYPI_CAMERA_MUTE_MASK),
1580 ITERATIONS_SHORT);
1581
malattia@linux.it5f3d2892007-04-28 23:18:45 +09001582 if (spic_dev.camera_power) {
1583 sony_pic_call2(0x91, 0);
1584 spic_dev.camera_power = 0;
1585 }
1586 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02001587}
1588
malattia@linux.ite3646322007-04-28 23:34:22 +09001589static int __sony_pic_camera_on(void)
malattia@linux.it49a11de2007-04-09 19:28:56 +02001590{
malattia@linux.it5f3d2892007-04-28 23:18:45 +09001591 int i, j, x;
1592
1593 if (!camera) {
1594 printk(KERN_WARNING DRV_PFX "camera control not enabled\n");
1595 return -ENODEV;
1596 }
malattia@linux.it49a11de2007-04-09 19:28:56 +02001597
1598 if (spic_dev.camera_power)
malattia@linux.ite3646322007-04-28 23:34:22 +09001599 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02001600
1601 for (j = 5; j > 0; j--) {
1602
malattia@linux.it5f3d2892007-04-28 23:18:45 +09001603 for (x = 0; x < 100 && sony_pic_call2(0x91, 0x1); x++)
malattia@linux.it49a11de2007-04-09 19:28:56 +02001604 msleep(10);
1605 sony_pic_call1(0x93);
1606
1607 for (i = 400; i > 0; i--) {
malattia@linux.it9f9f0762007-04-28 23:19:36 +09001608 if (__sony_pic_camera_ready())
malattia@linux.it49a11de2007-04-09 19:28:56 +02001609 break;
1610 msleep(10);
1611 }
1612 if (i)
1613 break;
1614 }
1615
1616 if (j == 0) {
malattia@linux.it5f3d2892007-04-28 23:18:45 +09001617 printk(KERN_WARNING DRV_PFX "failed to power on camera\n");
malattia@linux.ite3646322007-04-28 23:34:22 +09001618 return -ENODEV;
malattia@linux.it49a11de2007-04-09 19:28:56 +02001619 }
1620
1621 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTROL,
1622 0x5a),
1623 ITERATIONS_SHORT);
1624
1625 spic_dev.camera_power = 1;
malattia@linux.it5f3d2892007-04-28 23:18:45 +09001626 return 0;
malattia@linux.it49a11de2007-04-09 19:28:56 +02001627}
1628
malattia@linux.ite3646322007-04-28 23:34:22 +09001629/* External camera command (exported to the motion eye v4l driver) */
1630int sony_pic_camera_command(int command, u8 value)
1631{
1632 if (!camera)
1633 return -EIO;
1634
1635 mutex_lock(&spic_dev.lock);
1636
1637 switch (command) {
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001638 case SONY_PIC_COMMAND_SETCAMERA:
malattia@linux.ite3646322007-04-28 23:34:22 +09001639 if (value)
1640 __sony_pic_camera_on();
1641 else
1642 __sony_pic_camera_off();
1643 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001644 case SONY_PIC_COMMAND_SETCAMERABRIGHTNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09001645 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_BRIGHTNESS, value),
1646 ITERATIONS_SHORT);
1647 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001648 case SONY_PIC_COMMAND_SETCAMERACONTRAST:
malattia@linux.ite3646322007-04-28 23:34:22 +09001649 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_CONTRAST, value),
1650 ITERATIONS_SHORT);
1651 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001652 case SONY_PIC_COMMAND_SETCAMERAHUE:
malattia@linux.ite3646322007-04-28 23:34:22 +09001653 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_HUE, value),
1654 ITERATIONS_SHORT);
1655 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001656 case SONY_PIC_COMMAND_SETCAMERACOLOR:
malattia@linux.ite3646322007-04-28 23:34:22 +09001657 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_COLOR, value),
1658 ITERATIONS_SHORT);
1659 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001660 case SONY_PIC_COMMAND_SETCAMERASHARPNESS:
malattia@linux.ite3646322007-04-28 23:34:22 +09001661 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_SHARPNESS, value),
1662 ITERATIONS_SHORT);
1663 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001664 case SONY_PIC_COMMAND_SETCAMERAPICTURE:
malattia@linux.ite3646322007-04-28 23:34:22 +09001665 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_PICTURE, value),
1666 ITERATIONS_SHORT);
1667 break;
malattia@linux.it1ce82c12007-04-28 23:34:36 +09001668 case SONY_PIC_COMMAND_SETCAMERAAGC:
malattia@linux.ite3646322007-04-28 23:34:22 +09001669 wait_on_command(sony_pic_call3(0x90, SONYPI_CAMERA_AGC, value),
1670 ITERATIONS_SHORT);
1671 break;
1672 default:
1673 printk(KERN_ERR DRV_PFX "sony_pic_camera_command invalid: %d\n",
1674 command);
1675 break;
1676 }
1677 mutex_unlock(&spic_dev.lock);
1678 return 0;
1679}
1680EXPORT_SYMBOL(sony_pic_camera_command);
1681
malattia@linux.it9476cdf2007-04-28 23:21:42 +09001682/* gprs/edge modem (SZ460N and SZ210P), thanks to Joshua Wise */
1683static void sony_pic_set_wwanpower(u8 state)
1684{
1685 state = !!state;
1686 mutex_lock(&spic_dev.lock);
1687 if (spic_dev.wwan_power == state) {
1688 mutex_unlock(&spic_dev.lock);
1689 return;
1690 }
1691 sony_pic_call2(0xB0, state);
1692 spic_dev.wwan_power = state;
1693 mutex_unlock(&spic_dev.lock);
1694}
1695
1696static ssize_t sony_pic_wwanpower_store(struct device *dev,
1697 struct device_attribute *attr,
1698 const char *buffer, size_t count)
1699{
1700 unsigned long value;
1701 if (count > 31)
1702 return -EINVAL;
1703
1704 value = simple_strtoul(buffer, NULL, 10);
1705 sony_pic_set_wwanpower(value);
1706
1707 return count;
1708}
1709
1710static ssize_t sony_pic_wwanpower_show(struct device *dev,
1711 struct device_attribute *attr, char *buffer)
1712{
1713 ssize_t count;
1714 mutex_lock(&spic_dev.lock);
1715 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.wwan_power);
1716 mutex_unlock(&spic_dev.lock);
1717 return count;
1718}
1719
malattia@linux.it49a11de2007-04-09 19:28:56 +02001720/* bluetooth subsystem power state */
malattia@linux.it9f9f0762007-04-28 23:19:36 +09001721static void __sony_pic_set_bluetoothpower(u8 state)
malattia@linux.it49a11de2007-04-09 19:28:56 +02001722{
1723 state = !!state;
1724 if (spic_dev.bluetooth_power == state)
1725 return;
1726 sony_pic_call2(0x96, state);
1727 sony_pic_call1(0x82);
1728 spic_dev.bluetooth_power = state;
1729}
1730
1731static ssize_t sony_pic_bluetoothpower_store(struct device *dev,
1732 struct device_attribute *attr,
1733 const char *buffer, size_t count)
1734{
1735 unsigned long value;
1736 if (count > 31)
1737 return -EINVAL;
1738
1739 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09001740 mutex_lock(&spic_dev.lock);
1741 __sony_pic_set_bluetoothpower(value);
1742 mutex_unlock(&spic_dev.lock);
malattia@linux.it49a11de2007-04-09 19:28:56 +02001743
1744 return count;
1745}
1746
1747static ssize_t sony_pic_bluetoothpower_show(struct device *dev,
1748 struct device_attribute *attr, char *buffer)
1749{
malattia@linux.it9f9f0762007-04-28 23:19:36 +09001750 ssize_t count = 0;
1751 mutex_lock(&spic_dev.lock);
1752 count = snprintf(buffer, PAGE_SIZE, "%d\n", spic_dev.bluetooth_power);
1753 mutex_unlock(&spic_dev.lock);
1754 return count;
malattia@linux.it49a11de2007-04-09 19:28:56 +02001755}
1756
1757/* fan speed */
1758/* FAN0 information (reverse engineered from ACPI tables) */
1759#define SONY_PIC_FAN0_STATUS 0x93
malattia@linux.it7b153f32007-04-09 19:31:25 +02001760static int sony_pic_set_fanspeed(unsigned long value)
1761{
1762 return ec_write(SONY_PIC_FAN0_STATUS, value);
1763}
1764
1765static int sony_pic_get_fanspeed(u8 *value)
1766{
1767 return ec_read(SONY_PIC_FAN0_STATUS, value);
1768}
1769
malattia@linux.it49a11de2007-04-09 19:28:56 +02001770static ssize_t sony_pic_fanspeed_store(struct device *dev,
1771 struct device_attribute *attr,
1772 const char *buffer, size_t count)
1773{
1774 unsigned long value;
1775 if (count > 31)
1776 return -EINVAL;
1777
1778 value = simple_strtoul(buffer, NULL, 10);
malattia@linux.it7b153f32007-04-09 19:31:25 +02001779 if (sony_pic_set_fanspeed(value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02001780 return -EIO;
1781
1782 return count;
1783}
1784
1785static ssize_t sony_pic_fanspeed_show(struct device *dev,
1786 struct device_attribute *attr, char *buffer)
1787{
1788 u8 value = 0;
malattia@linux.it7b153f32007-04-09 19:31:25 +02001789 if (sony_pic_get_fanspeed(&value))
malattia@linux.it49a11de2007-04-09 19:28:56 +02001790 return -EIO;
1791
1792 return snprintf(buffer, PAGE_SIZE, "%d\n", value);
1793}
1794
1795#define SPIC_ATTR(_name, _mode) \
1796struct device_attribute spic_attr_##_name = __ATTR(_name, \
1797 _mode, sony_pic_## _name ##_show, \
1798 sony_pic_## _name ##_store)
1799
malattia@linux.it49a11de2007-04-09 19:28:56 +02001800static SPIC_ATTR(bluetoothpower, 0644);
malattia@linux.it9476cdf2007-04-28 23:21:42 +09001801static SPIC_ATTR(wwanpower, 0644);
malattia@linux.it49a11de2007-04-09 19:28:56 +02001802static SPIC_ATTR(fanspeed, 0644);
1803
1804static struct attribute *spic_attributes[] = {
malattia@linux.it49a11de2007-04-09 19:28:56 +02001805 &spic_attr_bluetoothpower.attr,
malattia@linux.it9476cdf2007-04-28 23:21:42 +09001806 &spic_attr_wwanpower.attr,
malattia@linux.it49a11de2007-04-09 19:28:56 +02001807 &spic_attr_fanspeed.attr,
1808 NULL
1809};
1810
1811static struct attribute_group spic_attribute_group = {
1812 .attrs = spic_attributes
1813};
1814
malattia@linux.it7b153f32007-04-09 19:31:25 +02001815/******** SONYPI compatibility **********/
Mattia Dongilia64e62a2007-05-01 11:19:53 +09001816#ifdef CONFIG_SONYPI_COMPAT
malattia@linux.it7b153f32007-04-09 19:31:25 +02001817
1818/* battery / brightness / temperature addresses */
1819#define SONYPI_BAT_FLAGS 0x81
1820#define SONYPI_LCD_LIGHT 0x96
1821#define SONYPI_BAT1_PCTRM 0xa0
1822#define SONYPI_BAT1_LEFT 0xa2
1823#define SONYPI_BAT1_MAXRT 0xa4
1824#define SONYPI_BAT2_PCTRM 0xa8
1825#define SONYPI_BAT2_LEFT 0xaa
1826#define SONYPI_BAT2_MAXRT 0xac
1827#define SONYPI_BAT1_MAXTK 0xb0
1828#define SONYPI_BAT1_FULL 0xb2
1829#define SONYPI_BAT2_MAXTK 0xb8
1830#define SONYPI_BAT2_FULL 0xba
1831#define SONYPI_TEMP_STATUS 0xC1
1832
1833struct sonypi_compat_s {
1834 struct fasync_struct *fifo_async;
1835 struct kfifo *fifo;
1836 spinlock_t fifo_lock;
1837 wait_queue_head_t fifo_proc_list;
1838 atomic_t open_count;
1839};
1840static struct sonypi_compat_s sonypi_compat = {
1841 .open_count = ATOMIC_INIT(0),
1842};
1843
1844static int sonypi_misc_fasync(int fd, struct file *filp, int on)
1845{
1846 int retval;
1847
1848 retval = fasync_helper(fd, filp, on, &sonypi_compat.fifo_async);
1849 if (retval < 0)
1850 return retval;
1851 return 0;
1852}
1853
1854static int sonypi_misc_release(struct inode *inode, struct file *file)
1855{
1856 sonypi_misc_fasync(-1, file, 0);
1857 atomic_dec(&sonypi_compat.open_count);
1858 return 0;
1859}
1860
1861static int sonypi_misc_open(struct inode *inode, struct file *file)
1862{
1863 /* Flush input queue on first open */
1864 if (atomic_inc_return(&sonypi_compat.open_count) == 1)
1865 kfifo_reset(sonypi_compat.fifo);
1866 return 0;
1867}
1868
1869static ssize_t sonypi_misc_read(struct file *file, char __user *buf,
1870 size_t count, loff_t *pos)
1871{
1872 ssize_t ret;
1873 unsigned char c;
1874
1875 if ((kfifo_len(sonypi_compat.fifo) == 0) &&
1876 (file->f_flags & O_NONBLOCK))
1877 return -EAGAIN;
1878
1879 ret = wait_event_interruptible(sonypi_compat.fifo_proc_list,
1880 kfifo_len(sonypi_compat.fifo) != 0);
1881 if (ret)
1882 return ret;
1883
1884 while (ret < count &&
1885 (kfifo_get(sonypi_compat.fifo, &c, sizeof(c)) == sizeof(c))) {
1886 if (put_user(c, buf++))
1887 return -EFAULT;
1888 ret++;
1889 }
1890
1891 if (ret > 0) {
1892 struct inode *inode = file->f_path.dentry->d_inode;
1893 inode->i_atime = current_fs_time(inode->i_sb);
1894 }
1895
1896 return ret;
1897}
1898
1899static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait)
1900{
1901 poll_wait(file, &sonypi_compat.fifo_proc_list, wait);
1902 if (kfifo_len(sonypi_compat.fifo))
1903 return POLLIN | POLLRDNORM;
1904 return 0;
1905}
1906
1907static int ec_read16(u8 addr, u16 *value)
1908{
1909 u8 val_lb, val_hb;
1910 if (ec_read(addr, &val_lb))
1911 return -1;
1912 if (ec_read(addr + 1, &val_hb))
1913 return -1;
1914 *value = val_lb | (val_hb << 8);
1915 return 0;
1916}
1917
1918static int sonypi_misc_ioctl(struct inode *ip, struct file *fp,
1919 unsigned int cmd, unsigned long arg)
1920{
1921 int ret = 0;
1922 void __user *argp = (void __user *)arg;
1923 u8 val8;
1924 u16 val16;
1925 int value;
1926
malattia@linux.it9f9f0762007-04-28 23:19:36 +09001927 mutex_lock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02001928 switch (cmd) {
1929 case SONYPI_IOCGBRT:
1930 if (sony_backlight_device == NULL) {
1931 ret = -EIO;
1932 break;
1933 }
1934 if (acpi_callgetfunc(sony_nc_acpi_handle, "GBRT", &value)) {
1935 ret = -EIO;
1936 break;
1937 }
1938 val8 = ((value & 0xff) - 1) << 5;
1939 if (copy_to_user(argp, &val8, sizeof(val8)))
1940 ret = -EFAULT;
1941 break;
1942 case SONYPI_IOCSBRT:
1943 if (sony_backlight_device == NULL) {
1944 ret = -EIO;
1945 break;
1946 }
1947 if (copy_from_user(&val8, argp, sizeof(val8))) {
1948 ret = -EFAULT;
1949 break;
1950 }
1951 if (acpi_callsetfunc(sony_nc_acpi_handle, "SBRT",
1952 (val8 >> 5) + 1, NULL)) {
1953 ret = -EIO;
1954 break;
1955 }
1956 /* sync the backlight device status */
1957 sony_backlight_device->props.brightness =
1958 sony_backlight_get_brightness(sony_backlight_device);
1959 break;
1960 case SONYPI_IOCGBAT1CAP:
1961 if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
1962 ret = -EIO;
1963 break;
1964 }
1965 if (copy_to_user(argp, &val16, sizeof(val16)))
1966 ret = -EFAULT;
1967 break;
1968 case SONYPI_IOCGBAT1REM:
1969 if (ec_read16(SONYPI_BAT1_LEFT, &val16)) {
1970 ret = -EIO;
1971 break;
1972 }
1973 if (copy_to_user(argp, &val16, sizeof(val16)))
1974 ret = -EFAULT;
1975 break;
1976 case SONYPI_IOCGBAT2CAP:
1977 if (ec_read16(SONYPI_BAT2_FULL, &val16)) {
1978 ret = -EIO;
1979 break;
1980 }
1981 if (copy_to_user(argp, &val16, sizeof(val16)))
1982 ret = -EFAULT;
1983 break;
1984 case SONYPI_IOCGBAT2REM:
1985 if (ec_read16(SONYPI_BAT2_LEFT, &val16)) {
1986 ret = -EIO;
1987 break;
1988 }
1989 if (copy_to_user(argp, &val16, sizeof(val16)))
1990 ret = -EFAULT;
1991 break;
1992 case SONYPI_IOCGBATFLAGS:
1993 if (ec_read(SONYPI_BAT_FLAGS, &val8)) {
1994 ret = -EIO;
1995 break;
1996 }
1997 val8 &= 0x07;
1998 if (copy_to_user(argp, &val8, sizeof(val8)))
1999 ret = -EFAULT;
2000 break;
2001 case SONYPI_IOCGBLUE:
2002 val8 = spic_dev.bluetooth_power;
2003 if (copy_to_user(argp, &val8, sizeof(val8)))
2004 ret = -EFAULT;
2005 break;
2006 case SONYPI_IOCSBLUE:
2007 if (copy_from_user(&val8, argp, sizeof(val8))) {
2008 ret = -EFAULT;
2009 break;
2010 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002011 __sony_pic_set_bluetoothpower(val8);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002012 break;
2013 /* FAN Controls */
2014 case SONYPI_IOCGFAN:
2015 if (sony_pic_get_fanspeed(&val8)) {
2016 ret = -EIO;
2017 break;
2018 }
2019 if (copy_to_user(argp, &val8, sizeof(val8)))
2020 ret = -EFAULT;
2021 break;
2022 case SONYPI_IOCSFAN:
2023 if (copy_from_user(&val8, argp, sizeof(val8))) {
2024 ret = -EFAULT;
2025 break;
2026 }
2027 if (sony_pic_set_fanspeed(val8))
2028 ret = -EIO;
2029 break;
2030 /* GET Temperature (useful under APM) */
2031 case SONYPI_IOCGTEMP:
2032 if (ec_read(SONYPI_TEMP_STATUS, &val8)) {
2033 ret = -EIO;
2034 break;
2035 }
2036 if (copy_to_user(argp, &val8, sizeof(val8)))
2037 ret = -EFAULT;
2038 break;
2039 default:
2040 ret = -EINVAL;
2041 }
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002042 mutex_unlock(&spic_dev.lock);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002043 return ret;
2044}
2045
2046static const struct file_operations sonypi_misc_fops = {
2047 .owner = THIS_MODULE,
2048 .read = sonypi_misc_read,
2049 .poll = sonypi_misc_poll,
2050 .open = sonypi_misc_open,
2051 .release = sonypi_misc_release,
2052 .fasync = sonypi_misc_fasync,
2053 .ioctl = sonypi_misc_ioctl,
2054};
2055
2056static struct miscdevice sonypi_misc_device = {
2057 .minor = MISC_DYNAMIC_MINOR,
2058 .name = "sonypi",
2059 .fops = &sonypi_misc_fops,
2060};
2061
2062static void sonypi_compat_report_event(u8 event)
2063{
2064 kfifo_put(sonypi_compat.fifo, (unsigned char *)&event, sizeof(event));
2065 kill_fasync(&sonypi_compat.fifo_async, SIGIO, POLL_IN);
2066 wake_up_interruptible(&sonypi_compat.fifo_proc_list);
2067}
2068
2069static int sonypi_compat_init(void)
2070{
2071 int error;
2072
2073 spin_lock_init(&sonypi_compat.fifo_lock);
2074 sonypi_compat.fifo = kfifo_alloc(SONY_LAPTOP_BUF_SIZE, GFP_KERNEL,
2075 &sonypi_compat.fifo_lock);
2076 if (IS_ERR(sonypi_compat.fifo)) {
2077 printk(KERN_ERR DRV_PFX "kfifo_alloc failed\n");
2078 return PTR_ERR(sonypi_compat.fifo);
2079 }
2080
2081 init_waitqueue_head(&sonypi_compat.fifo_proc_list);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002082
2083 if (minor != -1)
2084 sonypi_misc_device.minor = minor;
2085 error = misc_register(&sonypi_misc_device);
2086 if (error) {
2087 printk(KERN_ERR DRV_PFX "misc_register failed\n");
2088 goto err_free_kfifo;
2089 }
2090 if (minor == -1)
malattia@linux.it5f3d2892007-04-28 23:18:45 +09002091 printk(KERN_INFO DRV_PFX "device allocated minor is %d\n",
malattia@linux.it7b153f32007-04-09 19:31:25 +02002092 sonypi_misc_device.minor);
2093
2094 return 0;
2095
2096err_free_kfifo:
2097 kfifo_free(sonypi_compat.fifo);
2098 return error;
2099}
2100
2101static void sonypi_compat_exit(void)
2102{
2103 misc_deregister(&sonypi_misc_device);
2104 kfifo_free(sonypi_compat.fifo);
2105}
2106#else
2107static int sonypi_compat_init(void) { return 0; }
2108static void sonypi_compat_exit(void) { }
2109static void sonypi_compat_report_event(u8 event) { }
Mattia Dongilia64e62a2007-05-01 11:19:53 +09002110#endif /* CONFIG_SONYPI_COMPAT */
malattia@linux.it7b153f32007-04-09 19:31:25 +02002111
malattia@linux.it1549ee62007-04-09 10:19:08 +02002112/*
malattia@linux.it33a04452007-04-09 19:26:03 +02002113 * ACPI callbacks
malattia@linux.it1549ee62007-04-09 10:19:08 +02002114 */
malattia@linux.it33a04452007-04-09 19:26:03 +02002115static acpi_status
2116sony_pic_read_possible_resource(struct acpi_resource *resource, void *context)
2117{
2118 u32 i;
2119 struct sony_pic_dev *dev = (struct sony_pic_dev *)context;
2120
2121 switch (resource->type) {
2122 case ACPI_RESOURCE_TYPE_START_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002123 {
2124 /* start IO enumeration */
2125 struct sony_pic_ioport *ioport = kzalloc(sizeof(*ioport), GFP_KERNEL);
2126 if (!ioport)
2127 return AE_ERROR;
2128
2129 list_add(&ioport->list, &dev->ioports);
2130 return AE_OK;
2131 }
2132
malattia@linux.it33a04452007-04-09 19:26:03 +02002133 case ACPI_RESOURCE_TYPE_END_DEPENDENT:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002134 /* end IO enumeration */
malattia@linux.it33a04452007-04-09 19:26:03 +02002135 return AE_OK;
2136
2137 case ACPI_RESOURCE_TYPE_IRQ:
2138 {
2139 struct acpi_resource_irq *p = &resource->data.irq;
2140 struct sony_pic_irq *interrupt = NULL;
2141 if (!p || !p->interrupt_count) {
2142 /*
2143 * IRQ descriptors may have no IRQ# bits set,
2144 * particularly those those w/ _STA disabled
2145 */
2146 dprintk("Blank IRQ resource\n");
2147 return AE_OK;
2148 }
2149 for (i = 0; i < p->interrupt_count; i++) {
2150 if (!p->interrupts[i]) {
2151 printk(KERN_WARNING DRV_PFX
2152 "Invalid IRQ %d\n",
2153 p->interrupts[i]);
2154 continue;
2155 }
2156 interrupt = kzalloc(sizeof(*interrupt),
2157 GFP_KERNEL);
2158 if (!interrupt)
2159 return AE_ERROR;
2160
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002161 list_add(&interrupt->list, &dev->interrupts);
malattia@linux.it33a04452007-04-09 19:26:03 +02002162 interrupt->irq.triggering = p->triggering;
2163 interrupt->irq.polarity = p->polarity;
2164 interrupt->irq.sharable = p->sharable;
2165 interrupt->irq.interrupt_count = 1;
2166 interrupt->irq.interrupts[0] = p->interrupts[i];
2167 }
2168 return AE_OK;
2169 }
2170 case ACPI_RESOURCE_TYPE_IO:
2171 {
2172 struct acpi_resource_io *io = &resource->data.io;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002173 struct sony_pic_ioport *ioport =
2174 list_first_entry(&dev->ioports, struct sony_pic_ioport, list);
malattia@linux.it33a04452007-04-09 19:26:03 +02002175 if (!io) {
2176 dprintk("Blank IO resource\n");
2177 return AE_OK;
2178 }
2179
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002180 if (!ioport->io1.minimum) {
2181 memcpy(&ioport->io1, io, sizeof(*io));
2182 dprintk("IO1 at 0x%.4x (0x%.2x)\n", ioport->io1.minimum,
2183 ioport->io1.address_length);
2184 }
2185 else if (!ioport->io2.minimum) {
2186 memcpy(&ioport->io2, io, sizeof(*io));
2187 dprintk("IO2 at 0x%.4x (0x%.2x)\n", ioport->io2.minimum,
2188 ioport->io2.address_length);
2189 }
2190 else {
2191 printk(KERN_ERR DRV_PFX "Unknown SPIC Type, more than 2 IO Ports\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002192 return AE_ERROR;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002193 }
malattia@linux.it33a04452007-04-09 19:26:03 +02002194 return AE_OK;
2195 }
2196 default:
2197 dprintk("Resource %d isn't an IRQ nor an IO port\n",
2198 resource->type);
2199
2200 case ACPI_RESOURCE_TYPE_END_TAG:
2201 return AE_OK;
2202 }
2203 return AE_CTRL_TERMINATE;
2204}
2205
2206static int sony_pic_possible_resources(struct acpi_device *device)
2207{
2208 int result = 0;
2209 acpi_status status = AE_OK;
2210
2211 if (!device)
2212 return -EINVAL;
2213
2214 /* get device status */
2215 /* see acpi_pci_link_get_current acpi_pci_link_get_possible */
2216 dprintk("Evaluating _STA\n");
2217 result = acpi_bus_get_status(device);
2218 if (result) {
2219 printk(KERN_WARNING DRV_PFX "Unable to read status\n");
2220 goto end;
2221 }
2222
2223 if (!device->status.enabled)
2224 dprintk("Device disabled\n");
2225 else
2226 dprintk("Device enabled\n");
2227
2228 /*
2229 * Query and parse 'method'
2230 */
2231 dprintk("Evaluating %s\n", METHOD_NAME__PRS);
2232 status = acpi_walk_resources(device->handle, METHOD_NAME__PRS,
2233 sony_pic_read_possible_resource, &spic_dev);
2234 if (ACPI_FAILURE(status)) {
2235 printk(KERN_WARNING DRV_PFX
2236 "Failure evaluating %s\n",
2237 METHOD_NAME__PRS);
2238 result = -ENODEV;
2239 }
2240end:
2241 return result;
2242}
2243
2244/*
2245 * Disable the spic device by calling its _DIS method
2246 */
2247static int sony_pic_disable(struct acpi_device *device)
2248{
Randy Dunlapf3a740c2007-07-15 23:40:49 -07002249 if (ACPI_FAILURE(acpi_evaluate_object(device->handle,
2250 "_DIS", NULL, NULL)))
malattia@linux.it33a04452007-04-09 19:26:03 +02002251 return -ENXIO;
2252
2253 dprintk("Device disabled\n");
2254 return 0;
2255}
2256
2257
2258/*
2259 * Based on drivers/acpi/pci_link.c:acpi_pci_link_set
2260 *
2261 * Call _SRS to set current resources
2262 */
2263static int sony_pic_enable(struct acpi_device *device,
2264 struct sony_pic_ioport *ioport, struct sony_pic_irq *irq)
2265{
2266 acpi_status status;
2267 int result = 0;
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002268 /* Type 1 resource layout is:
2269 * IO
2270 * IO
2271 * IRQNoFlags
2272 * End
2273 *
2274 * Type 2 and 3 resource layout is:
2275 * IO
2276 * IRQNoFlags
2277 * End
2278 */
malattia@linux.it33a04452007-04-09 19:26:03 +02002279 struct {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002280 struct acpi_resource res1;
2281 struct acpi_resource res2;
2282 struct acpi_resource res3;
2283 struct acpi_resource res4;
malattia@linux.it33a04452007-04-09 19:26:03 +02002284 } *resource;
2285 struct acpi_buffer buffer = { 0, NULL };
2286
2287 if (!ioport || !irq)
2288 return -EINVAL;
2289
2290 /* init acpi_buffer */
2291 resource = kzalloc(sizeof(*resource) + 1, GFP_KERNEL);
2292 if (!resource)
2293 return -ENOMEM;
2294
2295 buffer.length = sizeof(*resource) + 1;
2296 buffer.pointer = resource;
2297
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002298 /* setup Type 1 resources */
Mattia Dongilide920432008-01-14 18:05:43 +09002299 if (spic_dev.control->model == SONYPI_DEVICE_TYPE1) {
malattia@linux.it33a04452007-04-09 19:26:03 +02002300
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002301 /* setup io resources */
2302 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
2303 resource->res1.length = sizeof(struct acpi_resource);
2304 memcpy(&resource->res1.data.io, &ioport->io1,
2305 sizeof(struct acpi_resource_io));
malattia@linux.it33a04452007-04-09 19:26:03 +02002306
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002307 resource->res2.type = ACPI_RESOURCE_TYPE_IO;
2308 resource->res2.length = sizeof(struct acpi_resource);
2309 memcpy(&resource->res2.data.io, &ioport->io2,
2310 sizeof(struct acpi_resource_io));
2311
2312 /* setup irq resource */
2313 resource->res3.type = ACPI_RESOURCE_TYPE_IRQ;
2314 resource->res3.length = sizeof(struct acpi_resource);
2315 memcpy(&resource->res3.data.irq, &irq->irq,
2316 sizeof(struct acpi_resource_irq));
2317 /* we requested a shared irq */
2318 resource->res3.data.irq.sharable = ACPI_SHARED;
2319
2320 resource->res4.type = ACPI_RESOURCE_TYPE_END_TAG;
2321
2322 }
2323 /* setup Type 2/3 resources */
2324 else {
2325 /* setup io resource */
2326 resource->res1.type = ACPI_RESOURCE_TYPE_IO;
2327 resource->res1.length = sizeof(struct acpi_resource);
2328 memcpy(&resource->res1.data.io, &ioport->io1,
2329 sizeof(struct acpi_resource_io));
2330
2331 /* setup irq resource */
2332 resource->res2.type = ACPI_RESOURCE_TYPE_IRQ;
2333 resource->res2.length = sizeof(struct acpi_resource);
2334 memcpy(&resource->res2.data.irq, &irq->irq,
2335 sizeof(struct acpi_resource_irq));
2336 /* we requested a shared irq */
2337 resource->res2.data.irq.sharable = ACPI_SHARED;
2338
2339 resource->res3.type = ACPI_RESOURCE_TYPE_END_TAG;
2340 }
malattia@linux.it33a04452007-04-09 19:26:03 +02002341
2342 /* Attempt to set the resource */
2343 dprintk("Evaluating _SRS\n");
2344 status = acpi_set_current_resources(device->handle, &buffer);
2345
2346 /* check for total failure */
2347 if (ACPI_FAILURE(status)) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002348 printk(KERN_ERR DRV_PFX "Error evaluating _SRS\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002349 result = -ENODEV;
2350 goto end;
2351 }
2352
2353 /* Necessary device initializations calls (from sonypi) */
2354 sony_pic_call1(0x82);
2355 sony_pic_call2(0x81, 0xff);
2356 sony_pic_call1(compat ? 0x92 : 0x82);
2357
2358end:
2359 kfree(resource);
2360 return result;
2361}
2362
2363/*****************
2364 *
2365 * ISR: some event is available
2366 *
2367 *****************/
2368static irqreturn_t sony_pic_irq(int irq, void *dev_id)
2369{
2370 int i, j;
malattia@linux.it33a04452007-04-09 19:26:03 +02002371 u8 ev = 0;
2372 u8 data_mask = 0;
2373 u8 device_event = 0;
2374
2375 struct sony_pic_dev *dev = (struct sony_pic_dev *) dev_id;
2376
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002377 ev = inb_p(dev->cur_ioport->io1.minimum);
2378 if (dev->cur_ioport->io2.minimum)
2379 data_mask = inb_p(dev->cur_ioport->io2.minimum);
2380 else
Mattia Dongilide920432008-01-14 18:05:43 +09002381 data_mask = inb_p(dev->cur_ioport->io1.minimum +
2382 dev->control->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02002383
Mattia Dongili22a17782007-07-16 02:34:39 +09002384 dprintk("event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
Mattia Dongilide920432008-01-14 18:05:43 +09002385 ev, data_mask, dev->cur_ioport->io1.minimum,
2386 dev->control->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02002387
2388 if (ev == 0x00 || ev == 0xff)
2389 return IRQ_HANDLED;
2390
Mattia Dongilide920432008-01-14 18:05:43 +09002391 for (i = 0; dev->control->event_types[i].mask; i++) {
malattia@linux.it33a04452007-04-09 19:26:03 +02002392
Mattia Dongilide920432008-01-14 18:05:43 +09002393 if ((data_mask & dev->control->event_types[i].data) !=
2394 dev->control->event_types[i].data)
malattia@linux.it33a04452007-04-09 19:26:03 +02002395 continue;
2396
Mattia Dongilide920432008-01-14 18:05:43 +09002397 if (!(mask & dev->control->event_types[i].mask))
malattia@linux.it33a04452007-04-09 19:26:03 +02002398 continue;
2399
Mattia Dongilide920432008-01-14 18:05:43 +09002400 for (j = 0; dev->control->event_types[i].events[j].event; j++) {
2401 if (ev == dev->control->event_types[i].events[j].data) {
malattia@linux.it33a04452007-04-09 19:26:03 +02002402 device_event =
Mattia Dongilide920432008-01-14 18:05:43 +09002403 dev->control->
2404 event_types[i].events[j].event;
malattia@linux.it33a04452007-04-09 19:26:03 +02002405 goto found;
2406 }
2407 }
2408 }
Mattia Dongilide920432008-01-14 18:05:43 +09002409 dprintk("unknown event ([%.2x] [%.2x]) at port 0x%.4x(+0x%.2x)\n",
2410 ev, data_mask, dev->cur_ioport->io1.minimum,
2411 dev->control->evport_offset);
malattia@linux.it33a04452007-04-09 19:26:03 +02002412 return IRQ_HANDLED;
2413
2414found:
malattia@linux.it1549ee62007-04-09 10:19:08 +02002415 sony_laptop_report_input_event(device_event);
Mattia Dongilide920432008-01-14 18:05:43 +09002416 acpi_bus_generate_proc_event(dev->acpi_dev, 1, device_event);
malattia@linux.it7b153f32007-04-09 19:31:25 +02002417 sonypi_compat_report_event(device_event);
malattia@linux.it33a04452007-04-09 19:26:03 +02002418
2419 return IRQ_HANDLED;
2420}
2421
2422/*****************
2423 *
2424 * ACPI driver
2425 *
2426 *****************/
2427static int sony_pic_remove(struct acpi_device *device, int type)
2428{
2429 struct sony_pic_ioport *io, *tmp_io;
2430 struct sony_pic_irq *irq, *tmp_irq;
2431
2432 if (sony_pic_disable(device)) {
2433 printk(KERN_ERR DRV_PFX "Couldn't disable device.\n");
2434 return -ENXIO;
2435 }
2436
2437 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002438 release_region(spic_dev.cur_ioport->io1.minimum,
2439 spic_dev.cur_ioport->io1.address_length);
2440 if (spic_dev.cur_ioport->io2.minimum)
2441 release_region(spic_dev.cur_ioport->io2.minimum,
2442 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02002443
Mattia Dongili015a9162007-08-12 16:20:27 +09002444 sonypi_compat_exit();
2445
malattia@linux.it1549ee62007-04-09 10:19:08 +02002446 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02002447
malattia@linux.it49a11de2007-04-09 19:28:56 +02002448 /* pf attrs */
2449 sysfs_remove_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
2450 sony_pf_remove();
2451
malattia@linux.it33a04452007-04-09 19:26:03 +02002452 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
2453 list_del(&io->list);
2454 kfree(io);
2455 }
2456 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
2457 list_del(&irq->list);
2458 kfree(irq);
2459 }
2460 spic_dev.cur_ioport = NULL;
2461 spic_dev.cur_irq = NULL;
2462
malattia@linux.itf6119b02007-04-09 19:31:06 +02002463 dprintk(SONY_PIC_DRIVER_NAME " removed.\n");
malattia@linux.it33a04452007-04-09 19:26:03 +02002464 return 0;
2465}
2466
2467static int sony_pic_add(struct acpi_device *device)
2468{
2469 int result;
2470 struct sony_pic_ioport *io, *tmp_io;
2471 struct sony_pic_irq *irq, *tmp_irq;
2472
malattia@linux.itf6119b02007-04-09 19:31:06 +02002473 printk(KERN_INFO DRV_PFX "%s v%s.\n",
2474 SONY_PIC_DRIVER_NAME, SONY_LAPTOP_DRIVER_VERSION);
malattia@linux.it33a04452007-04-09 19:26:03 +02002475
2476 spic_dev.acpi_dev = device;
2477 strcpy(acpi_device_class(device), "sony/hotkey");
Mattia Dongilide920432008-01-14 18:05:43 +09002478 sony_pic_detect_device_type(&spic_dev);
malattia@linux.it9f9f0762007-04-28 23:19:36 +09002479 mutex_init(&spic_dev.lock);
malattia@linux.it33a04452007-04-09 19:26:03 +02002480
2481 /* read _PRS resources */
2482 result = sony_pic_possible_resources(device);
2483 if (result) {
2484 printk(KERN_ERR DRV_PFX
2485 "Unabe to read possible resources.\n");
2486 goto err_free_resources;
2487 }
2488
2489 /* setup input devices and helper fifo */
Dmitry Torokhov2e4d2422007-11-21 14:15:53 -05002490 result = sony_laptop_setup_input(device);
malattia@linux.it33a04452007-04-09 19:26:03 +02002491 if (result) {
2492 printk(KERN_ERR DRV_PFX
2493 "Unabe to create input devices.\n");
2494 goto err_free_resources;
2495 }
2496
Mattia Dongili015a9162007-08-12 16:20:27 +09002497 if (sonypi_compat_init())
2498 goto err_remove_input;
2499
malattia@linux.it33a04452007-04-09 19:26:03 +02002500 /* request io port */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002501 list_for_each_entry_reverse(io, &spic_dev.ioports, list) {
2502 if (request_region(io->io1.minimum, io->io1.address_length,
malattia@linux.it33a04452007-04-09 19:26:03 +02002503 "Sony Programable I/O Device")) {
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002504 dprintk("I/O port1: 0x%.4x (0x%.4x) + 0x%.2x\n",
2505 io->io1.minimum, io->io1.maximum,
2506 io->io1.address_length);
2507 /* Type 1 have 2 ioports */
2508 if (io->io2.minimum) {
2509 if (request_region(io->io2.minimum,
2510 io->io2.address_length,
2511 "Sony Programable I/O Device")) {
2512 dprintk("I/O port2: 0x%.4x (0x%.4x) + 0x%.2x\n",
2513 io->io2.minimum, io->io2.maximum,
2514 io->io2.address_length);
2515 spic_dev.cur_ioport = io;
2516 break;
2517 }
2518 else {
2519 dprintk("Unable to get I/O port2: "
2520 "0x%.4x (0x%.4x) + 0x%.2x\n",
2521 io->io2.minimum, io->io2.maximum,
2522 io->io2.address_length);
2523 release_region(io->io1.minimum,
2524 io->io1.address_length);
2525 }
2526 }
2527 else {
2528 spic_dev.cur_ioport = io;
2529 break;
2530 }
malattia@linux.it33a04452007-04-09 19:26:03 +02002531 }
2532 }
2533 if (!spic_dev.cur_ioport) {
2534 printk(KERN_ERR DRV_PFX "Failed to request_region.\n");
2535 result = -ENODEV;
Mattia Dongili015a9162007-08-12 16:20:27 +09002536 goto err_remove_compat;
malattia@linux.it33a04452007-04-09 19:26:03 +02002537 }
2538
2539 /* request IRQ */
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002540 list_for_each_entry_reverse(irq, &spic_dev.interrupts, list) {
malattia@linux.it33a04452007-04-09 19:26:03 +02002541 if (!request_irq(irq->irq.interrupts[0], sony_pic_irq,
2542 IRQF_SHARED, "sony-laptop", &spic_dev)) {
2543 dprintk("IRQ: %d - triggering: %d - "
2544 "polarity: %d - shr: %d\n",
2545 irq->irq.interrupts[0],
2546 irq->irq.triggering,
2547 irq->irq.polarity,
2548 irq->irq.sharable);
2549 spic_dev.cur_irq = irq;
2550 break;
2551 }
2552 }
2553 if (!spic_dev.cur_irq) {
2554 printk(KERN_ERR DRV_PFX "Failed to request_irq.\n");
2555 result = -ENODEV;
2556 goto err_release_region;
2557 }
2558
2559 /* set resource status _SRS */
2560 result = sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
2561 if (result) {
2562 printk(KERN_ERR DRV_PFX "Couldn't enable device.\n");
2563 goto err_free_irq;
2564 }
2565
malattia@linux.it49a11de2007-04-09 19:28:56 +02002566 spic_dev.bluetooth_power = -1;
2567 /* create device attributes */
2568 result = sony_pf_add();
2569 if (result)
2570 goto err_disable_device;
2571
2572 result = sysfs_create_group(&sony_pf_device->dev.kobj, &spic_attribute_group);
2573 if (result)
2574 goto err_remove_pf;
2575
malattia@linux.it33a04452007-04-09 19:26:03 +02002576 return 0;
2577
malattia@linux.it49a11de2007-04-09 19:28:56 +02002578err_remove_pf:
2579 sony_pf_remove();
2580
2581err_disable_device:
2582 sony_pic_disable(device);
2583
malattia@linux.it33a04452007-04-09 19:26:03 +02002584err_free_irq:
2585 free_irq(spic_dev.cur_irq->irq.interrupts[0], &spic_dev);
2586
2587err_release_region:
Mattia Dongilifd1caae2007-08-12 16:20:28 +09002588 release_region(spic_dev.cur_ioport->io1.minimum,
2589 spic_dev.cur_ioport->io1.address_length);
2590 if (spic_dev.cur_ioport->io2.minimum)
2591 release_region(spic_dev.cur_ioport->io2.minimum,
2592 spic_dev.cur_ioport->io2.address_length);
malattia@linux.it33a04452007-04-09 19:26:03 +02002593
Mattia Dongili015a9162007-08-12 16:20:27 +09002594err_remove_compat:
2595 sonypi_compat_exit();
2596
malattia@linux.it33a04452007-04-09 19:26:03 +02002597err_remove_input:
malattia@linux.it1549ee62007-04-09 10:19:08 +02002598 sony_laptop_remove_input();
malattia@linux.it33a04452007-04-09 19:26:03 +02002599
2600err_free_resources:
2601 list_for_each_entry_safe(io, tmp_io, &spic_dev.ioports, list) {
2602 list_del(&io->list);
2603 kfree(io);
2604 }
2605 list_for_each_entry_safe(irq, tmp_irq, &spic_dev.interrupts, list) {
2606 list_del(&irq->list);
2607 kfree(irq);
2608 }
2609 spic_dev.cur_ioport = NULL;
2610 spic_dev.cur_irq = NULL;
2611
2612 return result;
2613}
2614
2615static int sony_pic_suspend(struct acpi_device *device, pm_message_t state)
2616{
2617 if (sony_pic_disable(device))
2618 return -ENXIO;
2619 return 0;
2620}
2621
2622static int sony_pic_resume(struct acpi_device *device)
2623{
2624 sony_pic_enable(device, spic_dev.cur_ioport, spic_dev.cur_irq);
2625 return 0;
2626}
2627
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002628static const struct acpi_device_id sony_pic_device_ids[] = {
2629 {SONY_PIC_HID, 0},
2630 {"", 0},
2631};
2632
malattia@linux.it33a04452007-04-09 19:26:03 +02002633static struct acpi_driver sony_pic_driver = {
2634 .name = SONY_PIC_DRIVER_NAME,
2635 .class = SONY_PIC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +02002636 .ids = sony_pic_device_ids,
malattia@linux.it33a04452007-04-09 19:26:03 +02002637 .owner = THIS_MODULE,
2638 .ops = {
2639 .add = sony_pic_add,
2640 .remove = sony_pic_remove,
2641 .suspend = sony_pic_suspend,
2642 .resume = sony_pic_resume,
2643 },
2644};
2645
2646static struct dmi_system_id __initdata sonypi_dmi_table[] = {
2647 {
2648 .ident = "Sony Vaio",
2649 .matches = {
2650 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
2651 DMI_MATCH(DMI_PRODUCT_NAME, "PCG-"),
2652 },
2653 },
2654 {
2655 .ident = "Sony Vaio",
2656 .matches = {
2657 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
2658 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-"),
2659 },
2660 },
2661 { }
2662};
2663
malattia@linux.it59b19102007-04-09 10:19:04 +02002664static int __init sony_laptop_init(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01002665{
malattia@linux.it33a04452007-04-09 19:26:03 +02002666 int result;
2667
2668 if (!no_spic && dmi_check_system(sonypi_dmi_table)) {
2669 result = acpi_bus_register_driver(&sony_pic_driver);
2670 if (result) {
2671 printk(KERN_ERR DRV_PFX
2672 "Unable to register SPIC driver.");
2673 goto out;
2674 }
2675 }
2676
2677 result = acpi_bus_register_driver(&sony_nc_driver);
2678 if (result) {
2679 printk(KERN_ERR DRV_PFX "Unable to register SNC driver.");
2680 goto out_unregister_pic;
2681 }
2682
2683 return 0;
2684
2685out_unregister_pic:
2686 if (!no_spic)
2687 acpi_bus_unregister_driver(&sony_pic_driver);
2688out:
2689 return result;
Stelian Pop7f09c432007-01-13 23:04:31 +01002690}
2691
malattia@linux.it59b19102007-04-09 10:19:04 +02002692static void __exit sony_laptop_exit(void)
Stelian Pop7f09c432007-01-13 23:04:31 +01002693{
malattia@linux.it59b19102007-04-09 10:19:04 +02002694 acpi_bus_unregister_driver(&sony_nc_driver);
malattia@linux.it33a04452007-04-09 19:26:03 +02002695 if (!no_spic)
2696 acpi_bus_unregister_driver(&sony_pic_driver);
Stelian Pop7f09c432007-01-13 23:04:31 +01002697}
2698
malattia@linux.it59b19102007-04-09 10:19:04 +02002699module_init(sony_laptop_init);
2700module_exit(sony_laptop_exit);