|
@@ -32,18 +32,9 @@
|
|
|
* features made available on a range of Fujitsu laptops including the
|
|
|
* P2xxx/P5xxx/S6xxx/S7xxx series.
|
|
|
*
|
|
|
- * This driver exports a few files in /sys/devices/platform/fujitsu-laptop/;
|
|
|
- * others may be added at a later date.
|
|
|
- *
|
|
|
- * lcd_level - Screen brightness: contains a single integer in the
|
|
|
- * range 0..7. (rw)
|
|
|
- *
|
|
|
- * In addition to these platform device attributes the driver
|
|
|
- * registers itself in the Linux backlight control subsystem and is
|
|
|
- * available to userspace under /sys/class/backlight/fujitsu-laptop/.
|
|
|
- *
|
|
|
- * Hotkeys present on certain Fujitsu laptops (eg: the S6xxx series) are
|
|
|
- * also supported by this driver.
|
|
|
+ * This driver implements a vendor-specific backlight control interface for
|
|
|
+ * Fujitsu laptops and provides support for hotkeys present on certain Fujitsu
|
|
|
+ * laptops.
|
|
|
*
|
|
|
* This driver has been tested on a Fujitsu Lifebook S6410, S7020 and
|
|
|
* P8010. It should work on most P-series and S-series Lifebooks, but
|
|
@@ -66,12 +57,11 @@
|
|
|
#include <linux/backlight.h>
|
|
|
#include <linux/fb.h>
|
|
|
#include <linux/input.h>
|
|
|
+#include <linux/input/sparse-keymap.h>
|
|
|
#include <linux/kfifo.h>
|
|
|
+#include <linux/leds.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/slab.h>
|
|
|
-#if IS_ENABLED(CONFIG_LEDS_CLASS)
|
|
|
-#include <linux/leds.h>
|
|
|
-#endif
|
|
|
#include <acpi/video.h>
|
|
|
|
|
|
#define FUJITSU_DRIVER_VERSION "0.6.0"
|
|
@@ -102,7 +92,6 @@
|
|
|
#define FLAG_LID 0x100
|
|
|
#define FLAG_DOCK 0x200
|
|
|
|
|
|
-#if IS_ENABLED(CONFIG_LEDS_CLASS)
|
|
|
/* FUNC interface - LED control */
|
|
|
#define FUNC_LED_OFF 0x1
|
|
|
#define FUNC_LED_ON 0x30001
|
|
@@ -112,7 +101,6 @@
|
|
|
#define RADIO_LED_ON 0x20
|
|
|
#define ECO_LED 0x10000
|
|
|
#define ECO_LED_ON 0x80000
|
|
|
-#endif
|
|
|
|
|
|
/* Hotkey details */
|
|
|
#define KEY1_CODE 0x410 /* codes for the keys in the GIRB register */
|
|
@@ -143,21 +131,16 @@
|
|
|
/* Device controlling the backlight and associated keys */
|
|
|
struct fujitsu_bl {
|
|
|
acpi_handle acpi_handle;
|
|
|
- struct acpi_device *dev;
|
|
|
struct input_dev *input;
|
|
|
char phys[32];
|
|
|
struct backlight_device *bl_device;
|
|
|
- struct platform_device *pf_device;
|
|
|
- int keycode1, keycode2, keycode3, keycode4, keycode5;
|
|
|
-
|
|
|
unsigned int max_brightness;
|
|
|
- unsigned int brightness_changed;
|
|
|
unsigned int brightness_level;
|
|
|
};
|
|
|
|
|
|
static struct fujitsu_bl *fujitsu_bl;
|
|
|
static int use_alt_lcd_levels = -1;
|
|
|
-static int disable_brightness_adjust = -1;
|
|
|
+static bool disable_brightness_adjust;
|
|
|
|
|
|
/* Device used to access hotkeys and other features on the laptop */
|
|
|
struct fujitsu_laptop {
|
|
@@ -170,247 +153,77 @@ struct fujitsu_laptop {
|
|
|
spinlock_t fifo_lock;
|
|
|
int flags_supported;
|
|
|
int flags_state;
|
|
|
- int logolamp_registered;
|
|
|
- int kblamps_registered;
|
|
|
- int radio_led_registered;
|
|
|
- int eco_led_registered;
|
|
|
};
|
|
|
|
|
|
static struct fujitsu_laptop *fujitsu_laptop;
|
|
|
|
|
|
-#if IS_ENABLED(CONFIG_LEDS_CLASS)
|
|
|
-static enum led_brightness logolamp_get(struct led_classdev *cdev);
|
|
|
-static int logolamp_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness);
|
|
|
-
|
|
|
-static struct led_classdev logolamp_led = {
|
|
|
- .name = "fujitsu::logolamp",
|
|
|
- .brightness_get = logolamp_get,
|
|
|
- .brightness_set_blocking = logolamp_set
|
|
|
-};
|
|
|
-
|
|
|
-static enum led_brightness kblamps_get(struct led_classdev *cdev);
|
|
|
-static int kblamps_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness);
|
|
|
-
|
|
|
-static struct led_classdev kblamps_led = {
|
|
|
- .name = "fujitsu::kblamps",
|
|
|
- .brightness_get = kblamps_get,
|
|
|
- .brightness_set_blocking = kblamps_set
|
|
|
-};
|
|
|
-
|
|
|
-static enum led_brightness radio_led_get(struct led_classdev *cdev);
|
|
|
-static int radio_led_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness);
|
|
|
-
|
|
|
-static struct led_classdev radio_led = {
|
|
|
- .name = "fujitsu::radio_led",
|
|
|
- .default_trigger = "rfkill-any",
|
|
|
- .brightness_get = radio_led_get,
|
|
|
- .brightness_set_blocking = radio_led_set
|
|
|
-};
|
|
|
-
|
|
|
-static enum led_brightness eco_led_get(struct led_classdev *cdev);
|
|
|
-static int eco_led_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness);
|
|
|
-
|
|
|
-static struct led_classdev eco_led = {
|
|
|
- .name = "fujitsu::eco_led",
|
|
|
- .brightness_get = eco_led_get,
|
|
|
- .brightness_set_blocking = eco_led_set
|
|
|
-};
|
|
|
-#endif
|
|
|
-
|
|
|
#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
|
|
|
static u32 dbg_level = 0x03;
|
|
|
#endif
|
|
|
|
|
|
/* Fujitsu ACPI interface function */
|
|
|
|
|
|
-static int call_fext_func(int cmd, int arg0, int arg1, int arg2)
|
|
|
+static int call_fext_func(int func, int op, int feature, int state)
|
|
|
{
|
|
|
- acpi_status status = AE_OK;
|
|
|
union acpi_object params[4] = {
|
|
|
- { .type = ACPI_TYPE_INTEGER },
|
|
|
- { .type = ACPI_TYPE_INTEGER },
|
|
|
- { .type = ACPI_TYPE_INTEGER },
|
|
|
- { .type = ACPI_TYPE_INTEGER }
|
|
|
+ { .integer.type = ACPI_TYPE_INTEGER, .integer.value = func },
|
|
|
+ { .integer.type = ACPI_TYPE_INTEGER, .integer.value = op },
|
|
|
+ { .integer.type = ACPI_TYPE_INTEGER, .integer.value = feature },
|
|
|
+ { .integer.type = ACPI_TYPE_INTEGER, .integer.value = state }
|
|
|
};
|
|
|
- struct acpi_object_list arg_list = { 4, ¶ms[0] };
|
|
|
+ struct acpi_object_list arg_list = { 4, params };
|
|
|
unsigned long long value;
|
|
|
- acpi_handle handle = NULL;
|
|
|
+ acpi_status status;
|
|
|
|
|
|
- status = acpi_get_handle(fujitsu_laptop->acpi_handle, "FUNC", &handle);
|
|
|
+ status = acpi_evaluate_integer(fujitsu_laptop->acpi_handle, "FUNC",
|
|
|
+ &arg_list, &value);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_ERROR,
|
|
|
- "FUNC interface is not present\n");
|
|
|
+ vdbg_printk(FUJLAPTOP_DBG_ERROR, "Failed to evaluate FUNC\n");
|
|
|
return -ENODEV;
|
|
|
}
|
|
|
|
|
|
- params[0].integer.value = cmd;
|
|
|
- params[1].integer.value = arg0;
|
|
|
- params[2].integer.value = arg1;
|
|
|
- params[3].integer.value = arg2;
|
|
|
-
|
|
|
- status = acpi_evaluate_integer(handle, NULL, &arg_list, &value);
|
|
|
- if (ACPI_FAILURE(status)) {
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_WARN,
|
|
|
- "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) call failed\n",
|
|
|
- cmd, arg0, arg1, arg2);
|
|
|
- return -ENODEV;
|
|
|
- }
|
|
|
-
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_TRACE,
|
|
|
- "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n",
|
|
|
- cmd, arg0, arg1, arg2, (int)value);
|
|
|
+ vdbg_printk(FUJLAPTOP_DBG_TRACE, "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n",
|
|
|
+ func, op, feature, state, (int)value);
|
|
|
return value;
|
|
|
}
|
|
|
|
|
|
-#if IS_ENABLED(CONFIG_LEDS_CLASS)
|
|
|
-/* LED class callbacks */
|
|
|
-
|
|
|
-static int logolamp_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness)
|
|
|
-{
|
|
|
- int poweron = FUNC_LED_ON, always = FUNC_LED_ON;
|
|
|
- int ret;
|
|
|
-
|
|
|
- if (brightness < LED_HALF)
|
|
|
- poweron = FUNC_LED_OFF;
|
|
|
-
|
|
|
- if (brightness < LED_FULL)
|
|
|
- always = FUNC_LED_OFF;
|
|
|
-
|
|
|
- ret = call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, poweron);
|
|
|
- if (ret < 0)
|
|
|
- return ret;
|
|
|
-
|
|
|
- return call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, always);
|
|
|
-}
|
|
|
-
|
|
|
-static int kblamps_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness)
|
|
|
-{
|
|
|
- if (brightness >= LED_FULL)
|
|
|
- return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_ON);
|
|
|
- else
|
|
|
- return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_OFF);
|
|
|
-}
|
|
|
-
|
|
|
-static int radio_led_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness)
|
|
|
-{
|
|
|
- if (brightness >= LED_FULL)
|
|
|
- return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON, RADIO_LED_ON);
|
|
|
- else
|
|
|
- return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON, 0x0);
|
|
|
-}
|
|
|
-
|
|
|
-static int eco_led_set(struct led_classdev *cdev,
|
|
|
- enum led_brightness brightness)
|
|
|
-{
|
|
|
- int curr;
|
|
|
-
|
|
|
- curr = call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0);
|
|
|
- if (brightness >= LED_FULL)
|
|
|
- return call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr | ECO_LED_ON);
|
|
|
- else
|
|
|
- return call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr & ~ECO_LED_ON);
|
|
|
-}
|
|
|
-
|
|
|
-static enum led_brightness logolamp_get(struct led_classdev *cdev)
|
|
|
-{
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_ALWAYS, 0x0);
|
|
|
- if (ret == FUNC_LED_ON)
|
|
|
- return LED_FULL;
|
|
|
-
|
|
|
- ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_POWERON, 0x0);
|
|
|
- if (ret == FUNC_LED_ON)
|
|
|
- return LED_HALF;
|
|
|
-
|
|
|
- return LED_OFF;
|
|
|
-}
|
|
|
-
|
|
|
-static enum led_brightness kblamps_get(struct led_classdev *cdev)
|
|
|
-{
|
|
|
- enum led_brightness brightness = LED_OFF;
|
|
|
-
|
|
|
- if (call_fext_func(FUNC_LEDS, 0x2, KEYBOARD_LAMPS, 0x0) == FUNC_LED_ON)
|
|
|
- brightness = LED_FULL;
|
|
|
-
|
|
|
- return brightness;
|
|
|
-}
|
|
|
-
|
|
|
-static enum led_brightness radio_led_get(struct led_classdev *cdev)
|
|
|
-{
|
|
|
- enum led_brightness brightness = LED_OFF;
|
|
|
-
|
|
|
- if (call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0) & RADIO_LED_ON)
|
|
|
- brightness = LED_FULL;
|
|
|
-
|
|
|
- return brightness;
|
|
|
-}
|
|
|
-
|
|
|
-static enum led_brightness eco_led_get(struct led_classdev *cdev)
|
|
|
-{
|
|
|
- enum led_brightness brightness = LED_OFF;
|
|
|
-
|
|
|
- if (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) & ECO_LED_ON)
|
|
|
- brightness = LED_FULL;
|
|
|
-
|
|
|
- return brightness;
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
/* Hardware access for LCD brightness control */
|
|
|
|
|
|
static int set_lcd_level(int level)
|
|
|
{
|
|
|
- acpi_status status = AE_OK;
|
|
|
- acpi_handle handle = NULL;
|
|
|
-
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBLL [%d]\n",
|
|
|
- level);
|
|
|
+ acpi_status status;
|
|
|
+ char *method;
|
|
|
|
|
|
- if (level < 0 || level >= fujitsu_bl->max_brightness)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- status = acpi_get_handle(fujitsu_bl->acpi_handle, "SBLL", &handle);
|
|
|
- if (ACPI_FAILURE(status)) {
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBLL not present\n");
|
|
|
- return -ENODEV;
|
|
|
+ switch (use_alt_lcd_levels) {
|
|
|
+ case -1:
|
|
|
+ if (acpi_has_method(fujitsu_bl->acpi_handle, "SBL2"))
|
|
|
+ method = "SBL2";
|
|
|
+ else
|
|
|
+ method = "SBLL";
|
|
|
+ break;
|
|
|
+ case 1:
|
|
|
+ method = "SBL2";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ method = "SBLL";
|
|
|
+ break;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- status = acpi_execute_simple_method(handle, NULL, level);
|
|
|
- if (ACPI_FAILURE(status))
|
|
|
- return -ENODEV;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int set_lcd_level_alt(int level)
|
|
|
-{
|
|
|
- acpi_status status = AE_OK;
|
|
|
- acpi_handle handle = NULL;
|
|
|
-
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBL2 [%d]\n",
|
|
|
- level);
|
|
|
+ vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via %s [%d]\n",
|
|
|
+ method, level);
|
|
|
|
|
|
if (level < 0 || level >= fujitsu_bl->max_brightness)
|
|
|
return -EINVAL;
|
|
|
|
|
|
- status = acpi_get_handle(fujitsu_bl->acpi_handle, "SBL2", &handle);
|
|
|
+ status = acpi_execute_simple_method(fujitsu_bl->acpi_handle, method,
|
|
|
+ level);
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBL2 not present\n");
|
|
|
+ vdbg_printk(FUJLAPTOP_DBG_ERROR, "Failed to evaluate %s\n",
|
|
|
+ method);
|
|
|
return -ENODEV;
|
|
|
}
|
|
|
|
|
|
- status = acpi_execute_simple_method(handle, NULL, level);
|
|
|
- if (ACPI_FAILURE(status))
|
|
|
- return -ENODEV;
|
|
|
+ fujitsu_bl->brightness_level = level;
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
@@ -429,11 +242,6 @@ static int get_lcd_level(void)
|
|
|
|
|
|
fujitsu_bl->brightness_level = state & 0x0fffffff;
|
|
|
|
|
|
- if (state & 0x80000000)
|
|
|
- fujitsu_bl->brightness_changed = 1;
|
|
|
- else
|
|
|
- fujitsu_bl->brightness_changed = 0;
|
|
|
-
|
|
|
return fujitsu_bl->brightness_level;
|
|
|
}
|
|
|
|
|
@@ -458,30 +266,17 @@ static int get_max_brightness(void)
|
|
|
|
|
|
static int bl_get_brightness(struct backlight_device *b)
|
|
|
{
|
|
|
- return get_lcd_level();
|
|
|
+ return b->props.power == FB_BLANK_POWERDOWN ? 0 : get_lcd_level();
|
|
|
}
|
|
|
|
|
|
static int bl_update_status(struct backlight_device *b)
|
|
|
{
|
|
|
- int ret;
|
|
|
if (b->props.power == FB_BLANK_POWERDOWN)
|
|
|
- ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3);
|
|
|
- else
|
|
|
- ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0);
|
|
|
- if (ret != 0)
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_ERROR,
|
|
|
- "Unable to adjust backlight power, error code %i\n",
|
|
|
- ret);
|
|
|
-
|
|
|
- if (use_alt_lcd_levels)
|
|
|
- ret = set_lcd_level_alt(b->props.brightness);
|
|
|
+ call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3);
|
|
|
else
|
|
|
- ret = set_lcd_level(b->props.brightness);
|
|
|
- if (ret != 0)
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_ERROR,
|
|
|
- "Unable to adjust LCD brightness, error code %i\n",
|
|
|
- ret);
|
|
|
- return ret;
|
|
|
+ call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0);
|
|
|
+
|
|
|
+ return set_lcd_level(b->props.brightness);
|
|
|
}
|
|
|
|
|
|
static const struct backlight_ops fujitsu_bl_ops = {
|
|
@@ -489,84 +284,8 @@ static const struct backlight_ops fujitsu_bl_ops = {
|
|
|
.update_status = bl_update_status,
|
|
|
};
|
|
|
|
|
|
-/* Platform LCD brightness device */
|
|
|
-
|
|
|
-static ssize_t
|
|
|
-show_max_brightness(struct device *dev,
|
|
|
- struct device_attribute *attr, char *buf)
|
|
|
-{
|
|
|
-
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = get_max_brightness();
|
|
|
- if (ret < 0)
|
|
|
- return ret;
|
|
|
-
|
|
|
- return sprintf(buf, "%i\n", ret);
|
|
|
-}
|
|
|
-
|
|
|
-static ssize_t
|
|
|
-show_brightness_changed(struct device *dev,
|
|
|
- struct device_attribute *attr, char *buf)
|
|
|
-{
|
|
|
-
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = fujitsu_bl->brightness_changed;
|
|
|
- if (ret < 0)
|
|
|
- return ret;
|
|
|
-
|
|
|
- return sprintf(buf, "%i\n", ret);
|
|
|
-}
|
|
|
-
|
|
|
-static ssize_t show_lcd_level(struct device *dev,
|
|
|
- struct device_attribute *attr, char *buf)
|
|
|
-{
|
|
|
-
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = get_lcd_level();
|
|
|
- if (ret < 0)
|
|
|
- return ret;
|
|
|
-
|
|
|
- return sprintf(buf, "%i\n", ret);
|
|
|
-}
|
|
|
-
|
|
|
-static ssize_t store_lcd_level(struct device *dev,
|
|
|
- struct device_attribute *attr, const char *buf,
|
|
|
- size_t count)
|
|
|
-{
|
|
|
-
|
|
|
- int level, ret;
|
|
|
-
|
|
|
- if (sscanf(buf, "%i", &level) != 1
|
|
|
- || (level < 0 || level >= fujitsu_bl->max_brightness))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- if (use_alt_lcd_levels)
|
|
|
- ret = set_lcd_level_alt(level);
|
|
|
- else
|
|
|
- ret = set_lcd_level(level);
|
|
|
- if (ret < 0)
|
|
|
- return ret;
|
|
|
-
|
|
|
- ret = get_lcd_level();
|
|
|
- if (ret < 0)
|
|
|
- return ret;
|
|
|
-
|
|
|
- return count;
|
|
|
-}
|
|
|
-
|
|
|
-static ssize_t
|
|
|
-ignore_store(struct device *dev,
|
|
|
- struct device_attribute *attr, const char *buf, size_t count)
|
|
|
-{
|
|
|
- return count;
|
|
|
-}
|
|
|
-
|
|
|
-static ssize_t
|
|
|
-show_lid_state(struct device *dev,
|
|
|
- struct device_attribute *attr, char *buf)
|
|
|
+static ssize_t lid_show(struct device *dev, struct device_attribute *attr,
|
|
|
+ char *buf)
|
|
|
{
|
|
|
if (!(fujitsu_laptop->flags_supported & FLAG_LID))
|
|
|
return sprintf(buf, "unknown\n");
|
|
@@ -576,9 +295,8 @@ show_lid_state(struct device *dev,
|
|
|
return sprintf(buf, "closed\n");
|
|
|
}
|
|
|
|
|
|
-static ssize_t
|
|
|
-show_dock_state(struct device *dev,
|
|
|
- struct device_attribute *attr, char *buf)
|
|
|
+static ssize_t dock_show(struct device *dev, struct device_attribute *attr,
|
|
|
+ char *buf)
|
|
|
{
|
|
|
if (!(fujitsu_laptop->flags_supported & FLAG_DOCK))
|
|
|
return sprintf(buf, "unknown\n");
|
|
@@ -588,9 +306,8 @@ show_dock_state(struct device *dev,
|
|
|
return sprintf(buf, "undocked\n");
|
|
|
}
|
|
|
|
|
|
-static ssize_t
|
|
|
-show_radios_state(struct device *dev,
|
|
|
- struct device_attribute *attr, char *buf)
|
|
|
+static ssize_t radios_show(struct device *dev, struct device_attribute *attr,
|
|
|
+ char *buf)
|
|
|
{
|
|
|
if (!(fujitsu_laptop->flags_supported & FLAG_RFKILL))
|
|
|
return sprintf(buf, "unknown\n");
|
|
@@ -600,18 +317,11 @@ show_radios_state(struct device *dev,
|
|
|
return sprintf(buf, "killed\n");
|
|
|
}
|
|
|
|
|
|
-static DEVICE_ATTR(max_brightness, 0444, show_max_brightness, ignore_store);
|
|
|
-static DEVICE_ATTR(brightness_changed, 0444, show_brightness_changed,
|
|
|
- ignore_store);
|
|
|
-static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level);
|
|
|
-static DEVICE_ATTR(lid, 0444, show_lid_state, ignore_store);
|
|
|
-static DEVICE_ATTR(dock, 0444, show_dock_state, ignore_store);
|
|
|
-static DEVICE_ATTR(radios, 0444, show_radios_state, ignore_store);
|
|
|
+static DEVICE_ATTR_RO(lid);
|
|
|
+static DEVICE_ATTR_RO(dock);
|
|
|
+static DEVICE_ATTR_RO(radios);
|
|
|
|
|
|
static struct attribute *fujitsu_pf_attributes[] = {
|
|
|
- &dev_attr_brightness_changed.attr,
|
|
|
- &dev_attr_max_brightness.attr,
|
|
|
- &dev_attr_lcd_level.attr,
|
|
|
&dev_attr_lid.attr,
|
|
|
&dev_attr_dock.attr,
|
|
|
&dev_attr_radios.attr,
|
|
@@ -628,69 +338,66 @@ static struct platform_driver fujitsu_pf_driver = {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-static void __init dmi_check_cb_common(const struct dmi_system_id *id)
|
|
|
-{
|
|
|
- pr_info("Identified laptop model '%s'\n", id->ident);
|
|
|
-}
|
|
|
+/* ACPI device for LCD brightness control */
|
|
|
|
|
|
-static int __init dmi_check_cb_s6410(const struct dmi_system_id *id)
|
|
|
-{
|
|
|
- dmi_check_cb_common(id);
|
|
|
- fujitsu_bl->keycode1 = KEY_SCREENLOCK; /* "Lock" */
|
|
|
- fujitsu_bl->keycode2 = KEY_HELP; /* "Mobility Center" */
|
|
|
- return 1;
|
|
|
-}
|
|
|
+static const struct key_entry keymap_backlight[] = {
|
|
|
+ { KE_KEY, true, { KEY_BRIGHTNESSUP } },
|
|
|
+ { KE_KEY, false, { KEY_BRIGHTNESSDOWN } },
|
|
|
+ { KE_END, 0 }
|
|
|
+};
|
|
|
|
|
|
-static int __init dmi_check_cb_s6420(const struct dmi_system_id *id)
|
|
|
+static int acpi_fujitsu_bl_input_setup(struct acpi_device *device)
|
|
|
{
|
|
|
- dmi_check_cb_common(id);
|
|
|
- fujitsu_bl->keycode1 = KEY_SCREENLOCK; /* "Lock" */
|
|
|
- fujitsu_bl->keycode2 = KEY_HELP; /* "Mobility Center" */
|
|
|
- return 1;
|
|
|
+ struct fujitsu_bl *fujitsu_bl = acpi_driver_data(device);
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ fujitsu_bl->input = devm_input_allocate_device(&device->dev);
|
|
|
+ if (!fujitsu_bl->input)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ snprintf(fujitsu_bl->phys, sizeof(fujitsu_bl->phys),
|
|
|
+ "%s/video/input0", acpi_device_hid(device));
|
|
|
+
|
|
|
+ fujitsu_bl->input->name = acpi_device_name(device);
|
|
|
+ fujitsu_bl->input->phys = fujitsu_bl->phys;
|
|
|
+ fujitsu_bl->input->id.bustype = BUS_HOST;
|
|
|
+ fujitsu_bl->input->id.product = 0x06;
|
|
|
+
|
|
|
+ ret = sparse_keymap_setup(fujitsu_bl->input, keymap_backlight, NULL);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ return input_register_device(fujitsu_bl->input);
|
|
|
}
|
|
|
|
|
|
-static int __init dmi_check_cb_p8010(const struct dmi_system_id *id)
|
|
|
+static int fujitsu_backlight_register(struct acpi_device *device)
|
|
|
{
|
|
|
- dmi_check_cb_common(id);
|
|
|
- fujitsu_bl->keycode1 = KEY_HELP; /* "Support" */
|
|
|
- fujitsu_bl->keycode3 = KEY_SWITCHVIDEOMODE; /* "Presentation" */
|
|
|
- fujitsu_bl->keycode4 = KEY_WWW; /* "Internet" */
|
|
|
- return 1;
|
|
|
-}
|
|
|
+ const struct backlight_properties props = {
|
|
|
+ .brightness = fujitsu_bl->brightness_level,
|
|
|
+ .max_brightness = fujitsu_bl->max_brightness - 1,
|
|
|
+ .type = BACKLIGHT_PLATFORM
|
|
|
+ };
|
|
|
+ struct backlight_device *bd;
|
|
|
|
|
|
-static const struct dmi_system_id fujitsu_dmi_table[] __initconst = {
|
|
|
- {
|
|
|
- .ident = "Fujitsu Siemens S6410",
|
|
|
- .matches = {
|
|
|
- DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
|
|
- DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6410"),
|
|
|
- },
|
|
|
- .callback = dmi_check_cb_s6410},
|
|
|
- {
|
|
|
- .ident = "Fujitsu Siemens S6420",
|
|
|
- .matches = {
|
|
|
- DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
|
|
- DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6420"),
|
|
|
- },
|
|
|
- .callback = dmi_check_cb_s6420},
|
|
|
- {
|
|
|
- .ident = "Fujitsu LifeBook P8010",
|
|
|
- .matches = {
|
|
|
- DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
|
|
|
- DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P8010"),
|
|
|
- },
|
|
|
- .callback = dmi_check_cb_p8010},
|
|
|
- {}
|
|
|
-};
|
|
|
+ bd = devm_backlight_device_register(&device->dev, "fujitsu-laptop",
|
|
|
+ &device->dev, NULL,
|
|
|
+ &fujitsu_bl_ops, &props);
|
|
|
+ if (IS_ERR(bd))
|
|
|
+ return PTR_ERR(bd);
|
|
|
|
|
|
-/* ACPI device for LCD brightness control */
|
|
|
+ fujitsu_bl->bl_device = bd;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
|
|
|
static int acpi_fujitsu_bl_add(struct acpi_device *device)
|
|
|
{
|
|
|
int state = 0;
|
|
|
- struct input_dev *input;
|
|
|
int error;
|
|
|
|
|
|
+ if (acpi_video_get_backlight_type() != acpi_backlight_vendor)
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
if (!device)
|
|
|
return -EINVAL;
|
|
|
|
|
@@ -699,41 +406,20 @@ static int acpi_fujitsu_bl_add(struct acpi_device *device)
|
|
|
sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS);
|
|
|
device->driver_data = fujitsu_bl;
|
|
|
|
|
|
- fujitsu_bl->input = input = input_allocate_device();
|
|
|
- if (!input) {
|
|
|
- error = -ENOMEM;
|
|
|
- goto err_stop;
|
|
|
- }
|
|
|
-
|
|
|
- snprintf(fujitsu_bl->phys, sizeof(fujitsu_bl->phys),
|
|
|
- "%s/video/input0", acpi_device_hid(device));
|
|
|
-
|
|
|
- input->name = acpi_device_name(device);
|
|
|
- input->phys = fujitsu_bl->phys;
|
|
|
- input->id.bustype = BUS_HOST;
|
|
|
- input->id.product = 0x06;
|
|
|
- input->dev.parent = &device->dev;
|
|
|
- input->evbit[0] = BIT(EV_KEY);
|
|
|
- set_bit(KEY_BRIGHTNESSUP, input->keybit);
|
|
|
- set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
|
|
|
- set_bit(KEY_UNKNOWN, input->keybit);
|
|
|
-
|
|
|
- error = input_register_device(input);
|
|
|
+ error = acpi_fujitsu_bl_input_setup(device);
|
|
|
if (error)
|
|
|
- goto err_free_input_dev;
|
|
|
+ return error;
|
|
|
|
|
|
error = acpi_bus_update_power(fujitsu_bl->acpi_handle, &state);
|
|
|
if (error) {
|
|
|
pr_err("Error reading power state\n");
|
|
|
- goto err_unregister_input_dev;
|
|
|
+ return error;
|
|
|
}
|
|
|
|
|
|
pr_info("ACPI: %s [%s] (%s)\n",
|
|
|
acpi_device_name(device), acpi_device_bid(device),
|
|
|
!device->power.state ? "on" : "off");
|
|
|
|
|
|
- fujitsu_bl->dev = device;
|
|
|
-
|
|
|
if (acpi_has_method(device->handle, METHOD_NAME__INI)) {
|
|
|
vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n");
|
|
|
if (ACPI_FAILURE
|
|
@@ -742,110 +428,348 @@ static int acpi_fujitsu_bl_add(struct acpi_device *device)
|
|
|
pr_err("_INI Method failed\n");
|
|
|
}
|
|
|
|
|
|
- if (use_alt_lcd_levels == -1) {
|
|
|
- if (acpi_has_method(NULL, "\\_SB.PCI0.LPCB.FJEX.SBL2"))
|
|
|
- use_alt_lcd_levels = 1;
|
|
|
- else
|
|
|
- use_alt_lcd_levels = 0;
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_TRACE, "auto-detected usealt as %i\n",
|
|
|
- use_alt_lcd_levels);
|
|
|
- }
|
|
|
-
|
|
|
- /* do config (detect defaults) */
|
|
|
- use_alt_lcd_levels = use_alt_lcd_levels == 1 ? 1 : 0;
|
|
|
- disable_brightness_adjust = disable_brightness_adjust == 1 ? 1 : 0;
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_INFO,
|
|
|
- "config: [alt interface: %d], [adjust disable: %d]\n",
|
|
|
- use_alt_lcd_levels, disable_brightness_adjust);
|
|
|
-
|
|
|
if (get_max_brightness() <= 0)
|
|
|
fujitsu_bl->max_brightness = FUJITSU_LCD_N_LEVELS;
|
|
|
get_lcd_level();
|
|
|
|
|
|
- return 0;
|
|
|
+ error = fujitsu_backlight_register(device);
|
|
|
+ if (error)
|
|
|
+ return error;
|
|
|
|
|
|
-err_unregister_input_dev:
|
|
|
- input_unregister_device(input);
|
|
|
- input = NULL;
|
|
|
-err_free_input_dev:
|
|
|
- input_free_device(input);
|
|
|
-err_stop:
|
|
|
- return error;
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
-static int acpi_fujitsu_bl_remove(struct acpi_device *device)
|
|
|
-{
|
|
|
- struct fujitsu_bl *fujitsu_bl = acpi_driver_data(device);
|
|
|
- struct input_dev *input = fujitsu_bl->input;
|
|
|
-
|
|
|
- input_unregister_device(input);
|
|
|
-
|
|
|
- fujitsu_bl->acpi_handle = NULL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-/* Brightness notify */
|
|
|
+/* Brightness notify */
|
|
|
|
|
|
static void acpi_fujitsu_bl_notify(struct acpi_device *device, u32 event)
|
|
|
{
|
|
|
struct input_dev *input;
|
|
|
- int keycode;
|
|
|
int oldb, newb;
|
|
|
|
|
|
input = fujitsu_bl->input;
|
|
|
|
|
|
- switch (event) {
|
|
|
- case ACPI_FUJITSU_NOTIFY_CODE1:
|
|
|
- keycode = 0;
|
|
|
- oldb = fujitsu_bl->brightness_level;
|
|
|
- get_lcd_level();
|
|
|
- newb = fujitsu_bl->brightness_level;
|
|
|
-
|
|
|
- vdbg_printk(FUJLAPTOP_DBG_TRACE,
|
|
|
- "brightness button event [%i -> %i (%i)]\n",
|
|
|
- oldb, newb, fujitsu_bl->brightness_changed);
|
|
|
-
|
|
|
- if (oldb < newb) {
|
|
|
- if (disable_brightness_adjust != 1) {
|
|
|
- if (use_alt_lcd_levels)
|
|
|
- set_lcd_level_alt(newb);
|
|
|
- else
|
|
|
- set_lcd_level(newb);
|
|
|
- }
|
|
|
- keycode = KEY_BRIGHTNESSUP;
|
|
|
- } else if (oldb > newb) {
|
|
|
- if (disable_brightness_adjust != 1) {
|
|
|
- if (use_alt_lcd_levels)
|
|
|
- set_lcd_level_alt(newb);
|
|
|
- else
|
|
|
- set_lcd_level(newb);
|
|
|
- }
|
|
|
- keycode = KEY_BRIGHTNESSDOWN;
|
|
|
- }
|
|
|
- break;
|
|
|
- default:
|
|
|
- keycode = KEY_UNKNOWN;
|
|
|
+ if (event != ACPI_FUJITSU_NOTIFY_CODE1) {
|
|
|
vdbg_printk(FUJLAPTOP_DBG_WARN,
|
|
|
"unsupported event [0x%x]\n", event);
|
|
|
- break;
|
|
|
+ sparse_keymap_report_event(input, -1, 1, true);
|
|
|
+ return;
|
|
|
}
|
|
|
|
|
|
- if (keycode != 0) {
|
|
|
- input_report_key(input, keycode, 1);
|
|
|
- input_sync(input);
|
|
|
- input_report_key(input, keycode, 0);
|
|
|
- input_sync(input);
|
|
|
- }
|
|
|
+ oldb = fujitsu_bl->brightness_level;
|
|
|
+ get_lcd_level();
|
|
|
+ newb = fujitsu_bl->brightness_level;
|
|
|
+
|
|
|
+ vdbg_printk(FUJLAPTOP_DBG_TRACE, "brightness button event [%i -> %i]\n",
|
|
|
+ oldb, newb);
|
|
|
+
|
|
|
+ if (oldb == newb)
|
|
|
+ return;
|
|
|
+
|
|
|
+ if (!disable_brightness_adjust)
|
|
|
+ set_lcd_level(newb);
|
|
|
+
|
|
|
+ sparse_keymap_report_event(input, oldb < newb, 1, true);
|
|
|
}
|
|
|
|
|
|
/* ACPI device for hotkey handling */
|
|
|
|
|
|
+static const struct key_entry keymap_default[] = {
|
|
|
+ { KE_KEY, KEY1_CODE, { KEY_PROG1 } },
|
|
|
+ { KE_KEY, KEY2_CODE, { KEY_PROG2 } },
|
|
|
+ { KE_KEY, KEY3_CODE, { KEY_PROG3 } },
|
|
|
+ { KE_KEY, KEY4_CODE, { KEY_PROG4 } },
|
|
|
+ { KE_KEY, KEY5_CODE, { KEY_RFKILL } },
|
|
|
+ { KE_KEY, BIT(26), { KEY_TOUCHPAD_TOGGLE } },
|
|
|
+ { KE_END, 0 }
|
|
|
+};
|
|
|
+
|
|
|
+static const struct key_entry keymap_s64x0[] = {
|
|
|
+ { KE_KEY, KEY1_CODE, { KEY_SCREENLOCK } }, /* "Lock" */
|
|
|
+ { KE_KEY, KEY2_CODE, { KEY_HELP } }, /* "Mobility Center */
|
|
|
+ { KE_KEY, KEY3_CODE, { KEY_PROG3 } },
|
|
|
+ { KE_KEY, KEY4_CODE, { KEY_PROG4 } },
|
|
|
+ { KE_END, 0 }
|
|
|
+};
|
|
|
+
|
|
|
+static const struct key_entry keymap_p8010[] = {
|
|
|
+ { KE_KEY, KEY1_CODE, { KEY_HELP } }, /* "Support" */
|
|
|
+ { KE_KEY, KEY2_CODE, { KEY_PROG2 } },
|
|
|
+ { KE_KEY, KEY3_CODE, { KEY_SWITCHVIDEOMODE } }, /* "Presentation" */
|
|
|
+ { KE_KEY, KEY4_CODE, { KEY_WWW } }, /* "WWW" */
|
|
|
+ { KE_END, 0 }
|
|
|
+};
|
|
|
+
|
|
|
+static const struct key_entry *keymap = keymap_default;
|
|
|
+
|
|
|
+static int fujitsu_laptop_dmi_keymap_override(const struct dmi_system_id *id)
|
|
|
+{
|
|
|
+ pr_info("Identified laptop model '%s'\n", id->ident);
|
|
|
+ keymap = id->driver_data;
|
|
|
+ return 1;
|
|
|
+}
|
|
|
+
|
|
|
+static const struct dmi_system_id fujitsu_laptop_dmi_table[] = {
|
|
|
+ {
|
|
|
+ .callback = fujitsu_laptop_dmi_keymap_override,
|
|
|
+ .ident = "Fujitsu Siemens S6410",
|
|
|
+ .matches = {
|
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
|
|
+ DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6410"),
|
|
|
+ },
|
|
|
+ .driver_data = (void *)keymap_s64x0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .callback = fujitsu_laptop_dmi_keymap_override,
|
|
|
+ .ident = "Fujitsu Siemens S6420",
|
|
|
+ .matches = {
|
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
|
|
|
+ DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6420"),
|
|
|
+ },
|
|
|
+ .driver_data = (void *)keymap_s64x0
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .callback = fujitsu_laptop_dmi_keymap_override,
|
|
|
+ .ident = "Fujitsu LifeBook P8010",
|
|
|
+ .matches = {
|
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
|
|
|
+ DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P8010"),
|
|
|
+ },
|
|
|
+ .driver_data = (void *)keymap_p8010
|
|
|
+ },
|
|
|
+ {}
|
|
|
+};
|
|
|
+
|
|
|
+static int acpi_fujitsu_laptop_input_setup(struct acpi_device *device)
|
|
|
+{
|
|
|
+ struct fujitsu_laptop *fujitsu_laptop = acpi_driver_data(device);
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ fujitsu_laptop->input = devm_input_allocate_device(&device->dev);
|
|
|
+ if (!fujitsu_laptop->input)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ snprintf(fujitsu_laptop->phys, sizeof(fujitsu_laptop->phys),
|
|
|
+ "%s/video/input0", acpi_device_hid(device));
|
|
|
+
|
|
|
+ fujitsu_laptop->input->name = acpi_device_name(device);
|
|
|
+ fujitsu_laptop->input->phys = fujitsu_laptop->phys;
|
|
|
+ fujitsu_laptop->input->id.bustype = BUS_HOST;
|
|
|
+ fujitsu_laptop->input->id.product = 0x06;
|
|
|
+
|
|
|
+ dmi_check_system(fujitsu_laptop_dmi_table);
|
|
|
+ ret = sparse_keymap_setup(fujitsu_laptop->input, keymap, NULL);
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ return input_register_device(fujitsu_laptop->input);
|
|
|
+}
|
|
|
+
|
|
|
+static int fujitsu_laptop_platform_add(void)
|
|
|
+{
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ fujitsu_laptop->pf_device = platform_device_alloc("fujitsu-laptop", -1);
|
|
|
+ if (!fujitsu_laptop->pf_device)
|
|
|
+ return -ENOMEM;
|
|
|
+
|
|
|
+ ret = platform_device_add(fujitsu_laptop->pf_device);
|
|
|
+ if (ret)
|
|
|
+ goto err_put_platform_device;
|
|
|
+
|
|
|
+ ret = sysfs_create_group(&fujitsu_laptop->pf_device->dev.kobj,
|
|
|
+ &fujitsu_pf_attribute_group);
|
|
|
+ if (ret)
|
|
|
+ goto err_del_platform_device;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+
|
|
|
+err_del_platform_device:
|
|
|
+ platform_device_del(fujitsu_laptop->pf_device);
|
|
|
+err_put_platform_device:
|
|
|
+ platform_device_put(fujitsu_laptop->pf_device);
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
+static void fujitsu_laptop_platform_remove(void)
|
|
|
+{
|
|
|
+ sysfs_remove_group(&fujitsu_laptop->pf_device->dev.kobj,
|
|
|
+ &fujitsu_pf_attribute_group);
|
|
|
+ platform_device_unregister(fujitsu_laptop->pf_device);
|
|
|
+}
|
|
|
+
|
|
|
+static int logolamp_set(struct led_classdev *cdev,
|
|
|
+ enum led_brightness brightness)
|
|
|
+{
|
|
|
+ int poweron = FUNC_LED_ON, always = FUNC_LED_ON;
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ if (brightness < LED_HALF)
|
|
|
+ poweron = FUNC_LED_OFF;
|
|
|
+
|
|
|
+ if (brightness < LED_FULL)
|
|
|
+ always = FUNC_LED_OFF;
|
|
|
+
|
|
|
+ ret = call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, poweron);
|
|
|
+ if (ret < 0)
|
|
|
+ return ret;
|
|
|
+
|
|
|
+ return call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, always);
|
|
|
+}
|
|
|
+
|
|
|
+static enum led_brightness logolamp_get(struct led_classdev *cdev)
|
|
|
+{
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_ALWAYS, 0x0);
|
|
|
+ if (ret == FUNC_LED_ON)
|
|
|
+ return LED_FULL;
|
|
|
+
|
|
|
+ ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_POWERON, 0x0);
|
|
|
+ if (ret == FUNC_LED_ON)
|
|
|
+ return LED_HALF;
|
|
|
+
|
|
|
+ return LED_OFF;
|
|
|
+}
|
|
|
+
|
|
|
+static struct led_classdev logolamp_led = {
|
|
|
+ .name = "fujitsu::logolamp",
|
|
|
+ .brightness_set_blocking = logolamp_set,
|
|
|
+ .brightness_get = logolamp_get
|
|
|
+};
|
|
|
+
|
|
|
+static int kblamps_set(struct led_classdev *cdev,
|
|
|
+ enum led_brightness brightness)
|
|
|
+{
|
|
|
+ if (brightness >= LED_FULL)
|
|
|
+ return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS,
|
|
|
+ FUNC_LED_ON);
|
|
|
+ else
|
|
|
+ return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS,
|
|
|
+ FUNC_LED_OFF);
|
|
|
+}
|
|
|
+
|
|
|
+static enum led_brightness kblamps_get(struct led_classdev *cdev)
|
|
|
+{
|
|
|
+ enum led_brightness brightness = LED_OFF;
|
|
|
+
|
|
|
+ if (call_fext_func(FUNC_LEDS, 0x2, KEYBOARD_LAMPS, 0x0) == FUNC_LED_ON)
|
|
|
+ brightness = LED_FULL;
|
|
|
+
|
|
|
+ return brightness;
|
|
|
+}
|
|
|
+
|
|
|
+static struct led_classdev kblamps_led = {
|
|
|
+ .name = "fujitsu::kblamps",
|
|
|
+ .brightness_set_blocking = kblamps_set,
|
|
|
+ .brightness_get = kblamps_get
|
|
|
+};
|
|
|
+
|
|
|
+static int radio_led_set(struct led_classdev *cdev,
|
|
|
+ enum led_brightness brightness)
|
|
|
+{
|
|
|
+ if (brightness >= LED_FULL)
|
|
|
+ return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON,
|
|
|
+ RADIO_LED_ON);
|
|
|
+ else
|
|
|
+ return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON, 0x0);
|
|
|
+}
|
|
|
+
|
|
|
+static enum led_brightness radio_led_get(struct led_classdev *cdev)
|
|
|
+{
|
|
|
+ enum led_brightness brightness = LED_OFF;
|
|
|
+
|
|
|
+ if (call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0) & RADIO_LED_ON)
|
|
|
+ brightness = LED_FULL;
|
|
|
+
|
|
|
+ return brightness;
|
|
|
+}
|
|
|
+
|
|
|
+static struct led_classdev radio_led = {
|
|
|
+ .name = "fujitsu::radio_led",
|
|
|
+ .brightness_set_blocking = radio_led_set,
|
|
|
+ .brightness_get = radio_led_get,
|
|
|
+ .default_trigger = "rfkill-any"
|
|
|
+};
|
|
|
+
|
|
|
+static int eco_led_set(struct led_classdev *cdev,
|
|
|
+ enum led_brightness brightness)
|
|
|
+{
|
|
|
+ int curr;
|
|
|
+
|
|
|
+ curr = call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0);
|
|
|
+ if (brightness >= LED_FULL)
|
|
|
+ return call_fext_func(FUNC_LEDS, 0x1, ECO_LED,
|
|
|
+ curr | ECO_LED_ON);
|
|
|
+ else
|
|
|
+ return call_fext_func(FUNC_LEDS, 0x1, ECO_LED,
|
|
|
+ curr & ~ECO_LED_ON);
|
|
|
+}
|
|
|
+
|
|
|
+static enum led_brightness eco_led_get(struct led_classdev *cdev)
|
|
|
+{
|
|
|
+ enum led_brightness brightness = LED_OFF;
|
|
|
+
|
|
|
+ if (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) & ECO_LED_ON)
|
|
|
+ brightness = LED_FULL;
|
|
|
+
|
|
|
+ return brightness;
|
|
|
+}
|
|
|
+
|
|
|
+static struct led_classdev eco_led = {
|
|
|
+ .name = "fujitsu::eco_led",
|
|
|
+ .brightness_set_blocking = eco_led_set,
|
|
|
+ .brightness_get = eco_led_get
|
|
|
+};
|
|
|
+
|
|
|
+static int acpi_fujitsu_laptop_leds_register(struct acpi_device *device)
|
|
|
+{
|
|
|
+ int result;
|
|
|
+
|
|
|
+ if (call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON) {
|
|
|
+ result = devm_led_classdev_register(&device->dev,
|
|
|
+ &logolamp_led);
|
|
|
+ if (result)
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS) &&
|
|
|
+ (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) == 0x0)) {
|
|
|
+ result = devm_led_classdev_register(&device->dev, &kblamps_led);
|
|
|
+ if (result)
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * BTNI bit 24 seems to indicate the presence of a radio toggle
|
|
|
+ * button in place of a slide switch, and all such machines appear
|
|
|
+ * to also have an RF LED. Therefore use bit 24 as an indicator
|
|
|
+ * that an RF LED is present.
|
|
|
+ */
|
|
|
+ if (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) & BIT(24)) {
|
|
|
+ result = devm_led_classdev_register(&device->dev, &radio_led);
|
|
|
+ if (result)
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* Support for eco led is not always signaled in bit corresponding
|
|
|
+ * to the bit used to control the led. According to the DSDT table,
|
|
|
+ * bit 14 seems to indicate presence of said led as well.
|
|
|
+ * Confirm by testing the status.
|
|
|
+ */
|
|
|
+ if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & BIT(14)) &&
|
|
|
+ (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) != UNSUPPORTED_CMD)) {
|
|
|
+ result = devm_led_classdev_register(&device->dev, &eco_led);
|
|
|
+ if (result)
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static int acpi_fujitsu_laptop_add(struct acpi_device *device)
|
|
|
{
|
|
|
- int result = 0;
|
|
|
int state = 0;
|
|
|
- struct input_dev *input;
|
|
|
int error;
|
|
|
int i;
|
|
|
|
|
@@ -867,38 +791,14 @@ static int acpi_fujitsu_laptop_add(struct acpi_device *device)
|
|
|
goto err_stop;
|
|
|
}
|
|
|
|
|
|
- fujitsu_laptop->input = input = input_allocate_device();
|
|
|
- if (!input) {
|
|
|
- error = -ENOMEM;
|
|
|
- goto err_free_fifo;
|
|
|
- }
|
|
|
-
|
|
|
- snprintf(fujitsu_laptop->phys, sizeof(fujitsu_laptop->phys),
|
|
|
- "%s/video/input0", acpi_device_hid(device));
|
|
|
-
|
|
|
- input->name = acpi_device_name(device);
|
|
|
- input->phys = fujitsu_laptop->phys;
|
|
|
- input->id.bustype = BUS_HOST;
|
|
|
- input->id.product = 0x06;
|
|
|
- input->dev.parent = &device->dev;
|
|
|
-
|
|
|
- set_bit(EV_KEY, input->evbit);
|
|
|
- set_bit(fujitsu_bl->keycode1, input->keybit);
|
|
|
- set_bit(fujitsu_bl->keycode2, input->keybit);
|
|
|
- set_bit(fujitsu_bl->keycode3, input->keybit);
|
|
|
- set_bit(fujitsu_bl->keycode4, input->keybit);
|
|
|
- set_bit(fujitsu_bl->keycode5, input->keybit);
|
|
|
- set_bit(KEY_TOUCHPAD_TOGGLE, input->keybit);
|
|
|
- set_bit(KEY_UNKNOWN, input->keybit);
|
|
|
-
|
|
|
- error = input_register_device(input);
|
|
|
+ error = acpi_fujitsu_laptop_input_setup(device);
|
|
|
if (error)
|
|
|
- goto err_free_input_dev;
|
|
|
+ goto err_free_fifo;
|
|
|
|
|
|
error = acpi_bus_update_power(fujitsu_laptop->acpi_handle, &state);
|
|
|
if (error) {
|
|
|
pr_err("Error reading power state\n");
|
|
|
- goto err_unregister_input_dev;
|
|
|
+ goto err_free_fifo;
|
|
|
}
|
|
|
|
|
|
pr_info("ACPI: %s [%s] (%s)\n",
|
|
@@ -936,72 +836,25 @@ static int acpi_fujitsu_laptop_add(struct acpi_device *device)
|
|
|
/* Suspect this is a keymap of the application panel, print it */
|
|
|
pr_info("BTNI: [0x%x]\n", call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0));
|
|
|
|
|
|
-#if IS_ENABLED(CONFIG_LEDS_CLASS)
|
|
|
- if (call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON) {
|
|
|
- result = led_classdev_register(&fujitsu_bl->pf_device->dev,
|
|
|
- &logolamp_led);
|
|
|
- if (result == 0) {
|
|
|
- fujitsu_laptop->logolamp_registered = 1;
|
|
|
- } else {
|
|
|
- pr_err("Could not register LED handler for logo lamp, error %i\n",
|
|
|
- result);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS) &&
|
|
|
- (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) == 0x0)) {
|
|
|
- result = led_classdev_register(&fujitsu_bl->pf_device->dev,
|
|
|
- &kblamps_led);
|
|
|
- if (result == 0) {
|
|
|
- fujitsu_laptop->kblamps_registered = 1;
|
|
|
- } else {
|
|
|
- pr_err("Could not register LED handler for keyboard lamps, error %i\n",
|
|
|
- result);
|
|
|
- }
|
|
|
+ /* Sync backlight power status */
|
|
|
+ if (fujitsu_bl->bl_device &&
|
|
|
+ acpi_video_get_backlight_type() == acpi_backlight_vendor) {
|
|
|
+ if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3)
|
|
|
+ fujitsu_bl->bl_device->props.power = FB_BLANK_POWERDOWN;
|
|
|
+ else
|
|
|
+ fujitsu_bl->bl_device->props.power = FB_BLANK_UNBLANK;
|
|
|
}
|
|
|
|
|
|
- /*
|
|
|
- * BTNI bit 24 seems to indicate the presence of a radio toggle
|
|
|
- * button in place of a slide switch, and all such machines appear
|
|
|
- * to also have an RF LED. Therefore use bit 24 as an indicator
|
|
|
- * that an RF LED is present.
|
|
|
- */
|
|
|
- if (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) & BIT(24)) {
|
|
|
- result = led_classdev_register(&fujitsu_bl->pf_device->dev,
|
|
|
- &radio_led);
|
|
|
- if (result == 0) {
|
|
|
- fujitsu_laptop->radio_led_registered = 1;
|
|
|
- } else {
|
|
|
- pr_err("Could not register LED handler for radio LED, error %i\n",
|
|
|
- result);
|
|
|
- }
|
|
|
- }
|
|
|
+ error = acpi_fujitsu_laptop_leds_register(device);
|
|
|
+ if (error)
|
|
|
+ goto err_free_fifo;
|
|
|
|
|
|
- /* Support for eco led is not always signaled in bit corresponding
|
|
|
- * to the bit used to control the led. According to the DSDT table,
|
|
|
- * bit 14 seems to indicate presence of said led as well.
|
|
|
- * Confirm by testing the status.
|
|
|
- */
|
|
|
- if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & BIT(14)) &&
|
|
|
- (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) != UNSUPPORTED_CMD)) {
|
|
|
- result = led_classdev_register(&fujitsu_bl->pf_device->dev,
|
|
|
- &eco_led);
|
|
|
- if (result == 0) {
|
|
|
- fujitsu_laptop->eco_led_registered = 1;
|
|
|
- } else {
|
|
|
- pr_err("Could not register LED handler for eco LED, error %i\n",
|
|
|
- result);
|
|
|
- }
|
|
|
- }
|
|
|
-#endif
|
|
|
+ error = fujitsu_laptop_platform_add();
|
|
|
+ if (error)
|
|
|
+ goto err_free_fifo;
|
|
|
|
|
|
- return result;
|
|
|
+ return 0;
|
|
|
|
|
|
-err_unregister_input_dev:
|
|
|
- input_unregister_device(input);
|
|
|
- input = NULL;
|
|
|
-err_free_input_dev:
|
|
|
- input_free_device(input);
|
|
|
err_free_fifo:
|
|
|
kfifo_free(&fujitsu_laptop->fifo);
|
|
|
err_stop:
|
|
@@ -1011,86 +864,62 @@ err_stop:
|
|
|
static int acpi_fujitsu_laptop_remove(struct acpi_device *device)
|
|
|
{
|
|
|
struct fujitsu_laptop *fujitsu_laptop = acpi_driver_data(device);
|
|
|
- struct input_dev *input = fujitsu_laptop->input;
|
|
|
|
|
|
-#if IS_ENABLED(CONFIG_LEDS_CLASS)
|
|
|
- if (fujitsu_laptop->logolamp_registered)
|
|
|
- led_classdev_unregister(&logolamp_led);
|
|
|
-
|
|
|
- if (fujitsu_laptop->kblamps_registered)
|
|
|
- led_classdev_unregister(&kblamps_led);
|
|
|
-
|
|
|
- if (fujitsu_laptop->radio_led_registered)
|
|
|
- led_classdev_unregister(&radio_led);
|
|
|
-
|
|
|
- if (fujitsu_laptop->eco_led_registered)
|
|
|
- led_classdev_unregister(&eco_led);
|
|
|
-#endif
|
|
|
-
|
|
|
- input_unregister_device(input);
|
|
|
+ fujitsu_laptop_platform_remove();
|
|
|
|
|
|
kfifo_free(&fujitsu_laptop->fifo);
|
|
|
|
|
|
- fujitsu_laptop->acpi_handle = NULL;
|
|
|
-
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void acpi_fujitsu_laptop_press(int keycode)
|
|
|
+static void acpi_fujitsu_laptop_press(int scancode)
|
|
|
{
|
|
|
struct input_dev *input = fujitsu_laptop->input;
|
|
|
int status;
|
|
|
|
|
|
status = kfifo_in_locked(&fujitsu_laptop->fifo,
|
|
|
- (unsigned char *)&keycode, sizeof(keycode),
|
|
|
+ (unsigned char *)&scancode, sizeof(scancode),
|
|
|
&fujitsu_laptop->fifo_lock);
|
|
|
- if (status != sizeof(keycode)) {
|
|
|
+ if (status != sizeof(scancode)) {
|
|
|
vdbg_printk(FUJLAPTOP_DBG_WARN,
|
|
|
- "Could not push keycode [0x%x]\n", keycode);
|
|
|
+ "Could not push scancode [0x%x]\n", scancode);
|
|
|
return;
|
|
|
}
|
|
|
- input_report_key(input, keycode, 1);
|
|
|
- input_sync(input);
|
|
|
+ sparse_keymap_report_event(input, scancode, 1, false);
|
|
|
vdbg_printk(FUJLAPTOP_DBG_TRACE,
|
|
|
- "Push keycode into ringbuffer [%d]\n", keycode);
|
|
|
+ "Push scancode into ringbuffer [0x%x]\n", scancode);
|
|
|
}
|
|
|
|
|
|
static void acpi_fujitsu_laptop_release(void)
|
|
|
{
|
|
|
struct input_dev *input = fujitsu_laptop->input;
|
|
|
- int keycode, status;
|
|
|
+ int scancode, status;
|
|
|
|
|
|
while (true) {
|
|
|
status = kfifo_out_locked(&fujitsu_laptop->fifo,
|
|
|
- (unsigned char *)&keycode,
|
|
|
- sizeof(keycode),
|
|
|
+ (unsigned char *)&scancode,
|
|
|
+ sizeof(scancode),
|
|
|
&fujitsu_laptop->fifo_lock);
|
|
|
- if (status != sizeof(keycode))
|
|
|
+ if (status != sizeof(scancode))
|
|
|
return;
|
|
|
- input_report_key(input, keycode, 0);
|
|
|
- input_sync(input);
|
|
|
+ sparse_keymap_report_event(input, scancode, 0, false);
|
|
|
vdbg_printk(FUJLAPTOP_DBG_TRACE,
|
|
|
- "Pop keycode from ringbuffer [%d]\n", keycode);
|
|
|
+ "Pop scancode from ringbuffer [0x%x]\n", scancode);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
static void acpi_fujitsu_laptop_notify(struct acpi_device *device, u32 event)
|
|
|
{
|
|
|
struct input_dev *input;
|
|
|
- int keycode;
|
|
|
- unsigned int irb = 1;
|
|
|
- int i;
|
|
|
+ int scancode, i = 0;
|
|
|
+ unsigned int irb;
|
|
|
|
|
|
input = fujitsu_laptop->input;
|
|
|
|
|
|
if (event != ACPI_FUJITSU_NOTIFY_CODE1) {
|
|
|
- keycode = KEY_UNKNOWN;
|
|
|
vdbg_printk(FUJLAPTOP_DBG_WARN,
|
|
|
"Unsupported event [0x%x]\n", event);
|
|
|
- input_report_key(input, keycode, 1);
|
|
|
- input_sync(input);
|
|
|
- input_report_key(input, keycode, 0);
|
|
|
- input_sync(input);
|
|
|
+ sparse_keymap_report_event(input, -1, 1, true);
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -1098,40 +927,16 @@ static void acpi_fujitsu_laptop_notify(struct acpi_device *device, u32 event)
|
|
|
fujitsu_laptop->flags_state =
|
|
|
call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0);
|
|
|
|
|
|
- i = 0;
|
|
|
- while ((irb =
|
|
|
- call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0)) != 0
|
|
|
- && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE) {
|
|
|
- switch (irb & 0x4ff) {
|
|
|
- case KEY1_CODE:
|
|
|
- keycode = fujitsu_bl->keycode1;
|
|
|
- break;
|
|
|
- case KEY2_CODE:
|
|
|
- keycode = fujitsu_bl->keycode2;
|
|
|
- break;
|
|
|
- case KEY3_CODE:
|
|
|
- keycode = fujitsu_bl->keycode3;
|
|
|
- break;
|
|
|
- case KEY4_CODE:
|
|
|
- keycode = fujitsu_bl->keycode4;
|
|
|
- break;
|
|
|
- case KEY5_CODE:
|
|
|
- keycode = fujitsu_bl->keycode5;
|
|
|
- break;
|
|
|
- case 0:
|
|
|
- keycode = 0;
|
|
|
- break;
|
|
|
- default:
|
|
|
+ while ((irb = call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0)) != 0 &&
|
|
|
+ i++ < MAX_HOTKEY_RINGBUFFER_SIZE) {
|
|
|
+ scancode = irb & 0x4ff;
|
|
|
+ if (sparse_keymap_entry_from_scancode(input, scancode))
|
|
|
+ acpi_fujitsu_laptop_press(scancode);
|
|
|
+ else if (scancode == 0)
|
|
|
+ acpi_fujitsu_laptop_release();
|
|
|
+ else
|
|
|
vdbg_printk(FUJLAPTOP_DBG_WARN,
|
|
|
"Unknown GIRB result [%x]\n", irb);
|
|
|
- keycode = -1;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if (keycode > 0)
|
|
|
- acpi_fujitsu_laptop_press(keycode);
|
|
|
- else if (keycode == 0)
|
|
|
- acpi_fujitsu_laptop_release();
|
|
|
}
|
|
|
|
|
|
/* On some models (first seen on the Skylake-based Lifebook
|
|
@@ -1139,14 +944,8 @@ static void acpi_fujitsu_laptop_notify(struct acpi_device *device, u32 event)
|
|
|
* handled in software; its state is queried using FUNC_FLAGS
|
|
|
*/
|
|
|
if ((fujitsu_laptop->flags_supported & BIT(26)) &&
|
|
|
- (call_fext_func(FUNC_FLAGS, 0x1, 0x0, 0x0) & BIT(26))) {
|
|
|
- keycode = KEY_TOUCHPAD_TOGGLE;
|
|
|
- input_report_key(input, keycode, 1);
|
|
|
- input_sync(input);
|
|
|
- input_report_key(input, keycode, 0);
|
|
|
- input_sync(input);
|
|
|
- }
|
|
|
-
|
|
|
+ (call_fext_func(FUNC_FLAGS, 0x1, 0x0, 0x0) & BIT(26)))
|
|
|
+ sparse_keymap_report_event(input, BIT(26), 1, true);
|
|
|
}
|
|
|
|
|
|
/* Initialization */
|
|
@@ -1162,7 +961,6 @@ static struct acpi_driver acpi_fujitsu_bl_driver = {
|
|
|
.ids = fujitsu_bl_device_ids,
|
|
|
.ops = {
|
|
|
.add = acpi_fujitsu_bl_add,
|
|
|
- .remove = acpi_fujitsu_bl_remove,
|
|
|
.notify = acpi_fujitsu_bl_notify,
|
|
|
},
|
|
|
};
|
|
@@ -1192,7 +990,7 @@ MODULE_DEVICE_TABLE(acpi, fujitsu_ids);
|
|
|
|
|
|
static int __init fujitsu_init(void)
|
|
|
{
|
|
|
- int ret, max_brightness;
|
|
|
+ int ret;
|
|
|
|
|
|
if (acpi_disabled)
|
|
|
return -ENODEV;
|
|
@@ -1200,100 +998,40 @@ static int __init fujitsu_init(void)
|
|
|
fujitsu_bl = kzalloc(sizeof(struct fujitsu_bl), GFP_KERNEL);
|
|
|
if (!fujitsu_bl)
|
|
|
return -ENOMEM;
|
|
|
- fujitsu_bl->keycode1 = KEY_PROG1;
|
|
|
- fujitsu_bl->keycode2 = KEY_PROG2;
|
|
|
- fujitsu_bl->keycode3 = KEY_PROG3;
|
|
|
- fujitsu_bl->keycode4 = KEY_PROG4;
|
|
|
- fujitsu_bl->keycode5 = KEY_RFKILL;
|
|
|
- dmi_check_system(fujitsu_dmi_table);
|
|
|
|
|
|
ret = acpi_bus_register_driver(&acpi_fujitsu_bl_driver);
|
|
|
if (ret)
|
|
|
- goto fail_acpi;
|
|
|
+ goto err_free_fujitsu_bl;
|
|
|
|
|
|
/* Register platform stuff */
|
|
|
|
|
|
- fujitsu_bl->pf_device = platform_device_alloc("fujitsu-laptop", -1);
|
|
|
- if (!fujitsu_bl->pf_device) {
|
|
|
- ret = -ENOMEM;
|
|
|
- goto fail_platform_driver;
|
|
|
- }
|
|
|
-
|
|
|
- ret = platform_device_add(fujitsu_bl->pf_device);
|
|
|
- if (ret)
|
|
|
- goto fail_platform_device1;
|
|
|
-
|
|
|
- ret =
|
|
|
- sysfs_create_group(&fujitsu_bl->pf_device->dev.kobj,
|
|
|
- &fujitsu_pf_attribute_group);
|
|
|
- if (ret)
|
|
|
- goto fail_platform_device2;
|
|
|
-
|
|
|
- /* Register backlight stuff */
|
|
|
-
|
|
|
- if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
|
|
|
- struct backlight_properties props;
|
|
|
-
|
|
|
- memset(&props, 0, sizeof(struct backlight_properties));
|
|
|
- max_brightness = fujitsu_bl->max_brightness;
|
|
|
- props.type = BACKLIGHT_PLATFORM;
|
|
|
- props.max_brightness = max_brightness - 1;
|
|
|
- fujitsu_bl->bl_device = backlight_device_register("fujitsu-laptop",
|
|
|
- NULL, NULL,
|
|
|
- &fujitsu_bl_ops,
|
|
|
- &props);
|
|
|
- if (IS_ERR(fujitsu_bl->bl_device)) {
|
|
|
- ret = PTR_ERR(fujitsu_bl->bl_device);
|
|
|
- fujitsu_bl->bl_device = NULL;
|
|
|
- goto fail_sysfs_group;
|
|
|
- }
|
|
|
- fujitsu_bl->bl_device->props.brightness = fujitsu_bl->brightness_level;
|
|
|
- }
|
|
|
-
|
|
|
ret = platform_driver_register(&fujitsu_pf_driver);
|
|
|
if (ret)
|
|
|
- goto fail_backlight;
|
|
|
+ goto err_unregister_acpi;
|
|
|
|
|
|
/* Register laptop driver */
|
|
|
|
|
|
fujitsu_laptop = kzalloc(sizeof(struct fujitsu_laptop), GFP_KERNEL);
|
|
|
if (!fujitsu_laptop) {
|
|
|
ret = -ENOMEM;
|
|
|
- goto fail_laptop;
|
|
|
+ goto err_unregister_platform_driver;
|
|
|
}
|
|
|
|
|
|
ret = acpi_bus_register_driver(&acpi_fujitsu_laptop_driver);
|
|
|
if (ret)
|
|
|
- goto fail_laptop1;
|
|
|
-
|
|
|
- /* Sync backlight power status (needs FUJ02E3 device, hence deferred) */
|
|
|
- if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
|
|
|
- if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3)
|
|
|
- fujitsu_bl->bl_device->props.power = FB_BLANK_POWERDOWN;
|
|
|
- else
|
|
|
- fujitsu_bl->bl_device->props.power = FB_BLANK_UNBLANK;
|
|
|
- }
|
|
|
+ goto err_free_fujitsu_laptop;
|
|
|
|
|
|
pr_info("driver " FUJITSU_DRIVER_VERSION " successfully loaded\n");
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
-fail_laptop1:
|
|
|
+err_free_fujitsu_laptop:
|
|
|
kfree(fujitsu_laptop);
|
|
|
-fail_laptop:
|
|
|
+err_unregister_platform_driver:
|
|
|
platform_driver_unregister(&fujitsu_pf_driver);
|
|
|
-fail_backlight:
|
|
|
- backlight_device_unregister(fujitsu_bl->bl_device);
|
|
|
-fail_sysfs_group:
|
|
|
- sysfs_remove_group(&fujitsu_bl->pf_device->dev.kobj,
|
|
|
- &fujitsu_pf_attribute_group);
|
|
|
-fail_platform_device2:
|
|
|
- platform_device_del(fujitsu_bl->pf_device);
|
|
|
-fail_platform_device1:
|
|
|
- platform_device_put(fujitsu_bl->pf_device);
|
|
|
-fail_platform_driver:
|
|
|
+err_unregister_acpi:
|
|
|
acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver);
|
|
|
-fail_acpi:
|
|
|
+err_free_fujitsu_bl:
|
|
|
kfree(fujitsu_bl);
|
|
|
|
|
|
return ret;
|
|
@@ -1307,13 +1045,6 @@ static void __exit fujitsu_cleanup(void)
|
|
|
|
|
|
platform_driver_unregister(&fujitsu_pf_driver);
|
|
|
|
|
|
- backlight_device_unregister(fujitsu_bl->bl_device);
|
|
|
-
|
|
|
- sysfs_remove_group(&fujitsu_bl->pf_device->dev.kobj,
|
|
|
- &fujitsu_pf_attribute_group);
|
|
|
-
|
|
|
- platform_device_unregister(fujitsu_bl->pf_device);
|
|
|
-
|
|
|
acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver);
|
|
|
|
|
|
kfree(fujitsu_bl);
|
|
@@ -1324,11 +1055,10 @@ static void __exit fujitsu_cleanup(void)
|
|
|
module_init(fujitsu_init);
|
|
|
module_exit(fujitsu_cleanup);
|
|
|
|
|
|
-module_param(use_alt_lcd_levels, uint, 0644);
|
|
|
-MODULE_PARM_DESC(use_alt_lcd_levels,
|
|
|
- "Use alternative interface for lcd_levels (needed for Lifebook s6410).");
|
|
|
-module_param(disable_brightness_adjust, uint, 0644);
|
|
|
-MODULE_PARM_DESC(disable_brightness_adjust, "Disable brightness adjustment .");
|
|
|
+module_param(use_alt_lcd_levels, int, 0644);
|
|
|
+MODULE_PARM_DESC(use_alt_lcd_levels, "Interface used for setting LCD brightness level (-1 = auto, 0 = force SBLL, 1 = force SBL2)");
|
|
|
+module_param(disable_brightness_adjust, bool, 0644);
|
|
|
+MODULE_PARM_DESC(disable_brightness_adjust, "Disable LCD brightness adjustment");
|
|
|
#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
|
|
|
module_param_named(debug, dbg_level, uint, 0644);
|
|
|
MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
|