blob: c65f5893e0e299cbd12a8745abac087c1454919a [file] [log] [blame]
Stelian Pop7f09c432007-01-13 23:04:31 +01001/*
2 * ACPI Sony Notebook Control Driver (SNC)
3 *
4 * Copyright (C) 2004-2005 Stelian Pop <stelian@popies.net>
5 *
6 * Parts of this driver inspired from asus_acpi.c and ibm_acpi.c
7 * which are copyrighted by their respective authors.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/init.h>
29#include <linux/types.h>
Alessandro Guido50f62af2007-01-13 23:04:34 +010030#include <linux/backlight.h>
31#include <linux/err.h>
Stelian Pop7f09c432007-01-13 23:04:31 +010032#include <acpi/acpi_drivers.h>
33#include <acpi/acpi_bus.h>
34#include <asm/uaccess.h>
35
36#define ACPI_SNC_CLASS "sony"
37#define ACPI_SNC_HID "SNY5001"
Alessandro Guido50f62af2007-01-13 23:04:34 +010038#define ACPI_SNC_DRIVER_NAME "ACPI Sony Notebook Control Driver v0.3"
39
40/* the device uses 1-based values, while the backlight subsystem uses
41 0-based values */
42#define SONY_MAX_BRIGHTNESS 8
Stelian Pop7f09c432007-01-13 23:04:31 +010043
44#define LOG_PFX KERN_WARNING "sony_acpi: "
45
46MODULE_AUTHOR("Stelian Pop");
47MODULE_DESCRIPTION(ACPI_SNC_DRIVER_NAME);
48MODULE_LICENSE("GPL");
49
50static int debug;
51module_param(debug, int, 0);
52MODULE_PARM_DESC(debug, "set this to 1 (and RTFM) if you want to help "
53 "the development of this driver");
54
Stelian Pop7f09c432007-01-13 23:04:31 +010055static acpi_handle sony_acpi_handle;
56static struct proc_dir_entry *sony_acpi_dir;
Stelian Popc5611622007-01-13 23:04:37 +010057static struct acpi_device *sony_acpi_acpi_device = NULL;
Stelian Pop7f09c432007-01-13 23:04:31 +010058
Alessandro Guido50f62af2007-01-13 23:04:34 +010059static int sony_backlight_update_status(struct backlight_device *bd);
60static int sony_backlight_get_brightness(struct backlight_device *bd);
61static struct backlight_device *sony_backlight_device;
62static struct backlight_properties sony_backlight_properties = {
63 .owner = THIS_MODULE,
64 .update_status = sony_backlight_update_status,
65 .get_brightness = sony_backlight_get_brightness,
66 .max_brightness = SONY_MAX_BRIGHTNESS - 1,
67};
68
Stelian Pop7f09c432007-01-13 23:04:31 +010069static struct sony_acpi_value {
70 char *name; /* name of the entry */
Mattia Dongili57ede702007-01-13 23:04:40 +010071 struct proc_dir_entry *proc; /* /proc entry */
Stelian Pop7f09c432007-01-13 23:04:31 +010072 char *acpiget;/* name of the ACPI get function */
73 char *acpiset;/* name of the ACPI get function */
74 int min; /* minimum allowed value or -1 */
75 int max; /* maximum allowed value or -1 */
Andrew Morton3f4f4612007-01-13 23:04:32 +010076 int value; /* current setting */
77 int valid; /* Has ever been set */
Stelian Pop7f09c432007-01-13 23:04:31 +010078 int debug; /* active only in debug mode ? */
79} sony_acpi_values[] = {
80 {
Mattia Dongili57ede702007-01-13 23:04:40 +010081 /* for backward compatibility only */
Alessandro Guido243e8b12007-01-13 23:04:35 +010082 .name = "brightness",
83 .acpiget = "GBRT",
84 .acpiset = "SBRT",
85 .min = 1,
86 .max = SONY_MAX_BRIGHTNESS,
87 .debug = 0,
88 },
89 {
Stelian Pop7f09c432007-01-13 23:04:31 +010090 .name = "brightness_default",
91 .acpiget = "GPBR",
92 .acpiset = "SPBR",
93 .min = 1,
Alessandro Guido50f62af2007-01-13 23:04:34 +010094 .max = SONY_MAX_BRIGHTNESS,
Stelian Pop7f09c432007-01-13 23:04:31 +010095 .debug = 0,
96 },
97 {
98 .name = "fnkey",
99 .acpiget = "GHKE",
100 .debug = 0,
101 },
102 {
103 .name = "cdpower",
104 .acpiget = "GCDP",
105 .acpiset = "SCDP",
Mattia Dongili44658572007-01-13 23:04:39 +0100106 .min = 0,
107 .max = 1,
Stelian Pop7f09c432007-01-13 23:04:31 +0100108 .debug = 0,
109 },
110 {
Mattia Dongili57ede702007-01-13 23:04:40 +0100111 .name = "cdpower",
112 .acpiget = "GCDP",
113 .acpiset = "CDPW",
114 .min = 0,
115 .max = 1,
116 .debug = 0,
117 },
118 {
Mattia Dongili44658572007-01-13 23:04:39 +0100119 .name = "audiopower",
120 .acpiget = "GAZP",
121 .acpiset = "AZPW",
122 .min = 0,
123 .max = 1,
124 .debug = 0,
125 },
126 {
127 .name = "lanpower",
128 .acpiget = "GLNP",
129 .acpiset = "LNPW",
130 .min = 0,
131 .max = 1,
132 .debug = 1,
133 },
134 {
Stelian Pop7f09c432007-01-13 23:04:31 +0100135 .name = "PID",
136 .acpiget = "GPID",
137 .debug = 1,
138 },
139 {
140 .name = "CTR",
141 .acpiget = "GCTR",
142 .acpiset = "SCTR",
143 .min = -1,
144 .max = -1,
145 .debug = 1,
146 },
147 {
148 .name = "PCR",
149 .acpiget = "GPCR",
150 .acpiset = "SPCR",
151 .min = -1,
152 .max = -1,
153 .debug = 1,
154 },
155 {
156 .name = "CMI",
157 .acpiget = "GCMI",
158 .acpiset = "SCMI",
159 .min = -1,
160 .max = -1,
161 .debug = 1,
162 },
163 {
164 .name = NULL,
165 }
166};
167
168static int acpi_callgetfunc(acpi_handle handle, char *name, int *result)
169{
170 struct acpi_buffer output;
171 union acpi_object out_obj;
172 acpi_status status;
173
174 output.length = sizeof(out_obj);
175 output.pointer = &out_obj;
176
177 status = acpi_evaluate_object(handle, name, NULL, &output);
178 if ((status == AE_OK) && (out_obj.type == ACPI_TYPE_INTEGER)) {
179 *result = out_obj.integer.value;
180 return 0;
181 }
182
183 printk(LOG_PFX "acpi_callreadfunc failed\n");
184
185 return -1;
186}
187
188static int acpi_callsetfunc(acpi_handle handle, char *name, int value,
189 int *result)
190{
191 struct acpi_object_list params;
192 union acpi_object in_obj;
193 struct acpi_buffer output;
194 union acpi_object out_obj;
195 acpi_status status;
196
197 params.count = 1;
198 params.pointer = &in_obj;
199 in_obj.type = ACPI_TYPE_INTEGER;
200 in_obj.integer.value = value;
201
202 output.length = sizeof(out_obj);
203 output.pointer = &out_obj;
204
205 status = acpi_evaluate_object(handle, name, &params, &output);
206 if (status == AE_OK) {
207 if (result != NULL) {
208 if (out_obj.type != ACPI_TYPE_INTEGER) {
209 printk(LOG_PFX "acpi_evaluate_object bad "
210 "return type\n");
211 return -1;
212 }
213 *result = out_obj.integer.value;
214 }
215 return 0;
216 }
217
218 printk(LOG_PFX "acpi_evaluate_object failed\n");
219
220 return -1;
221}
222
223static int parse_buffer(const char __user *buffer, unsigned long count,
224 int *val) {
225 char s[32];
226 int ret;
227
228 if (count > 31)
229 return -EINVAL;
230 if (copy_from_user(s, buffer, count))
231 return -EFAULT;
232 s[count] = '\0';
233 ret = simple_strtoul(s, NULL, 10);
234 *val = ret;
235 return 0;
236}
237
238static int sony_acpi_read(char* page, char** start, off_t off, int count,
239 int* eof, void *data)
240{
241 struct sony_acpi_value *item = data;
242 int value;
243
244 if (!item->acpiget)
245 return -EIO;
246
247 if (acpi_callgetfunc(sony_acpi_handle, item->acpiget, &value) < 0)
248 return -EIO;
249
250 return sprintf(page, "%d\n", value);
251}
252
253static int sony_acpi_write(struct file *file, const char __user *buffer,
254 unsigned long count, void *data)
255{
256 struct sony_acpi_value *item = data;
257 int result;
258 int value;
259
260 if (!item->acpiset)
261 return -EIO;
262
263 if ((result = parse_buffer(buffer, count, &value)) < 0)
264 return result;
265
266 if (item->min != -1 && value < item->min)
267 return -EINVAL;
268 if (item->max != -1 && value > item->max)
269 return -EINVAL;
270
271 if (acpi_callsetfunc(sony_acpi_handle, item->acpiset, value, NULL) < 0)
272 return -EIO;
Andrew Morton3f4f4612007-01-13 23:04:32 +0100273 item->value = value;
274 item->valid = 1;
Stelian Pop7f09c432007-01-13 23:04:31 +0100275 return count;
276}
277
Andrew Mortonfac35062007-01-13 23:04:33 +0100278static int sony_acpi_resume(struct acpi_device *device)
Andrew Morton3f4f4612007-01-13 23:04:32 +0100279{
280 struct sony_acpi_value *item;
281
282 for (item = sony_acpi_values; item->name; item++) {
283 int ret;
284
285 if (!item->valid)
286 continue;
287 ret = acpi_callsetfunc(sony_acpi_handle, item->acpiset,
288 item->value, NULL);
289 if (ret < 0) {
290 printk("%s: %d\n", __FUNCTION__, ret);
291 break;
292 }
293 }
294 return 0;
295}
296
Stelian Pop7f09c432007-01-13 23:04:31 +0100297static void sony_acpi_notify(acpi_handle handle, u32 event, void *data)
298{
Stelian Popc5611622007-01-13 23:04:37 +0100299 if (debug)
300 printk(LOG_PFX "sony_acpi_notify, event: %d\n", event);
301 acpi_bus_generate_event(sony_acpi_acpi_device, 1, event);
Stelian Pop7f09c432007-01-13 23:04:31 +0100302}
303
304static acpi_status sony_walk_callback(acpi_handle handle, u32 level,
305 void *context, void **return_value)
306{
307 struct acpi_namespace_node *node;
308 union acpi_operand_object *operand;
309
310 node = (struct acpi_namespace_node *) handle;
311 operand = (union acpi_operand_object *) node->object;
312
313 printk(LOG_PFX "method: name: %4.4s, args %X\n", node->name.ascii,
314 (u32) operand->method.param_count);
315
316 return AE_OK;
317}
318
319static int sony_acpi_add(struct acpi_device *device)
320{
321 acpi_status status;
322 int result;
Alessandro Guido50f62af2007-01-13 23:04:34 +0100323 acpi_handle handle;
Mattia Dongili05e2d822007-01-13 23:04:38 +0100324 mode_t proc_file_mode;
Stelian Pop7f09c432007-01-13 23:04:31 +0100325 struct sony_acpi_value *item;
326
Stelian Popc5611622007-01-13 23:04:37 +0100327 sony_acpi_acpi_device = device;
328
Stelian Pop7f09c432007-01-13 23:04:31 +0100329 sony_acpi_handle = device->handle;
330
331 acpi_driver_data(device) = NULL;
332 acpi_device_dir(device) = sony_acpi_dir;
333
334 if (debug) {
335 status = acpi_walk_namespace(ACPI_TYPE_METHOD, sony_acpi_handle,
336 1, sony_walk_callback, NULL, NULL);
337 if (ACPI_FAILURE(status)) {
338 printk(LOG_PFX "unable to walk acpi resources\n");
339 result = -ENODEV;
340 goto outwalk;
341 }
Stelian Popc5611622007-01-13 23:04:37 +0100342 }
Stelian Pop7f09c432007-01-13 23:04:31 +0100343
Stelian Popc5611622007-01-13 23:04:37 +0100344 status = acpi_install_notify_handler(sony_acpi_handle,
345 ACPI_DEVICE_NOTIFY,
346 sony_acpi_notify,
347 NULL);
348 if (ACPI_FAILURE(status)) {
349 printk(LOG_PFX "unable to install notify handler\n");
350 result = -ENODEV;
351 goto outnotify;
Stelian Pop7f09c432007-01-13 23:04:31 +0100352 }
353
Alessandro Guido50f62af2007-01-13 23:04:34 +0100354 if (ACPI_SUCCESS(acpi_get_handle(sony_acpi_handle, "GBRT", &handle))) {
355 sony_backlight_device = backlight_device_register("sony", NULL,
Andrew Morton82c47732007-01-13 23:04:36 +0100356 NULL, &sony_backlight_properties);
Alessandro Guido50f62af2007-01-13 23:04:34 +0100357 if (IS_ERR(sony_backlight_device)) {
358 printk(LOG_PFX "unable to register backlight device\n");
359 }
360 }
Stelian Pop7f09c432007-01-13 23:04:31 +0100361
Alessandro Guido50f62af2007-01-13 23:04:34 +0100362 for (item = sony_acpi_values; item->name; ++item) {
Mattia Dongili05e2d822007-01-13 23:04:38 +0100363 proc_file_mode = 0;
364
Stelian Pop7f09c432007-01-13 23:04:31 +0100365 if (!debug && item->debug)
366 continue;
367
Mattia Dongili57ede702007-01-13 23:04:40 +0100368 if (item->acpiget) {
369 if (ACPI_FAILURE(acpi_get_handle(sony_acpi_handle,
370 item->acpiget, &handle)))
371 continue;
Stelian Pop7f09c432007-01-13 23:04:31 +0100372
Mattia Dongili57ede702007-01-13 23:04:40 +0100373 proc_file_mode |= S_IRUSR;
374 }
375
376 if (item->acpiset) {
377 if (ACPI_FAILURE(acpi_get_handle(sony_acpi_handle,
378 item->acpiset, &handle)))
379 continue;
380
Mattia Dongili05e2d822007-01-13 23:04:38 +0100381 proc_file_mode |= S_IWUSR;
Mattia Dongili57ede702007-01-13 23:04:40 +0100382 }
Mattia Dongili05e2d822007-01-13 23:04:38 +0100383
384 item->proc = create_proc_entry(item->name, proc_file_mode,
Mattia Dongili57ede702007-01-13 23:04:40 +0100385 acpi_device_dir(device));
Stelian Pop7f09c432007-01-13 23:04:31 +0100386 if (!item->proc) {
387 printk(LOG_PFX "unable to create proc entry\n");
388 result = -EIO;
389 goto outproc;
390 }
391
392 item->proc->read_proc = sony_acpi_read;
393 item->proc->write_proc = sony_acpi_write;
394 item->proc->data = item;
395 item->proc->owner = THIS_MODULE;
396 }
397
398 printk(KERN_INFO ACPI_SNC_DRIVER_NAME " successfully installed\n");
399
400 return 0;
401
402outproc:
Mattia Dongili05e2d822007-01-13 23:04:38 +0100403 for (item = sony_acpi_values; item->name; ++item)
404 if (item->proc)
405 remove_proc_entry(item->name, acpi_device_dir(device));
406outnotify:
Stelian Popc5611622007-01-13 23:04:37 +0100407 status = acpi_remove_notify_handler(sony_acpi_handle,
408 ACPI_DEVICE_NOTIFY,
409 sony_acpi_notify);
410 if (ACPI_FAILURE(status))
411 printk(LOG_PFX "unable to remove notify handler\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100412outwalk:
413 return result;
414}
415
Stelian Pop7f09c432007-01-13 23:04:31 +0100416static int sony_acpi_remove(struct acpi_device *device, int type)
417{
418 acpi_status status;
419 struct sony_acpi_value *item;
420
Alessandro Guido50f62af2007-01-13 23:04:34 +0100421 if (sony_backlight_device)
422 backlight_device_unregister(sony_backlight_device);
423
Stelian Popc5611622007-01-13 23:04:37 +0100424 sony_acpi_acpi_device = NULL;
425
426 status = acpi_remove_notify_handler(sony_acpi_handle,
427 ACPI_DEVICE_NOTIFY,
428 sony_acpi_notify);
429 if (ACPI_FAILURE(status))
430 printk(LOG_PFX "unable to remove notify handler\n");
Stelian Pop7f09c432007-01-13 23:04:31 +0100431
432 for (item = sony_acpi_values; item->name; ++item)
433 if (item->proc)
434 remove_proc_entry(item->name, acpi_device_dir(device));
435
436 printk(KERN_INFO ACPI_SNC_DRIVER_NAME " successfully removed\n");
437
438 return 0;
439}
440
Alessandro Guido50f62af2007-01-13 23:04:34 +0100441static int sony_backlight_update_status(struct backlight_device *bd)
442{
443 return acpi_callsetfunc(sony_acpi_handle, "SBRT",
444 bd->props->brightness + 1,
445 NULL);
446}
447
448static int sony_backlight_get_brightness(struct backlight_device *bd)
449{
450 int value;
451
452 if (acpi_callgetfunc(sony_acpi_handle, "GBRT", &value))
453 return 0;
454 /* brightness levels are 1-based, while backlight ones are 0-based */
455 return value - 1;
456}
457
Andrew Morton3f4f4612007-01-13 23:04:32 +0100458static struct acpi_driver sony_acpi_driver = {
459 .name = ACPI_SNC_DRIVER_NAME,
460 .class = ACPI_SNC_CLASS,
461 .ids = ACPI_SNC_HID,
462 .ops = {
463 .add = sony_acpi_add,
464 .remove = sony_acpi_remove,
465 .resume = sony_acpi_resume,
466 },
467};
468
Stelian Pop7f09c432007-01-13 23:04:31 +0100469static int __init sony_acpi_init(void)
470{
471 int result;
472
473 sony_acpi_dir = proc_mkdir("sony", acpi_root_dir);
474 if (!sony_acpi_dir) {
475 printk(LOG_PFX "unable to create /proc entry\n");
476 return -ENODEV;
477 }
478 sony_acpi_dir->owner = THIS_MODULE;
479
480 result = acpi_bus_register_driver(&sony_acpi_driver);
481 if (result < 0) {
482 remove_proc_entry("sony", acpi_root_dir);
483 return -ENODEV;
484 }
485 return 0;
486}
487
488
489static void __exit sony_acpi_exit(void)
490{
491 acpi_bus_unregister_driver(&sony_acpi_driver);
492 remove_proc_entry("sony", acpi_root_dir);
493}
494
495module_init(sony_acpi_init);
496module_exit(sony_acpi_exit);