mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
commit
b5e3c8709f
|
@ -27,6 +27,7 @@
|
||||||
#include <linux/dmi.h>
|
#include <linux/dmi.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
|
#include <linux/input/sparse-keymap.h>
|
||||||
|
|
||||||
#define CLEVO_EVENT_GUID "ABBC0F6B-8EA1-11D1-00A0-C90629100000"
|
#define CLEVO_EVENT_GUID "ABBC0F6B-8EA1-11D1-00A0-C90629100000"
|
||||||
#define CLEVO_EMAIL_GUID "ABBC0F6C-8EA1-11D1-00A0-C90629100000"
|
#define CLEVO_EMAIL_GUID "ABBC0F6C-8EA1-11D1-00A0-C90629100000"
|
||||||
|
@ -34,7 +35,7 @@
|
||||||
|
|
||||||
MODULE_AUTHOR
|
MODULE_AUTHOR
|
||||||
("Christian Loritz / TUXEDO Computers GmbH <tux@tuxedocomputers.com>");
|
("Christian Loritz / TUXEDO Computers GmbH <tux@tuxedocomputers.com>");
|
||||||
MODULE_DESCRIPTION("TUXEDO Computers Keyboard Backlight Driver");
|
MODULE_DESCRIPTION("TUXEDO Computers Keyboard & Backlight Driver");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_VERSION("2.0.2");
|
MODULE_VERSION("2.0.2");
|
||||||
|
|
||||||
|
@ -87,6 +88,35 @@ MODULE_ALIAS("wmi:" CLEVO_GET_GUID);
|
||||||
#define WMI_KEYEVENT_CODE_NEXT_BLINKING_PATTERN 0x83
|
#define WMI_KEYEVENT_CODE_NEXT_BLINKING_PATTERN 0x83
|
||||||
#define WMI_KEYEVENT_CODE_TOGGLE_STATE 0x9F
|
#define WMI_KEYEVENT_CODE_TOGGLE_STATE 0x9F
|
||||||
|
|
||||||
|
#define WMI_KEYEVENT_CODE_CYCLE_BRIGHTNESS 0x8A
|
||||||
|
#define WMI_KEYEVENT_CODE_TOUCHPAD_TOGGLE 0x5D
|
||||||
|
#define WMI_KEYEVENT_CODE_TOUCHPAD_OFF 0xFC
|
||||||
|
#define WMI_KEYEVENT_CODE_TOUCHPAD_ON 0xFD
|
||||||
|
|
||||||
|
static const struct key_entry clevo_wmi_keymap[] = {
|
||||||
|
// Keyboard backlight (RGB versions)
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_DECREASE_BACKLIGHT, { KEY_KBDILLUMDOWN } },
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_INCREASE_BACKLIGHT, { KEY_KBDILLUMUP } },
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_TOGGLE_STATE, { KEY_KBDILLUMTOGGLE } },
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_NEXT_BLINKING_PATTERN, { KEY_LIGHTS_TOGGLE } },
|
||||||
|
// Single cycle key (white only versions)
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_CYCLE_BRIGHTNESS, { KEY_KBDILLUMUP } },
|
||||||
|
|
||||||
|
// Touchpad
|
||||||
|
// The weirdly named touchpad toggle key that is implemented as KEY_F21 "everywhere"
|
||||||
|
// (instead of KEY_TOUCHPAD_TOGGLE or on/off)
|
||||||
|
// Most "new" devices just provide one toggle event
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_TOUCHPAD_TOGGLE, { KEY_F21 } },
|
||||||
|
// Some "old" devices produces on/off events
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_TOUCHPAD_OFF, { KEY_F21 } },
|
||||||
|
{ KE_KEY, WMI_KEYEVENT_CODE_TOUCHPAD_ON, { KEY_F21 } },
|
||||||
|
// The alternative key events (not used)
|
||||||
|
//{ KE_KEY, WMI_KEYEVENT_CODE_TOUCHPAD_OFF, { KEY_TOUCHPAD_OFF } },
|
||||||
|
//{ KE_KEY, WMI_KEYEVENT_CODE_TOUCHPAD_ON, { KEY_TOUCHPAD_ON } },
|
||||||
|
//{ KE_KEY, WMI_KEYEVENT_CODE_TOUCHPAD_TOGGLE, { KEY_TOUCHPAD_TOGGLE } },
|
||||||
|
{ KE_END, 0 }
|
||||||
|
};
|
||||||
|
|
||||||
#define BRIGHTNESS_STEP 25
|
#define BRIGHTNESS_STEP 25
|
||||||
|
|
||||||
struct color_t {
|
struct color_t {
|
||||||
|
@ -600,6 +630,10 @@ static void tuxedo_wmi_notify(u32 value, void *context)
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!sparse_keymap_report_event(tuxedo_input_device, key_event, 1, true)) {
|
||||||
|
TUXEDO_DEBUG("Unknown key - %d (%0#6x)\n", key_event, key_event);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int tuxedo_wmi_probe(struct platform_device *dev)
|
static int tuxedo_wmi_probe(struct platform_device *dev)
|
||||||
|
@ -670,11 +704,6 @@ static DEVICE_ATTR(brightness, 0644, show_brightness_fs, set_brightness_fs);
|
||||||
static DEVICE_ATTR(mode, 0644, show_blinking_patterns_fs, set_blinking_pattern_fs);
|
static DEVICE_ATTR(mode, 0644, show_blinking_patterns_fs, set_blinking_pattern_fs);
|
||||||
static DEVICE_ATTR(extra, 0444, show_hasextra_fs, NULL);
|
static DEVICE_ATTR(extra, 0444, show_hasextra_fs, NULL);
|
||||||
|
|
||||||
// register our fake input device
|
|
||||||
// from the wmi events we generate fake input events and send them up to user space
|
|
||||||
// as if the were normale sane input events or key presses
|
|
||||||
// TODO: Check if the input_device is actually used currently, maybe comment it out
|
|
||||||
// until needed
|
|
||||||
static int __init tuxedo_input_init(void)
|
static int __init tuxedo_input_init(void)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
@ -690,7 +719,11 @@ static int __init tuxedo_input_init(void)
|
||||||
tuxedo_input_device->id.bustype = BUS_HOST;
|
tuxedo_input_device->id.bustype = BUS_HOST;
|
||||||
tuxedo_input_device->dev.parent = &tuxedo_platform_device->dev;
|
tuxedo_input_device->dev.parent = &tuxedo_platform_device->dev;
|
||||||
|
|
||||||
set_bit(EV_KEY, tuxedo_input_device->evbit);
|
err = sparse_keymap_setup(tuxedo_input_device, clevo_wmi_keymap, NULL);
|
||||||
|
if (err) {
|
||||||
|
TUXEDO_ERROR("Failed to setup sparse keymap\n");
|
||||||
|
goto err_free_input_device;
|
||||||
|
}
|
||||||
|
|
||||||
err = input_register_device(tuxedo_input_device);
|
err = input_register_device(tuxedo_input_device);
|
||||||
if (unlikely(err)) {
|
if (unlikely(err)) {
|
||||||
|
|
Loading…
Reference in a new issue