2011-02-26 09:20:31 +00:00
|
|
|
/*
|
|
|
|
* Eee PC WMI hotkey driver
|
|
|
|
*
|
|
|
|
* Copyright(C) 2010 Intel Corporation.
|
2011-02-26 09:20:32 +00:00
|
|
|
* Copyright(C) 2010-2011 Corentin Chary <corentin.chary@gmail.com>
|
2011-02-26 09:20:31 +00:00
|
|
|
*
|
|
|
|
* Portions based on wistron_btns.c:
|
|
|
|
* Copyright (C) 2005 Miloslav Trmac <mitr@volny.cz>
|
|
|
|
* Copyright (C) 2005 Bernhard Rosenkraenzer <bero@arklinux.org>
|
|
|
|
* Copyright (C) 2005 Dmitry Torokhov <dtor@mail.ru>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/input.h>
|
|
|
|
#include <linux/input/sparse-keymap.h>
|
|
|
|
#include <linux/dmi.h>
|
asus-wmi: store backlight power status for AIO machine
Due to some implementation reasons, ASUS ET2012 All-in-One machines
can't report the correct backlight power status, it will always return
1. To track the backlight power status correctly, we have to store the
status by ourselves.
BTW, by the BIOS design, the backlight power will be turn on/off
sequently, no matter what the value of the parameter will be.
More over, the brightness adjustment command will turn on the backlight
power. Those behaviors will make us fail to track the backlight power
status.
For example, While we are trying to turn on the backlight power,
we will send out the brightness adjustment command and then trying to
figure out if we have to turn on the backlight power, then send out
the command. But, the real case is that, the backlight power turns on
while sending the brightness adjustment command, and then we send out
the command to turn on the backlight power, it actually will turn off
the backlight power and the backlight power status we recorded becomes
wrong. So, we have to seperate these two commands by a if statement.
Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
2012-03-20 08:53:09 +00:00
|
|
|
#include <linux/fb.h>
|
2013-12-03 00:49:16 +00:00
|
|
|
#include <linux/acpi.h>
|
2011-02-26 09:20:31 +00:00
|
|
|
|
|
|
|
#include "asus-wmi.h"
|
|
|
|
|
|
|
|
#define EEEPC_WMI_FILE "eeepc-wmi"
|
|
|
|
|
2012-12-18 00:00:05 +00:00
|
|
|
MODULE_AUTHOR("Corentin Chary <corentin.chary@gmail.com>");
|
2011-02-26 09:20:31 +00:00
|
|
|
MODULE_DESCRIPTION("Eee PC WMI Hotkey Driver");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
|
|
#define EEEPC_ACPI_HID "ASUS010" /* old _HID used in eeepc-laptop */
|
|
|
|
|
|
|
|
#define EEEPC_WMI_EVENT_GUID "ABBC0F72-8EA1-11D1-00A0-C90629100000"
|
|
|
|
|
|
|
|
MODULE_ALIAS("wmi:"EEEPC_WMI_EVENT_GUID);
|
|
|
|
|
|
|
|
static bool hotplug_wireless;
|
|
|
|
|
|
|
|
module_param(hotplug_wireless, bool, 0444);
|
|
|
|
MODULE_PARM_DESC(hotplug_wireless,
|
|
|
|
"Enable hotplug for wireless device. "
|
|
|
|
"If your laptop needs that, please report to "
|
|
|
|
"acpi4asus-user@lists.sourceforge.net.");
|
|
|
|
|
2011-07-01 09:34:28 +00:00
|
|
|
/* Values for T101MT "Home" key */
|
|
|
|
#define HOME_PRESS 0xe4
|
|
|
|
#define HOME_HOLD 0xea
|
|
|
|
#define HOME_RELEASE 0xe5
|
|
|
|
|
2011-02-26 09:20:31 +00:00
|
|
|
static const struct key_entry eeepc_wmi_keymap[] = {
|
2012-11-29 08:12:38 +00:00
|
|
|
{ KE_KEY, ASUS_WMI_BRN_DOWN, { KEY_BRIGHTNESSDOWN } },
|
|
|
|
{ KE_KEY, ASUS_WMI_BRN_UP, { KEY_BRIGHTNESSUP } },
|
2011-02-26 09:20:31 +00:00
|
|
|
/* Sleep already handled via generic ACPI code */
|
|
|
|
{ KE_KEY, 0x30, { KEY_VOLUMEUP } },
|
|
|
|
{ KE_KEY, 0x31, { KEY_VOLUMEDOWN } },
|
|
|
|
{ KE_KEY, 0x32, { KEY_MUTE } },
|
|
|
|
{ KE_KEY, 0x5c, { KEY_F15 } }, /* Power Gear key */
|
|
|
|
{ KE_KEY, 0x5d, { KEY_WLAN } },
|
2011-03-01 04:56:13 +00:00
|
|
|
{ KE_KEY, 0x6b, { KEY_TOUCHPAD_TOGGLE } }, /* Toggle Touchpad */
|
2011-02-26 09:20:31 +00:00
|
|
|
{ KE_KEY, 0x82, { KEY_CAMERA } },
|
2011-02-26 09:20:43 +00:00
|
|
|
{ KE_KEY, 0x83, { KEY_CAMERA_ZOOMIN } },
|
2011-02-26 09:20:31 +00:00
|
|
|
{ KE_KEY, 0x88, { KEY_WLAN } },
|
2011-03-30 14:32:33 +00:00
|
|
|
{ KE_KEY, 0xbd, { KEY_CAMERA } },
|
2011-02-26 09:20:31 +00:00
|
|
|
{ KE_KEY, 0xcc, { KEY_SWITCHVIDEOMODE } },
|
|
|
|
{ KE_KEY, 0xe0, { KEY_PROG1 } }, /* Task Manager */
|
|
|
|
{ KE_KEY, 0xe1, { KEY_F14 } }, /* Change Resolution */
|
2011-07-01 09:34:28 +00:00
|
|
|
{ KE_KEY, HOME_PRESS, { KEY_CONFIG } }, /* Home/Express gate key */
|
2011-03-30 14:32:33 +00:00
|
|
|
{ KE_KEY, 0xe8, { KEY_SCREENLOCK } },
|
2012-06-13 07:32:06 +00:00
|
|
|
{ KE_KEY, 0xe9, { KEY_DISPLAYTOGGLE } },
|
2011-02-26 09:20:43 +00:00
|
|
|
{ KE_KEY, 0xeb, { KEY_CAMERA_ZOOMOUT } },
|
|
|
|
{ KE_KEY, 0xec, { KEY_CAMERA_UP } },
|
|
|
|
{ KE_KEY, 0xed, { KEY_CAMERA_DOWN } },
|
|
|
|
{ KE_KEY, 0xee, { KEY_CAMERA_LEFT } },
|
|
|
|
{ KE_KEY, 0xef, { KEY_CAMERA_RIGHT } },
|
2012-03-20 08:53:03 +00:00
|
|
|
{ KE_KEY, 0xf3, { KEY_MENU } },
|
|
|
|
{ KE_KEY, 0xf5, { KEY_HOMEPAGE } },
|
|
|
|
{ KE_KEY, 0xf6, { KEY_ESC } },
|
2011-02-26 09:20:31 +00:00
|
|
|
{ KE_END, 0},
|
|
|
|
};
|
|
|
|
|
2012-03-20 08:53:08 +00:00
|
|
|
static struct quirk_entry quirk_asus_unknown = {
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct quirk_entry quirk_asus_1000h = {
|
|
|
|
.hotplug_wireless = true,
|
|
|
|
};
|
|
|
|
|
asus-wmi: store backlight power status for AIO machine
Due to some implementation reasons, ASUS ET2012 All-in-One machines
can't report the correct backlight power status, it will always return
1. To track the backlight power status correctly, we have to store the
status by ourselves.
BTW, by the BIOS design, the backlight power will be turn on/off
sequently, no matter what the value of the parameter will be.
More over, the brightness adjustment command will turn on the backlight
power. Those behaviors will make us fail to track the backlight power
status.
For example, While we are trying to turn on the backlight power,
we will send out the brightness adjustment command and then trying to
figure out if we have to turn on the backlight power, then send out
the command. But, the real case is that, the backlight power turns on
while sending the brightness adjustment command, and then we send out
the command to turn on the backlight power, it actually will turn off
the backlight power and the backlight power status we recorded becomes
wrong. So, we have to seperate these two commands by a if statement.
Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
2012-03-20 08:53:09 +00:00
|
|
|
static struct quirk_entry quirk_asus_et2012_type1 = {
|
|
|
|
.store_backlight_power = true,
|
|
|
|
};
|
|
|
|
|
2012-03-20 08:53:08 +00:00
|
|
|
static struct quirk_entry quirk_asus_et2012_type3 = {
|
|
|
|
.scalar_panel_brightness = true,
|
asus-wmi: store backlight power status for AIO machine
Due to some implementation reasons, ASUS ET2012 All-in-One machines
can't report the correct backlight power status, it will always return
1. To track the backlight power status correctly, we have to store the
status by ourselves.
BTW, by the BIOS design, the backlight power will be turn on/off
sequently, no matter what the value of the parameter will be.
More over, the brightness adjustment command will turn on the backlight
power. Those behaviors will make us fail to track the backlight power
status.
For example, While we are trying to turn on the backlight power,
we will send out the brightness adjustment command and then trying to
figure out if we have to turn on the backlight power, then send out
the command. But, the real case is that, the backlight power turns on
while sending the brightness adjustment command, and then we send out
the command to turn on the backlight power, it actually will turn off
the backlight power and the backlight power status we recorded becomes
wrong. So, we have to seperate these two commands by a if statement.
Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
2012-03-20 08:53:09 +00:00
|
|
|
.store_backlight_power = true,
|
2012-03-20 08:53:08 +00:00
|
|
|
};
|
|
|
|
|
2012-06-13 07:32:06 +00:00
|
|
|
static struct quirk_entry quirk_asus_x101ch = {
|
|
|
|
/* We need this when ACPI function doesn't do this well */
|
|
|
|
.wmi_backlight_power = true,
|
|
|
|
};
|
|
|
|
|
2012-03-20 08:53:12 +00:00
|
|
|
static struct quirk_entry *quirks;
|
|
|
|
|
2012-03-20 08:53:13 +00:00
|
|
|
static void et2012_quirks(void)
|
|
|
|
{
|
|
|
|
const struct dmi_device *dev = NULL;
|
|
|
|
char oemstring[30];
|
|
|
|
|
|
|
|
while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
|
|
|
|
if (sscanf(dev->name, "AEMS%24c", oemstring) == 1) {
|
|
|
|
if (oemstring[18] == '1')
|
|
|
|
quirks = &quirk_asus_et2012_type1;
|
|
|
|
else if (oemstring[18] == '3')
|
|
|
|
quirks = &quirk_asus_et2012_type3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-20 08:53:08 +00:00
|
|
|
static int dmi_matched(const struct dmi_system_id *dmi)
|
|
|
|
{
|
|
|
|
char *model;
|
2012-03-20 08:53:13 +00:00
|
|
|
|
2012-03-20 08:53:08 +00:00
|
|
|
quirks = dmi->driver_data;
|
|
|
|
|
|
|
|
model = (char *)dmi->matches[1].substr;
|
2012-03-20 08:53:13 +00:00
|
|
|
if (unlikely(strncmp(model, "ET2012", 6) == 0))
|
|
|
|
et2012_quirks();
|
|
|
|
|
2012-03-20 08:53:08 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-07-16 17:43:10 +00:00
|
|
|
static const struct dmi_system_id asus_quirks[] = {
|
2012-03-20 08:53:08 +00:00
|
|
|
{
|
|
|
|
.callback = dmi_matched,
|
|
|
|
.ident = "ASUSTeK Computer INC. 1000H",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "1000H"),
|
|
|
|
},
|
|
|
|
.driver_data = &quirk_asus_1000h,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.callback = dmi_matched,
|
|
|
|
.ident = "ASUSTeK Computer INC. ET2012E/I",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "ET2012"),
|
|
|
|
},
|
|
|
|
.driver_data = &quirk_asus_unknown,
|
|
|
|
},
|
2012-06-13 07:32:06 +00:00
|
|
|
{
|
|
|
|
.callback = dmi_matched,
|
|
|
|
.ident = "ASUSTeK Computer INC. X101CH",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "X101CH"),
|
|
|
|
},
|
|
|
|
.driver_data = &quirk_asus_x101ch,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.callback = dmi_matched,
|
|
|
|
.ident = "ASUSTeK Computer INC. 1015CX",
|
|
|
|
.matches = {
|
|
|
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
|
|
|
|
DMI_MATCH(DMI_PRODUCT_NAME, "1015CX"),
|
|
|
|
},
|
|
|
|
.driver_data = &quirk_asus_x101ch,
|
|
|
|
},
|
2012-03-20 08:53:08 +00:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
2011-07-01 09:34:28 +00:00
|
|
|
static void eeepc_wmi_key_filter(struct asus_wmi_driver *asus_wmi, int *code,
|
|
|
|
unsigned int *value, bool *autorelease)
|
|
|
|
{
|
|
|
|
switch (*code) {
|
|
|
|
case HOME_PRESS:
|
|
|
|
*value = 1;
|
|
|
|
*autorelease = 0;
|
|
|
|
break;
|
|
|
|
case HOME_HOLD:
|
|
|
|
*code = ASUS_WMI_KEY_IGNORE;
|
|
|
|
break;
|
|
|
|
case HOME_RELEASE:
|
|
|
|
*code = HOME_PRESS;
|
|
|
|
*value = 0;
|
|
|
|
*autorelease = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-26 09:20:31 +00:00
|
|
|
static acpi_status eeepc_wmi_parse_device(acpi_handle handle, u32 level,
|
|
|
|
void *context, void **retval)
|
|
|
|
{
|
2011-03-29 22:21:38 +00:00
|
|
|
pr_warn("Found legacy ATKD device (%s)\n", EEEPC_ACPI_HID);
|
2011-02-26 09:20:31 +00:00
|
|
|
*(bool *)context = true;
|
|
|
|
return AE_CTRL_TERMINATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int eeepc_wmi_check_atkd(void)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
status = acpi_get_devices(EEEPC_ACPI_HID, eeepc_wmi_parse_device,
|
|
|
|
&found, NULL);
|
|
|
|
|
|
|
|
if (ACPI_FAILURE(status) || !found)
|
|
|
|
return 0;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int eeepc_wmi_probe(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
if (eeepc_wmi_check_atkd()) {
|
2011-03-29 22:21:38 +00:00
|
|
|
pr_warn("WMI device present, but legacy ATKD device is also "
|
|
|
|
"present and enabled\n");
|
|
|
|
pr_warn("You probably booted with acpi_osi=\"Linux\" or "
|
|
|
|
"acpi_osi=\"!Windows 2009\"\n");
|
|
|
|
pr_warn("Can't load eeepc-wmi, use default acpi_osi "
|
|
|
|
"(preferred) or eeepc-laptop\n");
|
2011-02-26 09:20:31 +00:00
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void eeepc_wmi_quirks(struct asus_wmi_driver *driver)
|
|
|
|
{
|
2012-03-20 08:53:12 +00:00
|
|
|
quirks = &quirk_asus_unknown;
|
|
|
|
quirks->hotplug_wireless = hotplug_wireless;
|
|
|
|
|
2012-03-20 08:53:08 +00:00
|
|
|
dmi_check_system(asus_quirks);
|
2012-03-20 08:53:12 +00:00
|
|
|
|
2012-03-20 08:53:08 +00:00
|
|
|
driver->quirks = quirks;
|
2012-03-20 08:53:12 +00:00
|
|
|
driver->quirks->wapf = -1;
|
|
|
|
driver->panel_power = FB_BLANK_UNBLANK;
|
2011-02-26 09:20:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct asus_wmi_driver asus_wmi_driver = {
|
|
|
|
.name = EEEPC_WMI_FILE,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.event_guid = EEEPC_WMI_EVENT_GUID,
|
|
|
|
.keymap = eeepc_wmi_keymap,
|
|
|
|
.input_name = "Eee PC WMI hotkeys",
|
|
|
|
.input_phys = EEEPC_WMI_FILE "/input0",
|
2011-07-01 09:34:28 +00:00
|
|
|
.key_filter = eeepc_wmi_key_filter,
|
2011-02-26 09:20:31 +00:00
|
|
|
.probe = eeepc_wmi_probe,
|
2012-03-20 08:53:08 +00:00
|
|
|
.detect_quirks = eeepc_wmi_quirks,
|
2011-02-26 09:20:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int __init eeepc_wmi_init(void)
|
|
|
|
{
|
|
|
|
return asus_wmi_register_driver(&asus_wmi_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit eeepc_wmi_exit(void)
|
|
|
|
{
|
|
|
|
asus_wmi_unregister_driver(&asus_wmi_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(eeepc_wmi_init);
|
|
|
|
module_exit(eeepc_wmi_exit);
|