blob: 46435ac4684f91a9ba1738e0b995bb294aeadeb2 [file] [log] [blame]
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001/*
2 * Driver for Dell laptop extras
3 *
4 * Copyright (c) Red Hat <mjg@redhat.com>
5 *
6 * Based on documentation in the libsmbios package, Copyright (C) 2005 Dell
7 * Inc.
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 version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/platform_device.h>
18#include <linux/backlight.h>
19#include <linux/err.h>
20#include <linux/dmi.h>
21#include <linux/io.h>
22#include <linux/rfkill.h>
23#include <linux/power_supply.h>
24#include <linux/acpi.h>
Stuart Hayes116ee772010-02-10 14:12:13 -050025#include <linux/mm.h>
Matthew Garrett814cb8a2009-12-09 18:23:36 +000026#include <linux/i8042.h>
Len Browncad73122009-01-09 17:23:38 -050027#include "../../firmware/dcdbas.h"
Matthew Garrettad8f07c2009-01-07 18:08:56 -080028
29#define BRIGHTNESS_TOKEN 0x7d
30
31/* This structure will be modified by the firmware when we enter
32 * system management mode, hence the volatiles */
33
34struct calling_interface_buffer {
35 u16 class;
36 u16 select;
37 volatile u32 input[4];
38 volatile u32 output[4];
39} __packed;
40
41struct calling_interface_token {
42 u16 tokenID;
43 u16 location;
44 union {
45 u16 value;
46 u16 stringlength;
47 };
48};
49
50struct calling_interface_structure {
51 struct dmi_header header;
52 u16 cmdIOAddress;
53 u8 cmdIOCode;
54 u32 supportedCmds;
55 struct calling_interface_token tokens[];
56} __packed;
57
58static int da_command_address;
59static int da_command_code;
60static int da_num_tokens;
61static struct calling_interface_token *da_tokens;
62
Alan Jenkinsada32482009-08-19 15:06:49 +010063static struct platform_driver platform_driver = {
64 .driver = {
65 .name = "dell-laptop",
66 .owner = THIS_MODULE,
67 }
68};
69
70static struct platform_device *platform_device;
Matthew Garrettad8f07c2009-01-07 18:08:56 -080071static struct backlight_device *dell_backlight_device;
72static struct rfkill *wifi_rfkill;
73static struct rfkill *bluetooth_rfkill;
74static struct rfkill *wwan_rfkill;
75
76static const struct dmi_system_id __initdata dell_device_table[] = {
77 {
78 .ident = "Dell laptop",
79 .matches = {
80 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
81 DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
82 },
83 },
Erik Andrencb6a7932010-02-14 11:53:23 -050084 {
85 .ident = "Dell Computer Corporation",
86 .matches = {
87 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
88 DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
89 },
90 },
Matthew Garrettad8f07c2009-01-07 18:08:56 -080091 { }
92};
93
Mario Limoncielloe5fefd02010-02-09 17:41:03 -050094static struct dmi_system_id __devinitdata dell_blacklist[] = {
95 /* Supported by compal-laptop */
96 {
97 .ident = "Dell Mini 9",
98 .matches = {
99 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
100 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 910"),
101 },
102 },
103 {
104 .ident = "Dell Mini 10",
105 .matches = {
106 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
107 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1010"),
108 },
109 },
110 {
111 .ident = "Dell Mini 10v",
112 .matches = {
113 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
114 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1011"),
115 },
116 },
117 {
118 .ident = "Dell Inspiron 11z",
119 .matches = {
120 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
121 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1110"),
122 },
123 },
124 {
125 .ident = "Dell Mini 12",
126 .matches = {
127 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
128 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1210"),
129 },
130 },
131 {}
132};
133
Stuart Hayes116ee772010-02-10 14:12:13 -0500134static struct calling_interface_buffer *buffer;
Ingo Molnar94d8f782010-03-01 09:43:52 -0500135static struct page *bufferpage;
136static DEFINE_MUTEX(buffer_mutex);
Stuart Hayes116ee772010-02-10 14:12:13 -0500137
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500138static int hwswitch_state;
139
Stuart Hayes116ee772010-02-10 14:12:13 -0500140static void get_buffer(void)
141{
142 mutex_lock(&buffer_mutex);
143 memset(buffer, 0, sizeof(struct calling_interface_buffer));
144}
145
146static void release_buffer(void)
147{
148 mutex_unlock(&buffer_mutex);
149}
150
Alan Jenkins4788df42009-08-19 15:06:50 +0100151static void __init parse_da_table(const struct dmi_header *dm)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800152{
153 /* Final token is a terminator, so we don't want to copy it */
154 int tokens = (dm->length-11)/sizeof(struct calling_interface_token)-1;
155 struct calling_interface_structure *table =
156 container_of(dm, struct calling_interface_structure, header);
157
158 /* 4 bytes of table header, plus 7 bytes of Dell header, plus at least
159 6 bytes of entry */
160
161 if (dm->length < 17)
162 return;
163
164 da_command_address = table->cmdIOAddress;
165 da_command_code = table->cmdIOCode;
166
167 da_tokens = krealloc(da_tokens, (da_num_tokens + tokens) *
168 sizeof(struct calling_interface_token),
169 GFP_KERNEL);
170
171 if (!da_tokens)
172 return;
173
174 memcpy(da_tokens+da_num_tokens, table->tokens,
175 sizeof(struct calling_interface_token) * tokens);
176
177 da_num_tokens += tokens;
178}
179
Alan Jenkins4788df42009-08-19 15:06:50 +0100180static void __init find_tokens(const struct dmi_header *dm, void *dummy)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800181{
182 switch (dm->type) {
183 case 0xd4: /* Indexed IO */
184 break;
185 case 0xd5: /* Protected Area Type 1 */
186 break;
187 case 0xd6: /* Protected Area Type 2 */
188 break;
189 case 0xda: /* Calling interface */
190 parse_da_table(dm);
191 break;
192 }
193}
194
195static int find_token_location(int tokenid)
196{
197 int i;
198 for (i = 0; i < da_num_tokens; i++) {
199 if (da_tokens[i].tokenID == tokenid)
200 return da_tokens[i].location;
201 }
202
203 return -1;
204}
205
206static struct calling_interface_buffer *
207dell_send_request(struct calling_interface_buffer *buffer, int class,
208 int select)
209{
210 struct smi_cmd command;
211
212 command.magic = SMI_CMD_MAGIC;
213 command.command_address = da_command_address;
214 command.command_code = da_command_code;
215 command.ebx = virt_to_phys(buffer);
216 command.ecx = 0x42534931;
217
218 buffer->class = class;
219 buffer->select = select;
220
221 dcdbas_smi_request(&command);
222
223 return buffer;
224}
225
226/* Derived from information in DellWirelessCtl.cpp:
227 Class 17, select 11 is radio control. It returns an array of 32-bit values.
228
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500229 Input byte 0 = 0: Wireless information
230
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800231 result[0]: return code
232 result[1]:
233 Bit 0: Hardware switch supported
234 Bit 1: Wifi locator supported
235 Bit 2: Wifi is supported
236 Bit 3: Bluetooth is supported
237 Bit 4: WWAN is supported
238 Bit 5: Wireless keyboard supported
239 Bits 6-7: Reserved
240 Bit 8: Wifi is installed
241 Bit 9: Bluetooth is installed
242 Bit 10: WWAN is installed
243 Bits 11-15: Reserved
244 Bit 16: Hardware switch is on
245 Bit 17: Wifi is blocked
246 Bit 18: Bluetooth is blocked
247 Bit 19: WWAN is blocked
248 Bits 20-31: Reserved
249 result[2]: NVRAM size in bytes
250 result[3]: NVRAM format version number
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500251
252 Input byte 0 = 2: Wireless switch configuration
253 result[0]: return code
254 result[1]:
255 Bit 0: Wifi controlled by switch
256 Bit 1: Bluetooth controlled by switch
257 Bit 2: WWAN controlled by switch
258 Bits 3-6: Reserved
259 Bit 7: Wireless switch config locked
260 Bit 8: Wifi locator enabled
261 Bits 9-14: Reserved
262 Bit 15: Wifi locator setting locked
263 Bits 16-31: Reserved
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800264*/
265
Johannes Berg19d337d2009-06-02 13:01:37 +0200266static int dell_rfkill_set(void *data, bool blocked)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800267{
Johannes Berg624f0de2009-06-15 16:26:47 +0200268 int disable = blocked ? 1 : 0;
Johannes Berg19d337d2009-06-02 13:01:37 +0200269 unsigned long radio = (unsigned long)data;
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500270 int hwswitch_bit = (unsigned long)data - 1;
Stuart Hayes116ee772010-02-10 14:12:13 -0500271 int ret = 0;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800272
Stuart Hayes116ee772010-02-10 14:12:13 -0500273 get_buffer();
274 dell_send_request(buffer, 17, 11);
Mario Limoncielloec1722a2010-02-09 14:11:05 -0500275
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500276 /* If the hardware switch controls this radio, and the hardware
277 switch is disabled, don't allow changing the software state */
278 if ((hwswitch_state & BIT(hwswitch_bit)) &&
279 !(buffer->output[1] & BIT(16))) {
Stuart Hayes116ee772010-02-10 14:12:13 -0500280 ret = -EINVAL;
281 goto out;
282 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800283
Stuart Hayes116ee772010-02-10 14:12:13 -0500284 buffer->input[0] = (1 | (radio<<8) | (disable << 16));
285 dell_send_request(buffer, 17, 11);
286
287out:
288 release_buffer();
289 return ret;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800290}
291
Johannes Berg19d337d2009-06-02 13:01:37 +0200292static void dell_rfkill_query(struct rfkill *rfkill, void *data)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800293{
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800294 int status;
Johannes Berg19d337d2009-06-02 13:01:37 +0200295 int bit = (unsigned long)data + 16;
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500296 int hwswitch_bit = (unsigned long)data - 1;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800297
Stuart Hayes116ee772010-02-10 14:12:13 -0500298 get_buffer();
299 dell_send_request(buffer, 17, 11);
300 status = buffer->output[1];
301 release_buffer();
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800302
Matthew Garrette1fbf342009-07-31 03:25:38 +0100303 rfkill_set_sw_state(rfkill, !!(status & BIT(bit)));
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500304
305 if (hwswitch_state & (BIT(hwswitch_bit)))
306 rfkill_set_hw_state(rfkill, !(status & BIT(16)));
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800307}
308
Johannes Berg19d337d2009-06-02 13:01:37 +0200309static const struct rfkill_ops dell_rfkill_ops = {
310 .set_block = dell_rfkill_set,
311 .query = dell_rfkill_query,
312};
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800313
Matthew Garrett814cb8a2009-12-09 18:23:36 +0000314static void dell_update_rfkill(struct work_struct *ignored)
315{
316 if (wifi_rfkill)
317 dell_rfkill_query(wifi_rfkill, (void *)1);
318 if (bluetooth_rfkill)
319 dell_rfkill_query(bluetooth_rfkill, (void *)2);
320 if (wwan_rfkill)
321 dell_rfkill_query(wwan_rfkill, (void *)3);
322}
323static DECLARE_DELAYED_WORK(dell_rfkill_work, dell_update_rfkill);
324
325
Alan Jenkins4788df42009-08-19 15:06:50 +0100326static int __init dell_setup_rfkill(void)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800327{
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800328 int status;
329 int ret;
330
Mario Limoncielloe5fefd02010-02-09 17:41:03 -0500331 if (dmi_check_system(dell_blacklist)) {
332 printk(KERN_INFO "dell-laptop: Blacklisted hardware detected - "
333 "not enabling rfkill\n");
334 return 0;
335 }
336
Stuart Hayes116ee772010-02-10 14:12:13 -0500337 get_buffer();
338 dell_send_request(buffer, 17, 11);
339 status = buffer->output[1];
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500340 buffer->input[0] = 0x2;
341 dell_send_request(buffer, 17, 11);
342 hwswitch_state = buffer->output[1];
Stuart Hayes116ee772010-02-10 14:12:13 -0500343 release_buffer();
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800344
345 if ((status & (1<<2|1<<8)) == (1<<2|1<<8)) {
Alan Jenkinsada32482009-08-19 15:06:49 +0100346 wifi_rfkill = rfkill_alloc("dell-wifi", &platform_device->dev,
347 RFKILL_TYPE_WLAN,
Johannes Berg19d337d2009-06-02 13:01:37 +0200348 &dell_rfkill_ops, (void *) 1);
349 if (!wifi_rfkill) {
350 ret = -ENOMEM;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800351 goto err_wifi;
Johannes Berg19d337d2009-06-02 13:01:37 +0200352 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800353 ret = rfkill_register(wifi_rfkill);
354 if (ret)
355 goto err_wifi;
356 }
357
358 if ((status & (1<<3|1<<9)) == (1<<3|1<<9)) {
Alan Jenkinsada32482009-08-19 15:06:49 +0100359 bluetooth_rfkill = rfkill_alloc("dell-bluetooth",
360 &platform_device->dev,
Johannes Berg19d337d2009-06-02 13:01:37 +0200361 RFKILL_TYPE_BLUETOOTH,
362 &dell_rfkill_ops, (void *) 2);
363 if (!bluetooth_rfkill) {
364 ret = -ENOMEM;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800365 goto err_bluetooth;
Johannes Berg19d337d2009-06-02 13:01:37 +0200366 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800367 ret = rfkill_register(bluetooth_rfkill);
368 if (ret)
369 goto err_bluetooth;
370 }
371
372 if ((status & (1<<4|1<<10)) == (1<<4|1<<10)) {
Alan Jenkinsada32482009-08-19 15:06:49 +0100373 wwan_rfkill = rfkill_alloc("dell-wwan",
374 &platform_device->dev,
375 RFKILL_TYPE_WWAN,
Johannes Berg19d337d2009-06-02 13:01:37 +0200376 &dell_rfkill_ops, (void *) 3);
377 if (!wwan_rfkill) {
378 ret = -ENOMEM;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800379 goto err_wwan;
Johannes Berg19d337d2009-06-02 13:01:37 +0200380 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800381 ret = rfkill_register(wwan_rfkill);
382 if (ret)
383 goto err_wwan;
384 }
385
386 return 0;
387err_wwan:
Johannes Berg19d337d2009-06-02 13:01:37 +0200388 rfkill_destroy(wwan_rfkill);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800389 if (bluetooth_rfkill)
Johannes Berg19d337d2009-06-02 13:01:37 +0200390 rfkill_unregister(bluetooth_rfkill);
391err_bluetooth:
392 rfkill_destroy(bluetooth_rfkill);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800393 if (wifi_rfkill)
Johannes Berg19d337d2009-06-02 13:01:37 +0200394 rfkill_unregister(wifi_rfkill);
395err_wifi:
396 rfkill_destroy(wifi_rfkill);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800397
398 return ret;
399}
400
Alan Jenkins4311bb22009-08-19 15:06:48 +0100401static void dell_cleanup_rfkill(void)
402{
403 if (wifi_rfkill) {
404 rfkill_unregister(wifi_rfkill);
405 rfkill_destroy(wifi_rfkill);
406 }
407 if (bluetooth_rfkill) {
408 rfkill_unregister(bluetooth_rfkill);
409 rfkill_destroy(bluetooth_rfkill);
410 }
411 if (wwan_rfkill) {
412 rfkill_unregister(wwan_rfkill);
413 rfkill_destroy(wwan_rfkill);
414 }
415}
416
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800417static int dell_send_intensity(struct backlight_device *bd)
418{
Stuart Hayes116ee772010-02-10 14:12:13 -0500419 int ret = 0;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800420
Stuart Hayes116ee772010-02-10 14:12:13 -0500421 get_buffer();
422 buffer->input[0] = find_token_location(BRIGHTNESS_TOKEN);
423 buffer->input[1] = bd->props.brightness;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800424
Stuart Hayes116ee772010-02-10 14:12:13 -0500425 if (buffer->input[0] == -1) {
426 ret = -ENODEV;
427 goto out;
428 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800429
430 if (power_supply_is_system_supplied() > 0)
Stuart Hayes116ee772010-02-10 14:12:13 -0500431 dell_send_request(buffer, 1, 2);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800432 else
Stuart Hayes116ee772010-02-10 14:12:13 -0500433 dell_send_request(buffer, 1, 1);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800434
Stuart Hayes116ee772010-02-10 14:12:13 -0500435out:
436 release_buffer();
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800437 return 0;
438}
439
440static int dell_get_intensity(struct backlight_device *bd)
441{
Stuart Hayes116ee772010-02-10 14:12:13 -0500442 int ret = 0;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800443
Stuart Hayes116ee772010-02-10 14:12:13 -0500444 get_buffer();
445 buffer->input[0] = find_token_location(BRIGHTNESS_TOKEN);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800446
Stuart Hayes116ee772010-02-10 14:12:13 -0500447 if (buffer->input[0] == -1) {
448 ret = -ENODEV;
449 goto out;
450 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800451
452 if (power_supply_is_system_supplied() > 0)
Stuart Hayes116ee772010-02-10 14:12:13 -0500453 dell_send_request(buffer, 0, 2);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800454 else
Stuart Hayes116ee772010-02-10 14:12:13 -0500455 dell_send_request(buffer, 0, 1);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800456
Stuart Hayes116ee772010-02-10 14:12:13 -0500457out:
458 release_buffer();
459 if (ret)
460 return ret;
461 return buffer->output[1];
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800462}
463
464static struct backlight_ops dell_ops = {
465 .get_brightness = dell_get_intensity,
466 .update_status = dell_send_intensity,
467};
468
Matthew Garrett814cb8a2009-12-09 18:23:36 +0000469bool dell_laptop_i8042_filter(unsigned char data, unsigned char str,
470 struct serio *port)
471{
472 static bool extended;
473
474 if (str & 0x20)
475 return false;
476
477 if (unlikely(data == 0xe0)) {
478 extended = true;
479 return false;
480 } else if (unlikely(extended)) {
481 switch (data) {
482 case 0x8:
483 schedule_delayed_work(&dell_rfkill_work,
484 round_jiffies_relative(HZ));
485 break;
486 }
487 extended = false;
488 }
489
490 return false;
491}
492
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800493static int __init dell_init(void)
494{
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800495 int max_intensity = 0;
496 int ret;
497
498 if (!dmi_check_system(dell_device_table))
499 return -ENODEV;
500
Jean Delvaree7a19c562009-03-30 21:46:44 +0200501 dmi_walk(find_tokens, NULL);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800502
503 if (!da_tokens) {
504 printk(KERN_INFO "dell-laptop: Unable to find dmi tokens\n");
505 return -ENODEV;
506 }
507
Alan Jenkinsada32482009-08-19 15:06:49 +0100508 ret = platform_driver_register(&platform_driver);
509 if (ret)
510 goto fail_platform_driver;
511 platform_device = platform_device_alloc("dell-laptop", -1);
512 if (!platform_device) {
513 ret = -ENOMEM;
514 goto fail_platform_device1;
515 }
516 ret = platform_device_add(platform_device);
517 if (ret)
518 goto fail_platform_device2;
519
Stuart Hayes116ee772010-02-10 14:12:13 -0500520 /*
521 * Allocate buffer below 4GB for SMI data--only 32-bit physical addr
522 * is passed to SMI handler.
523 */
524 bufferpage = alloc_page(GFP_KERNEL | GFP_DMA32);
525
526 if (!bufferpage)
527 goto fail_buffer;
528 buffer = page_address(bufferpage);
529 mutex_init(&buffer_mutex);
530
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800531 ret = dell_setup_rfkill();
532
533 if (ret) {
534 printk(KERN_WARNING "dell-laptop: Unable to setup rfkill\n");
Alan Jenkins71e9dc72009-08-19 15:06:47 +0100535 goto fail_rfkill;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800536 }
537
Matthew Garrett814cb8a2009-12-09 18:23:36 +0000538 ret = i8042_install_filter(dell_laptop_i8042_filter);
539 if (ret) {
540 printk(KERN_WARNING
541 "dell-laptop: Unable to install key filter\n");
542 goto fail_filter;
543 }
544
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800545#ifdef CONFIG_ACPI
546 /* In the event of an ACPI backlight being available, don't
547 * register the platform controller.
548 */
549 if (acpi_video_backlight_support())
550 return 0;
551#endif
552
Stuart Hayes116ee772010-02-10 14:12:13 -0500553 get_buffer();
554 buffer->input[0] = find_token_location(BRIGHTNESS_TOKEN);
555 if (buffer->input[0] != -1) {
556 dell_send_request(buffer, 0, 2);
557 max_intensity = buffer->output[3];
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800558 }
Stuart Hayes116ee772010-02-10 14:12:13 -0500559 release_buffer();
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800560
561 if (max_intensity) {
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500562 struct backlight_properties props;
563 memset(&props, 0, sizeof(struct backlight_properties));
564 props.max_brightness = max_intensity;
565 dell_backlight_device = backlight_device_register("dell_backlight",
566 &platform_device->dev,
567 NULL,
568 &dell_ops,
569 &props);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800570
571 if (IS_ERR(dell_backlight_device)) {
572 ret = PTR_ERR(dell_backlight_device);
573 dell_backlight_device = NULL;
Alan Jenkins71e9dc72009-08-19 15:06:47 +0100574 goto fail_backlight;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800575 }
576
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800577 dell_backlight_device->props.brightness =
578 dell_get_intensity(dell_backlight_device);
579 backlight_update_status(dell_backlight_device);
580 }
581
582 return 0;
Alan Jenkins71e9dc72009-08-19 15:06:47 +0100583
584fail_backlight:
Matthew Garrett814cb8a2009-12-09 18:23:36 +0000585 i8042_remove_filter(dell_laptop_i8042_filter);
Matthew Garrett92e00e42010-03-01 09:46:43 -0500586 cancel_delayed_work_sync(&dell_rfkill_work);
Matthew Garrett814cb8a2009-12-09 18:23:36 +0000587fail_filter:
Alan Jenkins4311bb22009-08-19 15:06:48 +0100588 dell_cleanup_rfkill();
Alan Jenkins71e9dc72009-08-19 15:06:47 +0100589fail_rfkill:
Stuart Hayes116ee772010-02-10 14:12:13 -0500590 free_page((unsigned long)bufferpage);
591fail_buffer:
Alan Jenkinsada32482009-08-19 15:06:49 +0100592 platform_device_del(platform_device);
593fail_platform_device2:
594 platform_device_put(platform_device);
595fail_platform_device1:
596 platform_driver_unregister(&platform_driver);
597fail_platform_driver:
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800598 kfree(da_tokens);
599 return ret;
600}
601
602static void __exit dell_exit(void)
603{
Matthew Garrett814cb8a2009-12-09 18:23:36 +0000604 i8042_remove_filter(dell_laptop_i8042_filter);
Matthew Garrett92e00e42010-03-01 09:46:43 -0500605 cancel_delayed_work_sync(&dell_rfkill_work);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800606 backlight_device_unregister(dell_backlight_device);
Alan Jenkins4311bb22009-08-19 15:06:48 +0100607 dell_cleanup_rfkill();
Matthew Garrettfacd61d2010-02-09 14:03:04 -0500608 if (platform_device) {
Matthew Garrett92e00e42010-03-01 09:46:43 -0500609 platform_device_unregister(platform_device);
Matthew Garrettfacd61d2010-02-09 14:03:04 -0500610 platform_driver_unregister(&platform_driver);
611 }
Matthew Garrette5512602010-02-09 14:05:01 -0500612 kfree(da_tokens);
Stuart Hayes116ee772010-02-10 14:12:13 -0500613 free_page((unsigned long)buffer);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800614}
615
616module_init(dell_init);
617module_exit(dell_exit);
618
619MODULE_AUTHOR("Matthew Garrett <mjg@redhat.com>");
620MODULE_DESCRIPTION("Dell laptop driver");
621MODULE_LICENSE("GPL");
622MODULE_ALIAS("dmi:*svnDellInc.:*:ct8:*");
Erik Andrencb6a7932010-02-14 11:53:23 -0500623MODULE_ALIAS("dmi:*svnDellComputerCorporation.:*:ct8:*");