blob: e2a34b42ddc1d584b5333fe9921d0d2c2b12dda4 [file] [log] [blame]
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001/*
2 * Samsung Laptop driver
3 *
4 * Copyright (C) 2009,2011 Greg Kroah-Hartman (gregkh@suse.de)
5 * Copyright (C) 2009,2011 Novell Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 */
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/delay.h>
18#include <linux/pci.h>
19#include <linux/backlight.h>
Corentin Charyf674ebf2011-11-26 11:00:08 +010020#include <linux/leds.h>
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -050021#include <linux/fb.h>
22#include <linux/dmi.h>
23#include <linux/platform_device.h>
24#include <linux/rfkill.h>
Corentin Charyf34cd9c2011-11-26 11:00:00 +010025#include <linux/acpi.h>
Corentin Chary5b80fc42011-11-26 11:00:03 +010026#include <linux/seq_file.h>
27#include <linux/debugfs.h>
David Rientjes82c333a2012-03-20 09:53:06 +010028#include <linux/ctype.h>
Corentin Charya979e2e2012-03-22 14:08:19 +010029#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE)
30#include <acpi/video.h>
31#endif
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -050032
33/*
34 * This driver is needed because a number of Samsung laptops do not hook
35 * their control settings through ACPI. So we have to poke around in the
36 * BIOS to do things like brightness values, and "special" key controls.
37 */
38
39/*
40 * We have 0 - 8 as valid brightness levels. The specs say that level 0 should
41 * be reserved by the BIOS (which really doesn't make much sense), we tell
42 * userspace that the value is 0 - 7 and then just tell the hardware 1 - 8
43 */
44#define MAX_BRIGHT 0x07
45
46
47#define SABI_IFACE_MAIN 0x00
48#define SABI_IFACE_SUB 0x02
49#define SABI_IFACE_COMPLETE 0x04
50#define SABI_IFACE_DATA 0x05
51
Corentin Chary84d482f2011-11-26 11:00:09 +010052#define WL_STATUS_WLAN 0x0
53#define WL_STATUS_BT 0x2
54
Corentin Chary7e960712011-11-26 11:00:02 +010055/* Structure get/set data using sabi */
56struct sabi_data {
57 union {
58 struct {
59 u32 d0;
60 u32 d1;
61 u16 d2;
62 u8 d3;
63 };
64 u8 data[11];
65 };
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -050066};
67
68struct sabi_header_offsets {
69 u8 port;
70 u8 re_mem;
71 u8 iface_func;
72 u8 en_mem;
73 u8 data_offset;
74 u8 data_segment;
75};
76
77struct sabi_commands {
78 /*
79 * Brightness is 0 - 8, as described above.
80 * Value 0 is for the BIOS to use
81 */
Corentin Chary7e960712011-11-26 11:00:02 +010082 u16 get_brightness;
83 u16 set_brightness;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -050084
85 /*
86 * first byte:
87 * 0x00 - wireless is off
88 * 0x01 - wireless is on
89 * second byte:
90 * 0x02 - 3G is off
91 * 0x03 - 3G is on
92 * TODO, verify 3G is correct, that doesn't seem right...
93 */
Corentin Chary7e960712011-11-26 11:00:02 +010094 u16 get_wireless_button;
95 u16 set_wireless_button;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -050096
97 /* 0 is off, 1 is on */
Corentin Chary7e960712011-11-26 11:00:02 +010098 u16 get_backlight;
99 u16 set_backlight;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500100
101 /*
102 * 0x80 or 0x00 - no action
103 * 0x81 - recovery key pressed
104 */
Corentin Chary7e960712011-11-26 11:00:02 +0100105 u16 get_recovery_mode;
106 u16 set_recovery_mode;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500107
108 /*
109 * on seclinux: 0 is low, 1 is high,
110 * on swsmi: 0 is normal, 1 is silent, 2 is turbo
111 */
Corentin Chary7e960712011-11-26 11:00:02 +0100112 u16 get_performance_level;
113 u16 set_performance_level;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500114
Corentin Charycb5b5c92011-11-26 11:00:05 +0100115 /* 0x80 is off, 0x81 is on */
116 u16 get_battery_life_extender;
117 u16 set_battery_life_extender;
118
Corentin Chary3a75d372011-11-26 11:00:06 +0100119 /* 0x80 is off, 0x81 is on */
120 u16 get_usb_charge;
121 u16 set_usb_charge;
122
Corentin Chary84d482f2011-11-26 11:00:09 +0100123 /* the first byte is for bluetooth and the third one is for wlan */
124 u16 get_wireless_status;
125 u16 set_wireless_status;
126
Corentin Charyf674ebf2011-11-26 11:00:08 +0100127 /* 0x81 to read, (0x82 | level << 8) to set, 0xaabb to enable */
128 u16 kbd_backlight;
129
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500130 /*
131 * Tell the BIOS that Linux is running on this machine.
132 * 81 is on, 80 is off
133 */
Corentin Chary7e960712011-11-26 11:00:02 +0100134 u16 set_linux;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500135};
136
137struct sabi_performance_level {
138 const char *name;
Corentin Chary7e960712011-11-26 11:00:02 +0100139 u16 value;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500140};
141
142struct sabi_config {
Corentin Chary84d482f2011-11-26 11:00:09 +0100143 int sabi_version;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500144 const char *test_string;
145 u16 main_function;
146 const struct sabi_header_offsets header_offsets;
147 const struct sabi_commands commands;
148 const struct sabi_performance_level performance_levels[4];
149 u8 min_brightness;
150 u8 max_brightness;
151};
152
153static const struct sabi_config sabi_configs[] = {
154 {
Corentin Chary84d482f2011-11-26 11:00:09 +0100155 /* I don't know if it is really 2, but it it is
156 * less than 3 anyway */
157 .sabi_version = 2,
158
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500159 .test_string = "SECLINUX",
160
161 .main_function = 0x4c49,
162
163 .header_offsets = {
164 .port = 0x00,
165 .re_mem = 0x02,
166 .iface_func = 0x03,
167 .en_mem = 0x04,
168 .data_offset = 0x05,
169 .data_segment = 0x07,
170 },
171
172 .commands = {
173 .get_brightness = 0x00,
174 .set_brightness = 0x01,
175
176 .get_wireless_button = 0x02,
177 .set_wireless_button = 0x03,
178
179 .get_backlight = 0x04,
180 .set_backlight = 0x05,
181
182 .get_recovery_mode = 0x06,
183 .set_recovery_mode = 0x07,
184
185 .get_performance_level = 0x08,
186 .set_performance_level = 0x09,
187
Corentin Charycb5b5c92011-11-26 11:00:05 +0100188 .get_battery_life_extender = 0xFFFF,
189 .set_battery_life_extender = 0xFFFF,
190
Corentin Chary3a75d372011-11-26 11:00:06 +0100191 .get_usb_charge = 0xFFFF,
192 .set_usb_charge = 0xFFFF,
193
Corentin Chary84d482f2011-11-26 11:00:09 +0100194 .get_wireless_status = 0xFFFF,
195 .set_wireless_status = 0xFFFF,
196
Corentin Charyf674ebf2011-11-26 11:00:08 +0100197 .kbd_backlight = 0xFFFF,
198
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500199 .set_linux = 0x0a,
200 },
201
202 .performance_levels = {
203 {
204 .name = "silent",
205 .value = 0,
206 },
207 {
208 .name = "normal",
209 .value = 1,
210 },
211 { },
212 },
213 .min_brightness = 1,
214 .max_brightness = 8,
215 },
216 {
Corentin Chary84d482f2011-11-26 11:00:09 +0100217 .sabi_version = 3,
218
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500219 .test_string = "SwSmi@",
220
221 .main_function = 0x5843,
222
223 .header_offsets = {
224 .port = 0x00,
225 .re_mem = 0x04,
226 .iface_func = 0x02,
227 .en_mem = 0x03,
228 .data_offset = 0x05,
229 .data_segment = 0x07,
230 },
231
232 .commands = {
233 .get_brightness = 0x10,
234 .set_brightness = 0x11,
235
236 .get_wireless_button = 0x12,
237 .set_wireless_button = 0x13,
238
239 .get_backlight = 0x2d,
240 .set_backlight = 0x2e,
241
242 .get_recovery_mode = 0xff,
243 .set_recovery_mode = 0xff,
244
245 .get_performance_level = 0x31,
246 .set_performance_level = 0x32,
247
Corentin Charycb5b5c92011-11-26 11:00:05 +0100248 .get_battery_life_extender = 0x65,
249 .set_battery_life_extender = 0x66,
250
Corentin Chary3a75d372011-11-26 11:00:06 +0100251 .get_usb_charge = 0x67,
252 .set_usb_charge = 0x68,
253
Corentin Chary84d482f2011-11-26 11:00:09 +0100254 .get_wireless_status = 0x69,
255 .set_wireless_status = 0x6a,
256
Corentin Charyf674ebf2011-11-26 11:00:08 +0100257 .kbd_backlight = 0x78,
258
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500259 .set_linux = 0xff,
260 },
261
262 .performance_levels = {
263 {
264 .name = "normal",
265 .value = 0,
266 },
267 {
268 .name = "silent",
269 .value = 1,
270 },
271 {
272 .name = "overclock",
273 .value = 2,
274 },
275 { },
276 },
277 .min_brightness = 0,
278 .max_brightness = 8,
279 },
280 { },
281};
282
Corentin Chary5b80fc42011-11-26 11:00:03 +0100283/*
284 * samsung-laptop/ - debugfs root directory
285 * f0000_segment - dump f0000 segment
286 * command - current command
287 * data - current data
288 * d0, d1, d2, d3 - data fields
289 * call - call SABI using command and data
290 *
291 * This allow to call arbitrary sabi commands wihout
292 * modifying the driver at all.
293 * For example, setting the keyboard backlight brightness to 5
294 *
295 * echo 0x78 > command
296 * echo 0x0582 > d0
297 * echo 0 > d1
298 * echo 0 > d2
299 * echo 0 > d3
300 * cat call
301 */
302
303struct samsung_laptop_debug {
304 struct dentry *root;
305 struct sabi_data data;
306 u16 command;
307
308 struct debugfs_blob_wrapper f0000_wrapper;
309 struct debugfs_blob_wrapper data_wrapper;
Corentin Chary6f6ae062011-11-26 11:00:11 +0100310 struct debugfs_blob_wrapper sdiag_wrapper;
Corentin Chary5b80fc42011-11-26 11:00:03 +0100311};
312
Corentin Chary84d482f2011-11-26 11:00:09 +0100313struct samsung_laptop;
314
315struct samsung_rfkill {
316 struct samsung_laptop *samsung;
317 struct rfkill *rfkill;
318 enum rfkill_type type;
319};
320
Corentin Charya6df4892011-11-26 10:59:58 +0100321struct samsung_laptop {
322 const struct sabi_config *config;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500323
Corentin Charya6df4892011-11-26 10:59:58 +0100324 void __iomem *sabi;
325 void __iomem *sabi_iface;
326 void __iomem *f0000_segment;
327
328 struct mutex sabi_mutex;
329
Corentin Chary5dea7a22011-11-26 10:59:59 +0100330 struct platform_device *platform_device;
Corentin Charya6df4892011-11-26 10:59:58 +0100331 struct backlight_device *backlight_device;
Corentin Chary84d482f2011-11-26 11:00:09 +0100332
333 struct samsung_rfkill wlan;
334 struct samsung_rfkill bluetooth;
Corentin Charya6df4892011-11-26 10:59:58 +0100335
Corentin Charyf674ebf2011-11-26 11:00:08 +0100336 struct led_classdev kbd_led;
337 int kbd_led_wk;
338 struct workqueue_struct *led_workqueue;
339 struct work_struct kbd_led_work;
340
Corentin Chary5b80fc42011-11-26 11:00:03 +0100341 struct samsung_laptop_debug debug;
Corentin Charya979e2e2012-03-22 14:08:19 +0100342 struct samsung_quirks *quirks;
Corentin Chary5b80fc42011-11-26 11:00:03 +0100343
Corentin Charyf34cd9c2011-11-26 11:00:00 +0100344 bool handle_backlight;
Corentin Charya6df4892011-11-26 10:59:58 +0100345 bool has_stepping_quirk;
Corentin Chary6f6ae062011-11-26 11:00:11 +0100346
347 char sdiag[64];
Corentin Charya6df4892011-11-26 10:59:58 +0100348};
349
Corentin Charya979e2e2012-03-22 14:08:19 +0100350struct samsung_quirks {
351 bool broken_acpi_video;
352};
Corentin Chary5dea7a22011-11-26 10:59:59 +0100353
Corentin Charya979e2e2012-03-22 14:08:19 +0100354static struct samsung_quirks samsung_unknown = {};
355
356static struct samsung_quirks samsung_broken_acpi_video = {
357 .broken_acpi_video = true,
358};
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500359
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030360static bool force;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500361module_param(force, bool, 0);
362MODULE_PARM_DESC(force,
363 "Disable the DMI check and forces the driver to be loaded");
364
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030365static bool debug;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500366module_param(debug, bool, S_IRUGO | S_IWUSR);
367MODULE_PARM_DESC(debug, "Debug enabled or not");
368
Corentin Chary7e960712011-11-26 11:00:02 +0100369static int sabi_command(struct samsung_laptop *samsung, u16 command,
370 struct sabi_data *in,
371 struct sabi_data *out)
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500372{
Corentin Charya6df4892011-11-26 10:59:58 +0100373 const struct sabi_config *config = samsung->config;
Corentin Chary7e960712011-11-26 11:00:02 +0100374 int ret = 0;
Corentin Charya6df4892011-11-26 10:59:58 +0100375 u16 port = readw(samsung->sabi + config->header_offsets.port);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500376 u8 complete, iface_data;
377
Corentin Charya6df4892011-11-26 10:59:58 +0100378 mutex_lock(&samsung->sabi_mutex);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500379
Corentin Chary7e960712011-11-26 11:00:02 +0100380 if (debug) {
381 if (in)
Corentin Chary2e777182011-11-26 11:00:12 +0100382 pr_info("SABI command:0x%04x "
383 "data:{0x%08x, 0x%08x, 0x%04x, 0x%02x}",
Corentin Chary7e960712011-11-26 11:00:02 +0100384 command, in->d0, in->d1, in->d2, in->d3);
385 else
Corentin Chary2e777182011-11-26 11:00:12 +0100386 pr_info("SABI command:0x%04x", command);
Corentin Chary7e960712011-11-26 11:00:02 +0100387 }
388
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500389 /* enable memory to be able to write to it */
Corentin Charya6df4892011-11-26 10:59:58 +0100390 outb(readb(samsung->sabi + config->header_offsets.en_mem), port);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500391
392 /* write out the command */
Corentin Charya6df4892011-11-26 10:59:58 +0100393 writew(config->main_function, samsung->sabi_iface + SABI_IFACE_MAIN);
394 writew(command, samsung->sabi_iface + SABI_IFACE_SUB);
395 writeb(0, samsung->sabi_iface + SABI_IFACE_COMPLETE);
Corentin Chary7e960712011-11-26 11:00:02 +0100396 if (in) {
397 writel(in->d0, samsung->sabi_iface + SABI_IFACE_DATA);
398 writel(in->d1, samsung->sabi_iface + SABI_IFACE_DATA + 4);
399 writew(in->d2, samsung->sabi_iface + SABI_IFACE_DATA + 8);
400 writeb(in->d3, samsung->sabi_iface + SABI_IFACE_DATA + 10);
401 }
Corentin Charya6df4892011-11-26 10:59:58 +0100402 outb(readb(samsung->sabi + config->header_offsets.iface_func), port);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500403
404 /* write protect memory to make it safe */
Corentin Charya6df4892011-11-26 10:59:58 +0100405 outb(readb(samsung->sabi + config->header_offsets.re_mem), port);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500406
407 /* see if the command actually succeeded */
Corentin Charya6df4892011-11-26 10:59:58 +0100408 complete = readb(samsung->sabi_iface + SABI_IFACE_COMPLETE);
409 iface_data = readb(samsung->sabi_iface + SABI_IFACE_DATA);
Corentin Chary2e777182011-11-26 11:00:12 +0100410
411 /* iface_data = 0xFF happens when a command is not known
412 * so we only add a warning in debug mode since we will
413 * probably issue some unknown command at startup to find
414 * out which features are supported */
415 if (complete != 0xaa || (iface_data == 0xff && debug))
Corentin Chary7e960712011-11-26 11:00:02 +0100416 pr_warn("SABI command 0x%04x failed with"
417 " completion flag 0x%02x and interface data 0x%02x",
418 command, complete, iface_data);
Corentin Chary2e777182011-11-26 11:00:12 +0100419
420 if (complete != 0xaa || iface_data == 0xff) {
Corentin Chary7e960712011-11-26 11:00:02 +0100421 ret = -EINVAL;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500422 goto exit;
423 }
Corentin Chary7e960712011-11-26 11:00:02 +0100424
425 if (out) {
426 out->d0 = readl(samsung->sabi_iface + SABI_IFACE_DATA);
427 out->d1 = readl(samsung->sabi_iface + SABI_IFACE_DATA + 4);
428 out->d2 = readw(samsung->sabi_iface + SABI_IFACE_DATA + 2);
429 out->d3 = readb(samsung->sabi_iface + SABI_IFACE_DATA + 1);
430 }
431
432 if (debug && out) {
Corentin Chary2e777182011-11-26 11:00:12 +0100433 pr_info("SABI return data:{0x%08x, 0x%08x, 0x%04x, 0x%02x}",
Corentin Chary7e960712011-11-26 11:00:02 +0100434 out->d0, out->d1, out->d2, out->d3);
435 }
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500436
437exit:
Corentin Charya6df4892011-11-26 10:59:58 +0100438 mutex_unlock(&samsung->sabi_mutex);
Corentin Chary7e960712011-11-26 11:00:02 +0100439 return ret;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500440}
441
Corentin Chary7e960712011-11-26 11:00:02 +0100442/* simple wrappers usable with most commands */
443static int sabi_set_commandb(struct samsung_laptop *samsung,
444 u16 command, u8 data)
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500445{
David Rientjes85229442012-03-20 09:53:05 +0100446 struct sabi_data in = { { { .d0 = 0, .d1 = 0, .d2 = 0, .d3 = 0 } } };
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500447
Corentin Chary7e960712011-11-26 11:00:02 +0100448 in.data[0] = data;
449 return sabi_command(samsung, command, &in, NULL);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500450}
451
Corentin Chary5dea7a22011-11-26 10:59:59 +0100452static int read_brightness(struct samsung_laptop *samsung)
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500453{
Corentin Charya6df4892011-11-26 10:59:58 +0100454 const struct sabi_config *config = samsung->config;
455 const struct sabi_commands *commands = &samsung->config->commands;
Corentin Chary7e960712011-11-26 11:00:02 +0100456 struct sabi_data sretval;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500457 int user_brightness = 0;
458 int retval;
459
Corentin Chary7e960712011-11-26 11:00:02 +0100460 retval = sabi_command(samsung, commands->get_brightness,
461 NULL, &sretval);
462 if (retval)
463 return retval;
464
465 user_brightness = sretval.data[0];
466 if (user_brightness > config->min_brightness)
467 user_brightness -= config->min_brightness;
468 else
469 user_brightness = 0;
470
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500471 return user_brightness;
472}
473
Corentin Chary5dea7a22011-11-26 10:59:59 +0100474static void set_brightness(struct samsung_laptop *samsung, u8 user_brightness)
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500475{
Corentin Charya6df4892011-11-26 10:59:58 +0100476 const struct sabi_config *config = samsung->config;
477 const struct sabi_commands *commands = &samsung->config->commands;
478 u8 user_level = user_brightness + config->min_brightness;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500479
Corentin Charya6df4892011-11-26 10:59:58 +0100480 if (samsung->has_stepping_quirk && user_level != 0) {
Jason Stubbsac080522011-09-20 09:16:13 -0700481 /*
482 * short circuit if the specified level is what's already set
483 * to prevent the screen from flickering needlessly
484 */
Corentin Chary5dea7a22011-11-26 10:59:59 +0100485 if (user_brightness == read_brightness(samsung))
Jason Stubbsac080522011-09-20 09:16:13 -0700486 return;
487
Corentin Chary7e960712011-11-26 11:00:02 +0100488 sabi_set_commandb(samsung, commands->set_brightness, 0);
Jason Stubbsac080522011-09-20 09:16:13 -0700489 }
490
Corentin Chary7e960712011-11-26 11:00:02 +0100491 sabi_set_commandb(samsung, commands->set_brightness, user_level);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500492}
493
494static int get_brightness(struct backlight_device *bd)
495{
Corentin Chary5dea7a22011-11-26 10:59:59 +0100496 struct samsung_laptop *samsung = bl_get_data(bd);
497
498 return read_brightness(samsung);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500499}
500
Corentin Chary5dea7a22011-11-26 10:59:59 +0100501static void check_for_stepping_quirk(struct samsung_laptop *samsung)
Jason Stubbsac080522011-09-20 09:16:13 -0700502{
Corentin Chary5dea7a22011-11-26 10:59:59 +0100503 int initial_level;
504 int check_level;
505 int orig_level = read_brightness(samsung);
Jason Stubbsac080522011-09-20 09:16:13 -0700506
507 /*
508 * Some laptops exhibit the strange behaviour of stepping toward
509 * (rather than setting) the brightness except when changing to/from
510 * brightness level 0. This behaviour is checked for here and worked
511 * around in set_brightness.
512 */
513
John Serockba05b232011-10-13 06:42:01 -0400514 if (orig_level == 0)
Corentin Chary5dea7a22011-11-26 10:59:59 +0100515 set_brightness(samsung, 1);
John Serockba05b232011-10-13 06:42:01 -0400516
Corentin Chary5dea7a22011-11-26 10:59:59 +0100517 initial_level = read_brightness(samsung);
John Serockba05b232011-10-13 06:42:01 -0400518
Jason Stubbsac080522011-09-20 09:16:13 -0700519 if (initial_level <= 2)
520 check_level = initial_level + 2;
521 else
522 check_level = initial_level - 2;
523
Corentin Charya6df4892011-11-26 10:59:58 +0100524 samsung->has_stepping_quirk = false;
Corentin Chary5dea7a22011-11-26 10:59:59 +0100525 set_brightness(samsung, check_level);
Jason Stubbsac080522011-09-20 09:16:13 -0700526
Corentin Chary5dea7a22011-11-26 10:59:59 +0100527 if (read_brightness(samsung) != check_level) {
Corentin Charya6df4892011-11-26 10:59:58 +0100528 samsung->has_stepping_quirk = true;
Jason Stubbsac080522011-09-20 09:16:13 -0700529 pr_info("enabled workaround for brightness stepping quirk\n");
530 }
531
Corentin Chary5dea7a22011-11-26 10:59:59 +0100532 set_brightness(samsung, orig_level);
Jason Stubbsac080522011-09-20 09:16:13 -0700533}
534
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500535static int update_status(struct backlight_device *bd)
536{
Corentin Chary5dea7a22011-11-26 10:59:59 +0100537 struct samsung_laptop *samsung = bl_get_data(bd);
Corentin Charya6df4892011-11-26 10:59:58 +0100538 const struct sabi_commands *commands = &samsung->config->commands;
539
Corentin Chary5dea7a22011-11-26 10:59:59 +0100540 set_brightness(samsung, bd->props.brightness);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500541
542 if (bd->props.power == FB_BLANK_UNBLANK)
Corentin Chary7e960712011-11-26 11:00:02 +0100543 sabi_set_commandb(samsung, commands->set_backlight, 1);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500544 else
Corentin Chary7e960712011-11-26 11:00:02 +0100545 sabi_set_commandb(samsung, commands->set_backlight, 0);
Corentin Chary5dea7a22011-11-26 10:59:59 +0100546
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500547 return 0;
548}
549
550static const struct backlight_ops backlight_ops = {
551 .get_brightness = get_brightness,
552 .update_status = update_status,
553};
554
Corentin Chary84d482f2011-11-26 11:00:09 +0100555static int seclinux_rfkill_set(void *data, bool blocked)
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500556{
Corentin Chary20db88e2011-12-15 08:27:39 +0100557 struct samsung_rfkill *srfkill = data;
558 struct samsung_laptop *samsung = srfkill->samsung;
Corentin Charya6df4892011-11-26 10:59:58 +0100559 const struct sabi_commands *commands = &samsung->config->commands;
560
Corentin Chary84d482f2011-11-26 11:00:09 +0100561 return sabi_set_commandb(samsung, commands->set_wireless_button,
562 !blocked);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500563}
564
Corentin Chary84d482f2011-11-26 11:00:09 +0100565static struct rfkill_ops seclinux_rfkill_ops = {
566 .set_block = seclinux_rfkill_set,
567};
568
569static int swsmi_wireless_status(struct samsung_laptop *samsung,
570 struct sabi_data *data)
571{
572 const struct sabi_commands *commands = &samsung->config->commands;
573
574 return sabi_command(samsung, commands->get_wireless_status,
575 NULL, data);
576}
577
578static int swsmi_rfkill_set(void *priv, bool blocked)
579{
580 struct samsung_rfkill *srfkill = priv;
581 struct samsung_laptop *samsung = srfkill->samsung;
582 const struct sabi_commands *commands = &samsung->config->commands;
583 struct sabi_data data;
584 int ret, i;
585
586 ret = swsmi_wireless_status(samsung, &data);
587 if (ret)
588 return ret;
589
590 /* Don't set the state for non-present devices */
591 for (i = 0; i < 4; i++)
592 if (data.data[i] == 0x02)
593 data.data[1] = 0;
594
595 if (srfkill->type == RFKILL_TYPE_WLAN)
596 data.data[WL_STATUS_WLAN] = !blocked;
597 else if (srfkill->type == RFKILL_TYPE_BLUETOOTH)
598 data.data[WL_STATUS_BT] = !blocked;
599
600 return sabi_command(samsung, commands->set_wireless_status,
601 &data, &data);
602}
603
604static void swsmi_rfkill_query(struct rfkill *rfkill, void *priv)
605{
606 struct samsung_rfkill *srfkill = priv;
607 struct samsung_laptop *samsung = srfkill->samsung;
608 struct sabi_data data;
609 int ret;
610
611 ret = swsmi_wireless_status(samsung, &data);
612 if (ret)
613 return ;
614
615 if (srfkill->type == RFKILL_TYPE_WLAN)
616 ret = data.data[WL_STATUS_WLAN];
617 else if (srfkill->type == RFKILL_TYPE_BLUETOOTH)
618 ret = data.data[WL_STATUS_BT];
619 else
620 return ;
621
622 rfkill_set_sw_state(rfkill, !ret);
623}
624
625static struct rfkill_ops swsmi_rfkill_ops = {
626 .set_block = swsmi_rfkill_set,
627 .query = swsmi_rfkill_query,
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500628};
629
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500630static ssize_t get_performance_level(struct device *dev,
631 struct device_attribute *attr, char *buf)
632{
Corentin Chary5dea7a22011-11-26 10:59:59 +0100633 struct samsung_laptop *samsung = dev_get_drvdata(dev);
Corentin Charya6df4892011-11-26 10:59:58 +0100634 const struct sabi_config *config = samsung->config;
Corentin Chary5dea7a22011-11-26 10:59:59 +0100635 const struct sabi_commands *commands = &config->commands;
Corentin Chary7e960712011-11-26 11:00:02 +0100636 struct sabi_data sretval;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500637 int retval;
638 int i;
639
640 /* Read the state */
Corentin Chary7e960712011-11-26 11:00:02 +0100641 retval = sabi_command(samsung, commands->get_performance_level,
642 NULL, &sretval);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500643 if (retval)
644 return retval;
645
646 /* The logic is backwards, yeah, lots of fun... */
Corentin Charya6df4892011-11-26 10:59:58 +0100647 for (i = 0; config->performance_levels[i].name; ++i) {
Corentin Chary7e960712011-11-26 11:00:02 +0100648 if (sretval.data[0] == config->performance_levels[i].value)
Corentin Charya6df4892011-11-26 10:59:58 +0100649 return sprintf(buf, "%s\n", config->performance_levels[i].name);
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500650 }
651 return sprintf(buf, "%s\n", "unknown");
652}
653
654static ssize_t set_performance_level(struct device *dev,
655 struct device_attribute *attr, const char *buf,
656 size_t count)
657{
Corentin Chary5dea7a22011-11-26 10:59:59 +0100658 struct samsung_laptop *samsung = dev_get_drvdata(dev);
Corentin Charya6df4892011-11-26 10:59:58 +0100659 const struct sabi_config *config = samsung->config;
Corentin Chary5dea7a22011-11-26 10:59:59 +0100660 const struct sabi_commands *commands = &config->commands;
661 int i;
Corentin Charya6df4892011-11-26 10:59:58 +0100662
Corentin Chary5dea7a22011-11-26 10:59:59 +0100663 if (count < 1)
664 return count;
665
666 for (i = 0; config->performance_levels[i].name; ++i) {
667 const struct sabi_performance_level *level =
668 &config->performance_levels[i];
669 if (!strncasecmp(level->name, buf, strlen(level->name))) {
Corentin Chary7e960712011-11-26 11:00:02 +0100670 sabi_set_commandb(samsung,
671 commands->set_performance_level,
672 level->value);
Corentin Chary5dea7a22011-11-26 10:59:59 +0100673 break;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500674 }
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500675 }
Corentin Chary5dea7a22011-11-26 10:59:59 +0100676
677 if (!config->performance_levels[i].name)
678 return -EINVAL;
679
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500680 return count;
681}
Corentin Chary5dea7a22011-11-26 10:59:59 +0100682
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500683static DEVICE_ATTR(performance_level, S_IWUSR | S_IRUGO,
684 get_performance_level, set_performance_level);
685
Corentin Charycb5b5c92011-11-26 11:00:05 +0100686static int read_battery_life_extender(struct samsung_laptop *samsung)
687{
688 const struct sabi_commands *commands = &samsung->config->commands;
689 struct sabi_data data;
690 int retval;
691
692 if (commands->get_battery_life_extender == 0xFFFF)
693 return -ENODEV;
694
695 memset(&data, 0, sizeof(data));
696 data.data[0] = 0x80;
697 retval = sabi_command(samsung, commands->get_battery_life_extender,
698 &data, &data);
699
700 if (retval)
701 return retval;
702
703 if (data.data[0] != 0 && data.data[0] != 1)
704 return -ENODEV;
705
706 return data.data[0];
707}
708
709static int write_battery_life_extender(struct samsung_laptop *samsung,
710 int enabled)
711{
712 const struct sabi_commands *commands = &samsung->config->commands;
713 struct sabi_data data;
714
715 memset(&data, 0, sizeof(data));
716 data.data[0] = 0x80 | enabled;
717 return sabi_command(samsung, commands->set_battery_life_extender,
718 &data, NULL);
719}
720
721static ssize_t get_battery_life_extender(struct device *dev,
722 struct device_attribute *attr,
723 char *buf)
724{
725 struct samsung_laptop *samsung = dev_get_drvdata(dev);
726 int ret;
727
728 ret = read_battery_life_extender(samsung);
729 if (ret < 0)
730 return ret;
731
732 return sprintf(buf, "%d\n", ret);
733}
734
735static ssize_t set_battery_life_extender(struct device *dev,
736 struct device_attribute *attr,
737 const char *buf, size_t count)
738{
739 struct samsung_laptop *samsung = dev_get_drvdata(dev);
740 int ret, value;
741
742 if (!count || sscanf(buf, "%i", &value) != 1)
743 return -EINVAL;
744
745 ret = write_battery_life_extender(samsung, !!value);
746 if (ret < 0)
747 return ret;
748
749 return count;
750}
751
752static DEVICE_ATTR(battery_life_extender, S_IWUSR | S_IRUGO,
753 get_battery_life_extender, set_battery_life_extender);
754
Corentin Chary3a75d372011-11-26 11:00:06 +0100755static int read_usb_charge(struct samsung_laptop *samsung)
756{
757 const struct sabi_commands *commands = &samsung->config->commands;
758 struct sabi_data data;
759 int retval;
760
761 if (commands->get_usb_charge == 0xFFFF)
762 return -ENODEV;
763
764 memset(&data, 0, sizeof(data));
765 data.data[0] = 0x80;
766 retval = sabi_command(samsung, commands->get_usb_charge,
767 &data, &data);
768
769 if (retval)
770 return retval;
771
772 if (data.data[0] != 0 && data.data[0] != 1)
773 return -ENODEV;
774
775 return data.data[0];
776}
777
778static int write_usb_charge(struct samsung_laptop *samsung,
779 int enabled)
780{
781 const struct sabi_commands *commands = &samsung->config->commands;
782 struct sabi_data data;
783
784 memset(&data, 0, sizeof(data));
785 data.data[0] = 0x80 | enabled;
786 return sabi_command(samsung, commands->set_usb_charge,
787 &data, NULL);
788}
789
790static ssize_t get_usb_charge(struct device *dev,
791 struct device_attribute *attr,
792 char *buf)
793{
794 struct samsung_laptop *samsung = dev_get_drvdata(dev);
795 int ret;
796
797 ret = read_usb_charge(samsung);
798 if (ret < 0)
799 return ret;
800
801 return sprintf(buf, "%d\n", ret);
802}
803
804static ssize_t set_usb_charge(struct device *dev,
805 struct device_attribute *attr,
806 const char *buf, size_t count)
807{
808 struct samsung_laptop *samsung = dev_get_drvdata(dev);
809 int ret, value;
810
811 if (!count || sscanf(buf, "%i", &value) != 1)
812 return -EINVAL;
813
814 ret = write_usb_charge(samsung, !!value);
815 if (ret < 0)
816 return ret;
817
818 return count;
819}
820
821static DEVICE_ATTR(usb_charge, S_IWUSR | S_IRUGO,
822 get_usb_charge, set_usb_charge);
823
Corentin Charya66c1662011-11-26 11:00:01 +0100824static struct attribute *platform_attributes[] = {
825 &dev_attr_performance_level.attr,
Corentin Charycb5b5c92011-11-26 11:00:05 +0100826 &dev_attr_battery_life_extender.attr,
Corentin Chary3a75d372011-11-26 11:00:06 +0100827 &dev_attr_usb_charge.attr,
Corentin Charya66c1662011-11-26 11:00:01 +0100828 NULL
829};
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -0500830
Corentin Chary5dea7a22011-11-26 10:59:59 +0100831static int find_signature(void __iomem *memcheck, const char *testStr)
832{
833 int i = 0;
834 int loca;
835
836 for (loca = 0; loca < 0xffff; loca++) {
837 char temp = readb(memcheck + loca);
838
839 if (temp == testStr[i]) {
840 if (i == strlen(testStr)-1)
841 break;
842 ++i;
843 } else {
844 i = 0;
845 }
846 }
847 return loca;
848}
849
850static void samsung_rfkill_exit(struct samsung_laptop *samsung)
851{
Corentin Chary84d482f2011-11-26 11:00:09 +0100852 if (samsung->wlan.rfkill) {
853 rfkill_unregister(samsung->wlan.rfkill);
854 rfkill_destroy(samsung->wlan.rfkill);
855 samsung->wlan.rfkill = NULL;
Corentin Chary5dea7a22011-11-26 10:59:59 +0100856 }
Corentin Chary84d482f2011-11-26 11:00:09 +0100857 if (samsung->bluetooth.rfkill) {
858 rfkill_unregister(samsung->bluetooth.rfkill);
859 rfkill_destroy(samsung->bluetooth.rfkill);
860 samsung->bluetooth.rfkill = NULL;
861 }
862}
863
864static int samsung_new_rfkill(struct samsung_laptop *samsung,
865 struct samsung_rfkill *arfkill,
866 const char *name, enum rfkill_type type,
867 const struct rfkill_ops *ops,
868 int blocked)
869{
870 struct rfkill **rfkill = &arfkill->rfkill;
871 int ret;
872
873 arfkill->type = type;
874 arfkill->samsung = samsung;
875
876 *rfkill = rfkill_alloc(name, &samsung->platform_device->dev,
877 type, ops, arfkill);
878
879 if (!*rfkill)
880 return -EINVAL;
881
882 if (blocked != -1)
883 rfkill_init_sw_state(*rfkill, blocked);
884
885 ret = rfkill_register(*rfkill);
886 if (ret) {
887 rfkill_destroy(*rfkill);
888 *rfkill = NULL;
889 return ret;
890 }
891 return 0;
892}
893
894static int __init samsung_rfkill_init_seclinux(struct samsung_laptop *samsung)
895{
896 return samsung_new_rfkill(samsung, &samsung->wlan, "samsung-wlan",
897 RFKILL_TYPE_WLAN, &seclinux_rfkill_ops, -1);
898}
899
900static int __init samsung_rfkill_init_swsmi(struct samsung_laptop *samsung)
901{
902 struct sabi_data data;
903 int ret;
904
905 ret = swsmi_wireless_status(samsung, &data);
Corentin Chary20db88e2011-12-15 08:27:39 +0100906 if (ret) {
907 /* Some swsmi laptops use the old seclinux way to control
908 * wireless devices */
909 if (ret == -EINVAL)
910 ret = samsung_rfkill_init_seclinux(samsung);
Corentin Chary84d482f2011-11-26 11:00:09 +0100911 return ret;
Corentin Chary20db88e2011-12-15 08:27:39 +0100912 }
Corentin Chary84d482f2011-11-26 11:00:09 +0100913
914 /* 0x02 seems to mean that the device is no present/available */
915
916 if (data.data[WL_STATUS_WLAN] != 0x02)
917 ret = samsung_new_rfkill(samsung, &samsung->wlan,
918 "samsung-wlan",
919 RFKILL_TYPE_WLAN,
920 &swsmi_rfkill_ops,
921 !data.data[WL_STATUS_WLAN]);
922 if (ret)
923 goto exit;
924
925 if (data.data[WL_STATUS_BT] != 0x02)
926 ret = samsung_new_rfkill(samsung, &samsung->bluetooth,
927 "samsung-bluetooth",
928 RFKILL_TYPE_BLUETOOTH,
929 &swsmi_rfkill_ops,
930 !data.data[WL_STATUS_BT]);
931 if (ret)
932 goto exit;
933
934exit:
935 if (ret)
936 samsung_rfkill_exit(samsung);
937
938 return ret;
Corentin Chary5dea7a22011-11-26 10:59:59 +0100939}
940
941static int __init samsung_rfkill_init(struct samsung_laptop *samsung)
942{
Corentin Chary84d482f2011-11-26 11:00:09 +0100943 if (samsung->config->sabi_version == 2)
944 return samsung_rfkill_init_seclinux(samsung);
945 if (samsung->config->sabi_version == 3)
946 return samsung_rfkill_init_swsmi(samsung);
Corentin Chary5dea7a22011-11-26 10:59:59 +0100947 return 0;
948}
949
Corentin Charyf674ebf2011-11-26 11:00:08 +0100950static int kbd_backlight_enable(struct samsung_laptop *samsung)
951{
952 const struct sabi_commands *commands = &samsung->config->commands;
953 struct sabi_data data;
954 int retval;
955
956 if (commands->kbd_backlight == 0xFFFF)
957 return -ENODEV;
958
959 memset(&data, 0, sizeof(data));
960 data.d0 = 0xaabb;
961 retval = sabi_command(samsung, commands->kbd_backlight,
962 &data, &data);
963
964 if (retval)
965 return retval;
966
967 if (data.d0 != 0xccdd)
968 return -ENODEV;
969 return 0;
970}
971
972static int kbd_backlight_read(struct samsung_laptop *samsung)
973{
974 const struct sabi_commands *commands = &samsung->config->commands;
975 struct sabi_data data;
976 int retval;
977
978 memset(&data, 0, sizeof(data));
979 data.data[0] = 0x81;
980 retval = sabi_command(samsung, commands->kbd_backlight,
981 &data, &data);
982
983 if (retval)
984 return retval;
985
986 return data.data[0];
987}
988
989static int kbd_backlight_write(struct samsung_laptop *samsung, int brightness)
990{
991 const struct sabi_commands *commands = &samsung->config->commands;
992 struct sabi_data data;
993
994 memset(&data, 0, sizeof(data));
995 data.d0 = 0x82 | ((brightness & 0xFF) << 8);
996 return sabi_command(samsung, commands->kbd_backlight,
997 &data, NULL);
998}
999
1000static void kbd_led_update(struct work_struct *work)
1001{
1002 struct samsung_laptop *samsung;
1003
1004 samsung = container_of(work, struct samsung_laptop, kbd_led_work);
1005 kbd_backlight_write(samsung, samsung->kbd_led_wk);
1006}
1007
1008static void kbd_led_set(struct led_classdev *led_cdev,
1009 enum led_brightness value)
1010{
1011 struct samsung_laptop *samsung;
1012
1013 samsung = container_of(led_cdev, struct samsung_laptop, kbd_led);
1014
1015 if (value > samsung->kbd_led.max_brightness)
1016 value = samsung->kbd_led.max_brightness;
1017 else if (value < 0)
1018 value = 0;
1019
1020 samsung->kbd_led_wk = value;
1021 queue_work(samsung->led_workqueue, &samsung->kbd_led_work);
1022}
1023
1024static enum led_brightness kbd_led_get(struct led_classdev *led_cdev)
1025{
1026 struct samsung_laptop *samsung;
1027
1028 samsung = container_of(led_cdev, struct samsung_laptop, kbd_led);
1029 return kbd_backlight_read(samsung);
1030}
1031
1032static void samsung_leds_exit(struct samsung_laptop *samsung)
1033{
1034 if (!IS_ERR_OR_NULL(samsung->kbd_led.dev))
1035 led_classdev_unregister(&samsung->kbd_led);
1036 if (samsung->led_workqueue)
1037 destroy_workqueue(samsung->led_workqueue);
1038}
1039
1040static int __init samsung_leds_init(struct samsung_laptop *samsung)
1041{
1042 int ret = 0;
1043
1044 samsung->led_workqueue = create_singlethread_workqueue("led_workqueue");
1045 if (!samsung->led_workqueue)
1046 return -ENOMEM;
1047
1048 if (kbd_backlight_enable(samsung) >= 0) {
1049 INIT_WORK(&samsung->kbd_led_work, kbd_led_update);
1050
1051 samsung->kbd_led.name = "samsung::kbd_backlight";
1052 samsung->kbd_led.brightness_set = kbd_led_set;
1053 samsung->kbd_led.brightness_get = kbd_led_get;
1054 samsung->kbd_led.max_brightness = 8;
1055
1056 ret = led_classdev_register(&samsung->platform_device->dev,
1057 &samsung->kbd_led);
1058 }
1059
1060 if (ret)
1061 samsung_leds_exit(samsung);
1062
1063 return ret;
1064}
1065
Corentin Chary5dea7a22011-11-26 10:59:59 +01001066static void samsung_backlight_exit(struct samsung_laptop *samsung)
1067{
1068 if (samsung->backlight_device) {
1069 backlight_device_unregister(samsung->backlight_device);
1070 samsung->backlight_device = NULL;
1071 }
1072}
1073
1074static int __init samsung_backlight_init(struct samsung_laptop *samsung)
1075{
1076 struct backlight_device *bd;
1077 struct backlight_properties props;
1078
Corentin Charyf34cd9c2011-11-26 11:00:00 +01001079 if (!samsung->handle_backlight)
1080 return 0;
1081
Corentin Chary5dea7a22011-11-26 10:59:59 +01001082 memset(&props, 0, sizeof(struct backlight_properties));
1083 props.type = BACKLIGHT_PLATFORM;
1084 props.max_brightness = samsung->config->max_brightness -
1085 samsung->config->min_brightness;
1086
1087 bd = backlight_device_register("samsung",
1088 &samsung->platform_device->dev,
1089 samsung, &backlight_ops,
1090 &props);
1091 if (IS_ERR(bd))
1092 return PTR_ERR(bd);
1093
1094 samsung->backlight_device = bd;
1095 samsung->backlight_device->props.brightness = read_brightness(samsung);
1096 samsung->backlight_device->props.power = FB_BLANK_UNBLANK;
1097 backlight_update_status(samsung->backlight_device);
1098
1099 return 0;
1100}
1101
Dan Carpenterbde9e502012-03-20 09:53:07 +01001102static umode_t samsung_sysfs_is_visible(struct kobject *kobj,
Corentin Charya66c1662011-11-26 11:00:01 +01001103 struct attribute *attr, int idx)
1104{
1105 struct device *dev = container_of(kobj, struct device, kobj);
1106 struct platform_device *pdev = to_platform_device(dev);
1107 struct samsung_laptop *samsung = platform_get_drvdata(pdev);
1108 bool ok = true;
1109
1110 if (attr == &dev_attr_performance_level.attr)
1111 ok = !!samsung->config->performance_levels[0].name;
Corentin Charycb5b5c92011-11-26 11:00:05 +01001112 if (attr == &dev_attr_battery_life_extender.attr)
1113 ok = !!(read_battery_life_extender(samsung) >= 0);
Corentin Chary3a75d372011-11-26 11:00:06 +01001114 if (attr == &dev_attr_usb_charge.attr)
1115 ok = !!(read_usb_charge(samsung) >= 0);
Corentin Charya66c1662011-11-26 11:00:01 +01001116
1117 return ok ? attr->mode : 0;
1118}
1119
1120static struct attribute_group platform_attribute_group = {
1121 .is_visible = samsung_sysfs_is_visible,
1122 .attrs = platform_attributes
1123};
1124
Corentin Chary5dea7a22011-11-26 10:59:59 +01001125static void samsung_sysfs_exit(struct samsung_laptop *samsung)
1126{
Corentin Charya66c1662011-11-26 11:00:01 +01001127 struct platform_device *device = samsung->platform_device;
1128
1129 sysfs_remove_group(&device->dev.kobj, &platform_attribute_group);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001130}
1131
1132static int __init samsung_sysfs_init(struct samsung_laptop *samsung)
1133{
Corentin Charya66c1662011-11-26 11:00:01 +01001134 struct platform_device *device = samsung->platform_device;
1135
1136 return sysfs_create_group(&device->dev.kobj, &platform_attribute_group);
1137
Corentin Chary5dea7a22011-11-26 10:59:59 +01001138}
1139
Corentin Chary5b80fc42011-11-26 11:00:03 +01001140static int show_call(struct seq_file *m, void *data)
1141{
1142 struct samsung_laptop *samsung = m->private;
1143 struct sabi_data *sdata = &samsung->debug.data;
1144 int ret;
1145
1146 seq_printf(m, "SABI 0x%04x {0x%08x, 0x%08x, 0x%04x, 0x%02x}\n",
1147 samsung->debug.command,
1148 sdata->d0, sdata->d1, sdata->d2, sdata->d3);
1149
1150 ret = sabi_command(samsung, samsung->debug.command, sdata, sdata);
1151
1152 if (ret) {
1153 seq_printf(m, "SABI command 0x%04x failed\n",
1154 samsung->debug.command);
1155 return ret;
1156 }
1157
1158 seq_printf(m, "SABI {0x%08x, 0x%08x, 0x%04x, 0x%02x}\n",
1159 sdata->d0, sdata->d1, sdata->d2, sdata->d3);
1160 return 0;
1161}
1162
1163static int samsung_debugfs_open(struct inode *inode, struct file *file)
1164{
1165 return single_open(file, show_call, inode->i_private);
1166}
1167
1168static const struct file_operations samsung_laptop_call_io_ops = {
1169 .owner = THIS_MODULE,
1170 .open = samsung_debugfs_open,
1171 .read = seq_read,
1172 .llseek = seq_lseek,
1173 .release = single_release,
1174};
1175
1176static void samsung_debugfs_exit(struct samsung_laptop *samsung)
1177{
1178 debugfs_remove_recursive(samsung->debug.root);
1179}
1180
1181static int samsung_debugfs_init(struct samsung_laptop *samsung)
1182{
1183 struct dentry *dent;
1184
1185 samsung->debug.root = debugfs_create_dir("samsung-laptop", NULL);
1186 if (!samsung->debug.root) {
1187 pr_err("failed to create debugfs directory");
1188 goto error_debugfs;
1189 }
1190
1191 samsung->debug.f0000_wrapper.data = samsung->f0000_segment;
1192 samsung->debug.f0000_wrapper.size = 0xffff;
1193
1194 samsung->debug.data_wrapper.data = &samsung->debug.data;
1195 samsung->debug.data_wrapper.size = sizeof(samsung->debug.data);
1196
Corentin Chary6f6ae062011-11-26 11:00:11 +01001197 samsung->debug.sdiag_wrapper.data = samsung->sdiag;
1198 samsung->debug.sdiag_wrapper.size = strlen(samsung->sdiag);
1199
Corentin Chary5b80fc42011-11-26 11:00:03 +01001200 dent = debugfs_create_u16("command", S_IRUGO | S_IWUSR,
1201 samsung->debug.root, &samsung->debug.command);
1202 if (!dent)
1203 goto error_debugfs;
1204
1205 dent = debugfs_create_u32("d0", S_IRUGO | S_IWUSR, samsung->debug.root,
1206 &samsung->debug.data.d0);
1207 if (!dent)
1208 goto error_debugfs;
1209
1210 dent = debugfs_create_u32("d1", S_IRUGO | S_IWUSR, samsung->debug.root,
1211 &samsung->debug.data.d1);
1212 if (!dent)
1213 goto error_debugfs;
1214
1215 dent = debugfs_create_u16("d2", S_IRUGO | S_IWUSR, samsung->debug.root,
1216 &samsung->debug.data.d2);
1217 if (!dent)
1218 goto error_debugfs;
1219
1220 dent = debugfs_create_u8("d3", S_IRUGO | S_IWUSR, samsung->debug.root,
1221 &samsung->debug.data.d3);
1222 if (!dent)
1223 goto error_debugfs;
1224
1225 dent = debugfs_create_blob("data", S_IRUGO | S_IWUSR,
1226 samsung->debug.root,
1227 &samsung->debug.data_wrapper);
1228 if (!dent)
1229 goto error_debugfs;
1230
1231 dent = debugfs_create_blob("f0000_segment", S_IRUSR | S_IWUSR,
1232 samsung->debug.root,
1233 &samsung->debug.f0000_wrapper);
1234 if (!dent)
1235 goto error_debugfs;
1236
1237 dent = debugfs_create_file("call", S_IFREG | S_IRUGO,
1238 samsung->debug.root, samsung,
1239 &samsung_laptop_call_io_ops);
1240 if (!dent)
1241 goto error_debugfs;
1242
Corentin Chary6f6ae062011-11-26 11:00:11 +01001243 dent = debugfs_create_blob("sdiag", S_IRUGO | S_IWUSR,
1244 samsung->debug.root,
1245 &samsung->debug.sdiag_wrapper);
1246 if (!dent)
1247 goto error_debugfs;
1248
Corentin Chary5b80fc42011-11-26 11:00:03 +01001249 return 0;
1250
1251error_debugfs:
1252 samsung_debugfs_exit(samsung);
1253 return -ENOMEM;
1254}
1255
Corentin Chary5dea7a22011-11-26 10:59:59 +01001256static void samsung_sabi_exit(struct samsung_laptop *samsung)
1257{
1258 const struct sabi_config *config = samsung->config;
1259
1260 /* Turn off "Linux" mode in the BIOS */
1261 if (config && config->commands.set_linux != 0xff)
Corentin Chary7e960712011-11-26 11:00:02 +01001262 sabi_set_commandb(samsung, config->commands.set_linux, 0x80);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001263
1264 if (samsung->sabi_iface) {
1265 iounmap(samsung->sabi_iface);
1266 samsung->sabi_iface = NULL;
1267 }
1268 if (samsung->f0000_segment) {
1269 iounmap(samsung->f0000_segment);
1270 samsung->f0000_segment = NULL;
1271 }
1272
1273 samsung->config = NULL;
1274}
1275
Corentin Chary49dd7732011-11-26 11:00:04 +01001276static __init void samsung_sabi_infos(struct samsung_laptop *samsung, int loca,
1277 unsigned int ifaceP)
Corentin Chary5dea7a22011-11-26 10:59:59 +01001278{
1279 const struct sabi_config *config = samsung->config;
1280
1281 printk(KERN_DEBUG "This computer supports SABI==%x\n",
1282 loca + 0xf0000 - 6);
Corentin Chary49dd7732011-11-26 11:00:04 +01001283
Corentin Chary5dea7a22011-11-26 10:59:59 +01001284 printk(KERN_DEBUG "SABI header:\n");
1285 printk(KERN_DEBUG " SMI Port Number = 0x%04x\n",
1286 readw(samsung->sabi + config->header_offsets.port));
1287 printk(KERN_DEBUG " SMI Interface Function = 0x%02x\n",
1288 readb(samsung->sabi + config->header_offsets.iface_func));
1289 printk(KERN_DEBUG " SMI enable memory buffer = 0x%02x\n",
1290 readb(samsung->sabi + config->header_offsets.en_mem));
1291 printk(KERN_DEBUG " SMI restore memory buffer = 0x%02x\n",
1292 readb(samsung->sabi + config->header_offsets.re_mem));
1293 printk(KERN_DEBUG " SABI data offset = 0x%04x\n",
1294 readw(samsung->sabi + config->header_offsets.data_offset));
1295 printk(KERN_DEBUG " SABI data segment = 0x%04x\n",
1296 readw(samsung->sabi + config->header_offsets.data_segment));
Corentin Chary5dea7a22011-11-26 10:59:59 +01001297
Corentin Chary49dd7732011-11-26 11:00:04 +01001298 printk(KERN_DEBUG " SABI pointer = 0x%08x\n", ifaceP);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001299}
1300
Corentin Chary6f6ae062011-11-26 11:00:11 +01001301static void __init samsung_sabi_diag(struct samsung_laptop *samsung)
1302{
1303 int loca = find_signature(samsung->f0000_segment, "SDiaG@");
1304 int i;
1305
1306 if (loca == 0xffff)
1307 return ;
1308
1309 /* Example:
1310 * Ident: @SDiaG@686XX-N90X3A/966-SEC-07HL-S90X3A
1311 *
1312 * Product name: 90X3A
1313 * BIOS Version: 07HL
1314 */
1315 loca += 1;
1316 for (i = 0; loca < 0xffff && i < sizeof(samsung->sdiag) - 1; loca++) {
1317 char temp = readb(samsung->f0000_segment + loca);
1318
1319 if (isalnum(temp) || temp == '/' || temp == '-')
1320 samsung->sdiag[i++] = temp;
1321 else
1322 break ;
1323 }
1324
1325 if (debug && samsung->sdiag[0])
1326 pr_info("sdiag: %s", samsung->sdiag);
1327}
1328
Corentin Chary5dea7a22011-11-26 10:59:59 +01001329static int __init samsung_sabi_init(struct samsung_laptop *samsung)
1330{
1331 const struct sabi_config *config = NULL;
1332 const struct sabi_commands *commands;
1333 unsigned int ifaceP;
1334 int ret = 0;
1335 int i;
1336 int loca;
1337
1338 samsung->f0000_segment = ioremap_nocache(0xf0000, 0xffff);
1339 if (!samsung->f0000_segment) {
Corentin Chary3be324a2011-11-26 11:00:10 +01001340 if (debug || force)
1341 pr_err("Can't map the segment at 0xf0000\n");
Corentin Chary5dea7a22011-11-26 10:59:59 +01001342 ret = -EINVAL;
1343 goto exit;
1344 }
1345
Corentin Chary6f6ae062011-11-26 11:00:11 +01001346 samsung_sabi_diag(samsung);
1347
Corentin Chary5dea7a22011-11-26 10:59:59 +01001348 /* Try to find one of the signatures in memory to find the header */
1349 for (i = 0; sabi_configs[i].test_string != 0; ++i) {
1350 samsung->config = &sabi_configs[i];
1351 loca = find_signature(samsung->f0000_segment,
1352 samsung->config->test_string);
1353 if (loca != 0xffff)
1354 break;
1355 }
1356
1357 if (loca == 0xffff) {
Corentin Chary3be324a2011-11-26 11:00:10 +01001358 if (debug || force)
1359 pr_err("This computer does not support SABI\n");
Corentin Chary5dea7a22011-11-26 10:59:59 +01001360 ret = -ENODEV;
1361 goto exit;
1362 }
1363
1364 config = samsung->config;
1365 commands = &config->commands;
1366
1367 /* point to the SMI port Number */
1368 loca += 1;
1369 samsung->sabi = (samsung->f0000_segment + loca);
1370
Corentin Chary5dea7a22011-11-26 10:59:59 +01001371 /* Get a pointer to the SABI Interface */
1372 ifaceP = (readw(samsung->sabi + config->header_offsets.data_segment) & 0x0ffff) << 4;
1373 ifaceP += readw(samsung->sabi + config->header_offsets.data_offset) & 0x0ffff;
Corentin Chary49dd7732011-11-26 11:00:04 +01001374
1375 if (debug)
1376 samsung_sabi_infos(samsung, loca, ifaceP);
1377
Corentin Chary5dea7a22011-11-26 10:59:59 +01001378 samsung->sabi_iface = ioremap_nocache(ifaceP, 16);
1379 if (!samsung->sabi_iface) {
1380 pr_err("Can't remap %x\n", ifaceP);
1381 ret = -EINVAL;
1382 goto exit;
1383 }
1384
Corentin Chary5dea7a22011-11-26 10:59:59 +01001385 /* Turn on "Linux" mode in the BIOS */
1386 if (commands->set_linux != 0xff) {
Corentin Chary7e960712011-11-26 11:00:02 +01001387 int retval = sabi_set_commandb(samsung,
1388 commands->set_linux, 0x81);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001389 if (retval) {
1390 pr_warn("Linux mode was not set!\n");
1391 ret = -ENODEV;
1392 goto exit;
1393 }
1394 }
1395
1396 /* Check for stepping quirk */
Corentin Charyf34cd9c2011-11-26 11:00:00 +01001397 if (samsung->handle_backlight)
1398 check_for_stepping_quirk(samsung);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001399
Corentin Chary2e777182011-11-26 11:00:12 +01001400 pr_info("detected SABI interface: %s\n",
1401 samsung->config->test_string);
1402
Corentin Chary5dea7a22011-11-26 10:59:59 +01001403exit:
1404 if (ret)
1405 samsung_sabi_exit(samsung);
1406
1407 return ret;
1408}
1409
1410static void samsung_platform_exit(struct samsung_laptop *samsung)
1411{
1412 if (samsung->platform_device) {
1413 platform_device_unregister(samsung->platform_device);
1414 samsung->platform_device = NULL;
1415 }
1416}
1417
1418static int __init samsung_platform_init(struct samsung_laptop *samsung)
1419{
1420 struct platform_device *pdev;
1421
1422 pdev = platform_device_register_simple("samsung", -1, NULL, 0);
1423 if (IS_ERR(pdev))
1424 return PTR_ERR(pdev);
1425
1426 samsung->platform_device = pdev;
1427 platform_set_drvdata(samsung->platform_device, samsung);
1428 return 0;
1429}
1430
Corentin Charya979e2e2012-03-22 14:08:19 +01001431static struct samsung_quirks *quirks;
1432
1433static int __init samsung_dmi_matched(const struct dmi_system_id *d)
1434{
1435 quirks = d->driver_data;
1436 return 0;
1437}
1438
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001439static struct dmi_system_id __initdata samsung_dmi_table[] = {
1440 {
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001441 .matches = {
1442 DMI_MATCH(DMI_SYS_VENDOR,
1443 "SAMSUNG ELECTRONICS CO., LTD."),
Corentin Chary3be324a2011-11-26 11:00:10 +01001444 DMI_MATCH(DMI_CHASSIS_TYPE, "8"), /* Portable */
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001445 },
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001446 },
1447 {
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001448 .matches = {
1449 DMI_MATCH(DMI_SYS_VENDOR,
1450 "SAMSUNG ELECTRONICS CO., LTD."),
Corentin Chary3be324a2011-11-26 11:00:10 +01001451 DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /* Laptop */
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001452 },
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001453 },
1454 {
J Witteveen4e2441c2011-07-03 13:15:44 +02001455 .matches = {
1456 DMI_MATCH(DMI_SYS_VENDOR,
1457 "SAMSUNG ELECTRONICS CO., LTD."),
Corentin Chary3be324a2011-11-26 11:00:10 +01001458 DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /* Notebook */
J Witteveen4e2441c2011-07-03 13:15:44 +02001459 },
J Witteveen4e2441c2011-07-03 13:15:44 +02001460 },
1461 {
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001462 .matches = {
1463 DMI_MATCH(DMI_SYS_VENDOR,
1464 "SAMSUNG ELECTRONICS CO., LTD."),
Corentin Chary3be324a2011-11-26 11:00:10 +01001465 DMI_MATCH(DMI_CHASSIS_TYPE, "14"), /* Sub-Notebook */
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001466 },
Tommaso Massimi7500eeb2011-09-20 09:16:09 -07001467 },
Corentin Charya979e2e2012-03-22 14:08:19 +01001468 /* Specific DMI ids for laptop with quirks */
1469 {
1470 .callback = samsung_dmi_matched,
1471 .ident = "N150P",
1472 .matches = {
1473 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
1474 DMI_MATCH(DMI_PRODUCT_NAME, "N150P"),
1475 DMI_MATCH(DMI_BOARD_NAME, "N150P"),
1476 },
1477 .driver_data = &samsung_broken_acpi_video,
1478 },
1479 {
1480 .callback = samsung_dmi_matched,
1481 .ident = "N145P/N250P/N260P",
1482 .matches = {
1483 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
1484 DMI_MATCH(DMI_PRODUCT_NAME, "N145P/N250P/N260P"),
1485 DMI_MATCH(DMI_BOARD_NAME, "N145P/N250P/N260P"),
1486 },
1487 .driver_data = &samsung_broken_acpi_video,
1488 },
1489 {
1490 .callback = samsung_dmi_matched,
1491 .ident = "N150/N210/N220",
1492 .matches = {
1493 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
1494 DMI_MATCH(DMI_PRODUCT_NAME, "N150/N210/N220"),
1495 DMI_MATCH(DMI_BOARD_NAME, "N150/N210/N220"),
1496 },
1497 .driver_data = &samsung_broken_acpi_video,
1498 },
1499 {
1500 .callback = samsung_dmi_matched,
1501 .ident = "NF110/NF210/NF310",
1502 .matches = {
1503 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
1504 DMI_MATCH(DMI_PRODUCT_NAME, "NF110/NF210/NF310"),
1505 DMI_MATCH(DMI_BOARD_NAME, "NF110/NF210/NF310"),
1506 },
1507 .driver_data = &samsung_broken_acpi_video,
1508 },
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001509 { },
1510};
1511MODULE_DEVICE_TABLE(dmi, samsung_dmi_table);
1512
Corentin Chary5dea7a22011-11-26 10:59:59 +01001513static struct platform_device *samsung_platform_device;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001514
1515static int __init samsung_init(void)
1516{
Corentin Chary5dea7a22011-11-26 10:59:59 +01001517 struct samsung_laptop *samsung;
1518 int ret;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001519
Corentin Charya979e2e2012-03-22 14:08:19 +01001520 quirks = &samsung_unknown;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001521 if (!force && !dmi_check_system(samsung_dmi_table))
1522 return -ENODEV;
1523
Corentin Charya6df4892011-11-26 10:59:58 +01001524 samsung = kzalloc(sizeof(*samsung), GFP_KERNEL);
1525 if (!samsung)
1526 return -ENOMEM;
1527
1528 mutex_init(&samsung->sabi_mutex);
Corentin Charyf34cd9c2011-11-26 11:00:00 +01001529 samsung->handle_backlight = true;
Corentin Charya979e2e2012-03-22 14:08:19 +01001530 samsung->quirks = quirks;
Corentin Charyf34cd9c2011-11-26 11:00:00 +01001531
Corentin Charya979e2e2012-03-22 14:08:19 +01001532
1533#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE)
Corentin Charyf34cd9c2011-11-26 11:00:00 +01001534 /* Don't handle backlight here if the acpi video already handle it */
Corentin Charya979e2e2012-03-22 14:08:19 +01001535 if (acpi_video_backlight_support()) {
1536 if (samsung->quirks->broken_acpi_video) {
1537 pr_info("Disabling ACPI video driver\n");
1538 acpi_video_unregister();
1539 } else {
1540 samsung->handle_backlight = false;
1541 }
1542 }
Corentin Charyf34cd9c2011-11-26 11:00:00 +01001543#endif
Corentin Charya979e2e2012-03-22 14:08:19 +01001544
Corentin Chary5dea7a22011-11-26 10:59:59 +01001545 ret = samsung_platform_init(samsung);
1546 if (ret)
1547 goto error_platform;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001548
Corentin Chary5dea7a22011-11-26 10:59:59 +01001549 ret = samsung_sabi_init(samsung);
1550 if (ret)
1551 goto error_sabi;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001552
Corentin Chary3be324a2011-11-26 11:00:10 +01001553#ifdef CONFIG_ACPI
1554 /* Only log that if we are really on a sabi platform */
Corentin Charya979e2e2012-03-22 14:08:19 +01001555 if (acpi_video_backlight_support() &&
1556 !samsung->quirks->broken_acpi_video)
Corentin Chary3be324a2011-11-26 11:00:10 +01001557 pr_info("Backlight controlled by ACPI video driver\n");
1558#endif
1559
Corentin Chary5dea7a22011-11-26 10:59:59 +01001560 ret = samsung_sysfs_init(samsung);
1561 if (ret)
1562 goto error_sysfs;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001563
Corentin Chary5dea7a22011-11-26 10:59:59 +01001564 ret = samsung_backlight_init(samsung);
1565 if (ret)
1566 goto error_backlight;
Corentin Charya6df4892011-11-26 10:59:58 +01001567
Corentin Chary5dea7a22011-11-26 10:59:59 +01001568 ret = samsung_rfkill_init(samsung);
1569 if (ret)
1570 goto error_rfkill;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001571
Corentin Charyf674ebf2011-11-26 11:00:08 +01001572 ret = samsung_leds_init(samsung);
1573 if (ret)
1574 goto error_leds;
1575
Corentin Chary5b80fc42011-11-26 11:00:03 +01001576 ret = samsung_debugfs_init(samsung);
1577 if (ret)
1578 goto error_debugfs;
1579
Corentin Chary5dea7a22011-11-26 10:59:59 +01001580 samsung_platform_device = samsung->platform_device;
1581 return ret;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001582
Corentin Chary5b80fc42011-11-26 11:00:03 +01001583error_debugfs:
Corentin Charyf674ebf2011-11-26 11:00:08 +01001584 samsung_leds_exit(samsung);
1585error_leds:
Corentin Chary5b80fc42011-11-26 11:00:03 +01001586 samsung_rfkill_exit(samsung);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001587error_rfkill:
1588 samsung_backlight_exit(samsung);
1589error_backlight:
1590 samsung_sysfs_exit(samsung);
1591error_sysfs:
1592 samsung_sabi_exit(samsung);
1593error_sabi:
1594 samsung_platform_exit(samsung);
1595error_platform:
Corentin Charya6df4892011-11-26 10:59:58 +01001596 kfree(samsung);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001597 return ret;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001598}
1599
1600static void __exit samsung_exit(void)
1601{
Corentin Chary5dea7a22011-11-26 10:59:59 +01001602 struct samsung_laptop *samsung;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001603
Corentin Chary5dea7a22011-11-26 10:59:59 +01001604 samsung = platform_get_drvdata(samsung_platform_device);
Corentin Charya6df4892011-11-26 10:59:58 +01001605
Corentin Chary5b80fc42011-11-26 11:00:03 +01001606 samsung_debugfs_exit(samsung);
Corentin Charyf674ebf2011-11-26 11:00:08 +01001607 samsung_leds_exit(samsung);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001608 samsung_rfkill_exit(samsung);
1609 samsung_backlight_exit(samsung);
1610 samsung_sysfs_exit(samsung);
1611 samsung_sabi_exit(samsung);
1612 samsung_platform_exit(samsung);
1613
Corentin Charya6df4892011-11-26 10:59:58 +01001614 kfree(samsung);
Corentin Chary5dea7a22011-11-26 10:59:59 +01001615 samsung_platform_device = NULL;
Greg Kroah-Hartman2d70b732011-03-11 12:41:19 -05001616}
1617
1618module_init(samsung_init);
1619module_exit(samsung_exit);
1620
1621MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@suse.de>");
1622MODULE_DESCRIPTION("Samsung Backlight driver");
1623MODULE_LICENSE("GPL");