Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1 | /* |
| 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 Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 20 | #include <linux/leds.h> |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 21 | #include <linux/fb.h> |
| 22 | #include <linux/dmi.h> |
| 23 | #include <linux/platform_device.h> |
| 24 | #include <linux/rfkill.h> |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 25 | #include <linux/acpi.h> |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 26 | #include <linux/seq_file.h> |
| 27 | #include <linux/debugfs.h> |
David Rientjes | 82c333a | 2012-03-20 09:53:06 +0100 | [diff] [blame] | 28 | #include <linux/ctype.h> |
Matt Fleming | e009424 | 2013-01-03 09:02:37 +0000 | [diff] [blame] | 29 | #include <linux/efi.h> |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 30 | #include <linux/suspend.h> |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 31 | #include <acpi/video.h> |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 32 | |
| 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 Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 52 | #define WL_STATUS_WLAN 0x0 |
| 53 | #define WL_STATUS_BT 0x2 |
| 54 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 55 | /* Structure get/set data using sabi */ |
| 56 | struct 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-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | struct 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 | |
| 77 | struct sabi_commands { |
| 78 | /* |
| 79 | * Brightness is 0 - 8, as described above. |
| 80 | * Value 0 is for the BIOS to use |
| 81 | */ |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 82 | u16 get_brightness; |
| 83 | u16 set_brightness; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 84 | |
| 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 Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 94 | u16 get_wireless_button; |
| 95 | u16 set_wireless_button; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 96 | |
| 97 | /* 0 is off, 1 is on */ |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 98 | u16 get_backlight; |
| 99 | u16 set_backlight; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 100 | |
| 101 | /* |
| 102 | * 0x80 or 0x00 - no action |
| 103 | * 0x81 - recovery key pressed |
| 104 | */ |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 105 | u16 get_recovery_mode; |
| 106 | u16 set_recovery_mode; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 107 | |
| 108 | /* |
| 109 | * on seclinux: 0 is low, 1 is high, |
| 110 | * on swsmi: 0 is normal, 1 is silent, 2 is turbo |
| 111 | */ |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 112 | u16 get_performance_level; |
| 113 | u16 set_performance_level; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 114 | |
Corentin Chary | cb5b5c9 | 2011-11-26 11:00:05 +0100 | [diff] [blame] | 115 | /* 0x80 is off, 0x81 is on */ |
| 116 | u16 get_battery_life_extender; |
| 117 | u16 set_battery_life_extender; |
| 118 | |
Corentin Chary | 3a75d37 | 2011-11-26 11:00:06 +0100 | [diff] [blame] | 119 | /* 0x80 is off, 0x81 is on */ |
| 120 | u16 get_usb_charge; |
| 121 | u16 set_usb_charge; |
| 122 | |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 123 | /* 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 Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 127 | /* 0x81 to read, (0x82 | level << 8) to set, 0xaabb to enable */ |
| 128 | u16 kbd_backlight; |
| 129 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 130 | /* |
| 131 | * Tell the BIOS that Linux is running on this machine. |
| 132 | * 81 is on, 80 is off |
| 133 | */ |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 134 | u16 set_linux; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 135 | }; |
| 136 | |
| 137 | struct sabi_performance_level { |
| 138 | const char *name; |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 139 | u16 value; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | struct sabi_config { |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 143 | int sabi_version; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 144 | 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 | |
| 153 | static const struct sabi_config sabi_configs[] = { |
| 154 | { |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 155 | /* 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-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 159 | .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 Chary | cb5b5c9 | 2011-11-26 11:00:05 +0100 | [diff] [blame] | 188 | .get_battery_life_extender = 0xFFFF, |
| 189 | .set_battery_life_extender = 0xFFFF, |
| 190 | |
Corentin Chary | 3a75d37 | 2011-11-26 11:00:06 +0100 | [diff] [blame] | 191 | .get_usb_charge = 0xFFFF, |
| 192 | .set_usb_charge = 0xFFFF, |
| 193 | |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 194 | .get_wireless_status = 0xFFFF, |
| 195 | .set_wireless_status = 0xFFFF, |
| 196 | |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 197 | .kbd_backlight = 0xFFFF, |
| 198 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 199 | .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 Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 217 | .sabi_version = 3, |
| 218 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 219 | .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 Chary | cb5b5c9 | 2011-11-26 11:00:05 +0100 | [diff] [blame] | 248 | .get_battery_life_extender = 0x65, |
| 249 | .set_battery_life_extender = 0x66, |
| 250 | |
Corentin Chary | 3a75d37 | 2011-11-26 11:00:06 +0100 | [diff] [blame] | 251 | .get_usb_charge = 0x67, |
| 252 | .set_usb_charge = 0x68, |
| 253 | |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 254 | .get_wireless_status = 0x69, |
| 255 | .set_wireless_status = 0x6a, |
| 256 | |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 257 | .kbd_backlight = 0x78, |
| 258 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 259 | .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 Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 283 | /* |
| 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 | |
| 303 | struct 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 Chary | 6f6ae06 | 2011-11-26 11:00:11 +0100 | [diff] [blame] | 310 | struct debugfs_blob_wrapper sdiag_wrapper; |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 311 | }; |
| 312 | |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 313 | struct samsung_laptop; |
| 314 | |
| 315 | struct samsung_rfkill { |
| 316 | struct samsung_laptop *samsung; |
| 317 | struct rfkill *rfkill; |
| 318 | enum rfkill_type type; |
| 319 | }; |
| 320 | |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 321 | struct samsung_laptop { |
| 322 | const struct sabi_config *config; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 323 | |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 324 | void __iomem *sabi; |
| 325 | void __iomem *sabi_iface; |
| 326 | void __iomem *f0000_segment; |
| 327 | |
| 328 | struct mutex sabi_mutex; |
| 329 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 330 | struct platform_device *platform_device; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 331 | struct backlight_device *backlight_device; |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 332 | |
| 333 | struct samsung_rfkill wlan; |
| 334 | struct samsung_rfkill bluetooth; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 335 | |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 336 | 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 Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 341 | struct samsung_laptop_debug debug; |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 342 | struct samsung_quirks *quirks; |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 343 | |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 344 | struct notifier_block pm_nb; |
| 345 | |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 346 | bool handle_backlight; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 347 | bool has_stepping_quirk; |
Corentin Chary | 6f6ae06 | 2011-11-26 11:00:11 +0100 | [diff] [blame] | 348 | |
| 349 | char sdiag[64]; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 350 | }; |
| 351 | |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 352 | struct samsung_quirks { |
| 353 | bool broken_acpi_video; |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 354 | bool four_kbd_backlight_levels; |
| 355 | bool enable_kbd_backlight; |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 356 | }; |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 357 | |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 358 | static struct samsung_quirks samsung_unknown = {}; |
| 359 | |
| 360 | static struct samsung_quirks samsung_broken_acpi_video = { |
| 361 | .broken_acpi_video = true, |
| 362 | }; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 363 | |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 364 | static struct samsung_quirks samsung_np740u3e = { |
| 365 | .four_kbd_backlight_levels = true, |
| 366 | .enable_kbd_backlight = true, |
| 367 | }; |
| 368 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 369 | static bool force; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 370 | module_param(force, bool, 0); |
| 371 | MODULE_PARM_DESC(force, |
| 372 | "Disable the DMI check and forces the driver to be loaded"); |
| 373 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 374 | static bool debug; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 375 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 376 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |
| 377 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 378 | static int sabi_command(struct samsung_laptop *samsung, u16 command, |
| 379 | struct sabi_data *in, |
| 380 | struct sabi_data *out) |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 381 | { |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 382 | const struct sabi_config *config = samsung->config; |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 383 | int ret = 0; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 384 | u16 port = readw(samsung->sabi + config->header_offsets.port); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 385 | u8 complete, iface_data; |
| 386 | |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 387 | mutex_lock(&samsung->sabi_mutex); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 388 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 389 | if (debug) { |
| 390 | if (in) |
Corentin Chary | 2e77718 | 2011-11-26 11:00:12 +0100 | [diff] [blame] | 391 | pr_info("SABI command:0x%04x " |
| 392 | "data:{0x%08x, 0x%08x, 0x%04x, 0x%02x}", |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 393 | command, in->d0, in->d1, in->d2, in->d3); |
| 394 | else |
Corentin Chary | 2e77718 | 2011-11-26 11:00:12 +0100 | [diff] [blame] | 395 | pr_info("SABI command:0x%04x", command); |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 396 | } |
| 397 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 398 | /* enable memory to be able to write to it */ |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 399 | outb(readb(samsung->sabi + config->header_offsets.en_mem), port); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 400 | |
| 401 | /* write out the command */ |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 402 | writew(config->main_function, samsung->sabi_iface + SABI_IFACE_MAIN); |
| 403 | writew(command, samsung->sabi_iface + SABI_IFACE_SUB); |
| 404 | writeb(0, samsung->sabi_iface + SABI_IFACE_COMPLETE); |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 405 | if (in) { |
| 406 | writel(in->d0, samsung->sabi_iface + SABI_IFACE_DATA); |
| 407 | writel(in->d1, samsung->sabi_iface + SABI_IFACE_DATA + 4); |
| 408 | writew(in->d2, samsung->sabi_iface + SABI_IFACE_DATA + 8); |
| 409 | writeb(in->d3, samsung->sabi_iface + SABI_IFACE_DATA + 10); |
| 410 | } |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 411 | outb(readb(samsung->sabi + config->header_offsets.iface_func), port); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 412 | |
| 413 | /* write protect memory to make it safe */ |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 414 | outb(readb(samsung->sabi + config->header_offsets.re_mem), port); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 415 | |
| 416 | /* see if the command actually succeeded */ |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 417 | complete = readb(samsung->sabi_iface + SABI_IFACE_COMPLETE); |
| 418 | iface_data = readb(samsung->sabi_iface + SABI_IFACE_DATA); |
Corentin Chary | 2e77718 | 2011-11-26 11:00:12 +0100 | [diff] [blame] | 419 | |
| 420 | /* iface_data = 0xFF happens when a command is not known |
| 421 | * so we only add a warning in debug mode since we will |
| 422 | * probably issue some unknown command at startup to find |
| 423 | * out which features are supported */ |
| 424 | if (complete != 0xaa || (iface_data == 0xff && debug)) |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 425 | pr_warn("SABI command 0x%04x failed with" |
| 426 | " completion flag 0x%02x and interface data 0x%02x", |
| 427 | command, complete, iface_data); |
Corentin Chary | 2e77718 | 2011-11-26 11:00:12 +0100 | [diff] [blame] | 428 | |
| 429 | if (complete != 0xaa || iface_data == 0xff) { |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 430 | ret = -EINVAL; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 431 | goto exit; |
| 432 | } |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 433 | |
| 434 | if (out) { |
| 435 | out->d0 = readl(samsung->sabi_iface + SABI_IFACE_DATA); |
| 436 | out->d1 = readl(samsung->sabi_iface + SABI_IFACE_DATA + 4); |
| 437 | out->d2 = readw(samsung->sabi_iface + SABI_IFACE_DATA + 2); |
| 438 | out->d3 = readb(samsung->sabi_iface + SABI_IFACE_DATA + 1); |
| 439 | } |
| 440 | |
| 441 | if (debug && out) { |
Corentin Chary | 2e77718 | 2011-11-26 11:00:12 +0100 | [diff] [blame] | 442 | pr_info("SABI return data:{0x%08x, 0x%08x, 0x%04x, 0x%02x}", |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 443 | out->d0, out->d1, out->d2, out->d3); |
| 444 | } |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 445 | |
| 446 | exit: |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 447 | mutex_unlock(&samsung->sabi_mutex); |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 448 | return ret; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 449 | } |
| 450 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 451 | /* simple wrappers usable with most commands */ |
| 452 | static int sabi_set_commandb(struct samsung_laptop *samsung, |
| 453 | u16 command, u8 data) |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 454 | { |
David Rientjes | 8522944 | 2012-03-20 09:53:05 +0100 | [diff] [blame] | 455 | struct sabi_data in = { { { .d0 = 0, .d1 = 0, .d2 = 0, .d3 = 0 } } }; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 456 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 457 | in.data[0] = data; |
| 458 | return sabi_command(samsung, command, &in, NULL); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 459 | } |
| 460 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 461 | static int read_brightness(struct samsung_laptop *samsung) |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 462 | { |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 463 | const struct sabi_config *config = samsung->config; |
| 464 | const struct sabi_commands *commands = &samsung->config->commands; |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 465 | struct sabi_data sretval; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 466 | int user_brightness = 0; |
| 467 | int retval; |
| 468 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 469 | retval = sabi_command(samsung, commands->get_brightness, |
| 470 | NULL, &sretval); |
| 471 | if (retval) |
| 472 | return retval; |
| 473 | |
| 474 | user_brightness = sretval.data[0]; |
| 475 | if (user_brightness > config->min_brightness) |
| 476 | user_brightness -= config->min_brightness; |
| 477 | else |
| 478 | user_brightness = 0; |
| 479 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 480 | return user_brightness; |
| 481 | } |
| 482 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 483 | static void set_brightness(struct samsung_laptop *samsung, u8 user_brightness) |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 484 | { |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 485 | const struct sabi_config *config = samsung->config; |
| 486 | const struct sabi_commands *commands = &samsung->config->commands; |
| 487 | u8 user_level = user_brightness + config->min_brightness; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 488 | |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 489 | if (samsung->has_stepping_quirk && user_level != 0) { |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 490 | /* |
| 491 | * short circuit if the specified level is what's already set |
| 492 | * to prevent the screen from flickering needlessly |
| 493 | */ |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 494 | if (user_brightness == read_brightness(samsung)) |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 495 | return; |
| 496 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 497 | sabi_set_commandb(samsung, commands->set_brightness, 0); |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 498 | } |
| 499 | |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 500 | sabi_set_commandb(samsung, commands->set_brightness, user_level); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | static int get_brightness(struct backlight_device *bd) |
| 504 | { |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 505 | struct samsung_laptop *samsung = bl_get_data(bd); |
| 506 | |
| 507 | return read_brightness(samsung); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 508 | } |
| 509 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 510 | static void check_for_stepping_quirk(struct samsung_laptop *samsung) |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 511 | { |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 512 | int initial_level; |
| 513 | int check_level; |
| 514 | int orig_level = read_brightness(samsung); |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 515 | |
| 516 | /* |
| 517 | * Some laptops exhibit the strange behaviour of stepping toward |
| 518 | * (rather than setting) the brightness except when changing to/from |
| 519 | * brightness level 0. This behaviour is checked for here and worked |
| 520 | * around in set_brightness. |
| 521 | */ |
| 522 | |
John Serock | ba05b23 | 2011-10-13 06:42:01 -0400 | [diff] [blame] | 523 | if (orig_level == 0) |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 524 | set_brightness(samsung, 1); |
John Serock | ba05b23 | 2011-10-13 06:42:01 -0400 | [diff] [blame] | 525 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 526 | initial_level = read_brightness(samsung); |
John Serock | ba05b23 | 2011-10-13 06:42:01 -0400 | [diff] [blame] | 527 | |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 528 | if (initial_level <= 2) |
| 529 | check_level = initial_level + 2; |
| 530 | else |
| 531 | check_level = initial_level - 2; |
| 532 | |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 533 | samsung->has_stepping_quirk = false; |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 534 | set_brightness(samsung, check_level); |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 535 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 536 | if (read_brightness(samsung) != check_level) { |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 537 | samsung->has_stepping_quirk = true; |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 538 | pr_info("enabled workaround for brightness stepping quirk\n"); |
| 539 | } |
| 540 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 541 | set_brightness(samsung, orig_level); |
Jason Stubbs | ac08052 | 2011-09-20 09:16:13 -0700 | [diff] [blame] | 542 | } |
| 543 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 544 | static int update_status(struct backlight_device *bd) |
| 545 | { |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 546 | struct samsung_laptop *samsung = bl_get_data(bd); |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 547 | const struct sabi_commands *commands = &samsung->config->commands; |
| 548 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 549 | set_brightness(samsung, bd->props.brightness); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 550 | |
| 551 | if (bd->props.power == FB_BLANK_UNBLANK) |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 552 | sabi_set_commandb(samsung, commands->set_backlight, 1); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 553 | else |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 554 | sabi_set_commandb(samsung, commands->set_backlight, 0); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 555 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 556 | return 0; |
| 557 | } |
| 558 | |
| 559 | static const struct backlight_ops backlight_ops = { |
| 560 | .get_brightness = get_brightness, |
| 561 | .update_status = update_status, |
| 562 | }; |
| 563 | |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 564 | static int seclinux_rfkill_set(void *data, bool blocked) |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 565 | { |
Corentin Chary | 20db88e | 2011-12-15 08:27:39 +0100 | [diff] [blame] | 566 | struct samsung_rfkill *srfkill = data; |
| 567 | struct samsung_laptop *samsung = srfkill->samsung; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 568 | const struct sabi_commands *commands = &samsung->config->commands; |
| 569 | |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 570 | return sabi_set_commandb(samsung, commands->set_wireless_button, |
| 571 | !blocked); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 572 | } |
| 573 | |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 574 | static struct rfkill_ops seclinux_rfkill_ops = { |
| 575 | .set_block = seclinux_rfkill_set, |
| 576 | }; |
| 577 | |
| 578 | static int swsmi_wireless_status(struct samsung_laptop *samsung, |
| 579 | struct sabi_data *data) |
| 580 | { |
| 581 | const struct sabi_commands *commands = &samsung->config->commands; |
| 582 | |
| 583 | return sabi_command(samsung, commands->get_wireless_status, |
| 584 | NULL, data); |
| 585 | } |
| 586 | |
| 587 | static int swsmi_rfkill_set(void *priv, bool blocked) |
| 588 | { |
| 589 | struct samsung_rfkill *srfkill = priv; |
| 590 | struct samsung_laptop *samsung = srfkill->samsung; |
| 591 | const struct sabi_commands *commands = &samsung->config->commands; |
| 592 | struct sabi_data data; |
| 593 | int ret, i; |
| 594 | |
| 595 | ret = swsmi_wireless_status(samsung, &data); |
| 596 | if (ret) |
| 597 | return ret; |
| 598 | |
| 599 | /* Don't set the state for non-present devices */ |
| 600 | for (i = 0; i < 4; i++) |
| 601 | if (data.data[i] == 0x02) |
| 602 | data.data[1] = 0; |
| 603 | |
| 604 | if (srfkill->type == RFKILL_TYPE_WLAN) |
| 605 | data.data[WL_STATUS_WLAN] = !blocked; |
| 606 | else if (srfkill->type == RFKILL_TYPE_BLUETOOTH) |
| 607 | data.data[WL_STATUS_BT] = !blocked; |
| 608 | |
| 609 | return sabi_command(samsung, commands->set_wireless_status, |
| 610 | &data, &data); |
| 611 | } |
| 612 | |
| 613 | static void swsmi_rfkill_query(struct rfkill *rfkill, void *priv) |
| 614 | { |
| 615 | struct samsung_rfkill *srfkill = priv; |
| 616 | struct samsung_laptop *samsung = srfkill->samsung; |
| 617 | struct sabi_data data; |
| 618 | int ret; |
| 619 | |
| 620 | ret = swsmi_wireless_status(samsung, &data); |
| 621 | if (ret) |
| 622 | return ; |
| 623 | |
| 624 | if (srfkill->type == RFKILL_TYPE_WLAN) |
| 625 | ret = data.data[WL_STATUS_WLAN]; |
| 626 | else if (srfkill->type == RFKILL_TYPE_BLUETOOTH) |
| 627 | ret = data.data[WL_STATUS_BT]; |
| 628 | else |
| 629 | return ; |
| 630 | |
| 631 | rfkill_set_sw_state(rfkill, !ret); |
| 632 | } |
| 633 | |
| 634 | static struct rfkill_ops swsmi_rfkill_ops = { |
| 635 | .set_block = swsmi_rfkill_set, |
| 636 | .query = swsmi_rfkill_query, |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 637 | }; |
| 638 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 639 | static ssize_t get_performance_level(struct device *dev, |
| 640 | struct device_attribute *attr, char *buf) |
| 641 | { |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 642 | struct samsung_laptop *samsung = dev_get_drvdata(dev); |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 643 | const struct sabi_config *config = samsung->config; |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 644 | const struct sabi_commands *commands = &config->commands; |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 645 | struct sabi_data sretval; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 646 | int retval; |
| 647 | int i; |
| 648 | |
| 649 | /* Read the state */ |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 650 | retval = sabi_command(samsung, commands->get_performance_level, |
| 651 | NULL, &sretval); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 652 | if (retval) |
| 653 | return retval; |
| 654 | |
| 655 | /* The logic is backwards, yeah, lots of fun... */ |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 656 | for (i = 0; config->performance_levels[i].name; ++i) { |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 657 | if (sretval.data[0] == config->performance_levels[i].value) |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 658 | return sprintf(buf, "%s\n", config->performance_levels[i].name); |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 659 | } |
| 660 | return sprintf(buf, "%s\n", "unknown"); |
| 661 | } |
| 662 | |
| 663 | static ssize_t set_performance_level(struct device *dev, |
| 664 | struct device_attribute *attr, const char *buf, |
| 665 | size_t count) |
| 666 | { |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 667 | struct samsung_laptop *samsung = dev_get_drvdata(dev); |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 668 | const struct sabi_config *config = samsung->config; |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 669 | const struct sabi_commands *commands = &config->commands; |
| 670 | int i; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 671 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 672 | if (count < 1) |
| 673 | return count; |
| 674 | |
| 675 | for (i = 0; config->performance_levels[i].name; ++i) { |
| 676 | const struct sabi_performance_level *level = |
| 677 | &config->performance_levels[i]; |
| 678 | if (!strncasecmp(level->name, buf, strlen(level->name))) { |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 679 | sabi_set_commandb(samsung, |
| 680 | commands->set_performance_level, |
| 681 | level->value); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 682 | break; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 683 | } |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 684 | } |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 685 | |
| 686 | if (!config->performance_levels[i].name) |
| 687 | return -EINVAL; |
| 688 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 689 | return count; |
| 690 | } |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 691 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 692 | static DEVICE_ATTR(performance_level, S_IWUSR | S_IRUGO, |
| 693 | get_performance_level, set_performance_level); |
| 694 | |
Corentin Chary | cb5b5c9 | 2011-11-26 11:00:05 +0100 | [diff] [blame] | 695 | static int read_battery_life_extender(struct samsung_laptop *samsung) |
| 696 | { |
| 697 | const struct sabi_commands *commands = &samsung->config->commands; |
| 698 | struct sabi_data data; |
| 699 | int retval; |
| 700 | |
| 701 | if (commands->get_battery_life_extender == 0xFFFF) |
| 702 | return -ENODEV; |
| 703 | |
| 704 | memset(&data, 0, sizeof(data)); |
| 705 | data.data[0] = 0x80; |
| 706 | retval = sabi_command(samsung, commands->get_battery_life_extender, |
| 707 | &data, &data); |
| 708 | |
| 709 | if (retval) |
| 710 | return retval; |
| 711 | |
| 712 | if (data.data[0] != 0 && data.data[0] != 1) |
| 713 | return -ENODEV; |
| 714 | |
| 715 | return data.data[0]; |
| 716 | } |
| 717 | |
| 718 | static int write_battery_life_extender(struct samsung_laptop *samsung, |
| 719 | int enabled) |
| 720 | { |
| 721 | const struct sabi_commands *commands = &samsung->config->commands; |
| 722 | struct sabi_data data; |
| 723 | |
| 724 | memset(&data, 0, sizeof(data)); |
| 725 | data.data[0] = 0x80 | enabled; |
| 726 | return sabi_command(samsung, commands->set_battery_life_extender, |
| 727 | &data, NULL); |
| 728 | } |
| 729 | |
| 730 | static ssize_t get_battery_life_extender(struct device *dev, |
| 731 | struct device_attribute *attr, |
| 732 | char *buf) |
| 733 | { |
| 734 | struct samsung_laptop *samsung = dev_get_drvdata(dev); |
| 735 | int ret; |
| 736 | |
| 737 | ret = read_battery_life_extender(samsung); |
| 738 | if (ret < 0) |
| 739 | return ret; |
| 740 | |
| 741 | return sprintf(buf, "%d\n", ret); |
| 742 | } |
| 743 | |
| 744 | static ssize_t set_battery_life_extender(struct device *dev, |
| 745 | struct device_attribute *attr, |
| 746 | const char *buf, size_t count) |
| 747 | { |
| 748 | struct samsung_laptop *samsung = dev_get_drvdata(dev); |
| 749 | int ret, value; |
| 750 | |
| 751 | if (!count || sscanf(buf, "%i", &value) != 1) |
| 752 | return -EINVAL; |
| 753 | |
| 754 | ret = write_battery_life_extender(samsung, !!value); |
| 755 | if (ret < 0) |
| 756 | return ret; |
| 757 | |
| 758 | return count; |
| 759 | } |
| 760 | |
| 761 | static DEVICE_ATTR(battery_life_extender, S_IWUSR | S_IRUGO, |
| 762 | get_battery_life_extender, set_battery_life_extender); |
| 763 | |
Corentin Chary | 3a75d37 | 2011-11-26 11:00:06 +0100 | [diff] [blame] | 764 | static int read_usb_charge(struct samsung_laptop *samsung) |
| 765 | { |
| 766 | const struct sabi_commands *commands = &samsung->config->commands; |
| 767 | struct sabi_data data; |
| 768 | int retval; |
| 769 | |
| 770 | if (commands->get_usb_charge == 0xFFFF) |
| 771 | return -ENODEV; |
| 772 | |
| 773 | memset(&data, 0, sizeof(data)); |
| 774 | data.data[0] = 0x80; |
| 775 | retval = sabi_command(samsung, commands->get_usb_charge, |
| 776 | &data, &data); |
| 777 | |
| 778 | if (retval) |
| 779 | return retval; |
| 780 | |
| 781 | if (data.data[0] != 0 && data.data[0] != 1) |
| 782 | return -ENODEV; |
| 783 | |
| 784 | return data.data[0]; |
| 785 | } |
| 786 | |
| 787 | static int write_usb_charge(struct samsung_laptop *samsung, |
| 788 | int enabled) |
| 789 | { |
| 790 | const struct sabi_commands *commands = &samsung->config->commands; |
| 791 | struct sabi_data data; |
| 792 | |
| 793 | memset(&data, 0, sizeof(data)); |
| 794 | data.data[0] = 0x80 | enabled; |
| 795 | return sabi_command(samsung, commands->set_usb_charge, |
| 796 | &data, NULL); |
| 797 | } |
| 798 | |
| 799 | static ssize_t get_usb_charge(struct device *dev, |
| 800 | struct device_attribute *attr, |
| 801 | char *buf) |
| 802 | { |
| 803 | struct samsung_laptop *samsung = dev_get_drvdata(dev); |
| 804 | int ret; |
| 805 | |
| 806 | ret = read_usb_charge(samsung); |
| 807 | if (ret < 0) |
| 808 | return ret; |
| 809 | |
| 810 | return sprintf(buf, "%d\n", ret); |
| 811 | } |
| 812 | |
| 813 | static ssize_t set_usb_charge(struct device *dev, |
| 814 | struct device_attribute *attr, |
| 815 | const char *buf, size_t count) |
| 816 | { |
| 817 | struct samsung_laptop *samsung = dev_get_drvdata(dev); |
| 818 | int ret, value; |
| 819 | |
| 820 | if (!count || sscanf(buf, "%i", &value) != 1) |
| 821 | return -EINVAL; |
| 822 | |
| 823 | ret = write_usb_charge(samsung, !!value); |
| 824 | if (ret < 0) |
| 825 | return ret; |
| 826 | |
| 827 | return count; |
| 828 | } |
| 829 | |
| 830 | static DEVICE_ATTR(usb_charge, S_IWUSR | S_IRUGO, |
| 831 | get_usb_charge, set_usb_charge); |
| 832 | |
Corentin Chary | a66c166 | 2011-11-26 11:00:01 +0100 | [diff] [blame] | 833 | static struct attribute *platform_attributes[] = { |
| 834 | &dev_attr_performance_level.attr, |
Corentin Chary | cb5b5c9 | 2011-11-26 11:00:05 +0100 | [diff] [blame] | 835 | &dev_attr_battery_life_extender.attr, |
Corentin Chary | 3a75d37 | 2011-11-26 11:00:06 +0100 | [diff] [blame] | 836 | &dev_attr_usb_charge.attr, |
Corentin Chary | a66c166 | 2011-11-26 11:00:01 +0100 | [diff] [blame] | 837 | NULL |
| 838 | }; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 839 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 840 | static int find_signature(void __iomem *memcheck, const char *testStr) |
| 841 | { |
| 842 | int i = 0; |
| 843 | int loca; |
| 844 | |
| 845 | for (loca = 0; loca < 0xffff; loca++) { |
| 846 | char temp = readb(memcheck + loca); |
| 847 | |
| 848 | if (temp == testStr[i]) { |
| 849 | if (i == strlen(testStr)-1) |
| 850 | break; |
| 851 | ++i; |
| 852 | } else { |
| 853 | i = 0; |
| 854 | } |
| 855 | } |
| 856 | return loca; |
| 857 | } |
| 858 | |
| 859 | static void samsung_rfkill_exit(struct samsung_laptop *samsung) |
| 860 | { |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 861 | if (samsung->wlan.rfkill) { |
| 862 | rfkill_unregister(samsung->wlan.rfkill); |
| 863 | rfkill_destroy(samsung->wlan.rfkill); |
| 864 | samsung->wlan.rfkill = NULL; |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 865 | } |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 866 | if (samsung->bluetooth.rfkill) { |
| 867 | rfkill_unregister(samsung->bluetooth.rfkill); |
| 868 | rfkill_destroy(samsung->bluetooth.rfkill); |
| 869 | samsung->bluetooth.rfkill = NULL; |
| 870 | } |
| 871 | } |
| 872 | |
| 873 | static int samsung_new_rfkill(struct samsung_laptop *samsung, |
| 874 | struct samsung_rfkill *arfkill, |
| 875 | const char *name, enum rfkill_type type, |
| 876 | const struct rfkill_ops *ops, |
| 877 | int blocked) |
| 878 | { |
| 879 | struct rfkill **rfkill = &arfkill->rfkill; |
| 880 | int ret; |
| 881 | |
| 882 | arfkill->type = type; |
| 883 | arfkill->samsung = samsung; |
| 884 | |
| 885 | *rfkill = rfkill_alloc(name, &samsung->platform_device->dev, |
| 886 | type, ops, arfkill); |
| 887 | |
| 888 | if (!*rfkill) |
| 889 | return -EINVAL; |
| 890 | |
| 891 | if (blocked != -1) |
| 892 | rfkill_init_sw_state(*rfkill, blocked); |
| 893 | |
| 894 | ret = rfkill_register(*rfkill); |
| 895 | if (ret) { |
| 896 | rfkill_destroy(*rfkill); |
| 897 | *rfkill = NULL; |
| 898 | return ret; |
| 899 | } |
| 900 | return 0; |
| 901 | } |
| 902 | |
| 903 | static int __init samsung_rfkill_init_seclinux(struct samsung_laptop *samsung) |
| 904 | { |
| 905 | return samsung_new_rfkill(samsung, &samsung->wlan, "samsung-wlan", |
| 906 | RFKILL_TYPE_WLAN, &seclinux_rfkill_ops, -1); |
| 907 | } |
| 908 | |
| 909 | static int __init samsung_rfkill_init_swsmi(struct samsung_laptop *samsung) |
| 910 | { |
| 911 | struct sabi_data data; |
| 912 | int ret; |
| 913 | |
| 914 | ret = swsmi_wireless_status(samsung, &data); |
Corentin Chary | 20db88e | 2011-12-15 08:27:39 +0100 | [diff] [blame] | 915 | if (ret) { |
| 916 | /* Some swsmi laptops use the old seclinux way to control |
| 917 | * wireless devices */ |
| 918 | if (ret == -EINVAL) |
| 919 | ret = samsung_rfkill_init_seclinux(samsung); |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 920 | return ret; |
Corentin Chary | 20db88e | 2011-12-15 08:27:39 +0100 | [diff] [blame] | 921 | } |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 922 | |
| 923 | /* 0x02 seems to mean that the device is no present/available */ |
| 924 | |
| 925 | if (data.data[WL_STATUS_WLAN] != 0x02) |
| 926 | ret = samsung_new_rfkill(samsung, &samsung->wlan, |
| 927 | "samsung-wlan", |
| 928 | RFKILL_TYPE_WLAN, |
| 929 | &swsmi_rfkill_ops, |
| 930 | !data.data[WL_STATUS_WLAN]); |
| 931 | if (ret) |
| 932 | goto exit; |
| 933 | |
| 934 | if (data.data[WL_STATUS_BT] != 0x02) |
| 935 | ret = samsung_new_rfkill(samsung, &samsung->bluetooth, |
| 936 | "samsung-bluetooth", |
| 937 | RFKILL_TYPE_BLUETOOTH, |
| 938 | &swsmi_rfkill_ops, |
| 939 | !data.data[WL_STATUS_BT]); |
| 940 | if (ret) |
| 941 | goto exit; |
| 942 | |
| 943 | exit: |
| 944 | if (ret) |
| 945 | samsung_rfkill_exit(samsung); |
| 946 | |
| 947 | return ret; |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 948 | } |
| 949 | |
| 950 | static int __init samsung_rfkill_init(struct samsung_laptop *samsung) |
| 951 | { |
Corentin Chary | 84d482f | 2011-11-26 11:00:09 +0100 | [diff] [blame] | 952 | if (samsung->config->sabi_version == 2) |
| 953 | return samsung_rfkill_init_seclinux(samsung); |
| 954 | if (samsung->config->sabi_version == 3) |
| 955 | return samsung_rfkill_init_swsmi(samsung); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 956 | return 0; |
| 957 | } |
| 958 | |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 959 | static int kbd_backlight_enable(struct samsung_laptop *samsung) |
| 960 | { |
| 961 | const struct sabi_commands *commands = &samsung->config->commands; |
| 962 | struct sabi_data data; |
| 963 | int retval; |
| 964 | |
| 965 | if (commands->kbd_backlight == 0xFFFF) |
| 966 | return -ENODEV; |
| 967 | |
| 968 | memset(&data, 0, sizeof(data)); |
| 969 | data.d0 = 0xaabb; |
| 970 | retval = sabi_command(samsung, commands->kbd_backlight, |
| 971 | &data, &data); |
| 972 | |
| 973 | if (retval) |
| 974 | return retval; |
| 975 | |
| 976 | if (data.d0 != 0xccdd) |
| 977 | return -ENODEV; |
| 978 | return 0; |
| 979 | } |
| 980 | |
| 981 | static int kbd_backlight_read(struct samsung_laptop *samsung) |
| 982 | { |
| 983 | const struct sabi_commands *commands = &samsung->config->commands; |
| 984 | struct sabi_data data; |
| 985 | int retval; |
| 986 | |
| 987 | memset(&data, 0, sizeof(data)); |
| 988 | data.data[0] = 0x81; |
| 989 | retval = sabi_command(samsung, commands->kbd_backlight, |
| 990 | &data, &data); |
| 991 | |
| 992 | if (retval) |
| 993 | return retval; |
| 994 | |
| 995 | return data.data[0]; |
| 996 | } |
| 997 | |
| 998 | static int kbd_backlight_write(struct samsung_laptop *samsung, int brightness) |
| 999 | { |
| 1000 | const struct sabi_commands *commands = &samsung->config->commands; |
| 1001 | struct sabi_data data; |
| 1002 | |
| 1003 | memset(&data, 0, sizeof(data)); |
| 1004 | data.d0 = 0x82 | ((brightness & 0xFF) << 8); |
| 1005 | return sabi_command(samsung, commands->kbd_backlight, |
| 1006 | &data, NULL); |
| 1007 | } |
| 1008 | |
| 1009 | static void kbd_led_update(struct work_struct *work) |
| 1010 | { |
| 1011 | struct samsung_laptop *samsung; |
| 1012 | |
| 1013 | samsung = container_of(work, struct samsung_laptop, kbd_led_work); |
| 1014 | kbd_backlight_write(samsung, samsung->kbd_led_wk); |
| 1015 | } |
| 1016 | |
| 1017 | static void kbd_led_set(struct led_classdev *led_cdev, |
| 1018 | enum led_brightness value) |
| 1019 | { |
| 1020 | struct samsung_laptop *samsung; |
| 1021 | |
| 1022 | samsung = container_of(led_cdev, struct samsung_laptop, kbd_led); |
| 1023 | |
| 1024 | if (value > samsung->kbd_led.max_brightness) |
| 1025 | value = samsung->kbd_led.max_brightness; |
| 1026 | else if (value < 0) |
| 1027 | value = 0; |
| 1028 | |
| 1029 | samsung->kbd_led_wk = value; |
| 1030 | queue_work(samsung->led_workqueue, &samsung->kbd_led_work); |
| 1031 | } |
| 1032 | |
| 1033 | static enum led_brightness kbd_led_get(struct led_classdev *led_cdev) |
| 1034 | { |
| 1035 | struct samsung_laptop *samsung; |
| 1036 | |
| 1037 | samsung = container_of(led_cdev, struct samsung_laptop, kbd_led); |
| 1038 | return kbd_backlight_read(samsung); |
| 1039 | } |
| 1040 | |
| 1041 | static void samsung_leds_exit(struct samsung_laptop *samsung) |
| 1042 | { |
| 1043 | if (!IS_ERR_OR_NULL(samsung->kbd_led.dev)) |
| 1044 | led_classdev_unregister(&samsung->kbd_led); |
| 1045 | if (samsung->led_workqueue) |
| 1046 | destroy_workqueue(samsung->led_workqueue); |
| 1047 | } |
| 1048 | |
| 1049 | static int __init samsung_leds_init(struct samsung_laptop *samsung) |
| 1050 | { |
| 1051 | int ret = 0; |
| 1052 | |
| 1053 | samsung->led_workqueue = create_singlethread_workqueue("led_workqueue"); |
| 1054 | if (!samsung->led_workqueue) |
| 1055 | return -ENOMEM; |
| 1056 | |
| 1057 | if (kbd_backlight_enable(samsung) >= 0) { |
| 1058 | INIT_WORK(&samsung->kbd_led_work, kbd_led_update); |
| 1059 | |
| 1060 | samsung->kbd_led.name = "samsung::kbd_backlight"; |
| 1061 | samsung->kbd_led.brightness_set = kbd_led_set; |
| 1062 | samsung->kbd_led.brightness_get = kbd_led_get; |
| 1063 | samsung->kbd_led.max_brightness = 8; |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 1064 | if (samsung->quirks->four_kbd_backlight_levels) |
| 1065 | samsung->kbd_led.max_brightness = 4; |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 1066 | |
| 1067 | ret = led_classdev_register(&samsung->platform_device->dev, |
| 1068 | &samsung->kbd_led); |
| 1069 | } |
| 1070 | |
| 1071 | if (ret) |
| 1072 | samsung_leds_exit(samsung); |
| 1073 | |
| 1074 | return ret; |
| 1075 | } |
| 1076 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1077 | static void samsung_backlight_exit(struct samsung_laptop *samsung) |
| 1078 | { |
| 1079 | if (samsung->backlight_device) { |
| 1080 | backlight_device_unregister(samsung->backlight_device); |
| 1081 | samsung->backlight_device = NULL; |
| 1082 | } |
| 1083 | } |
| 1084 | |
| 1085 | static int __init samsung_backlight_init(struct samsung_laptop *samsung) |
| 1086 | { |
| 1087 | struct backlight_device *bd; |
| 1088 | struct backlight_properties props; |
| 1089 | |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 1090 | if (!samsung->handle_backlight) |
| 1091 | return 0; |
| 1092 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1093 | memset(&props, 0, sizeof(struct backlight_properties)); |
| 1094 | props.type = BACKLIGHT_PLATFORM; |
| 1095 | props.max_brightness = samsung->config->max_brightness - |
| 1096 | samsung->config->min_brightness; |
| 1097 | |
| 1098 | bd = backlight_device_register("samsung", |
| 1099 | &samsung->platform_device->dev, |
| 1100 | samsung, &backlight_ops, |
| 1101 | &props); |
| 1102 | if (IS_ERR(bd)) |
| 1103 | return PTR_ERR(bd); |
| 1104 | |
| 1105 | samsung->backlight_device = bd; |
| 1106 | samsung->backlight_device->props.brightness = read_brightness(samsung); |
| 1107 | samsung->backlight_device->props.power = FB_BLANK_UNBLANK; |
| 1108 | backlight_update_status(samsung->backlight_device); |
| 1109 | |
| 1110 | return 0; |
| 1111 | } |
| 1112 | |
Dan Carpenter | bde9e50 | 2012-03-20 09:53:07 +0100 | [diff] [blame] | 1113 | static umode_t samsung_sysfs_is_visible(struct kobject *kobj, |
Corentin Chary | a66c166 | 2011-11-26 11:00:01 +0100 | [diff] [blame] | 1114 | struct attribute *attr, int idx) |
| 1115 | { |
| 1116 | struct device *dev = container_of(kobj, struct device, kobj); |
| 1117 | struct platform_device *pdev = to_platform_device(dev); |
| 1118 | struct samsung_laptop *samsung = platform_get_drvdata(pdev); |
| 1119 | bool ok = true; |
| 1120 | |
| 1121 | if (attr == &dev_attr_performance_level.attr) |
| 1122 | ok = !!samsung->config->performance_levels[0].name; |
Corentin Chary | cb5b5c9 | 2011-11-26 11:00:05 +0100 | [diff] [blame] | 1123 | if (attr == &dev_attr_battery_life_extender.attr) |
| 1124 | ok = !!(read_battery_life_extender(samsung) >= 0); |
Corentin Chary | 3a75d37 | 2011-11-26 11:00:06 +0100 | [diff] [blame] | 1125 | if (attr == &dev_attr_usb_charge.attr) |
| 1126 | ok = !!(read_usb_charge(samsung) >= 0); |
Corentin Chary | a66c166 | 2011-11-26 11:00:01 +0100 | [diff] [blame] | 1127 | |
| 1128 | return ok ? attr->mode : 0; |
| 1129 | } |
| 1130 | |
| 1131 | static struct attribute_group platform_attribute_group = { |
| 1132 | .is_visible = samsung_sysfs_is_visible, |
| 1133 | .attrs = platform_attributes |
| 1134 | }; |
| 1135 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1136 | static void samsung_sysfs_exit(struct samsung_laptop *samsung) |
| 1137 | { |
Corentin Chary | a66c166 | 2011-11-26 11:00:01 +0100 | [diff] [blame] | 1138 | struct platform_device *device = samsung->platform_device; |
| 1139 | |
| 1140 | sysfs_remove_group(&device->dev.kobj, &platform_attribute_group); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | static int __init samsung_sysfs_init(struct samsung_laptop *samsung) |
| 1144 | { |
Corentin Chary | a66c166 | 2011-11-26 11:00:01 +0100 | [diff] [blame] | 1145 | struct platform_device *device = samsung->platform_device; |
| 1146 | |
| 1147 | return sysfs_create_group(&device->dev.kobj, &platform_attribute_group); |
| 1148 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1149 | } |
| 1150 | |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 1151 | static int show_call(struct seq_file *m, void *data) |
| 1152 | { |
| 1153 | struct samsung_laptop *samsung = m->private; |
| 1154 | struct sabi_data *sdata = &samsung->debug.data; |
| 1155 | int ret; |
| 1156 | |
| 1157 | seq_printf(m, "SABI 0x%04x {0x%08x, 0x%08x, 0x%04x, 0x%02x}\n", |
| 1158 | samsung->debug.command, |
| 1159 | sdata->d0, sdata->d1, sdata->d2, sdata->d3); |
| 1160 | |
| 1161 | ret = sabi_command(samsung, samsung->debug.command, sdata, sdata); |
| 1162 | |
| 1163 | if (ret) { |
| 1164 | seq_printf(m, "SABI command 0x%04x failed\n", |
| 1165 | samsung->debug.command); |
| 1166 | return ret; |
| 1167 | } |
| 1168 | |
| 1169 | seq_printf(m, "SABI {0x%08x, 0x%08x, 0x%04x, 0x%02x}\n", |
| 1170 | sdata->d0, sdata->d1, sdata->d2, sdata->d3); |
| 1171 | return 0; |
| 1172 | } |
| 1173 | |
| 1174 | static int samsung_debugfs_open(struct inode *inode, struct file *file) |
| 1175 | { |
| 1176 | return single_open(file, show_call, inode->i_private); |
| 1177 | } |
| 1178 | |
| 1179 | static const struct file_operations samsung_laptop_call_io_ops = { |
| 1180 | .owner = THIS_MODULE, |
| 1181 | .open = samsung_debugfs_open, |
| 1182 | .read = seq_read, |
| 1183 | .llseek = seq_lseek, |
| 1184 | .release = single_release, |
| 1185 | }; |
| 1186 | |
| 1187 | static void samsung_debugfs_exit(struct samsung_laptop *samsung) |
| 1188 | { |
| 1189 | debugfs_remove_recursive(samsung->debug.root); |
| 1190 | } |
| 1191 | |
| 1192 | static int samsung_debugfs_init(struct samsung_laptop *samsung) |
| 1193 | { |
| 1194 | struct dentry *dent; |
| 1195 | |
| 1196 | samsung->debug.root = debugfs_create_dir("samsung-laptop", NULL); |
| 1197 | if (!samsung->debug.root) { |
| 1198 | pr_err("failed to create debugfs directory"); |
| 1199 | goto error_debugfs; |
| 1200 | } |
| 1201 | |
| 1202 | samsung->debug.f0000_wrapper.data = samsung->f0000_segment; |
| 1203 | samsung->debug.f0000_wrapper.size = 0xffff; |
| 1204 | |
| 1205 | samsung->debug.data_wrapper.data = &samsung->debug.data; |
| 1206 | samsung->debug.data_wrapper.size = sizeof(samsung->debug.data); |
| 1207 | |
Corentin Chary | 6f6ae06 | 2011-11-26 11:00:11 +0100 | [diff] [blame] | 1208 | samsung->debug.sdiag_wrapper.data = samsung->sdiag; |
| 1209 | samsung->debug.sdiag_wrapper.size = strlen(samsung->sdiag); |
| 1210 | |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 1211 | dent = debugfs_create_u16("command", S_IRUGO | S_IWUSR, |
| 1212 | samsung->debug.root, &samsung->debug.command); |
| 1213 | if (!dent) |
| 1214 | goto error_debugfs; |
| 1215 | |
| 1216 | dent = debugfs_create_u32("d0", S_IRUGO | S_IWUSR, samsung->debug.root, |
| 1217 | &samsung->debug.data.d0); |
| 1218 | if (!dent) |
| 1219 | goto error_debugfs; |
| 1220 | |
| 1221 | dent = debugfs_create_u32("d1", S_IRUGO | S_IWUSR, samsung->debug.root, |
| 1222 | &samsung->debug.data.d1); |
| 1223 | if (!dent) |
| 1224 | goto error_debugfs; |
| 1225 | |
| 1226 | dent = debugfs_create_u16("d2", S_IRUGO | S_IWUSR, samsung->debug.root, |
| 1227 | &samsung->debug.data.d2); |
| 1228 | if (!dent) |
| 1229 | goto error_debugfs; |
| 1230 | |
| 1231 | dent = debugfs_create_u8("d3", S_IRUGO | S_IWUSR, samsung->debug.root, |
| 1232 | &samsung->debug.data.d3); |
| 1233 | if (!dent) |
| 1234 | goto error_debugfs; |
| 1235 | |
| 1236 | dent = debugfs_create_blob("data", S_IRUGO | S_IWUSR, |
| 1237 | samsung->debug.root, |
| 1238 | &samsung->debug.data_wrapper); |
| 1239 | if (!dent) |
| 1240 | goto error_debugfs; |
| 1241 | |
| 1242 | dent = debugfs_create_blob("f0000_segment", S_IRUSR | S_IWUSR, |
| 1243 | samsung->debug.root, |
| 1244 | &samsung->debug.f0000_wrapper); |
| 1245 | if (!dent) |
| 1246 | goto error_debugfs; |
| 1247 | |
| 1248 | dent = debugfs_create_file("call", S_IFREG | S_IRUGO, |
| 1249 | samsung->debug.root, samsung, |
| 1250 | &samsung_laptop_call_io_ops); |
| 1251 | if (!dent) |
| 1252 | goto error_debugfs; |
| 1253 | |
Corentin Chary | 6f6ae06 | 2011-11-26 11:00:11 +0100 | [diff] [blame] | 1254 | dent = debugfs_create_blob("sdiag", S_IRUGO | S_IWUSR, |
| 1255 | samsung->debug.root, |
| 1256 | &samsung->debug.sdiag_wrapper); |
| 1257 | if (!dent) |
| 1258 | goto error_debugfs; |
| 1259 | |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 1260 | return 0; |
| 1261 | |
| 1262 | error_debugfs: |
| 1263 | samsung_debugfs_exit(samsung); |
| 1264 | return -ENOMEM; |
| 1265 | } |
| 1266 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1267 | static void samsung_sabi_exit(struct samsung_laptop *samsung) |
| 1268 | { |
| 1269 | const struct sabi_config *config = samsung->config; |
| 1270 | |
| 1271 | /* Turn off "Linux" mode in the BIOS */ |
| 1272 | if (config && config->commands.set_linux != 0xff) |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 1273 | sabi_set_commandb(samsung, config->commands.set_linux, 0x80); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1274 | |
| 1275 | if (samsung->sabi_iface) { |
| 1276 | iounmap(samsung->sabi_iface); |
| 1277 | samsung->sabi_iface = NULL; |
| 1278 | } |
| 1279 | if (samsung->f0000_segment) { |
| 1280 | iounmap(samsung->f0000_segment); |
| 1281 | samsung->f0000_segment = NULL; |
| 1282 | } |
| 1283 | |
| 1284 | samsung->config = NULL; |
| 1285 | } |
| 1286 | |
Corentin Chary | 49dd773 | 2011-11-26 11:00:04 +0100 | [diff] [blame] | 1287 | static __init void samsung_sabi_infos(struct samsung_laptop *samsung, int loca, |
| 1288 | unsigned int ifaceP) |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1289 | { |
| 1290 | const struct sabi_config *config = samsung->config; |
| 1291 | |
| 1292 | printk(KERN_DEBUG "This computer supports SABI==%x\n", |
| 1293 | loca + 0xf0000 - 6); |
Corentin Chary | 49dd773 | 2011-11-26 11:00:04 +0100 | [diff] [blame] | 1294 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1295 | printk(KERN_DEBUG "SABI header:\n"); |
| 1296 | printk(KERN_DEBUG " SMI Port Number = 0x%04x\n", |
| 1297 | readw(samsung->sabi + config->header_offsets.port)); |
| 1298 | printk(KERN_DEBUG " SMI Interface Function = 0x%02x\n", |
| 1299 | readb(samsung->sabi + config->header_offsets.iface_func)); |
| 1300 | printk(KERN_DEBUG " SMI enable memory buffer = 0x%02x\n", |
| 1301 | readb(samsung->sabi + config->header_offsets.en_mem)); |
| 1302 | printk(KERN_DEBUG " SMI restore memory buffer = 0x%02x\n", |
| 1303 | readb(samsung->sabi + config->header_offsets.re_mem)); |
| 1304 | printk(KERN_DEBUG " SABI data offset = 0x%04x\n", |
| 1305 | readw(samsung->sabi + config->header_offsets.data_offset)); |
| 1306 | printk(KERN_DEBUG " SABI data segment = 0x%04x\n", |
| 1307 | readw(samsung->sabi + config->header_offsets.data_segment)); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1308 | |
Corentin Chary | 49dd773 | 2011-11-26 11:00:04 +0100 | [diff] [blame] | 1309 | printk(KERN_DEBUG " SABI pointer = 0x%08x\n", ifaceP); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1310 | } |
| 1311 | |
Corentin Chary | 6f6ae06 | 2011-11-26 11:00:11 +0100 | [diff] [blame] | 1312 | static void __init samsung_sabi_diag(struct samsung_laptop *samsung) |
| 1313 | { |
| 1314 | int loca = find_signature(samsung->f0000_segment, "SDiaG@"); |
| 1315 | int i; |
| 1316 | |
| 1317 | if (loca == 0xffff) |
| 1318 | return ; |
| 1319 | |
| 1320 | /* Example: |
| 1321 | * Ident: @SDiaG@686XX-N90X3A/966-SEC-07HL-S90X3A |
| 1322 | * |
| 1323 | * Product name: 90X3A |
| 1324 | * BIOS Version: 07HL |
| 1325 | */ |
| 1326 | loca += 1; |
| 1327 | for (i = 0; loca < 0xffff && i < sizeof(samsung->sdiag) - 1; loca++) { |
| 1328 | char temp = readb(samsung->f0000_segment + loca); |
| 1329 | |
| 1330 | if (isalnum(temp) || temp == '/' || temp == '-') |
| 1331 | samsung->sdiag[i++] = temp; |
| 1332 | else |
| 1333 | break ; |
| 1334 | } |
| 1335 | |
| 1336 | if (debug && samsung->sdiag[0]) |
| 1337 | pr_info("sdiag: %s", samsung->sdiag); |
| 1338 | } |
| 1339 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1340 | static int __init samsung_sabi_init(struct samsung_laptop *samsung) |
| 1341 | { |
| 1342 | const struct sabi_config *config = NULL; |
| 1343 | const struct sabi_commands *commands; |
| 1344 | unsigned int ifaceP; |
| 1345 | int ret = 0; |
| 1346 | int i; |
| 1347 | int loca; |
| 1348 | |
| 1349 | samsung->f0000_segment = ioremap_nocache(0xf0000, 0xffff); |
| 1350 | if (!samsung->f0000_segment) { |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1351 | if (debug || force) |
| 1352 | pr_err("Can't map the segment at 0xf0000\n"); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1353 | ret = -EINVAL; |
| 1354 | goto exit; |
| 1355 | } |
| 1356 | |
Corentin Chary | 6f6ae06 | 2011-11-26 11:00:11 +0100 | [diff] [blame] | 1357 | samsung_sabi_diag(samsung); |
| 1358 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1359 | /* Try to find one of the signatures in memory to find the header */ |
| 1360 | for (i = 0; sabi_configs[i].test_string != 0; ++i) { |
| 1361 | samsung->config = &sabi_configs[i]; |
| 1362 | loca = find_signature(samsung->f0000_segment, |
| 1363 | samsung->config->test_string); |
| 1364 | if (loca != 0xffff) |
| 1365 | break; |
| 1366 | } |
| 1367 | |
| 1368 | if (loca == 0xffff) { |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1369 | if (debug || force) |
| 1370 | pr_err("This computer does not support SABI\n"); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1371 | ret = -ENODEV; |
| 1372 | goto exit; |
| 1373 | } |
| 1374 | |
| 1375 | config = samsung->config; |
| 1376 | commands = &config->commands; |
| 1377 | |
| 1378 | /* point to the SMI port Number */ |
| 1379 | loca += 1; |
| 1380 | samsung->sabi = (samsung->f0000_segment + loca); |
| 1381 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1382 | /* Get a pointer to the SABI Interface */ |
| 1383 | ifaceP = (readw(samsung->sabi + config->header_offsets.data_segment) & 0x0ffff) << 4; |
| 1384 | ifaceP += readw(samsung->sabi + config->header_offsets.data_offset) & 0x0ffff; |
Corentin Chary | 49dd773 | 2011-11-26 11:00:04 +0100 | [diff] [blame] | 1385 | |
| 1386 | if (debug) |
| 1387 | samsung_sabi_infos(samsung, loca, ifaceP); |
| 1388 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1389 | samsung->sabi_iface = ioremap_nocache(ifaceP, 16); |
| 1390 | if (!samsung->sabi_iface) { |
| 1391 | pr_err("Can't remap %x\n", ifaceP); |
| 1392 | ret = -EINVAL; |
| 1393 | goto exit; |
| 1394 | } |
| 1395 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1396 | /* Turn on "Linux" mode in the BIOS */ |
| 1397 | if (commands->set_linux != 0xff) { |
Corentin Chary | 7e96071 | 2011-11-26 11:00:02 +0100 | [diff] [blame] | 1398 | int retval = sabi_set_commandb(samsung, |
| 1399 | commands->set_linux, 0x81); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1400 | if (retval) { |
| 1401 | pr_warn("Linux mode was not set!\n"); |
| 1402 | ret = -ENODEV; |
| 1403 | goto exit; |
| 1404 | } |
| 1405 | } |
| 1406 | |
| 1407 | /* Check for stepping quirk */ |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 1408 | if (samsung->handle_backlight) |
| 1409 | check_for_stepping_quirk(samsung); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1410 | |
Corentin Chary | 2e77718 | 2011-11-26 11:00:12 +0100 | [diff] [blame] | 1411 | pr_info("detected SABI interface: %s\n", |
| 1412 | samsung->config->test_string); |
| 1413 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1414 | exit: |
| 1415 | if (ret) |
| 1416 | samsung_sabi_exit(samsung); |
| 1417 | |
| 1418 | return ret; |
| 1419 | } |
| 1420 | |
| 1421 | static void samsung_platform_exit(struct samsung_laptop *samsung) |
| 1422 | { |
| 1423 | if (samsung->platform_device) { |
| 1424 | platform_device_unregister(samsung->platform_device); |
| 1425 | samsung->platform_device = NULL; |
| 1426 | } |
| 1427 | } |
| 1428 | |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 1429 | static int samsung_pm_notification(struct notifier_block *nb, |
| 1430 | unsigned long val, void *ptr) |
| 1431 | { |
| 1432 | struct samsung_laptop *samsung; |
| 1433 | |
| 1434 | samsung = container_of(nb, struct samsung_laptop, pm_nb); |
| 1435 | if (val == PM_POST_HIBERNATION && |
| 1436 | samsung->quirks->enable_kbd_backlight) |
| 1437 | kbd_backlight_enable(samsung); |
| 1438 | |
| 1439 | return 0; |
| 1440 | } |
| 1441 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1442 | static int __init samsung_platform_init(struct samsung_laptop *samsung) |
| 1443 | { |
| 1444 | struct platform_device *pdev; |
| 1445 | |
| 1446 | pdev = platform_device_register_simple("samsung", -1, NULL, 0); |
| 1447 | if (IS_ERR(pdev)) |
| 1448 | return PTR_ERR(pdev); |
| 1449 | |
| 1450 | samsung->platform_device = pdev; |
| 1451 | platform_set_drvdata(samsung->platform_device, samsung); |
| 1452 | return 0; |
| 1453 | } |
| 1454 | |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1455 | static struct samsung_quirks *quirks; |
| 1456 | |
| 1457 | static int __init samsung_dmi_matched(const struct dmi_system_id *d) |
| 1458 | { |
| 1459 | quirks = d->driver_data; |
| 1460 | return 0; |
| 1461 | } |
| 1462 | |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1463 | static struct dmi_system_id __initdata samsung_dmi_table[] = { |
| 1464 | { |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1465 | .matches = { |
| 1466 | DMI_MATCH(DMI_SYS_VENDOR, |
| 1467 | "SAMSUNG ELECTRONICS CO., LTD."), |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1468 | DMI_MATCH(DMI_CHASSIS_TYPE, "8"), /* Portable */ |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1469 | }, |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1470 | }, |
| 1471 | { |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1472 | .matches = { |
| 1473 | DMI_MATCH(DMI_SYS_VENDOR, |
| 1474 | "SAMSUNG ELECTRONICS CO., LTD."), |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1475 | DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /* Laptop */ |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1476 | }, |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1477 | }, |
| 1478 | { |
J Witteveen | 4e2441c | 2011-07-03 13:15:44 +0200 | [diff] [blame] | 1479 | .matches = { |
| 1480 | DMI_MATCH(DMI_SYS_VENDOR, |
| 1481 | "SAMSUNG ELECTRONICS CO., LTD."), |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1482 | DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /* Notebook */ |
J Witteveen | 4e2441c | 2011-07-03 13:15:44 +0200 | [diff] [blame] | 1483 | }, |
J Witteveen | 4e2441c | 2011-07-03 13:15:44 +0200 | [diff] [blame] | 1484 | }, |
| 1485 | { |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1486 | .matches = { |
| 1487 | DMI_MATCH(DMI_SYS_VENDOR, |
| 1488 | "SAMSUNG ELECTRONICS CO., LTD."), |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1489 | DMI_MATCH(DMI_CHASSIS_TYPE, "14"), /* Sub-Notebook */ |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1490 | }, |
Tommaso Massimi | 7500eeb | 2011-09-20 09:16:09 -0700 | [diff] [blame] | 1491 | }, |
Corentin Chary | e052067 | 2012-06-13 09:32:05 +0200 | [diff] [blame] | 1492 | /* DMI ids for laptops with bad Chassis Type */ |
| 1493 | { |
| 1494 | .ident = "R40/R41", |
| 1495 | .matches = { |
| 1496 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1497 | DMI_MATCH(DMI_PRODUCT_NAME, "R40/R41"), |
| 1498 | DMI_MATCH(DMI_BOARD_NAME, "R40/R41"), |
| 1499 | }, |
| 1500 | }, |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1501 | /* Specific DMI ids for laptop with quirks */ |
| 1502 | { |
| 1503 | .callback = samsung_dmi_matched, |
| 1504 | .ident = "N150P", |
| 1505 | .matches = { |
| 1506 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1507 | DMI_MATCH(DMI_PRODUCT_NAME, "N150P"), |
| 1508 | DMI_MATCH(DMI_BOARD_NAME, "N150P"), |
| 1509 | }, |
| 1510 | .driver_data = &samsung_broken_acpi_video, |
| 1511 | }, |
| 1512 | { |
| 1513 | .callback = samsung_dmi_matched, |
| 1514 | .ident = "N145P/N250P/N260P", |
| 1515 | .matches = { |
| 1516 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1517 | DMI_MATCH(DMI_PRODUCT_NAME, "N145P/N250P/N260P"), |
| 1518 | DMI_MATCH(DMI_BOARD_NAME, "N145P/N250P/N260P"), |
| 1519 | }, |
| 1520 | .driver_data = &samsung_broken_acpi_video, |
| 1521 | }, |
| 1522 | { |
| 1523 | .callback = samsung_dmi_matched, |
| 1524 | .ident = "N150/N210/N220", |
| 1525 | .matches = { |
| 1526 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1527 | DMI_MATCH(DMI_PRODUCT_NAME, "N150/N210/N220"), |
| 1528 | DMI_MATCH(DMI_BOARD_NAME, "N150/N210/N220"), |
| 1529 | }, |
| 1530 | .driver_data = &samsung_broken_acpi_video, |
| 1531 | }, |
| 1532 | { |
| 1533 | .callback = samsung_dmi_matched, |
| 1534 | .ident = "NF110/NF210/NF310", |
| 1535 | .matches = { |
| 1536 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1537 | DMI_MATCH(DMI_PRODUCT_NAME, "NF110/NF210/NF310"), |
| 1538 | DMI_MATCH(DMI_BOARD_NAME, "NF110/NF210/NF310"), |
| 1539 | }, |
| 1540 | .driver_data = &samsung_broken_acpi_video, |
| 1541 | }, |
Corentin Chary | 09d5677 | 2012-06-13 09:32:03 +0200 | [diff] [blame] | 1542 | { |
| 1543 | .callback = samsung_dmi_matched, |
| 1544 | .ident = "X360", |
| 1545 | .matches = { |
| 1546 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1547 | DMI_MATCH(DMI_PRODUCT_NAME, "X360"), |
| 1548 | DMI_MATCH(DMI_BOARD_NAME, "X360"), |
| 1549 | }, |
| 1550 | .driver_data = &samsung_broken_acpi_video, |
| 1551 | }, |
Seth Forshee | e04c200 | 2012-12-05 16:08:33 -0600 | [diff] [blame] | 1552 | { |
| 1553 | .callback = samsung_dmi_matched, |
| 1554 | .ident = "N250P", |
| 1555 | .matches = { |
| 1556 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1557 | DMI_MATCH(DMI_PRODUCT_NAME, "N250P"), |
| 1558 | DMI_MATCH(DMI_BOARD_NAME, "N250P"), |
| 1559 | }, |
| 1560 | .driver_data = &samsung_broken_acpi_video, |
| 1561 | }, |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 1562 | { |
| 1563 | .callback = samsung_dmi_matched, |
Hans de Goede | 5a1426c | 2014-10-22 16:06:37 +0200 | [diff] [blame^] | 1564 | .ident = "NC210", |
| 1565 | .matches = { |
| 1566 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1567 | DMI_MATCH(DMI_PRODUCT_NAME, "NC210/NC110"), |
| 1568 | DMI_MATCH(DMI_BOARD_NAME, "NC210/NC110"), |
| 1569 | }, |
| 1570 | .driver_data = &samsung_broken_acpi_video, |
| 1571 | }, |
| 1572 | { |
| 1573 | .callback = samsung_dmi_matched, |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 1574 | .ident = "730U3E/740U3E", |
| 1575 | .matches = { |
| 1576 | DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."), |
| 1577 | DMI_MATCH(DMI_PRODUCT_NAME, "730U3E/740U3E"), |
| 1578 | }, |
| 1579 | .driver_data = &samsung_np740u3e, |
| 1580 | }, |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1581 | { }, |
| 1582 | }; |
| 1583 | MODULE_DEVICE_TABLE(dmi, samsung_dmi_table); |
| 1584 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1585 | static struct platform_device *samsung_platform_device; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1586 | |
| 1587 | static int __init samsung_init(void) |
| 1588 | { |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1589 | struct samsung_laptop *samsung; |
| 1590 | int ret; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1591 | |
Matt Fleming | e009424 | 2013-01-03 09:02:37 +0000 | [diff] [blame] | 1592 | if (efi_enabled(EFI_BOOT)) |
| 1593 | return -ENODEV; |
| 1594 | |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1595 | quirks = &samsung_unknown; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1596 | if (!force && !dmi_check_system(samsung_dmi_table)) |
| 1597 | return -ENODEV; |
| 1598 | |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 1599 | samsung = kzalloc(sizeof(*samsung), GFP_KERNEL); |
| 1600 | if (!samsung) |
| 1601 | return -ENOMEM; |
| 1602 | |
| 1603 | mutex_init(&samsung->sabi_mutex); |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 1604 | samsung->handle_backlight = true; |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1605 | samsung->quirks = quirks; |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 1606 | |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1607 | |
Corentin Chary | a60b217 | 2012-06-13 09:32:02 +0200 | [diff] [blame] | 1608 | #ifdef CONFIG_ACPI |
| 1609 | if (samsung->quirks->broken_acpi_video) |
| 1610 | acpi_video_dmi_promote_vendor(); |
| 1611 | |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 1612 | /* Don't handle backlight here if the acpi video already handle it */ |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1613 | if (acpi_video_backlight_support()) { |
Corentin Chary | a60b217 | 2012-06-13 09:32:02 +0200 | [diff] [blame] | 1614 | samsung->handle_backlight = false; |
| 1615 | } else if (samsung->quirks->broken_acpi_video) { |
| 1616 | pr_info("Disabling ACPI video driver\n"); |
Corentin Chary | a60b217 | 2012-06-13 09:32:02 +0200 | [diff] [blame] | 1617 | acpi_video_unregister(); |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1618 | } |
Corentin Chary | f34cd9c | 2011-11-26 11:00:00 +0100 | [diff] [blame] | 1619 | #endif |
Corentin Chary | a979e2e | 2012-03-22 14:08:19 +0100 | [diff] [blame] | 1620 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1621 | ret = samsung_platform_init(samsung); |
| 1622 | if (ret) |
| 1623 | goto error_platform; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1624 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1625 | ret = samsung_sabi_init(samsung); |
| 1626 | if (ret) |
| 1627 | goto error_sabi; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1628 | |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1629 | #ifdef CONFIG_ACPI |
| 1630 | /* Only log that if we are really on a sabi platform */ |
Corentin Chary | a60b217 | 2012-06-13 09:32:02 +0200 | [diff] [blame] | 1631 | if (acpi_video_backlight_support()) |
Corentin Chary | 3be324a | 2011-11-26 11:00:10 +0100 | [diff] [blame] | 1632 | pr_info("Backlight controlled by ACPI video driver\n"); |
| 1633 | #endif |
| 1634 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1635 | ret = samsung_sysfs_init(samsung); |
| 1636 | if (ret) |
| 1637 | goto error_sysfs; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1638 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1639 | ret = samsung_backlight_init(samsung); |
| 1640 | if (ret) |
| 1641 | goto error_backlight; |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 1642 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1643 | ret = samsung_rfkill_init(samsung); |
| 1644 | if (ret) |
| 1645 | goto error_rfkill; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1646 | |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 1647 | ret = samsung_leds_init(samsung); |
| 1648 | if (ret) |
| 1649 | goto error_leds; |
| 1650 | |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 1651 | ret = samsung_debugfs_init(samsung); |
| 1652 | if (ret) |
| 1653 | goto error_debugfs; |
| 1654 | |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 1655 | samsung->pm_nb.notifier_call = samsung_pm_notification; |
| 1656 | register_pm_notifier(&samsung->pm_nb); |
| 1657 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1658 | samsung_platform_device = samsung->platform_device; |
| 1659 | return ret; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1660 | |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 1661 | error_debugfs: |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 1662 | samsung_leds_exit(samsung); |
| 1663 | error_leds: |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 1664 | samsung_rfkill_exit(samsung); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1665 | error_rfkill: |
| 1666 | samsung_backlight_exit(samsung); |
| 1667 | error_backlight: |
| 1668 | samsung_sysfs_exit(samsung); |
| 1669 | error_sysfs: |
| 1670 | samsung_sabi_exit(samsung); |
| 1671 | error_sabi: |
| 1672 | samsung_platform_exit(samsung); |
| 1673 | error_platform: |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 1674 | kfree(samsung); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1675 | return ret; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | static void __exit samsung_exit(void) |
| 1679 | { |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1680 | struct samsung_laptop *samsung; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1681 | |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1682 | samsung = platform_get_drvdata(samsung_platform_device); |
Scott Thrasher | 0ca849e | 2014-05-06 08:06:42 -0700 | [diff] [blame] | 1683 | unregister_pm_notifier(&samsung->pm_nb); |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 1684 | |
Corentin Chary | 5b80fc4 | 2011-11-26 11:00:03 +0100 | [diff] [blame] | 1685 | samsung_debugfs_exit(samsung); |
Corentin Chary | f674ebf | 2011-11-26 11:00:08 +0100 | [diff] [blame] | 1686 | samsung_leds_exit(samsung); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1687 | samsung_rfkill_exit(samsung); |
| 1688 | samsung_backlight_exit(samsung); |
| 1689 | samsung_sysfs_exit(samsung); |
| 1690 | samsung_sabi_exit(samsung); |
| 1691 | samsung_platform_exit(samsung); |
| 1692 | |
Corentin Chary | a6df489 | 2011-11-26 10:59:58 +0100 | [diff] [blame] | 1693 | kfree(samsung); |
Corentin Chary | 5dea7a2 | 2011-11-26 10:59:59 +0100 | [diff] [blame] | 1694 | samsung_platform_device = NULL; |
Greg Kroah-Hartman | 2d70b73 | 2011-03-11 12:41:19 -0500 | [diff] [blame] | 1695 | } |
| 1696 | |
| 1697 | module_init(samsung_init); |
| 1698 | module_exit(samsung_exit); |
| 1699 | |
| 1700 | MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@suse.de>"); |
| 1701 | MODULE_DESCRIPTION("Samsung Backlight driver"); |
| 1702 | MODULE_LICENSE("GPL"); |