12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163 |
- /*
- * Samsung Laptop driver
- *
- * Copyright (C) 2009,2011 Greg Kroah-Hartman (gregkh@suse.de)
- * Copyright (C) 2009,2011 Novell Inc.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published by
- * the Free Software Foundation.
- *
- */
- #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
- #include <linux/kernel.h>
- #include <linux/init.h>
- #include <linux/module.h>
- #include <linux/delay.h>
- #include <linux/pci.h>
- #include <linux/backlight.h>
- #include <linux/fb.h>
- #include <linux/dmi.h>
- #include <linux/platform_device.h>
- #include <linux/rfkill.h>
- #include <linux/acpi.h>
- /*
- * This driver is needed because a number of Samsung laptops do not hook
- * their control settings through ACPI. So we have to poke around in the
- * BIOS to do things like brightness values, and "special" key controls.
- */
- /*
- * We have 0 - 8 as valid brightness levels. The specs say that level 0 should
- * be reserved by the BIOS (which really doesn't make much sense), we tell
- * userspace that the value is 0 - 7 and then just tell the hardware 1 - 8
- */
- #define MAX_BRIGHT 0x07
- #define SABI_IFACE_MAIN 0x00
- #define SABI_IFACE_SUB 0x02
- #define SABI_IFACE_COMPLETE 0x04
- #define SABI_IFACE_DATA 0x05
- /* Structure get/set data using sabi */
- struct sabi_data {
- union {
- struct {
- u32 d0;
- u32 d1;
- u16 d2;
- u8 d3;
- };
- u8 data[11];
- };
- };
- struct sabi_header_offsets {
- u8 port;
- u8 re_mem;
- u8 iface_func;
- u8 en_mem;
- u8 data_offset;
- u8 data_segment;
- };
- struct sabi_commands {
- /*
- * Brightness is 0 - 8, as described above.
- * Value 0 is for the BIOS to use
- */
- u16 get_brightness;
- u16 set_brightness;
- /*
- * first byte:
- * 0x00 - wireless is off
- * 0x01 - wireless is on
- * second byte:
- * 0x02 - 3G is off
- * 0x03 - 3G is on
- * TODO, verify 3G is correct, that doesn't seem right...
- */
- u16 get_wireless_button;
- u16 set_wireless_button;
- /* 0 is off, 1 is on */
- u16 get_backlight;
- u16 set_backlight;
- /*
- * 0x80 or 0x00 - no action
- * 0x81 - recovery key pressed
- */
- u16 get_recovery_mode;
- u16 set_recovery_mode;
- /*
- * on seclinux: 0 is low, 1 is high,
- * on swsmi: 0 is normal, 1 is silent, 2 is turbo
- */
- u16 get_performance_level;
- u16 set_performance_level;
- /*
- * Tell the BIOS that Linux is running on this machine.
- * 81 is on, 80 is off
- */
- u16 set_linux;
- };
- struct sabi_performance_level {
- const char *name;
- u16 value;
- };
- struct sabi_config {
- const char *test_string;
- u16 main_function;
- const struct sabi_header_offsets header_offsets;
- const struct sabi_commands commands;
- const struct sabi_performance_level performance_levels[4];
- u8 min_brightness;
- u8 max_brightness;
- };
- static const struct sabi_config sabi_configs[] = {
- {
- .test_string = "SECLINUX",
- .main_function = 0x4c49,
- .header_offsets = {
- .port = 0x00,
- .re_mem = 0x02,
- .iface_func = 0x03,
- .en_mem = 0x04,
- .data_offset = 0x05,
- .data_segment = 0x07,
- },
- .commands = {
- .get_brightness = 0x00,
- .set_brightness = 0x01,
- .get_wireless_button = 0x02,
- .set_wireless_button = 0x03,
- .get_backlight = 0x04,
- .set_backlight = 0x05,
- .get_recovery_mode = 0x06,
- .set_recovery_mode = 0x07,
- .get_performance_level = 0x08,
- .set_performance_level = 0x09,
- .set_linux = 0x0a,
- },
- .performance_levels = {
- {
- .name = "silent",
- .value = 0,
- },
- {
- .name = "normal",
- .value = 1,
- },
- { },
- },
- .min_brightness = 1,
- .max_brightness = 8,
- },
- {
- .test_string = "SwSmi@",
- .main_function = 0x5843,
- .header_offsets = {
- .port = 0x00,
- .re_mem = 0x04,
- .iface_func = 0x02,
- .en_mem = 0x03,
- .data_offset = 0x05,
- .data_segment = 0x07,
- },
- .commands = {
- .get_brightness = 0x10,
- .set_brightness = 0x11,
- .get_wireless_button = 0x12,
- .set_wireless_button = 0x13,
- .get_backlight = 0x2d,
- .set_backlight = 0x2e,
- .get_recovery_mode = 0xff,
- .set_recovery_mode = 0xff,
- .get_performance_level = 0x31,
- .set_performance_level = 0x32,
- .set_linux = 0xff,
- },
- .performance_levels = {
- {
- .name = "normal",
- .value = 0,
- },
- {
- .name = "silent",
- .value = 1,
- },
- {
- .name = "overclock",
- .value = 2,
- },
- { },
- },
- .min_brightness = 0,
- .max_brightness = 8,
- },
- { },
- };
- struct samsung_laptop {
- const struct sabi_config *config;
- void __iomem *sabi;
- void __iomem *sabi_iface;
- void __iomem *f0000_segment;
- struct mutex sabi_mutex;
- struct platform_device *platform_device;
- struct backlight_device *backlight_device;
- struct rfkill *rfk;
- bool handle_backlight;
- bool has_stepping_quirk;
- };
- static bool force;
- module_param(force, bool, 0);
- MODULE_PARM_DESC(force,
- "Disable the DMI check and forces the driver to be loaded");
- static bool debug;
- module_param(debug, bool, S_IRUGO | S_IWUSR);
- MODULE_PARM_DESC(debug, "Debug enabled or not");
- static int sabi_command(struct samsung_laptop *samsung, u16 command,
- struct sabi_data *in,
- struct sabi_data *out)
- {
- const struct sabi_config *config = samsung->config;
- int ret = 0;
- u16 port = readw(samsung->sabi + config->header_offsets.port);
- u8 complete, iface_data;
- mutex_lock(&samsung->sabi_mutex);
- if (debug) {
- if (in)
- pr_info("SABI 0x%04x {0x%08x, 0x%08x, 0x%04x, 0x%02x}",
- command, in->d0, in->d1, in->d2, in->d3);
- else
- pr_info("SABI 0x%04x", command);
- }
- /* enable memory to be able to write to it */
- outb(readb(samsung->sabi + config->header_offsets.en_mem), port);
- /* write out the command */
- writew(config->main_function, samsung->sabi_iface + SABI_IFACE_MAIN);
- writew(command, samsung->sabi_iface + SABI_IFACE_SUB);
- writeb(0, samsung->sabi_iface + SABI_IFACE_COMPLETE);
- if (in) {
- writel(in->d0, samsung->sabi_iface + SABI_IFACE_DATA);
- writel(in->d1, samsung->sabi_iface + SABI_IFACE_DATA + 4);
- writew(in->d2, samsung->sabi_iface + SABI_IFACE_DATA + 8);
- writeb(in->d3, samsung->sabi_iface + SABI_IFACE_DATA + 10);
- }
- outb(readb(samsung->sabi + config->header_offsets.iface_func), port);
- /* write protect memory to make it safe */
- outb(readb(samsung->sabi + config->header_offsets.re_mem), port);
- /* see if the command actually succeeded */
- complete = readb(samsung->sabi_iface + SABI_IFACE_COMPLETE);
- iface_data = readb(samsung->sabi_iface + SABI_IFACE_DATA);
- if (complete != 0xaa || iface_data == 0xff) {
- pr_warn("SABI command 0x%04x failed with"
- " completion flag 0x%02x and interface data 0x%02x",
- command, complete, iface_data);
- ret = -EINVAL;
- goto exit;
- }
- if (out) {
- out->d0 = readl(samsung->sabi_iface + SABI_IFACE_DATA);
- out->d1 = readl(samsung->sabi_iface + SABI_IFACE_DATA + 4);
- out->d2 = readw(samsung->sabi_iface + SABI_IFACE_DATA + 2);
- out->d3 = readb(samsung->sabi_iface + SABI_IFACE_DATA + 1);
- }
- if (debug && out) {
- pr_info("SABI {0x%08x, 0x%08x, 0x%04x, 0x%02x}",
- out->d0, out->d1, out->d2, out->d3);
- }
- exit:
- mutex_unlock(&samsung->sabi_mutex);
- return ret;
- }
- /* simple wrappers usable with most commands */
- static int sabi_set_commandb(struct samsung_laptop *samsung,
- u16 command, u8 data)
- {
- struct sabi_data in = { .d0 = 0, .d1 = 0, .d2 = 0, .d3 = 0 };
- in.data[0] = data;
- return sabi_command(samsung, command, &in, NULL);
- }
- static void test_backlight(struct samsung_laptop *samsung)
- {
- const struct sabi_commands *commands = &samsung->config->commands;
- struct sabi_data sretval;
- sabi_command(samsung, commands->get_backlight, NULL, &sretval);
- printk(KERN_DEBUG "backlight = 0x%02x\n", sretval.data[0]);
- sabi_set_commandb(samsung, commands->set_backlight, 0);
- printk(KERN_DEBUG "backlight should be off\n");
- sabi_command(samsung, commands->get_backlight, NULL, &sretval);
- printk(KERN_DEBUG "backlight = 0x%02x\n", sretval.data[0]);
- msleep(1000);
- sabi_set_commandb(samsung, commands->set_backlight, 1);
- printk(KERN_DEBUG "backlight should be on\n");
- sabi_command(samsung, commands->get_backlight, NULL, &sretval);
- printk(KERN_DEBUG "backlight = 0x%02x\n", sretval.data[0]);
- }
- static void test_wireless(struct samsung_laptop *samsung)
- {
- const struct sabi_commands *commands = &samsung->config->commands;
- struct sabi_data sretval;
- sabi_command(samsung, commands->get_wireless_button, NULL, &sretval);
- printk(KERN_DEBUG "wireless led = 0x%02x\n", sretval.data[0]);
- sabi_set_commandb(samsung, commands->set_wireless_button, 0);
- printk(KERN_DEBUG "wireless led should be off\n");
- sabi_command(samsung, commands->get_wireless_button, NULL, &sretval);
- printk(KERN_DEBUG "wireless led = 0x%02x\n", sretval.data[0]);
- msleep(1000);
- sabi_set_commandb(samsung, commands->set_wireless_button, 1);
- printk(KERN_DEBUG "wireless led should be on\n");
- sabi_command(samsung, commands->get_wireless_button, NULL, &sretval);
- printk(KERN_DEBUG "wireless led = 0x%02x\n", sretval.data[0]);
- }
- static int read_brightness(struct samsung_laptop *samsung)
- {
- const struct sabi_config *config = samsung->config;
- const struct sabi_commands *commands = &samsung->config->commands;
- struct sabi_data sretval;
- int user_brightness = 0;
- int retval;
- retval = sabi_command(samsung, commands->get_brightness,
- NULL, &sretval);
- if (retval)
- return retval;
- user_brightness = sretval.data[0];
- if (user_brightness > config->min_brightness)
- user_brightness -= config->min_brightness;
- else
- user_brightness = 0;
- return user_brightness;
- }
- static void set_brightness(struct samsung_laptop *samsung, u8 user_brightness)
- {
- const struct sabi_config *config = samsung->config;
- const struct sabi_commands *commands = &samsung->config->commands;
- u8 user_level = user_brightness + config->min_brightness;
- if (samsung->has_stepping_quirk && user_level != 0) {
- /*
- * short circuit if the specified level is what's already set
- * to prevent the screen from flickering needlessly
- */
- if (user_brightness == read_brightness(samsung))
- return;
- sabi_set_commandb(samsung, commands->set_brightness, 0);
- }
- sabi_set_commandb(samsung, commands->set_brightness, user_level);
- }
- static int get_brightness(struct backlight_device *bd)
- {
- struct samsung_laptop *samsung = bl_get_data(bd);
- return read_brightness(samsung);
- }
- static void check_for_stepping_quirk(struct samsung_laptop *samsung)
- {
- int initial_level;
- int check_level;
- int orig_level = read_brightness(samsung);
- /*
- * Some laptops exhibit the strange behaviour of stepping toward
- * (rather than setting) the brightness except when changing to/from
- * brightness level 0. This behaviour is checked for here and worked
- * around in set_brightness.
- */
- if (orig_level == 0)
- set_brightness(samsung, 1);
- initial_level = read_brightness(samsung);
- if (initial_level <= 2)
- check_level = initial_level + 2;
- else
- check_level = initial_level - 2;
- samsung->has_stepping_quirk = false;
- set_brightness(samsung, check_level);
- if (read_brightness(samsung) != check_level) {
- samsung->has_stepping_quirk = true;
- pr_info("enabled workaround for brightness stepping quirk\n");
- }
- set_brightness(samsung, orig_level);
- }
- static int update_status(struct backlight_device *bd)
- {
- struct samsung_laptop *samsung = bl_get_data(bd);
- const struct sabi_commands *commands = &samsung->config->commands;
- set_brightness(samsung, bd->props.brightness);
- if (bd->props.power == FB_BLANK_UNBLANK)
- sabi_set_commandb(samsung, commands->set_backlight, 1);
- else
- sabi_set_commandb(samsung, commands->set_backlight, 0);
- return 0;
- }
- static const struct backlight_ops backlight_ops = {
- .get_brightness = get_brightness,
- .update_status = update_status,
- };
- static int rfkill_set(void *data, bool blocked)
- {
- struct samsung_laptop *samsung = data;
- const struct sabi_commands *commands = &samsung->config->commands;
- /* Do something with blocked...*/
- /*
- * blocked == false is on
- * blocked == true is off
- */
- if (blocked)
- sabi_set_commandb(samsung, commands->set_wireless_button, 0);
- else
- sabi_set_commandb(samsung, commands->set_wireless_button, 1);
- return 0;
- }
- static struct rfkill_ops rfkill_ops = {
- .set_block = rfkill_set,
- };
- static ssize_t get_performance_level(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- struct samsung_laptop *samsung = dev_get_drvdata(dev);
- const struct sabi_config *config = samsung->config;
- const struct sabi_commands *commands = &config->commands;
- struct sabi_data sretval;
- int retval;
- int i;
- /* Read the state */
- retval = sabi_command(samsung, commands->get_performance_level,
- NULL, &sretval);
- if (retval)
- return retval;
- /* The logic is backwards, yeah, lots of fun... */
- for (i = 0; config->performance_levels[i].name; ++i) {
- if (sretval.data[0] == config->performance_levels[i].value)
- return sprintf(buf, "%s\n", config->performance_levels[i].name);
- }
- return sprintf(buf, "%s\n", "unknown");
- }
- static ssize_t set_performance_level(struct device *dev,
- struct device_attribute *attr, const char *buf,
- size_t count)
- {
- struct samsung_laptop *samsung = dev_get_drvdata(dev);
- const struct sabi_config *config = samsung->config;
- const struct sabi_commands *commands = &config->commands;
- int i;
- if (count < 1)
- return count;
- for (i = 0; config->performance_levels[i].name; ++i) {
- const struct sabi_performance_level *level =
- &config->performance_levels[i];
- if (!strncasecmp(level->name, buf, strlen(level->name))) {
- sabi_set_commandb(samsung,
- commands->set_performance_level,
- level->value);
- break;
- }
- }
- if (!config->performance_levels[i].name)
- return -EINVAL;
- return count;
- }
- static DEVICE_ATTR(performance_level, S_IWUSR | S_IRUGO,
- get_performance_level, set_performance_level);
- static struct attribute *platform_attributes[] = {
- &dev_attr_performance_level.attr,
- NULL
- };
- static int find_signature(void __iomem *memcheck, const char *testStr)
- {
- int i = 0;
- int loca;
- for (loca = 0; loca < 0xffff; loca++) {
- char temp = readb(memcheck + loca);
- if (temp == testStr[i]) {
- if (i == strlen(testStr)-1)
- break;
- ++i;
- } else {
- i = 0;
- }
- }
- return loca;
- }
- static void samsung_rfkill_exit(struct samsung_laptop *samsung)
- {
- if (samsung->rfk) {
- rfkill_unregister(samsung->rfk);
- rfkill_destroy(samsung->rfk);
- samsung->rfk = NULL;
- }
- }
- static int __init samsung_rfkill_init(struct samsung_laptop *samsung)
- {
- int retval;
- samsung->rfk = rfkill_alloc("samsung-wifi",
- &samsung->platform_device->dev,
- RFKILL_TYPE_WLAN,
- &rfkill_ops, samsung);
- if (!samsung->rfk)
- return -ENOMEM;
- retval = rfkill_register(samsung->rfk);
- if (retval) {
- rfkill_destroy(samsung->rfk);
- samsung->rfk = NULL;
- return -ENODEV;
- }
- return 0;
- }
- static void samsung_backlight_exit(struct samsung_laptop *samsung)
- {
- if (samsung->backlight_device) {
- backlight_device_unregister(samsung->backlight_device);
- samsung->backlight_device = NULL;
- }
- }
- static int __init samsung_backlight_init(struct samsung_laptop *samsung)
- {
- struct backlight_device *bd;
- struct backlight_properties props;
- if (!samsung->handle_backlight)
- return 0;
- memset(&props, 0, sizeof(struct backlight_properties));
- props.type = BACKLIGHT_PLATFORM;
- props.max_brightness = samsung->config->max_brightness -
- samsung->config->min_brightness;
- bd = backlight_device_register("samsung",
- &samsung->platform_device->dev,
- samsung, &backlight_ops,
- &props);
- if (IS_ERR(bd))
- return PTR_ERR(bd);
- samsung->backlight_device = bd;
- samsung->backlight_device->props.brightness = read_brightness(samsung);
- samsung->backlight_device->props.power = FB_BLANK_UNBLANK;
- backlight_update_status(samsung->backlight_device);
- return 0;
- }
- static mode_t samsung_sysfs_is_visible(struct kobject *kobj,
- struct attribute *attr, int idx)
- {
- struct device *dev = container_of(kobj, struct device, kobj);
- struct platform_device *pdev = to_platform_device(dev);
- struct samsung_laptop *samsung = platform_get_drvdata(pdev);
- bool ok = true;
- if (attr == &dev_attr_performance_level.attr)
- ok = !!samsung->config->performance_levels[0].name;
- return ok ? attr->mode : 0;
- }
- static struct attribute_group platform_attribute_group = {
- .is_visible = samsung_sysfs_is_visible,
- .attrs = platform_attributes
- };
- static void samsung_sysfs_exit(struct samsung_laptop *samsung)
- {
- struct platform_device *device = samsung->platform_device;
- sysfs_remove_group(&device->dev.kobj, &platform_attribute_group);
- }
- static int __init samsung_sysfs_init(struct samsung_laptop *samsung)
- {
- struct platform_device *device = samsung->platform_device;
- return sysfs_create_group(&device->dev.kobj, &platform_attribute_group);
- }
- static void samsung_sabi_exit(struct samsung_laptop *samsung)
- {
- const struct sabi_config *config = samsung->config;
- /* Turn off "Linux" mode in the BIOS */
- if (config && config->commands.set_linux != 0xff)
- sabi_set_commandb(samsung, config->commands.set_linux, 0x80);
- if (samsung->sabi_iface) {
- iounmap(samsung->sabi_iface);
- samsung->sabi_iface = NULL;
- }
- if (samsung->f0000_segment) {
- iounmap(samsung->f0000_segment);
- samsung->f0000_segment = NULL;
- }
- samsung->config = NULL;
- }
- static __init void samsung_sabi_infos(struct samsung_laptop *samsung, int loca)
- {
- const struct sabi_config *config = samsung->config;
- printk(KERN_DEBUG "This computer supports SABI==%x\n",
- loca + 0xf0000 - 6);
- printk(KERN_DEBUG "SABI header:\n");
- printk(KERN_DEBUG " SMI Port Number = 0x%04x\n",
- readw(samsung->sabi + config->header_offsets.port));
- printk(KERN_DEBUG " SMI Interface Function = 0x%02x\n",
- readb(samsung->sabi + config->header_offsets.iface_func));
- printk(KERN_DEBUG " SMI enable memory buffer = 0x%02x\n",
- readb(samsung->sabi + config->header_offsets.en_mem));
- printk(KERN_DEBUG " SMI restore memory buffer = 0x%02x\n",
- readb(samsung->sabi + config->header_offsets.re_mem));
- printk(KERN_DEBUG " SABI data offset = 0x%04x\n",
- readw(samsung->sabi + config->header_offsets.data_offset));
- printk(KERN_DEBUG " SABI data segment = 0x%04x\n",
- readw(samsung->sabi + config->header_offsets.data_segment));
- }
- static void __init samsung_sabi_selftest(struct samsung_laptop *samsung,
- unsigned int ifaceP)
- {
- const struct sabi_config *config = samsung->config;
- struct sabi_data sretval;
- printk(KERN_DEBUG "ifaceP = 0x%08x\n", ifaceP);
- printk(KERN_DEBUG "sabi_iface = %p\n", samsung->sabi_iface);
- if (samsung->handle_backlight)
- test_backlight(samsung);
- test_wireless(samsung);
- sabi_command(samsung, config->commands.get_brightness, NULL, &sretval);
- printk(KERN_DEBUG "brightness = 0x%02x\n", sretval.data[0]);
- }
- static int __init samsung_sabi_init(struct samsung_laptop *samsung)
- {
- const struct sabi_config *config = NULL;
- const struct sabi_commands *commands;
- unsigned int ifaceP;
- int ret = 0;
- int i;
- int loca;
- samsung->f0000_segment = ioremap_nocache(0xf0000, 0xffff);
- if (!samsung->f0000_segment) {
- pr_err("Can't map the segment at 0xf0000\n");
- ret = -EINVAL;
- goto exit;
- }
- /* Try to find one of the signatures in memory to find the header */
- for (i = 0; sabi_configs[i].test_string != 0; ++i) {
- samsung->config = &sabi_configs[i];
- loca = find_signature(samsung->f0000_segment,
- samsung->config->test_string);
- if (loca != 0xffff)
- break;
- }
- if (loca == 0xffff) {
- pr_err("This computer does not support SABI\n");
- ret = -ENODEV;
- goto exit;
- }
- config = samsung->config;
- commands = &config->commands;
- /* point to the SMI port Number */
- loca += 1;
- samsung->sabi = (samsung->f0000_segment + loca);
- if (debug)
- samsung_sabi_infos(samsung, loca);
- /* Get a pointer to the SABI Interface */
- ifaceP = (readw(samsung->sabi + config->header_offsets.data_segment) & 0x0ffff) << 4;
- ifaceP += readw(samsung->sabi + config->header_offsets.data_offset) & 0x0ffff;
- samsung->sabi_iface = ioremap_nocache(ifaceP, 16);
- if (!samsung->sabi_iface) {
- pr_err("Can't remap %x\n", ifaceP);
- ret = -EINVAL;
- goto exit;
- }
- if (debug)
- samsung_sabi_selftest(samsung, ifaceP);
- /* Turn on "Linux" mode in the BIOS */
- if (commands->set_linux != 0xff) {
- int retval = sabi_set_commandb(samsung,
- commands->set_linux, 0x81);
- if (retval) {
- pr_warn("Linux mode was not set!\n");
- ret = -ENODEV;
- goto exit;
- }
- }
- /* Check for stepping quirk */
- if (samsung->handle_backlight)
- check_for_stepping_quirk(samsung);
- exit:
- if (ret)
- samsung_sabi_exit(samsung);
- return ret;
- }
- static void samsung_platform_exit(struct samsung_laptop *samsung)
- {
- if (samsung->platform_device) {
- platform_device_unregister(samsung->platform_device);
- samsung->platform_device = NULL;
- }
- }
- static int __init samsung_platform_init(struct samsung_laptop *samsung)
- {
- struct platform_device *pdev;
- pdev = platform_device_register_simple("samsung", -1, NULL, 0);
- if (IS_ERR(pdev))
- return PTR_ERR(pdev);
- samsung->platform_device = pdev;
- platform_set_drvdata(samsung->platform_device, samsung);
- return 0;
- }
- static int __init dmi_check_cb(const struct dmi_system_id *id)
- {
- pr_info("found laptop model '%s'\n", id->ident);
- return 1;
- }
- static struct dmi_system_id __initdata samsung_dmi_table[] = {
- {
- .ident = "N128",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N128"),
- DMI_MATCH(DMI_BOARD_NAME, "N128"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "N130",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N130"),
- DMI_MATCH(DMI_BOARD_NAME, "N130"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "N510",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N510"),
- DMI_MATCH(DMI_BOARD_NAME, "N510"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "X125",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "X125"),
- DMI_MATCH(DMI_BOARD_NAME, "X125"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "X120/X170",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "X120/X170"),
- DMI_MATCH(DMI_BOARD_NAME, "X120/X170"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "NC10",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "NC10"),
- DMI_MATCH(DMI_BOARD_NAME, "NC10"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "NP-Q45",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "SQ45S70S"),
- DMI_MATCH(DMI_BOARD_NAME, "SQ45S70S"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "X360",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "X360"),
- DMI_MATCH(DMI_BOARD_NAME, "X360"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "R410 Plus",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "R410P"),
- DMI_MATCH(DMI_BOARD_NAME, "R460"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "R518",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "R518"),
- DMI_MATCH(DMI_BOARD_NAME, "R518"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "R519/R719",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "R519/R719"),
- DMI_MATCH(DMI_BOARD_NAME, "R519/R719"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "N150/N210/N220",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N150/N210/N220"),
- DMI_MATCH(DMI_BOARD_NAME, "N150/N210/N220"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "N220",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N220"),
- DMI_MATCH(DMI_BOARD_NAME, "N220"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "N150/N210/N220/N230",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N150/N210/N220/N230"),
- DMI_MATCH(DMI_BOARD_NAME, "N150/N210/N220/N230"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "N150P/N210P/N220P",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N150P/N210P/N220P"),
- DMI_MATCH(DMI_BOARD_NAME, "N150P/N210P/N220P"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "R700",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "SR700"),
- DMI_MATCH(DMI_BOARD_NAME, "SR700"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "R530/R730",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "R530/R730"),
- DMI_MATCH(DMI_BOARD_NAME, "R530/R730"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "NF110/NF210/NF310",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "NF110/NF210/NF310"),
- DMI_MATCH(DMI_BOARD_NAME, "NF110/NF210/NF310"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "N145P/N250P/N260P",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "N145P/N250P/N260P"),
- DMI_MATCH(DMI_BOARD_NAME, "N145P/N250P/N260P"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "R70/R71",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR,
- "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "R70/R71"),
- DMI_MATCH(DMI_BOARD_NAME, "R70/R71"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "P460",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "P460"),
- DMI_MATCH(DMI_BOARD_NAME, "P460"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "R528/R728",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "R528/R728"),
- DMI_MATCH(DMI_BOARD_NAME, "R528/R728"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "NC210/NC110",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "NC210/NC110"),
- DMI_MATCH(DMI_BOARD_NAME, "NC210/NC110"),
- },
- .callback = dmi_check_cb,
- },
- {
- .ident = "X520",
- .matches = {
- DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
- DMI_MATCH(DMI_PRODUCT_NAME, "X520"),
- DMI_MATCH(DMI_BOARD_NAME, "X520"),
- },
- .callback = dmi_check_cb,
- },
- { },
- };
- MODULE_DEVICE_TABLE(dmi, samsung_dmi_table);
- static struct platform_device *samsung_platform_device;
- static int __init samsung_init(void)
- {
- struct samsung_laptop *samsung;
- int ret;
- if (!force && !dmi_check_system(samsung_dmi_table))
- return -ENODEV;
- samsung = kzalloc(sizeof(*samsung), GFP_KERNEL);
- if (!samsung)
- return -ENOMEM;
- mutex_init(&samsung->sabi_mutex);
- samsung->handle_backlight = true;
- #ifdef CONFIG_ACPI
- /* Don't handle backlight here if the acpi video already handle it */
- if (acpi_video_backlight_support()) {
- pr_info("Backlight controlled by ACPI video driver\n");
- samsung->handle_backlight = false;
- }
- #endif
- ret = samsung_platform_init(samsung);
- if (ret)
- goto error_platform;
- ret = samsung_sabi_init(samsung);
- if (ret)
- goto error_sabi;
- ret = samsung_sysfs_init(samsung);
- if (ret)
- goto error_sysfs;
- ret = samsung_backlight_init(samsung);
- if (ret)
- goto error_backlight;
- ret = samsung_rfkill_init(samsung);
- if (ret)
- goto error_rfkill;
- samsung_platform_device = samsung->platform_device;
- return ret;
- error_rfkill:
- samsung_backlight_exit(samsung);
- error_backlight:
- samsung_sysfs_exit(samsung);
- error_sysfs:
- samsung_sabi_exit(samsung);
- error_sabi:
- samsung_platform_exit(samsung);
- error_platform:
- kfree(samsung);
- return ret;
- }
- static void __exit samsung_exit(void)
- {
- struct samsung_laptop *samsung;
- samsung = platform_get_drvdata(samsung_platform_device);
- samsung_rfkill_exit(samsung);
- samsung_backlight_exit(samsung);
- samsung_sysfs_exit(samsung);
- samsung_sabi_exit(samsung);
- samsung_platform_exit(samsung);
- kfree(samsung);
- samsung_platform_device = NULL;
- }
- module_init(samsung_init);
- module_exit(samsung_exit);
- MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@suse.de>");
- MODULE_DESCRIPTION("Samsung Backlight driver");
- MODULE_LICENSE("GPL");
|