blob: 35758cbc6bc84c501e9599bccc9fdcaf8c091a67 [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>
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +01005 * Copyright (c) 2014 Gabriele Mazzotta <gabriele.mzt@gmail.com>
6 * Copyright (c) 2014 Pali Rohár <pali.rohar@gmail.com>
Matthew Garrettad8f07c2009-01-07 18:08:56 -08007 *
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +01008 * Based on documentation in the libsmbios package:
9 * Copyright (C) 2005-2014 Dell Inc.
Matthew Garrettad8f07c2009-01-07 18:08:56 -080010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
Joe Percheseb889522011-03-29 15:21:37 -070016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Matthew Garrettad8f07c2009-01-07 18:08:56 -080018#include <linux/module.h>
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/backlight.h>
23#include <linux/err.h>
24#include <linux/dmi.h>
25#include <linux/io.h>
Hans de Goede4cc8a572013-11-17 14:00:16 +010026#include <linux/rfkill.h>
Matthew Garrettad8f07c2009-01-07 18:08:56 -080027#include <linux/power_supply.h>
28#include <linux/acpi.h>
Stuart Hayes116ee772010-02-10 14:12:13 -050029#include <linux/mm.h>
Matthew Garrett814cb8a2009-12-09 18:23:36 +000030#include <linux/i8042.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Keng-Yu Lin037accf2010-09-28 11:43:31 +080032#include <linux/debugfs.h>
33#include <linux/seq_file.h>
Len Browncad73122009-01-09 17:23:38 -050034#include "../../firmware/dcdbas.h"
Pali Rohárf8358572015-06-06 10:23:30 +020035#include "dell-rbtn.h"
Matthew Garrettad8f07c2009-01-07 18:08:56 -080036
37#define BRIGHTNESS_TOKEN 0x7d
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +010038#define KBD_LED_OFF_TOKEN 0x01E1
39#define KBD_LED_ON_TOKEN 0x01E2
40#define KBD_LED_AUTO_TOKEN 0x01E3
41#define KBD_LED_AUTO_25_TOKEN 0x02EA
42#define KBD_LED_AUTO_50_TOKEN 0x02EB
43#define KBD_LED_AUTO_75_TOKEN 0x02EC
44#define KBD_LED_AUTO_100_TOKEN 0x02F6
Matthew Garrettad8f07c2009-01-07 18:08:56 -080045
46/* This structure will be modified by the firmware when we enter
47 * system management mode, hence the volatiles */
48
49struct calling_interface_buffer {
50 u16 class;
51 u16 select;
52 volatile u32 input[4];
53 volatile u32 output[4];
54} __packed;
55
56struct calling_interface_token {
57 u16 tokenID;
58 u16 location;
59 union {
60 u16 value;
61 u16 stringlength;
62 };
63};
64
65struct calling_interface_structure {
66 struct dmi_header header;
67 u16 cmdIOAddress;
68 u8 cmdIOCode;
69 u32 supportedCmds;
70 struct calling_interface_token tokens[];
71} __packed;
72
AceLan Kao2d8b90b2011-10-04 16:25:44 +080073struct quirk_entry {
74 u8 touchpad_led;
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +010075
76 int needs_kbd_timeouts;
77 /*
78 * Ordered list of timeouts expressed in seconds.
79 * The list must end with -1
80 */
81 int kbd_timeouts[];
AceLan Kao2d8b90b2011-10-04 16:25:44 +080082};
83
84static struct quirk_entry *quirks;
85
86static struct quirk_entry quirk_dell_vostro_v130 = {
87 .touchpad_led = 1,
88};
89
Mathias Krause681480c2014-07-16 19:43:09 +020090static int __init dmi_matched(const struct dmi_system_id *dmi)
AceLan Kao2d8b90b2011-10-04 16:25:44 +080091{
92 quirks = dmi->driver_data;
93 return 1;
94}
95
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +010096/*
97 * These values come from Windows utility provided by Dell. If any other value
98 * is used then BIOS silently set timeout to 0 without any error message.
99 */
100static struct quirk_entry quirk_dell_xps13_9333 = {
101 .needs_kbd_timeouts = 1,
102 .kbd_timeouts = { 0, 5, 15, 60, 5 * 60, 15 * 60, -1 },
103};
104
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800105static int da_command_address;
106static int da_command_code;
107static int da_num_tokens;
108static struct calling_interface_token *da_tokens;
109
Alan Jenkinsada32482009-08-19 15:06:49 +0100110static struct platform_driver platform_driver = {
111 .driver = {
112 .name = "dell-laptop",
Alan Jenkinsada32482009-08-19 15:06:49 +0100113 }
114};
115
116static struct platform_device *platform_device;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800117static struct backlight_device *dell_backlight_device;
Hans de Goede4cc8a572013-11-17 14:00:16 +0100118static struct rfkill *wifi_rfkill;
119static struct rfkill *bluetooth_rfkill;
120static struct rfkill *wwan_rfkill;
Hans de Goede8e0e668d2013-11-17 14:00:26 +0100121static bool force_rfkill;
122
123module_param(force_rfkill, bool, 0444);
124MODULE_PARM_DESC(force_rfkill, "enable rfkill on non whitelisted models");
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800125
Uwe Kleine-König145047d2012-03-30 22:05:04 +0200126static const struct dmi_system_id dell_device_table[] __initconst = {
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800127 {
128 .ident = "Dell laptop",
129 .matches = {
130 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
131 DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
132 },
133 },
Erik Andrencb6a7932010-02-14 11:53:23 -0500134 {
Rezwanul Kabir410d44c2010-06-23 12:02:43 -0500135 .matches = {
136 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
137 DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /*Laptop*/
138 },
139 },
140 {
Erik Andrencb6a7932010-02-14 11:53:23 -0500141 .ident = "Dell Computer Corporation",
142 .matches = {
143 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
144 DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
145 },
146 },
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800147 { }
148};
Dmitry Torokhov35ae64f2011-11-14 00:25:00 -0800149MODULE_DEVICE_TABLE(dmi, dell_device_table);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800150
Mathias Krause681480c2014-07-16 19:43:09 +0200151static const struct dmi_system_id dell_quirks[] __initconst = {
AceLan Kao2d8b90b2011-10-04 16:25:44 +0800152 {
153 .callback = dmi_matched,
154 .ident = "Dell Vostro V130",
155 .matches = {
156 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
157 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V130"),
158 },
159 .driver_data = &quirk_dell_vostro_v130,
160 },
161 {
162 .callback = dmi_matched,
163 .ident = "Dell Vostro V131",
164 .matches = {
165 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
166 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
167 },
168 .driver_data = &quirk_dell_vostro_v130,
169 },
AceLan Kao2a748852011-11-17 15:30:42 +0800170 {
171 .callback = dmi_matched,
Ang Way Chuang57b31b22012-04-12 13:11:27 +0800172 .ident = "Dell Vostro 3350",
173 .matches = {
174 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
175 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"),
176 },
177 .driver_data = &quirk_dell_vostro_v130,
178 },
179 {
180 .callback = dmi_matched,
AceLan Kao2a748852011-11-17 15:30:42 +0800181 .ident = "Dell Vostro 3555",
182 .matches = {
183 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
184 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3555"),
185 },
186 .driver_data = &quirk_dell_vostro_v130,
187 },
188 {
189 .callback = dmi_matched,
190 .ident = "Dell Inspiron N311z",
191 .matches = {
192 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
193 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron N311z"),
194 },
195 .driver_data = &quirk_dell_vostro_v130,
196 },
197 {
198 .callback = dmi_matched,
199 .ident = "Dell Inspiron M5110",
200 .matches = {
201 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
202 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron M5110"),
203 },
204 .driver_data = &quirk_dell_vostro_v130,
205 },
AceLan Kao7f839222012-04-20 11:47:26 +0800206 {
207 .callback = dmi_matched,
208 .ident = "Dell Vostro 3360",
209 .matches = {
210 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
211 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3360"),
212 },
213 .driver_data = &quirk_dell_vostro_v130,
214 },
215 {
216 .callback = dmi_matched,
217 .ident = "Dell Vostro 3460",
218 .matches = {
219 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
220 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3460"),
221 },
222 .driver_data = &quirk_dell_vostro_v130,
223 },
224 {
225 .callback = dmi_matched,
226 .ident = "Dell Vostro 3560",
227 .matches = {
228 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
229 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3560"),
230 },
231 .driver_data = &quirk_dell_vostro_v130,
232 },
AceLan Kaod0e0a4772012-05-22 12:38:51 +0800233 {
234 .callback = dmi_matched,
235 .ident = "Dell Vostro 3450",
236 .matches = {
237 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
238 DMI_MATCH(DMI_PRODUCT_NAME, "Dell System Vostro 3450"),
239 },
240 .driver_data = &quirk_dell_vostro_v130,
241 },
AceLan Kao5f1e88f42012-07-13 16:39:57 +0800242 {
243 .callback = dmi_matched,
244 .ident = "Dell Inspiron 5420",
245 .matches = {
246 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
AceLan Kaoa2174ba2012-08-06 09:48:58 +0800247 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5420"),
AceLan Kao5f1e88f42012-07-13 16:39:57 +0800248 },
249 .driver_data = &quirk_dell_vostro_v130,
250 },
251 {
252 .callback = dmi_matched,
253 .ident = "Dell Inspiron 5520",
254 .matches = {
255 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
AceLan Kaoa2174ba2012-08-06 09:48:58 +0800256 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5520"),
AceLan Kao5f1e88f42012-07-13 16:39:57 +0800257 },
258 .driver_data = &quirk_dell_vostro_v130,
259 },
260 {
261 .callback = dmi_matched,
262 .ident = "Dell Inspiron 5720",
263 .matches = {
264 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
AceLan Kaoa2174ba2012-08-06 09:48:58 +0800265 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5720"),
AceLan Kao5f1e88f42012-07-13 16:39:57 +0800266 },
267 .driver_data = &quirk_dell_vostro_v130,
268 },
269 {
270 .callback = dmi_matched,
271 .ident = "Dell Inspiron 7420",
272 .matches = {
273 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
AceLan Kaoa2174ba2012-08-06 09:48:58 +0800274 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7420"),
AceLan Kao5f1e88f42012-07-13 16:39:57 +0800275 },
276 .driver_data = &quirk_dell_vostro_v130,
277 },
278 {
279 .callback = dmi_matched,
280 .ident = "Dell Inspiron 7520",
281 .matches = {
282 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
AceLan Kaoa2174ba2012-08-06 09:48:58 +0800283 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7520"),
AceLan Kao5f1e88f42012-07-13 16:39:57 +0800284 },
285 .driver_data = &quirk_dell_vostro_v130,
286 },
287 {
288 .callback = dmi_matched,
289 .ident = "Dell Inspiron 7720",
290 .matches = {
291 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
AceLan Kaoa2174ba2012-08-06 09:48:58 +0800292 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7720"),
AceLan Kao5f1e88f42012-07-13 16:39:57 +0800293 },
294 .driver_data = &quirk_dell_vostro_v130,
295 },
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100296 {
297 .callback = dmi_matched,
298 .ident = "Dell XPS13 9333",
299 .matches = {
300 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
301 DMI_MATCH(DMI_PRODUCT_NAME, "XPS13 9333"),
302 },
303 .driver_data = &quirk_dell_xps13_9333,
304 },
Martin Nyhusd62d4212012-03-15 18:25:48 +0100305 { }
AceLan Kao2d8b90b2011-10-04 16:25:44 +0800306};
307
Stuart Hayes116ee772010-02-10 14:12:13 -0500308static struct calling_interface_buffer *buffer;
Ingo Molnar94d8f782010-03-01 09:43:52 -0500309static DEFINE_MUTEX(buffer_mutex);
Stuart Hayes116ee772010-02-10 14:12:13 -0500310
Matthew Garrettc6760ac2010-02-10 14:44:03 -0500311static int hwswitch_state;
312
Stuart Hayes116ee772010-02-10 14:12:13 -0500313static void get_buffer(void)
314{
315 mutex_lock(&buffer_mutex);
316 memset(buffer, 0, sizeof(struct calling_interface_buffer));
317}
318
319static void release_buffer(void)
320{
321 mutex_unlock(&buffer_mutex);
322}
323
Alan Jenkins4788df42009-08-19 15:06:50 +0100324static void __init parse_da_table(const struct dmi_header *dm)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800325{
326 /* Final token is a terminator, so we don't want to copy it */
327 int tokens = (dm->length-11)/sizeof(struct calling_interface_token)-1;
David Woodhousefe9ab002013-03-14 13:21:00 +0000328 struct calling_interface_token *new_da_tokens;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800329 struct calling_interface_structure *table =
330 container_of(dm, struct calling_interface_structure, header);
331
332 /* 4 bytes of table header, plus 7 bytes of Dell header, plus at least
333 6 bytes of entry */
334
335 if (dm->length < 17)
336 return;
337
338 da_command_address = table->cmdIOAddress;
339 da_command_code = table->cmdIOCode;
340
David Woodhousefe9ab002013-03-14 13:21:00 +0000341 new_da_tokens = krealloc(da_tokens, (da_num_tokens + tokens) *
342 sizeof(struct calling_interface_token),
343 GFP_KERNEL);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800344
David Woodhousefe9ab002013-03-14 13:21:00 +0000345 if (!new_da_tokens)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800346 return;
David Woodhousefe9ab002013-03-14 13:21:00 +0000347 da_tokens = new_da_tokens;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800348
349 memcpy(da_tokens+da_num_tokens, table->tokens,
350 sizeof(struct calling_interface_token) * tokens);
351
352 da_num_tokens += tokens;
353}
354
Alan Jenkins4788df42009-08-19 15:06:50 +0100355static void __init find_tokens(const struct dmi_header *dm, void *dummy)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800356{
357 switch (dm->type) {
358 case 0xd4: /* Indexed IO */
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800359 case 0xd5: /* Protected Area Type 1 */
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800360 case 0xd6: /* Protected Area Type 2 */
361 break;
362 case 0xda: /* Calling interface */
363 parse_da_table(dm);
364 break;
365 }
366}
367
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100368static int find_token_id(int tokenid)
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800369{
370 int i;
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100371
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800372 for (i = 0; i < da_num_tokens; i++) {
373 if (da_tokens[i].tokenID == tokenid)
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100374 return i;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800375 }
376
377 return -1;
378}
379
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100380static int find_token_location(int tokenid)
381{
382 int id;
383
384 id = find_token_id(tokenid);
385 if (id == -1)
386 return -1;
387
388 return da_tokens[id].location;
389}
390
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800391static struct calling_interface_buffer *
392dell_send_request(struct calling_interface_buffer *buffer, int class,
393 int select)
394{
395 struct smi_cmd command;
396
397 command.magic = SMI_CMD_MAGIC;
398 command.command_address = da_command_address;
399 command.command_code = da_command_code;
400 command.ebx = virt_to_phys(buffer);
401 command.ecx = 0x42534931;
402
403 buffer->class = class;
404 buffer->select = select;
405
406 dcdbas_smi_request(&command);
407
408 return buffer;
409}
410
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100411static inline int dell_smi_error(int value)
412{
413 switch (value) {
414 case 0: /* Completed successfully */
415 return 0;
416 case -1: /* Completed with error */
417 return -EIO;
418 case -2: /* Function not supported */
419 return -ENXIO;
420 default: /* Unknown error */
421 return -EINVAL;
422 }
423}
424
Pali Rohárf992efb2015-06-21 10:39:26 +0200425/*
426 * Derived from information in smbios-wireless-ctl:
427 *
428 * cbSelect 17, Value 11
429 *
430 * Return Wireless Info
431 * cbArg1, byte0 = 0x00
432 *
433 * cbRes1 Standard return codes (0, -1, -2)
434 * cbRes2 Info bit flags:
435 *
436 * 0 Hardware switch supported (1)
437 * 1 WiFi locator supported (1)
438 * 2 WLAN supported (1)
439 * 3 Bluetooth (BT) supported (1)
440 * 4 WWAN supported (1)
441 * 5 Wireless KBD supported (1)
442 * 6 Uw b supported (1)
443 * 7 WiGig supported (1)
444 * 8 WLAN installed (1)
445 * 9 BT installed (1)
446 * 10 WWAN installed (1)
447 * 11 Uw b installed (1)
448 * 12 WiGig installed (1)
449 * 13-15 Reserved (0)
450 * 16 Hardware (HW) switch is On (1)
451 * 17 WLAN disabled (1)
452 * 18 BT disabled (1)
453 * 19 WWAN disabled (1)
454 * 20 Uw b disabled (1)
455 * 21 WiGig disabled (1)
456 * 20-31 Reserved (0)
457 *
458 * cbRes3 NVRAM size in bytes
459 * cbRes4, byte 0 NVRAM format version number
460 *
461 *
462 * Set QuickSet Radio Disable Flag
463 * cbArg1, byte0 = 0x01
464 * cbArg1, byte1
465 * Radio ID value:
466 * 0 Radio Status
467 * 1 WLAN ID
468 * 2 BT ID
469 * 3 WWAN ID
470 * 4 UWB ID
471 * 5 WIGIG ID
472 * cbArg1, byte2 Flag bits:
473 * 0 QuickSet disables radio (1)
474 * 1-7 Reserved (0)
475 *
476 * cbRes1 Standard return codes (0, -1, -2)
477 * cbRes2 QuickSet (QS) radio disable bit map:
478 * 0 QS disables WLAN
479 * 1 QS disables BT
480 * 2 QS disables WWAN
481 * 3 QS disables UWB
482 * 4 QS disables WIGIG
483 * 5-31 Reserved (0)
484 *
485 * Wireless Switch Configuration
486 * cbArg1, byte0 = 0x02
487 *
488 * cbArg1, byte1
489 * Subcommand:
490 * 0 Get config
491 * 1 Set config
492 * 2 Set WiFi locator enable/disable
493 * cbArg1,byte2
494 * Switch settings (if byte 1==1):
495 * 0 WLAN sw itch control (1)
496 * 1 BT sw itch control (1)
497 * 2 WWAN sw itch control (1)
498 * 3 UWB sw itch control (1)
499 * 4 WiGig sw itch control (1)
500 * 5-7 Reserved (0)
501 * cbArg1, byte2 Enable bits (if byte 1==2):
502 * 0 Enable WiFi locator (1)
503 *
504 * cbRes1 Standard return codes (0, -1, -2)
505 * cbRes2 QuickSet radio disable bit map:
506 * 0 WLAN controlled by sw itch (1)
507 * 1 BT controlled by sw itch (1)
508 * 2 WWAN controlled by sw itch (1)
509 * 3 UWB controlled by sw itch (1)
510 * 4 WiGig controlled by sw itch (1)
511 * 5-6 Reserved (0)
512 * 7 Wireless sw itch config locked (1)
513 * 8 WiFi locator enabled (1)
514 * 9-14 Reserved (0)
515 * 15 WiFi locator setting locked (1)
516 * 16-31 Reserved (0)
517 *
518 * Read Local Config Data (LCD)
519 * cbArg1, byte0 = 0x10
520 * cbArg1, byte1 NVRAM index low byte
521 * cbArg1, byte2 NVRAM index high byte
522 * cbRes1 Standard return codes (0, -1, -2)
523 * cbRes2 4 bytes read from LCD[index]
524 * cbRes3 4 bytes read from LCD[index+4]
525 * cbRes4 4 bytes read from LCD[index+8]
526 *
527 * Write Local Config Data (LCD)
528 * cbArg1, byte0 = 0x11
529 * cbArg1, byte1 NVRAM index low byte
530 * cbArg1, byte2 NVRAM index high byte
531 * cbArg2 4 bytes to w rite at LCD[index]
532 * cbArg3 4 bytes to w rite at LCD[index+4]
533 * cbArg4 4 bytes to w rite at LCD[index+8]
534 * cbRes1 Standard return codes (0, -1, -2)
535 *
536 * Populate Local Config Data from NVRAM
537 * cbArg1, byte0 = 0x12
538 * cbRes1 Standard return codes (0, -1, -2)
539 *
540 * Commit Local Config Data to NVRAM
541 * cbArg1, byte0 = 0x13
542 * cbRes1 Standard return codes (0, -1, -2)
543 */
Hans de Goede4cc8a572013-11-17 14:00:16 +0100544
545static int dell_rfkill_set(void *data, bool blocked)
546{
547 int disable = blocked ? 1 : 0;
548 unsigned long radio = (unsigned long)data;
549 int hwswitch_bit = (unsigned long)data - 1;
Hans de Goede4cc8a572013-11-17 14:00:16 +0100550
551 get_buffer();
552 dell_send_request(buffer, 17, 11);
553
554 /* If the hardware switch controls this radio, and the hardware
Hans de Goedeed112892013-11-17 14:00:24 +0100555 switch is disabled, always disable the radio */
Hans de Goede4cc8a572013-11-17 14:00:16 +0100556 if ((hwswitch_state & BIT(hwswitch_bit)) &&
Hans de Goede4d39d882013-11-17 14:00:22 +0100557 !(buffer->output[1] & BIT(16)))
Hans de Goedeed112892013-11-17 14:00:24 +0100558 disable = 1;
Hans de Goede4cc8a572013-11-17 14:00:16 +0100559
560 buffer->input[0] = (1 | (radio<<8) | (disable << 16));
561 dell_send_request(buffer, 17, 11);
562
Hans de Goede4cc8a572013-11-17 14:00:16 +0100563 release_buffer();
Hans de Goede4d39d882013-11-17 14:00:22 +0100564 return 0;
Hans de Goede4cc8a572013-11-17 14:00:16 +0100565}
566
Hans de Goede04c9a3a2013-11-17 14:00:23 +0100567/* Must be called with the buffer held */
Hans de Goede33f93592013-11-17 14:00:20 +0100568static void dell_rfkill_update_sw_state(struct rfkill *rfkill, int radio,
569 int status)
Hans de Goeded0388802013-11-17 14:00:19 +0100570{
Hans de Goede04c9a3a2013-11-17 14:00:23 +0100571 if (status & BIT(0)) {
572 /* Has hw-switch, sync sw_state to BIOS */
573 int block = rfkill_blocked(rfkill);
574 buffer->input[0] = (1 | (radio << 8) | (block << 16));
575 dell_send_request(buffer, 17, 11);
576 } else {
Hans de Goede3f565882013-11-17 14:00:21 +0100577 /* No hw-switch, sync BIOS state to sw_state */
578 rfkill_set_sw_state(rfkill, !!(status & BIT(radio + 16)));
579 }
Hans de Goede33f93592013-11-17 14:00:20 +0100580}
Hans de Goeded0388802013-11-17 14:00:19 +0100581
Hans de Goede33f93592013-11-17 14:00:20 +0100582static void dell_rfkill_update_hw_state(struct rfkill *rfkill, int radio,
583 int status)
584{
Hans de Goeded0388802013-11-17 14:00:19 +0100585 if (hwswitch_state & (BIT(radio - 1)))
586 rfkill_set_hw_state(rfkill, !(status & BIT(16)));
587}
588
Hans de Goede4cc8a572013-11-17 14:00:16 +0100589static void dell_rfkill_query(struct rfkill *rfkill, void *data)
590{
591 int status;
Hans de Goede4cc8a572013-11-17 14:00:16 +0100592
593 get_buffer();
594 dell_send_request(buffer, 17, 11);
595 status = buffer->output[1];
Hans de Goede4cc8a572013-11-17 14:00:16 +0100596
Hans de Goede33f93592013-11-17 14:00:20 +0100597 dell_rfkill_update_hw_state(rfkill, (unsigned long)data, status);
Hans de Goede04c9a3a2013-11-17 14:00:23 +0100598
599 release_buffer();
Hans de Goede4cc8a572013-11-17 14:00:16 +0100600}
601
602static const struct rfkill_ops dell_rfkill_ops = {
603 .set_block = dell_rfkill_set,
604 .query = dell_rfkill_query,
605};
606
Keng-Yu Lin037accf2010-09-28 11:43:31 +0800607static struct dentry *dell_laptop_dir;
608
609static int dell_debugfs_show(struct seq_file *s, void *data)
610{
611 int status;
612
613 get_buffer();
614 dell_send_request(buffer, 17, 11);
615 status = buffer->output[1];
616 release_buffer();
617
618 seq_printf(s, "status:\t0x%X\n", status);
619 seq_printf(s, "Bit 0 : Hardware switch supported: %lu\n",
620 status & BIT(0));
621 seq_printf(s, "Bit 1 : Wifi locator supported: %lu\n",
622 (status & BIT(1)) >> 1);
623 seq_printf(s, "Bit 2 : Wifi is supported: %lu\n",
624 (status & BIT(2)) >> 2);
625 seq_printf(s, "Bit 3 : Bluetooth is supported: %lu\n",
626 (status & BIT(3)) >> 3);
627 seq_printf(s, "Bit 4 : WWAN is supported: %lu\n",
628 (status & BIT(4)) >> 4);
629 seq_printf(s, "Bit 5 : Wireless keyboard supported: %lu\n",
630 (status & BIT(5)) >> 5);
Pali Rohár2e19f932015-06-21 10:41:42 +0200631 seq_printf(s, "Bit 6 : UWB supported: %lu\n",
632 (status & BIT(6)) >> 6);
633 seq_printf(s, "Bit 7 : WiGig supported: %lu\n",
634 (status & BIT(7)) >> 7);
Keng-Yu Lin037accf2010-09-28 11:43:31 +0800635 seq_printf(s, "Bit 8 : Wifi is installed: %lu\n",
636 (status & BIT(8)) >> 8);
637 seq_printf(s, "Bit 9 : Bluetooth is installed: %lu\n",
638 (status & BIT(9)) >> 9);
639 seq_printf(s, "Bit 10: WWAN is installed: %lu\n",
640 (status & BIT(10)) >> 10);
Pali Rohár2e19f932015-06-21 10:41:42 +0200641 seq_printf(s, "Bit 11: UWB installed: %lu\n",
642 (status & BIT(11)) >> 11);
643 seq_printf(s, "Bit 12: WiGig installed: %lu\n",
644 (status & BIT(12)) >> 12);
645
Keng-Yu Lin037accf2010-09-28 11:43:31 +0800646 seq_printf(s, "Bit 16: Hardware switch is on: %lu\n",
647 (status & BIT(16)) >> 16);
648 seq_printf(s, "Bit 17: Wifi is blocked: %lu\n",
649 (status & BIT(17)) >> 17);
650 seq_printf(s, "Bit 18: Bluetooth is blocked: %lu\n",
651 (status & BIT(18)) >> 18);
652 seq_printf(s, "Bit 19: WWAN is blocked: %lu\n",
653 (status & BIT(19)) >> 19);
Pali Rohár2e19f932015-06-21 10:41:42 +0200654 seq_printf(s, "Bit 20: UWB is blocked: %lu\n",
655 (status & BIT(20)) >> 20);
656 seq_printf(s, "Bit 21: WiGig is blocked: %lu\n",
657 (status & BIT(21)) >> 21);
Keng-Yu Lin037accf2010-09-28 11:43:31 +0800658
659 seq_printf(s, "\nhwswitch_state:\t0x%X\n", hwswitch_state);
660 seq_printf(s, "Bit 0 : Wifi controlled by switch: %lu\n",
661 hwswitch_state & BIT(0));
662 seq_printf(s, "Bit 1 : Bluetooth controlled by switch: %lu\n",
663 (hwswitch_state & BIT(1)) >> 1);
664 seq_printf(s, "Bit 2 : WWAN controlled by switch: %lu\n",
665 (hwswitch_state & BIT(2)) >> 2);
Pali Rohár2e19f932015-06-21 10:41:42 +0200666 seq_printf(s, "Bit 3 : UWB controlled by switch: %lu\n",
667 (hwswitch_state & BIT(3)) >> 3);
668 seq_printf(s, "Bit 4 : WiGig controlled by switch: %lu\n",
669 (hwswitch_state & BIT(4)) >> 4);
Keng-Yu Lin037accf2010-09-28 11:43:31 +0800670 seq_printf(s, "Bit 7 : Wireless switch config locked: %lu\n",
671 (hwswitch_state & BIT(7)) >> 7);
672 seq_printf(s, "Bit 8 : Wifi locator enabled: %lu\n",
673 (hwswitch_state & BIT(8)) >> 8);
674 seq_printf(s, "Bit 15: Wifi locator setting locked: %lu\n",
675 (hwswitch_state & BIT(15)) >> 15);
676
677 return 0;
678}
679
680static int dell_debugfs_open(struct inode *inode, struct file *file)
681{
682 return single_open(file, dell_debugfs_show, inode->i_private);
683}
684
685static const struct file_operations dell_debugfs_fops = {
686 .owner = THIS_MODULE,
687 .open = dell_debugfs_open,
688 .read = seq_read,
689 .llseek = seq_lseek,
690 .release = single_release,
691};
692
Hans de Goede4cc8a572013-11-17 14:00:16 +0100693static void dell_update_rfkill(struct work_struct *ignored)
694{
Hans de Goeded0388802013-11-17 14:00:19 +0100695 int status;
696
697 get_buffer();
698 dell_send_request(buffer, 17, 11);
699 status = buffer->output[1];
Hans de Goeded0388802013-11-17 14:00:19 +0100700
Hans de Goede33f93592013-11-17 14:00:20 +0100701 if (wifi_rfkill) {
702 dell_rfkill_update_hw_state(wifi_rfkill, 1, status);
703 dell_rfkill_update_sw_state(wifi_rfkill, 1, status);
704 }
705 if (bluetooth_rfkill) {
706 dell_rfkill_update_hw_state(bluetooth_rfkill, 2, status);
707 dell_rfkill_update_sw_state(bluetooth_rfkill, 2, status);
708 }
709 if (wwan_rfkill) {
710 dell_rfkill_update_hw_state(wwan_rfkill, 3, status);
711 dell_rfkill_update_sw_state(wwan_rfkill, 3, status);
712 }
Hans de Goede04c9a3a2013-11-17 14:00:23 +0100713
714 release_buffer();
Hans de Goede4cc8a572013-11-17 14:00:16 +0100715}
716static DECLARE_DELAYED_WORK(dell_rfkill_work, dell_update_rfkill);
717
Hans de Goede97f440c2013-12-24 20:34:01 +0100718static bool dell_laptop_i8042_filter(unsigned char data, unsigned char str,
719 struct serio *port)
720{
721 static bool extended;
722
Giedrius Statkevičius98280372014-10-18 02:57:20 +0300723 if (str & I8042_STR_AUXDATA)
Hans de Goede97f440c2013-12-24 20:34:01 +0100724 return false;
725
726 if (unlikely(data == 0xe0)) {
727 extended = true;
728 return false;
729 } else if (unlikely(extended)) {
730 switch (data) {
731 case 0x8:
732 schedule_delayed_work(&dell_rfkill_work,
733 round_jiffies_relative(HZ / 4));
734 break;
735 }
736 extended = false;
737 }
738
739 return false;
740}
Hans de Goede4cc8a572013-11-17 14:00:16 +0100741
Pali Rohárf8358572015-06-06 10:23:30 +0200742static int (*dell_rbtn_notifier_register_func)(struct notifier_block *);
743static int (*dell_rbtn_notifier_unregister_func)(struct notifier_block *);
744
745static int dell_laptop_rbtn_notifier_call(struct notifier_block *nb,
746 unsigned long action, void *data)
747{
748 schedule_delayed_work(&dell_rfkill_work, 0);
749 return NOTIFY_OK;
750}
751
752static struct notifier_block dell_laptop_rbtn_notifier = {
753 .notifier_call = dell_laptop_rbtn_notifier_call,
754};
755
Hans de Goede4cc8a572013-11-17 14:00:16 +0100756static int __init dell_setup_rfkill(void)
757{
Hans de Goedeba5194f2013-12-06 12:17:27 +0100758 int status, ret, whitelisted;
Hans de Goede2a925512013-11-17 14:00:17 +0100759 const char *product;
Hans de Goede4cc8a572013-11-17 14:00:16 +0100760
Hans de Goede2a925512013-11-17 14:00:17 +0100761 /*
Hans de Goedeba5194f2013-12-06 12:17:27 +0100762 * rfkill support causes trouble on various models, mostly Inspirons.
763 * So we whitelist certain series, and don't support rfkill on others.
Hans de Goede2a925512013-11-17 14:00:17 +0100764 */
Hans de Goedeba5194f2013-12-06 12:17:27 +0100765 whitelisted = 0;
Hans de Goede2a925512013-11-17 14:00:17 +0100766 product = dmi_get_system_info(DMI_PRODUCT_NAME);
Hans de Goedeba5194f2013-12-06 12:17:27 +0100767 if (product && (strncmp(product, "Latitude", 8) == 0 ||
768 strncmp(product, "Precision", 9) == 0))
769 whitelisted = 1;
770 if (!force_rfkill && !whitelisted)
Hans de Goede4cc8a572013-11-17 14:00:16 +0100771 return 0;
Hans de Goede4cc8a572013-11-17 14:00:16 +0100772
773 get_buffer();
774 dell_send_request(buffer, 17, 11);
775 status = buffer->output[1];
776 buffer->input[0] = 0x2;
777 dell_send_request(buffer, 17, 11);
778 hwswitch_state = buffer->output[1];
779 release_buffer();
780
Hans de Goede2bd4ac12013-11-17 14:00:27 +0100781 if (!(status & BIT(0))) {
782 if (force_rfkill) {
783 /* No hwsitch, clear all hw-controlled bits */
784 hwswitch_state &= ~7;
785 } else {
786 /* rfkill is only tested on laptops with a hwswitch */
787 return 0;
788 }
789 }
790
Hans de Goede4cc8a572013-11-17 14:00:16 +0100791 if ((status & (1<<2|1<<8)) == (1<<2|1<<8)) {
792 wifi_rfkill = rfkill_alloc("dell-wifi", &platform_device->dev,
793 RFKILL_TYPE_WLAN,
794 &dell_rfkill_ops, (void *) 1);
795 if (!wifi_rfkill) {
796 ret = -ENOMEM;
797 goto err_wifi;
798 }
799 ret = rfkill_register(wifi_rfkill);
800 if (ret)
801 goto err_wifi;
802 }
803
804 if ((status & (1<<3|1<<9)) == (1<<3|1<<9)) {
805 bluetooth_rfkill = rfkill_alloc("dell-bluetooth",
806 &platform_device->dev,
807 RFKILL_TYPE_BLUETOOTH,
808 &dell_rfkill_ops, (void *) 2);
809 if (!bluetooth_rfkill) {
810 ret = -ENOMEM;
811 goto err_bluetooth;
812 }
813 ret = rfkill_register(bluetooth_rfkill);
814 if (ret)
815 goto err_bluetooth;
816 }
817
818 if ((status & (1<<4|1<<10)) == (1<<4|1<<10)) {
819 wwan_rfkill = rfkill_alloc("dell-wwan",
820 &platform_device->dev,
821 RFKILL_TYPE_WWAN,
822 &dell_rfkill_ops, (void *) 3);
823 if (!wwan_rfkill) {
824 ret = -ENOMEM;
825 goto err_wwan;
826 }
827 ret = rfkill_register(wwan_rfkill);
828 if (ret)
829 goto err_wwan;
830 }
831
Pali Rohárf8358572015-06-06 10:23:30 +0200832 /*
833 * Dell Airplane Mode Switch driver (dell-rbtn) supports ACPI devices
834 * which can receive events from HW slider switch.
835 *
836 * Dell SMBIOS on whitelisted models supports controlling radio devices
837 * but does not support receiving HW button switch events. We can use
838 * i8042 filter hook function to receive keyboard data and handle
839 * keycode for HW button.
840 *
841 * So if it is possible we will use Dell Airplane Mode Switch ACPI
842 * driver for receiving HW events and Dell SMBIOS for setting rfkill
843 * states. If ACPI driver or device is not available we will fallback to
844 * i8042 filter hook function.
845 *
846 * To prevent duplicate rfkill devices which control and do same thing,
847 * dell-rbtn driver will automatically remove its own rfkill devices
848 * once function dell_rbtn_notifier_register() is called.
849 */
850
851 dell_rbtn_notifier_register_func =
852 symbol_request(dell_rbtn_notifier_register);
853 if (dell_rbtn_notifier_register_func) {
854 dell_rbtn_notifier_unregister_func =
855 symbol_request(dell_rbtn_notifier_unregister);
856 if (!dell_rbtn_notifier_unregister_func) {
857 symbol_put(dell_rbtn_notifier_register);
858 dell_rbtn_notifier_register_func = NULL;
859 }
860 }
861
862 if (dell_rbtn_notifier_register_func) {
863 ret = dell_rbtn_notifier_register_func(
864 &dell_laptop_rbtn_notifier);
865 symbol_put(dell_rbtn_notifier_register);
866 dell_rbtn_notifier_register_func = NULL;
867 if (ret != 0) {
868 symbol_put(dell_rbtn_notifier_unregister);
869 dell_rbtn_notifier_unregister_func = NULL;
870 }
871 } else {
872 pr_info("Symbols from dell-rbtn acpi driver are not available\n");
873 ret = -ENODEV;
874 }
875
876 if (ret == 0) {
877 pr_info("Using dell-rbtn acpi driver for receiving events\n");
878 } else if (ret != -ENODEV) {
879 pr_warn("Unable to register dell rbtn notifier\n");
Hans de Goede97f440c2013-12-24 20:34:01 +0100880 goto err_filter;
Pali Rohárf8358572015-06-06 10:23:30 +0200881 } else {
882 ret = i8042_install_filter(dell_laptop_i8042_filter);
883 if (ret) {
884 pr_warn("Unable to install key filter\n");
885 goto err_filter;
886 }
887 pr_info("Using i8042 filter function for receiving events\n");
Hans de Goede97f440c2013-12-24 20:34:01 +0100888 }
889
Hans de Goede4cc8a572013-11-17 14:00:16 +0100890 return 0;
Hans de Goede97f440c2013-12-24 20:34:01 +0100891err_filter:
892 if (wwan_rfkill)
893 rfkill_unregister(wwan_rfkill);
Hans de Goede4cc8a572013-11-17 14:00:16 +0100894err_wwan:
895 rfkill_destroy(wwan_rfkill);
896 if (bluetooth_rfkill)
897 rfkill_unregister(bluetooth_rfkill);
898err_bluetooth:
899 rfkill_destroy(bluetooth_rfkill);
900 if (wifi_rfkill)
901 rfkill_unregister(wifi_rfkill);
902err_wifi:
903 rfkill_destroy(wifi_rfkill);
904
905 return ret;
906}
907
908static void dell_cleanup_rfkill(void)
909{
Pali Rohárf8358572015-06-06 10:23:30 +0200910 if (dell_rbtn_notifier_unregister_func) {
911 dell_rbtn_notifier_unregister_func(&dell_laptop_rbtn_notifier);
912 symbol_put(dell_rbtn_notifier_unregister);
913 dell_rbtn_notifier_unregister_func = NULL;
914 } else {
915 i8042_remove_filter(dell_laptop_i8042_filter);
916 }
917 cancel_delayed_work_sync(&dell_rfkill_work);
Hans de Goede4cc8a572013-11-17 14:00:16 +0100918 if (wifi_rfkill) {
919 rfkill_unregister(wifi_rfkill);
920 rfkill_destroy(wifi_rfkill);
921 }
922 if (bluetooth_rfkill) {
923 rfkill_unregister(bluetooth_rfkill);
924 rfkill_destroy(bluetooth_rfkill);
925 }
926 if (wwan_rfkill) {
927 rfkill_unregister(wwan_rfkill);
928 rfkill_destroy(wwan_rfkill);
929 }
930}
931
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800932static int dell_send_intensity(struct backlight_device *bd)
933{
Stuart Hayes116ee772010-02-10 14:12:13 -0500934 int ret = 0;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800935
Stuart Hayes116ee772010-02-10 14:12:13 -0500936 get_buffer();
937 buffer->input[0] = find_token_location(BRIGHTNESS_TOKEN);
938 buffer->input[1] = bd->props.brightness;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800939
Stuart Hayes116ee772010-02-10 14:12:13 -0500940 if (buffer->input[0] == -1) {
941 ret = -ENODEV;
942 goto out;
943 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800944
945 if (power_supply_is_system_supplied() > 0)
Stuart Hayes116ee772010-02-10 14:12:13 -0500946 dell_send_request(buffer, 1, 2);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800947 else
Stuart Hayes116ee772010-02-10 14:12:13 -0500948 dell_send_request(buffer, 1, 1);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800949
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100950 out:
Stuart Hayes116ee772010-02-10 14:12:13 -0500951 release_buffer();
Wei Yongjun7da8fb22013-11-23 21:02:51 +0800952 return ret;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800953}
954
955static int dell_get_intensity(struct backlight_device *bd)
956{
Stuart Hayes116ee772010-02-10 14:12:13 -0500957 int ret = 0;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800958
Stuart Hayes116ee772010-02-10 14:12:13 -0500959 get_buffer();
960 buffer->input[0] = find_token_location(BRIGHTNESS_TOKEN);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800961
Stuart Hayes116ee772010-02-10 14:12:13 -0500962 if (buffer->input[0] == -1) {
963 ret = -ENODEV;
964 goto out;
965 }
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800966
967 if (power_supply_is_system_supplied() > 0)
Stuart Hayes116ee772010-02-10 14:12:13 -0500968 dell_send_request(buffer, 0, 2);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800969 else
Stuart Hayes116ee772010-02-10 14:12:13 -0500970 dell_send_request(buffer, 0, 1);
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800971
Jose Alonsob4867422011-07-10 15:46:51 -0300972 ret = buffer->output[1];
973
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +0100974 out:
Stuart Hayes116ee772010-02-10 14:12:13 -0500975 release_buffer();
Jose Alonsob4867422011-07-10 15:46:51 -0300976 return ret;
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800977}
978
Lionel Debrouxacc24722010-11-16 14:14:02 +0100979static const struct backlight_ops dell_ops = {
Matthew Garrettad8f07c2009-01-07 18:08:56 -0800980 .get_brightness = dell_get_intensity,
981 .update_status = dell_send_intensity,
982};
983
Randy Dunlap869f8df2011-11-16 18:20:51 -0800984static void touchpad_led_on(void)
AceLan Kao2d8b90b2011-10-04 16:25:44 +0800985{
986 int command = 0x97;
987 char data = 1;
988 i8042_command(&data, command | 1 << 12);
989}
990
Randy Dunlap869f8df2011-11-16 18:20:51 -0800991static void touchpad_led_off(void)
AceLan Kao2d8b90b2011-10-04 16:25:44 +0800992{
993 int command = 0x97;
994 char data = 2;
995 i8042_command(&data, command | 1 << 12);
996}
997
998static void touchpad_led_set(struct led_classdev *led_cdev,
999 enum led_brightness value)
1000{
1001 if (value > 0)
1002 touchpad_led_on();
1003 else
1004 touchpad_led_off();
1005}
1006
1007static struct led_classdev touchpad_led = {
1008 .name = "dell-laptop::touchpad",
1009 .brightness_set = touchpad_led_set,
AceLan Kao2d5de9e2012-01-17 16:18:06 +08001010 .flags = LED_CORE_SUSPENDRESUME,
AceLan Kao2d8b90b2011-10-04 16:25:44 +08001011};
1012
Mathias Krause681480c2014-07-16 19:43:09 +02001013static int __init touchpad_led_init(struct device *dev)
AceLan Kao2d8b90b2011-10-04 16:25:44 +08001014{
1015 return led_classdev_register(dev, &touchpad_led);
1016}
1017
1018static void touchpad_led_exit(void)
1019{
1020 led_classdev_unregister(&touchpad_led);
1021}
1022
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +01001023/*
1024 * Derived from information in smbios-keyboard-ctl:
1025 *
1026 * cbClass 4
1027 * cbSelect 11
1028 * Keyboard illumination
1029 * cbArg1 determines the function to be performed
1030 *
1031 * cbArg1 0x0 = Get Feature Information
1032 * cbRES1 Standard return codes (0, -1, -2)
1033 * cbRES2, word0 Bitmap of user-selectable modes
1034 * bit 0 Always off (All systems)
1035 * bit 1 Always on (Travis ATG, Siberia)
1036 * bit 2 Auto: ALS-based On; ALS-based Off (Travis ATG)
1037 * bit 3 Auto: ALS- and input-activity-based On; input-activity based Off
1038 * bit 4 Auto: Input-activity-based On; input-activity based Off
1039 * bit 5 Auto: Input-activity-based On (illumination level 25%); input-activity based Off
1040 * bit 6 Auto: Input-activity-based On (illumination level 50%); input-activity based Off
1041 * bit 7 Auto: Input-activity-based On (illumination level 75%); input-activity based Off
1042 * bit 8 Auto: Input-activity-based On (illumination level 100%); input-activity based Off
1043 * bits 9-15 Reserved for future use
1044 * cbRES2, byte2 Reserved for future use
1045 * cbRES2, byte3 Keyboard illumination type
1046 * 0 Reserved
1047 * 1 Tasklight
1048 * 2 Backlight
1049 * 3-255 Reserved for future use
1050 * cbRES3, byte0 Supported auto keyboard illumination trigger bitmap.
1051 * bit 0 Any keystroke
1052 * bit 1 Touchpad activity
1053 * bit 2 Pointing stick
1054 * bit 3 Any mouse
1055 * bits 4-7 Reserved for future use
1056 * cbRES3, byte1 Supported timeout unit bitmap
1057 * bit 0 Seconds
1058 * bit 1 Minutes
1059 * bit 2 Hours
1060 * bit 3 Days
1061 * bits 4-7 Reserved for future use
1062 * cbRES3, byte2 Number of keyboard light brightness levels
1063 * cbRES4, byte0 Maximum acceptable seconds value (0 if seconds not supported).
1064 * cbRES4, byte1 Maximum acceptable minutes value (0 if minutes not supported).
1065 * cbRES4, byte2 Maximum acceptable hours value (0 if hours not supported).
1066 * cbRES4, byte3 Maximum acceptable days value (0 if days not supported)
1067 *
1068 * cbArg1 0x1 = Get Current State
1069 * cbRES1 Standard return codes (0, -1, -2)
1070 * cbRES2, word0 Bitmap of current mode state
1071 * bit 0 Always off (All systems)
1072 * bit 1 Always on (Travis ATG, Siberia)
1073 * bit 2 Auto: ALS-based On; ALS-based Off (Travis ATG)
1074 * bit 3 Auto: ALS- and input-activity-based On; input-activity based Off
1075 * bit 4 Auto: Input-activity-based On; input-activity based Off
1076 * bit 5 Auto: Input-activity-based On (illumination level 25%); input-activity based Off
1077 * bit 6 Auto: Input-activity-based On (illumination level 50%); input-activity based Off
1078 * bit 7 Auto: Input-activity-based On (illumination level 75%); input-activity based Off
1079 * bit 8 Auto: Input-activity-based On (illumination level 100%); input-activity based Off
1080 * bits 9-15 Reserved for future use
1081 * Note: Only One bit can be set
1082 * cbRES2, byte2 Currently active auto keyboard illumination triggers.
1083 * bit 0 Any keystroke
1084 * bit 1 Touchpad activity
1085 * bit 2 Pointing stick
1086 * bit 3 Any mouse
1087 * bits 4-7 Reserved for future use
1088 * cbRES2, byte3 Current Timeout
1089 * bits 7:6 Timeout units indicator:
1090 * 00b Seconds
1091 * 01b Minutes
1092 * 10b Hours
1093 * 11b Days
1094 * bits 5:0 Timeout value (0-63) in sec/min/hr/day
1095 * NOTE: A value of 0 means always on (no timeout) if any bits of RES3 byte
1096 * are set upon return from the [Get feature information] call.
1097 * cbRES3, byte0 Current setting of ALS value that turns the light on or off.
1098 * cbRES3, byte1 Current ALS reading
1099 * cbRES3, byte2 Current keyboard light level.
1100 *
1101 * cbArg1 0x2 = Set New State
1102 * cbRES1 Standard return codes (0, -1, -2)
1103 * cbArg2, word0 Bitmap of current mode state
1104 * bit 0 Always off (All systems)
1105 * bit 1 Always on (Travis ATG, Siberia)
1106 * bit 2 Auto: ALS-based On; ALS-based Off (Travis ATG)
1107 * bit 3 Auto: ALS- and input-activity-based On; input-activity based Off
1108 * bit 4 Auto: Input-activity-based On; input-activity based Off
1109 * bit 5 Auto: Input-activity-based On (illumination level 25%); input-activity based Off
1110 * bit 6 Auto: Input-activity-based On (illumination level 50%); input-activity based Off
1111 * bit 7 Auto: Input-activity-based On (illumination level 75%); input-activity based Off
1112 * bit 8 Auto: Input-activity-based On (illumination level 100%); input-activity based Off
1113 * bits 9-15 Reserved for future use
1114 * Note: Only One bit can be set
1115 * cbArg2, byte2 Desired auto keyboard illumination triggers. Must remain inactive to allow
1116 * keyboard to turn off automatically.
1117 * bit 0 Any keystroke
1118 * bit 1 Touchpad activity
1119 * bit 2 Pointing stick
1120 * bit 3 Any mouse
1121 * bits 4-7 Reserved for future use
1122 * cbArg2, byte3 Desired Timeout
1123 * bits 7:6 Timeout units indicator:
1124 * 00b Seconds
1125 * 01b Minutes
1126 * 10b Hours
1127 * 11b Days
1128 * bits 5:0 Timeout value (0-63) in sec/min/hr/day
1129 * cbArg3, byte0 Desired setting of ALS value that turns the light on or off.
1130 * cbArg3, byte2 Desired keyboard light level.
1131 */
1132
1133
1134enum kbd_timeout_unit {
1135 KBD_TIMEOUT_SECONDS = 0,
1136 KBD_TIMEOUT_MINUTES,
1137 KBD_TIMEOUT_HOURS,
1138 KBD_TIMEOUT_DAYS,
1139};
1140
1141enum kbd_mode_bit {
1142 KBD_MODE_BIT_OFF = 0,
1143 KBD_MODE_BIT_ON,
1144 KBD_MODE_BIT_ALS,
1145 KBD_MODE_BIT_TRIGGER_ALS,
1146 KBD_MODE_BIT_TRIGGER,
1147 KBD_MODE_BIT_TRIGGER_25,
1148 KBD_MODE_BIT_TRIGGER_50,
1149 KBD_MODE_BIT_TRIGGER_75,
1150 KBD_MODE_BIT_TRIGGER_100,
1151};
1152
1153#define kbd_is_als_mode_bit(bit) \
1154 ((bit) == KBD_MODE_BIT_ALS || (bit) == KBD_MODE_BIT_TRIGGER_ALS)
1155#define kbd_is_trigger_mode_bit(bit) \
1156 ((bit) >= KBD_MODE_BIT_TRIGGER_ALS && (bit) <= KBD_MODE_BIT_TRIGGER_100)
1157#define kbd_is_level_mode_bit(bit) \
1158 ((bit) >= KBD_MODE_BIT_TRIGGER_25 && (bit) <= KBD_MODE_BIT_TRIGGER_100)
1159
1160struct kbd_info {
1161 u16 modes;
1162 u8 type;
1163 u8 triggers;
1164 u8 levels;
1165 u8 seconds;
1166 u8 minutes;
1167 u8 hours;
1168 u8 days;
1169};
1170
1171struct kbd_state {
1172 u8 mode_bit;
1173 u8 triggers;
1174 u8 timeout_value;
1175 u8 timeout_unit;
1176 u8 als_setting;
1177 u8 als_value;
1178 u8 level;
1179};
1180
1181static const int kbd_tokens[] = {
1182 KBD_LED_OFF_TOKEN,
1183 KBD_LED_AUTO_25_TOKEN,
1184 KBD_LED_AUTO_50_TOKEN,
1185 KBD_LED_AUTO_75_TOKEN,
1186 KBD_LED_AUTO_100_TOKEN,
1187 KBD_LED_ON_TOKEN,
1188};
1189
1190static u16 kbd_token_bits;
1191
1192static struct kbd_info kbd_info;
1193static bool kbd_als_supported;
1194static bool kbd_triggers_supported;
1195
1196static u8 kbd_mode_levels[16];
1197static int kbd_mode_levels_count;
1198
1199static u8 kbd_previous_level;
1200static u8 kbd_previous_mode_bit;
1201
1202static bool kbd_led_present;
1203
1204/*
1205 * NOTE: there are three ways to set the keyboard backlight level.
1206 * First, via kbd_state.mode_bit (assigning KBD_MODE_BIT_TRIGGER_* value).
1207 * Second, via kbd_state.level (assigning numerical value <= kbd_info.levels).
1208 * Third, via SMBIOS tokens (KBD_LED_* in kbd_tokens)
1209 *
1210 * There are laptops which support only one of these methods. If we want to
1211 * support as many machines as possible we need to implement all three methods.
1212 * The first two methods use the kbd_state structure. The third uses SMBIOS
1213 * tokens. If kbd_info.levels == 0, the machine does not support setting the
1214 * keyboard backlight level via kbd_state.level.
1215 */
1216
1217static int kbd_get_info(struct kbd_info *info)
1218{
1219 u8 units;
1220 int ret;
1221
1222 get_buffer();
1223
1224 buffer->input[0] = 0x0;
1225 dell_send_request(buffer, 4, 11);
1226 ret = buffer->output[0];
1227
1228 if (ret) {
1229 ret = dell_smi_error(ret);
1230 goto out;
1231 }
1232
1233 info->modes = buffer->output[1] & 0xFFFF;
1234 info->type = (buffer->output[1] >> 24) & 0xFF;
1235 info->triggers = buffer->output[2] & 0xFF;
1236 units = (buffer->output[2] >> 8) & 0xFF;
1237 info->levels = (buffer->output[2] >> 16) & 0xFF;
1238
1239 if (units & BIT(0))
1240 info->seconds = (buffer->output[3] >> 0) & 0xFF;
1241 if (units & BIT(1))
1242 info->minutes = (buffer->output[3] >> 8) & 0xFF;
1243 if (units & BIT(2))
1244 info->hours = (buffer->output[3] >> 16) & 0xFF;
1245 if (units & BIT(3))
1246 info->days = (buffer->output[3] >> 24) & 0xFF;
1247
1248 out:
1249 release_buffer();
1250 return ret;
1251}
1252
1253static unsigned int kbd_get_max_level(void)
1254{
1255 if (kbd_info.levels != 0)
1256 return kbd_info.levels;
1257 if (kbd_mode_levels_count > 0)
1258 return kbd_mode_levels_count - 1;
1259 return 0;
1260}
1261
1262static int kbd_get_level(struct kbd_state *state)
1263{
1264 int i;
1265
1266 if (kbd_info.levels != 0)
1267 return state->level;
1268
1269 if (kbd_mode_levels_count > 0) {
1270 for (i = 0; i < kbd_mode_levels_count; ++i)
1271 if (kbd_mode_levels[i] == state->mode_bit)
1272 return i;
1273 return 0;
1274 }
1275
1276 return -EINVAL;
1277}
1278
1279static int kbd_set_level(struct kbd_state *state, u8 level)
1280{
1281 if (kbd_info.levels != 0) {
1282 if (level != 0)
1283 kbd_previous_level = level;
1284 if (state->level == level)
1285 return 0;
1286 state->level = level;
1287 if (level != 0 && state->mode_bit == KBD_MODE_BIT_OFF)
1288 state->mode_bit = kbd_previous_mode_bit;
1289 else if (level == 0 && state->mode_bit != KBD_MODE_BIT_OFF) {
1290 kbd_previous_mode_bit = state->mode_bit;
1291 state->mode_bit = KBD_MODE_BIT_OFF;
1292 }
1293 return 0;
1294 }
1295
1296 if (kbd_mode_levels_count > 0 && level < kbd_mode_levels_count) {
1297 if (level != 0)
1298 kbd_previous_level = level;
1299 state->mode_bit = kbd_mode_levels[level];
1300 return 0;
1301 }
1302
1303 return -EINVAL;
1304}
1305
1306static int kbd_get_state(struct kbd_state *state)
1307{
1308 int ret;
1309
1310 get_buffer();
1311
1312 buffer->input[0] = 0x1;
1313 dell_send_request(buffer, 4, 11);
1314 ret = buffer->output[0];
1315
1316 if (ret) {
1317 ret = dell_smi_error(ret);
1318 goto out;
1319 }
1320
1321 state->mode_bit = ffs(buffer->output[1] & 0xFFFF);
1322 if (state->mode_bit != 0)
1323 state->mode_bit--;
1324
1325 state->triggers = (buffer->output[1] >> 16) & 0xFF;
1326 state->timeout_value = (buffer->output[1] >> 24) & 0x3F;
1327 state->timeout_unit = (buffer->output[1] >> 30) & 0x3;
1328 state->als_setting = buffer->output[2] & 0xFF;
1329 state->als_value = (buffer->output[2] >> 8) & 0xFF;
1330 state->level = (buffer->output[2] >> 16) & 0xFF;
1331
1332 out:
1333 release_buffer();
1334 return ret;
1335}
1336
1337static int kbd_set_state(struct kbd_state *state)
1338{
1339 int ret;
1340
1341 get_buffer();
1342 buffer->input[0] = 0x2;
1343 buffer->input[1] = BIT(state->mode_bit) & 0xFFFF;
1344 buffer->input[1] |= (state->triggers & 0xFF) << 16;
1345 buffer->input[1] |= (state->timeout_value & 0x3F) << 24;
1346 buffer->input[1] |= (state->timeout_unit & 0x3) << 30;
1347 buffer->input[2] = state->als_setting & 0xFF;
1348 buffer->input[2] |= (state->level & 0xFF) << 16;
1349 dell_send_request(buffer, 4, 11);
1350 ret = buffer->output[0];
1351 release_buffer();
1352
1353 return dell_smi_error(ret);
1354}
1355
1356static int kbd_set_state_safe(struct kbd_state *state, struct kbd_state *old)
1357{
1358 int ret;
1359
1360 ret = kbd_set_state(state);
1361 if (ret == 0)
1362 return 0;
1363
1364 /*
1365 * When setting the new state fails,try to restore the previous one.
1366 * This is needed on some machines where BIOS sets a default state when
1367 * setting a new state fails. This default state could be all off.
1368 */
1369
1370 if (kbd_set_state(old))
1371 pr_err("Setting old previous keyboard state failed\n");
1372
1373 return ret;
1374}
1375
1376static int kbd_set_token_bit(u8 bit)
1377{
1378 int id;
1379 int ret;
1380
1381 if (bit >= ARRAY_SIZE(kbd_tokens))
1382 return -EINVAL;
1383
1384 id = find_token_id(kbd_tokens[bit]);
1385 if (id == -1)
1386 return -EINVAL;
1387
1388 get_buffer();
1389 buffer->input[0] = da_tokens[id].location;
1390 buffer->input[1] = da_tokens[id].value;
1391 dell_send_request(buffer, 1, 0);
1392 ret = buffer->output[0];
1393 release_buffer();
1394
1395 return dell_smi_error(ret);
1396}
1397
1398static int kbd_get_token_bit(u8 bit)
1399{
1400 int id;
1401 int ret;
1402 int val;
1403
1404 if (bit >= ARRAY_SIZE(kbd_tokens))
1405 return -EINVAL;
1406
1407 id = find_token_id(kbd_tokens[bit]);
1408 if (id == -1)
1409 return -EINVAL;
1410
1411 get_buffer();
1412 buffer->input[0] = da_tokens[id].location;
1413 dell_send_request(buffer, 0, 0);
1414 ret = buffer->output[0];
1415 val = buffer->output[1];
1416 release_buffer();
1417
1418 if (ret)
1419 return dell_smi_error(ret);
1420
1421 return (val == da_tokens[id].value);
1422}
1423
1424static int kbd_get_first_active_token_bit(void)
1425{
1426 int i;
1427 int ret;
1428
1429 for (i = 0; i < ARRAY_SIZE(kbd_tokens); ++i) {
1430 ret = kbd_get_token_bit(i);
1431 if (ret == 1)
1432 return i;
1433 }
1434
1435 return ret;
1436}
1437
1438static int kbd_get_valid_token_counts(void)
1439{
1440 return hweight16(kbd_token_bits);
1441}
1442
1443static inline int kbd_init_info(void)
1444{
1445 struct kbd_state state;
1446 int ret;
1447 int i;
1448
1449 ret = kbd_get_info(&kbd_info);
1450 if (ret)
1451 return ret;
1452
1453 kbd_get_state(&state);
1454
1455 /* NOTE: timeout value is stored in 6 bits so max value is 63 */
1456 if (kbd_info.seconds > 63)
1457 kbd_info.seconds = 63;
1458 if (kbd_info.minutes > 63)
1459 kbd_info.minutes = 63;
1460 if (kbd_info.hours > 63)
1461 kbd_info.hours = 63;
1462 if (kbd_info.days > 63)
1463 kbd_info.days = 63;
1464
1465 /* NOTE: On tested machines ON mode did not work and caused
1466 * problems (turned backlight off) so do not use it
1467 */
1468 kbd_info.modes &= ~BIT(KBD_MODE_BIT_ON);
1469
1470 kbd_previous_level = kbd_get_level(&state);
1471 kbd_previous_mode_bit = state.mode_bit;
1472
1473 if (kbd_previous_level == 0 && kbd_get_max_level() != 0)
1474 kbd_previous_level = 1;
1475
1476 if (kbd_previous_mode_bit == KBD_MODE_BIT_OFF) {
1477 kbd_previous_mode_bit =
1478 ffs(kbd_info.modes & ~BIT(KBD_MODE_BIT_OFF));
1479 if (kbd_previous_mode_bit != 0)
1480 kbd_previous_mode_bit--;
1481 }
1482
1483 if (kbd_info.modes & (BIT(KBD_MODE_BIT_ALS) |
1484 BIT(KBD_MODE_BIT_TRIGGER_ALS)))
1485 kbd_als_supported = true;
1486
1487 if (kbd_info.modes & (
1488 BIT(KBD_MODE_BIT_TRIGGER_ALS) | BIT(KBD_MODE_BIT_TRIGGER) |
1489 BIT(KBD_MODE_BIT_TRIGGER_25) | BIT(KBD_MODE_BIT_TRIGGER_50) |
1490 BIT(KBD_MODE_BIT_TRIGGER_75) | BIT(KBD_MODE_BIT_TRIGGER_100)
1491 ))
1492 kbd_triggers_supported = true;
1493
1494 /* kbd_mode_levels[0] is reserved, see below */
1495 for (i = 0; i < 16; ++i)
1496 if (kbd_is_level_mode_bit(i) && (BIT(i) & kbd_info.modes))
1497 kbd_mode_levels[1 + kbd_mode_levels_count++] = i;
1498
1499 /*
1500 * Find the first supported mode and assign to kbd_mode_levels[0].
1501 * This should be 0 (off), but we cannot depend on the BIOS to
1502 * support 0.
1503 */
1504 if (kbd_mode_levels_count > 0) {
1505 for (i = 0; i < 16; ++i) {
1506 if (BIT(i) & kbd_info.modes) {
1507 kbd_mode_levels[0] = i;
1508 break;
1509 }
1510 }
1511 kbd_mode_levels_count++;
1512 }
1513
1514 return 0;
1515
1516}
1517
1518static inline void kbd_init_tokens(void)
1519{
1520 int i;
1521
1522 for (i = 0; i < ARRAY_SIZE(kbd_tokens); ++i)
1523 if (find_token_id(kbd_tokens[i]) != -1)
1524 kbd_token_bits |= BIT(i);
1525}
1526
1527static void kbd_init(void)
1528{
1529 int ret;
1530
1531 ret = kbd_init_info();
1532 kbd_init_tokens();
1533
1534 if (kbd_token_bits != 0 || ret == 0)
1535 kbd_led_present = true;
1536}
1537
1538static ssize_t kbd_led_timeout_store(struct device *dev,
1539 struct device_attribute *attr,
1540 const char *buf, size_t count)
1541{
1542 struct kbd_state new_state;
1543 struct kbd_state state;
1544 bool convert;
1545 int value;
1546 int ret;
1547 char ch;
1548 u8 unit;
1549 int i;
1550
1551 ret = sscanf(buf, "%d %c", &value, &ch);
1552 if (ret < 1)
1553 return -EINVAL;
1554 else if (ret == 1)
1555 ch = 's';
1556
1557 if (value < 0)
1558 return -EINVAL;
1559
1560 convert = false;
1561
1562 switch (ch) {
1563 case 's':
1564 if (value > kbd_info.seconds)
1565 convert = true;
1566 unit = KBD_TIMEOUT_SECONDS;
1567 break;
1568 case 'm':
1569 if (value > kbd_info.minutes)
1570 convert = true;
1571 unit = KBD_TIMEOUT_MINUTES;
1572 break;
1573 case 'h':
1574 if (value > kbd_info.hours)
1575 convert = true;
1576 unit = KBD_TIMEOUT_HOURS;
1577 break;
1578 case 'd':
1579 if (value > kbd_info.days)
1580 convert = true;
1581 unit = KBD_TIMEOUT_DAYS;
1582 break;
1583 default:
1584 return -EINVAL;
1585 }
1586
1587 if (quirks && quirks->needs_kbd_timeouts)
1588 convert = true;
1589
1590 if (convert) {
1591 /* Convert value from current units to seconds */
1592 switch (unit) {
1593 case KBD_TIMEOUT_DAYS:
1594 value *= 24;
1595 case KBD_TIMEOUT_HOURS:
1596 value *= 60;
1597 case KBD_TIMEOUT_MINUTES:
1598 value *= 60;
1599 unit = KBD_TIMEOUT_SECONDS;
1600 }
1601
1602 if (quirks && quirks->needs_kbd_timeouts) {
1603 for (i = 0; quirks->kbd_timeouts[i] != -1; i++) {
1604 if (value <= quirks->kbd_timeouts[i]) {
1605 value = quirks->kbd_timeouts[i];
1606 break;
1607 }
1608 }
1609 }
1610
1611 if (value <= kbd_info.seconds && kbd_info.seconds) {
1612 unit = KBD_TIMEOUT_SECONDS;
1613 } else if (value / 60 <= kbd_info.minutes && kbd_info.minutes) {
1614 value /= 60;
1615 unit = KBD_TIMEOUT_MINUTES;
1616 } else if (value / (60 * 60) <= kbd_info.hours && kbd_info.hours) {
1617 value /= (60 * 60);
1618 unit = KBD_TIMEOUT_HOURS;
1619 } else if (value / (60 * 60 * 24) <= kbd_info.days && kbd_info.days) {
1620 value /= (60 * 60 * 24);
1621 unit = KBD_TIMEOUT_DAYS;
1622 } else {
1623 return -EINVAL;
1624 }
1625 }
1626
1627 ret = kbd_get_state(&state);
1628 if (ret)
1629 return ret;
1630
1631 new_state = state;
1632 new_state.timeout_value = value;
1633 new_state.timeout_unit = unit;
1634
1635 ret = kbd_set_state_safe(&new_state, &state);
1636 if (ret)
1637 return ret;
1638
1639 return count;
1640}
1641
1642static ssize_t kbd_led_timeout_show(struct device *dev,
1643 struct device_attribute *attr, char *buf)
1644{
1645 struct kbd_state state;
1646 int ret;
1647 int len;
1648
1649 ret = kbd_get_state(&state);
1650 if (ret)
1651 return ret;
1652
1653 len = sprintf(buf, "%d", state.timeout_value);
1654
1655 switch (state.timeout_unit) {
1656 case KBD_TIMEOUT_SECONDS:
1657 return len + sprintf(buf+len, "s\n");
1658 case KBD_TIMEOUT_MINUTES:
1659 return len + sprintf(buf+len, "m\n");
1660 case KBD_TIMEOUT_HOURS:
1661 return len + sprintf(buf+len, "h\n");
1662 case KBD_TIMEOUT_DAYS:
1663 return len + sprintf(buf+len, "d\n");
1664 default:
1665 return -EINVAL;
1666 }
1667
1668 return len;
1669}
1670
1671static DEVICE_ATTR(stop_timeout, S_IRUGO | S_IWUSR,
1672 kbd_led_timeout_show, kbd_led_timeout_store);
1673
1674static const char * const kbd_led_triggers[] = {
1675 "keyboard",
1676 "touchpad",
1677 /*"trackstick"*/ NULL, /* NOTE: trackstick is just alias for touchpad */
1678 "mouse",
1679};
1680
1681static ssize_t kbd_led_triggers_store(struct device *dev,
1682 struct device_attribute *attr,
1683 const char *buf, size_t count)
1684{
1685 struct kbd_state new_state;
1686 struct kbd_state state;
1687 bool triggers_enabled = false;
1688 int trigger_bit = -1;
1689 char trigger[21];
1690 int i, ret;
1691
1692 ret = sscanf(buf, "%20s", trigger);
1693 if (ret != 1)
1694 return -EINVAL;
1695
1696 if (trigger[0] != '+' && trigger[0] != '-')
1697 return -EINVAL;
1698
1699 ret = kbd_get_state(&state);
1700 if (ret)
1701 return ret;
1702
1703 if (kbd_triggers_supported)
1704 triggers_enabled = kbd_is_trigger_mode_bit(state.mode_bit);
1705
1706 if (kbd_triggers_supported) {
1707 for (i = 0; i < ARRAY_SIZE(kbd_led_triggers); ++i) {
1708 if (!(kbd_info.triggers & BIT(i)))
1709 continue;
1710 if (!kbd_led_triggers[i])
1711 continue;
1712 if (strcmp(trigger+1, kbd_led_triggers[i]) != 0)
1713 continue;
1714 if (trigger[0] == '+' &&
1715 triggers_enabled && (state.triggers & BIT(i)))
1716 return count;
1717 if (trigger[0] == '-' &&
1718 (!triggers_enabled || !(state.triggers & BIT(i))))
1719 return count;
1720 trigger_bit = i;
1721 break;
1722 }
1723 }
1724
1725 if (trigger_bit != -1) {
1726 new_state = state;
1727 if (trigger[0] == '+')
1728 new_state.triggers |= BIT(trigger_bit);
1729 else {
1730 new_state.triggers &= ~BIT(trigger_bit);
1731 /* NOTE: trackstick bit (2) must be disabled when
1732 * disabling touchpad bit (1), otherwise touchpad
1733 * bit (1) will not be disabled */
1734 if (trigger_bit == 1)
1735 new_state.triggers &= ~BIT(2);
1736 }
1737 if ((kbd_info.triggers & new_state.triggers) !=
1738 new_state.triggers)
1739 return -EINVAL;
1740 if (new_state.triggers && !triggers_enabled) {
1741 new_state.mode_bit = KBD_MODE_BIT_TRIGGER;
1742 kbd_set_level(&new_state, kbd_previous_level);
1743 } else if (new_state.triggers == 0) {
1744 kbd_set_level(&new_state, 0);
1745 }
1746 if (!(kbd_info.modes & BIT(new_state.mode_bit)))
1747 return -EINVAL;
1748 ret = kbd_set_state_safe(&new_state, &state);
1749 if (ret)
1750 return ret;
1751 if (new_state.mode_bit != KBD_MODE_BIT_OFF)
1752 kbd_previous_mode_bit = new_state.mode_bit;
1753 return count;
1754 }
1755
1756 return -EINVAL;
1757}
1758
1759static ssize_t kbd_led_triggers_show(struct device *dev,
1760 struct device_attribute *attr, char *buf)
1761{
1762 struct kbd_state state;
1763 bool triggers_enabled;
1764 int level, i, ret;
1765 int len = 0;
1766
1767 ret = kbd_get_state(&state);
1768 if (ret)
1769 return ret;
1770
1771 len = 0;
1772
1773 if (kbd_triggers_supported) {
1774 triggers_enabled = kbd_is_trigger_mode_bit(state.mode_bit);
1775 level = kbd_get_level(&state);
1776 for (i = 0; i < ARRAY_SIZE(kbd_led_triggers); ++i) {
1777 if (!(kbd_info.triggers & BIT(i)))
1778 continue;
1779 if (!kbd_led_triggers[i])
1780 continue;
1781 if ((triggers_enabled || level <= 0) &&
1782 (state.triggers & BIT(i)))
1783 buf[len++] = '+';
1784 else
1785 buf[len++] = '-';
1786 len += sprintf(buf+len, "%s ", kbd_led_triggers[i]);
1787 }
1788 }
1789
1790 if (len)
1791 buf[len - 1] = '\n';
1792
1793 return len;
1794}
1795
1796static DEVICE_ATTR(start_triggers, S_IRUGO | S_IWUSR,
1797 kbd_led_triggers_show, kbd_led_triggers_store);
1798
1799static ssize_t kbd_led_als_enabled_store(struct device *dev,
1800 struct device_attribute *attr,
1801 const char *buf, size_t count)
1802{
1803 struct kbd_state new_state;
1804 struct kbd_state state;
1805 bool triggers_enabled = false;
1806 int enable;
1807 int ret;
1808
1809 ret = kstrtoint(buf, 0, &enable);
1810 if (ret)
1811 return ret;
1812
1813 ret = kbd_get_state(&state);
1814 if (ret)
1815 return ret;
1816
1817 if (enable == kbd_is_als_mode_bit(state.mode_bit))
1818 return count;
1819
1820 new_state = state;
1821
1822 if (kbd_triggers_supported)
1823 triggers_enabled = kbd_is_trigger_mode_bit(state.mode_bit);
1824
1825 if (enable) {
1826 if (triggers_enabled)
1827 new_state.mode_bit = KBD_MODE_BIT_TRIGGER_ALS;
1828 else
1829 new_state.mode_bit = KBD_MODE_BIT_ALS;
1830 } else {
1831 if (triggers_enabled) {
1832 new_state.mode_bit = KBD_MODE_BIT_TRIGGER;
1833 kbd_set_level(&new_state, kbd_previous_level);
1834 } else {
1835 new_state.mode_bit = KBD_MODE_BIT_ON;
1836 }
1837 }
1838 if (!(kbd_info.modes & BIT(new_state.mode_bit)))
1839 return -EINVAL;
1840
1841 ret = kbd_set_state_safe(&new_state, &state);
1842 if (ret)
1843 return ret;
1844 kbd_previous_mode_bit = new_state.mode_bit;
1845
1846 return count;
1847}
1848
1849static ssize_t kbd_led_als_enabled_show(struct device *dev,
1850 struct device_attribute *attr,
1851 char *buf)
1852{
1853 struct kbd_state state;
1854 bool enabled = false;
1855 int ret;
1856
1857 ret = kbd_get_state(&state);
1858 if (ret)
1859 return ret;
1860 enabled = kbd_is_als_mode_bit(state.mode_bit);
1861
1862 return sprintf(buf, "%d\n", enabled ? 1 : 0);
1863}
1864
1865static DEVICE_ATTR(als_enabled, S_IRUGO | S_IWUSR,
1866 kbd_led_als_enabled_show, kbd_led_als_enabled_store);
1867
1868static ssize_t kbd_led_als_setting_store(struct device *dev,
1869 struct device_attribute *attr,
1870 const char *buf, size_t count)
1871{
1872 struct kbd_state state;
1873 struct kbd_state new_state;
1874 u8 setting;
1875 int ret;
1876
1877 ret = kstrtou8(buf, 10, &setting);
1878 if (ret)
1879 return ret;
1880
1881 ret = kbd_get_state(&state);
1882 if (ret)
1883 return ret;
1884
1885 new_state = state;
1886 new_state.als_setting = setting;
1887
1888 ret = kbd_set_state_safe(&new_state, &state);
1889 if (ret)
1890 return ret;
1891
1892 return count;
1893}
1894
1895static ssize_t kbd_led_als_setting_show(struct device *dev,
1896 struct device_attribute *attr,
1897 char *buf)
1898{
1899 struct kbd_state state;
1900 int ret;
1901
1902 ret = kbd_get_state(&state);
1903 if (ret)
1904 return ret;
1905
1906 return sprintf(buf, "%d\n", state.als_setting);
1907}
1908
1909static DEVICE_ATTR(als_setting, S_IRUGO | S_IWUSR,
1910 kbd_led_als_setting_show, kbd_led_als_setting_store);
1911
1912static struct attribute *kbd_led_attrs[] = {
1913 &dev_attr_stop_timeout.attr,
1914 &dev_attr_start_triggers.attr,
1915 NULL,
1916};
1917
1918static const struct attribute_group kbd_led_group = {
1919 .attrs = kbd_led_attrs,
1920};
1921
1922static struct attribute *kbd_led_als_attrs[] = {
1923 &dev_attr_als_enabled.attr,
1924 &dev_attr_als_setting.attr,
1925 NULL,
1926};
1927
1928static const struct attribute_group kbd_led_als_group = {
1929 .attrs = kbd_led_als_attrs,
1930};
1931
1932static const struct attribute_group *kbd_led_groups[] = {
1933 &kbd_led_group,
1934 &kbd_led_als_group,
1935 NULL,
1936};
1937
1938static enum led_brightness kbd_led_level_get(struct led_classdev *led_cdev)
1939{
1940 int ret;
1941 u16 num;
1942 struct kbd_state state;
1943
1944 if (kbd_get_max_level()) {
1945 ret = kbd_get_state(&state);
1946 if (ret)
1947 return 0;
1948 ret = kbd_get_level(&state);
1949 if (ret < 0)
1950 return 0;
1951 return ret;
1952 }
1953
1954 if (kbd_get_valid_token_counts()) {
1955 ret = kbd_get_first_active_token_bit();
1956 if (ret < 0)
1957 return 0;
1958 for (num = kbd_token_bits; num != 0 && ret > 0; --ret)
1959 num &= num - 1; /* clear the first bit set */
1960 if (num == 0)
1961 return 0;
1962 return ffs(num) - 1;
1963 }
1964
1965 pr_warn("Keyboard brightness level control not supported\n");
1966 return 0;
1967}
1968
1969static void kbd_led_level_set(struct led_classdev *led_cdev,
1970 enum led_brightness value)
1971{
1972 struct kbd_state state;
1973 struct kbd_state new_state;
1974 u16 num;
1975
1976 if (kbd_get_max_level()) {
1977 if (kbd_get_state(&state))
1978 return;
1979 new_state = state;
1980 if (kbd_set_level(&new_state, value))
1981 return;
1982 kbd_set_state_safe(&new_state, &state);
1983 return;
1984 }
1985
1986 if (kbd_get_valid_token_counts()) {
1987 for (num = kbd_token_bits; num != 0 && value > 0; --value)
1988 num &= num - 1; /* clear the first bit set */
1989 if (num == 0)
1990 return;
1991 kbd_set_token_bit(ffs(num) - 1);
1992 return;
1993 }
1994
1995 pr_warn("Keyboard brightness level control not supported\n");
1996}
1997
1998static struct led_classdev kbd_led = {
1999 .name = "dell::kbd_backlight",
2000 .brightness_set = kbd_led_level_set,
2001 .brightness_get = kbd_led_level_get,
2002 .groups = kbd_led_groups,
2003};
2004
2005static int __init kbd_led_init(struct device *dev)
2006{
2007 kbd_init();
2008 if (!kbd_led_present)
2009 return -ENODEV;
2010 if (!kbd_als_supported)
2011 kbd_led_groups[1] = NULL;
2012 kbd_led.max_brightness = kbd_get_max_level();
2013 if (!kbd_led.max_brightness) {
2014 kbd_led.max_brightness = kbd_get_valid_token_counts();
2015 if (kbd_led.max_brightness)
2016 kbd_led.max_brightness--;
2017 }
2018 return led_classdev_register(dev, &kbd_led);
2019}
2020
2021static void brightness_set_exit(struct led_classdev *led_cdev,
2022 enum led_brightness value)
2023{
2024 /* Don't change backlight level on exit */
2025};
2026
2027static void kbd_led_exit(void)
2028{
2029 if (!kbd_led_present)
2030 return;
2031 kbd_led.brightness_set = brightness_set_exit;
2032 led_classdev_unregister(&kbd_led);
2033}
2034
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002035static int __init dell_init(void)
2036{
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002037 int max_intensity = 0;
2038 int ret;
2039
2040 if (!dmi_check_system(dell_device_table))
2041 return -ENODEV;
2042
AceLan Kao2d8b90b2011-10-04 16:25:44 +08002043 quirks = NULL;
2044 /* find if this machine support other functions */
2045 dmi_check_system(dell_quirks);
2046
Jean Delvaree7a19c562009-03-30 21:46:44 +02002047 dmi_walk(find_tokens, NULL);
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002048
2049 if (!da_tokens) {
Joe Percheseb889522011-03-29 15:21:37 -07002050 pr_info("Unable to find dmi tokens\n");
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002051 return -ENODEV;
2052 }
2053
Alan Jenkinsada32482009-08-19 15:06:49 +01002054 ret = platform_driver_register(&platform_driver);
2055 if (ret)
2056 goto fail_platform_driver;
2057 platform_device = platform_device_alloc("dell-laptop", -1);
2058 if (!platform_device) {
2059 ret = -ENOMEM;
2060 goto fail_platform_device1;
2061 }
2062 ret = platform_device_add(platform_device);
2063 if (ret)
2064 goto fail_platform_device2;
2065
Stuart Hayes116ee772010-02-10 14:12:13 -05002066 /*
2067 * Allocate buffer below 4GB for SMI data--only 32-bit physical addr
2068 * is passed to SMI handler.
2069 */
Pali Rohárb8830a42015-06-23 10:11:19 +02002070 buffer = (void *)__get_free_page(GFP_KERNEL | GFP_DMA32);
2071 if (!buffer) {
Wei Yongjun9f208202013-05-09 10:03:02 +08002072 ret = -ENOMEM;
Stuart Hayes116ee772010-02-10 14:12:13 -05002073 goto fail_buffer;
Wei Yongjun9f208202013-05-09 10:03:02 +08002074 }
Stuart Hayes116ee772010-02-10 14:12:13 -05002075
Hans de Goede4cc8a572013-11-17 14:00:16 +01002076 ret = dell_setup_rfkill();
2077
2078 if (ret) {
2079 pr_warn("Unable to setup rfkill\n");
2080 goto fail_rfkill;
2081 }
2082
AceLan Kao2d8b90b2011-10-04 16:25:44 +08002083 if (quirks && quirks->touchpad_led)
2084 touchpad_led_init(&platform_device->dev);
2085
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +01002086 kbd_led_init(&platform_device->dev);
2087
Keng-Yu Lin037accf2010-09-28 11:43:31 +08002088 dell_laptop_dir = debugfs_create_dir("dell_laptop", NULL);
Hans de Goede4cc8a572013-11-17 14:00:16 +01002089 if (dell_laptop_dir != NULL)
2090 debugfs_create_file("rfkill", 0444, dell_laptop_dir, NULL,
2091 &dell_debugfs_fops);
Keng-Yu Lin037accf2010-09-28 11:43:31 +08002092
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002093#ifdef CONFIG_ACPI
2094 /* In the event of an ACPI backlight being available, don't
2095 * register the platform controller.
2096 */
2097 if (acpi_video_backlight_support())
2098 return 0;
2099#endif
2100
Stuart Hayes116ee772010-02-10 14:12:13 -05002101 get_buffer();
2102 buffer->input[0] = find_token_location(BRIGHTNESS_TOKEN);
2103 if (buffer->input[0] != -1) {
2104 dell_send_request(buffer, 0, 2);
2105 max_intensity = buffer->output[3];
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002106 }
Stuart Hayes116ee772010-02-10 14:12:13 -05002107 release_buffer();
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002108
2109 if (max_intensity) {
Matthew Garretta19a6ee2010-02-17 16:39:44 -05002110 struct backlight_properties props;
2111 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -07002112 props.type = BACKLIGHT_PLATFORM;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05002113 props.max_brightness = max_intensity;
2114 dell_backlight_device = backlight_device_register("dell_backlight",
2115 &platform_device->dev,
2116 NULL,
2117 &dell_ops,
2118 &props);
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002119
2120 if (IS_ERR(dell_backlight_device)) {
2121 ret = PTR_ERR(dell_backlight_device);
2122 dell_backlight_device = NULL;
Alan Jenkins71e9dc72009-08-19 15:06:47 +01002123 goto fail_backlight;
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002124 }
2125
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002126 dell_backlight_device->props.brightness =
2127 dell_get_intensity(dell_backlight_device);
2128 backlight_update_status(dell_backlight_device);
2129 }
2130
2131 return 0;
Alan Jenkins71e9dc72009-08-19 15:06:47 +01002132
2133fail_backlight:
Hans de Goede4cc8a572013-11-17 14:00:16 +01002134 dell_cleanup_rfkill();
2135fail_rfkill:
Pali Rohárb8830a42015-06-23 10:11:19 +02002136 free_page((unsigned long)buffer);
Stuart Hayes116ee772010-02-10 14:12:13 -05002137fail_buffer:
Alan Jenkinsada32482009-08-19 15:06:49 +01002138 platform_device_del(platform_device);
2139fail_platform_device2:
2140 platform_device_put(platform_device);
2141fail_platform_device1:
2142 platform_driver_unregister(&platform_driver);
2143fail_platform_driver:
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002144 kfree(da_tokens);
2145 return ret;
2146}
2147
2148static void __exit dell_exit(void)
2149{
Keng-Yu Lin037accf2010-09-28 11:43:31 +08002150 debugfs_remove_recursive(dell_laptop_dir);
AceLan Kao2d8b90b2011-10-04 16:25:44 +08002151 if (quirks && quirks->touchpad_led)
2152 touchpad_led_exit();
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +01002153 kbd_led_exit();
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002154 backlight_device_unregister(dell_backlight_device);
Hans de Goede4cc8a572013-11-17 14:00:16 +01002155 dell_cleanup_rfkill();
Matthew Garrettfacd61d2010-02-09 14:03:04 -05002156 if (platform_device) {
Matthew Garrett92e00e42010-03-01 09:46:43 -05002157 platform_device_unregister(platform_device);
Matthew Garrettfacd61d2010-02-09 14:03:04 -05002158 platform_driver_unregister(&platform_driver);
2159 }
Matthew Garrette5512602010-02-09 14:05:01 -05002160 kfree(da_tokens);
Stuart Hayes116ee772010-02-10 14:12:13 -05002161 free_page((unsigned long)buffer);
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002162}
2163
Pali Rohárf8358572015-06-06 10:23:30 +02002164/* dell-rbtn.c driver export functions which will not work correctly (and could
2165 * cause kernel crash) if they are called before dell-rbtn.c init code. This is
2166 * not problem when dell-rbtn.c is compiled as external module. When both files
2167 * (dell-rbtn.c and dell-laptop.c) are compiled statically into kernel, then we
2168 * need to ensure that dell_init() will be called after initializing dell-rbtn.
2169 * This can be achieved by late_initcall() instead module_init().
2170 */
2171late_initcall(dell_init);
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002172module_exit(dell_exit);
2173
2174MODULE_AUTHOR("Matthew Garrett <mjg@redhat.com>");
Gabriele Mazzotta6cff8d62015-02-19 11:58:29 +01002175MODULE_AUTHOR("Gabriele Mazzotta <gabriele.mzt@gmail.com>");
2176MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>");
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002177MODULE_DESCRIPTION("Dell laptop driver");
2178MODULE_LICENSE("GPL");