mirror of
https://github.com/Dasharo/linux.git
synced 2026-03-06 15:25:10 -08:00
Merge tag 'input-for-v6.14-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input updates from Dmitry Torokhov: - more conversions to the guard notation in the input core - a fix for NXP BBNSM power key driver to clean up wake IRQ after unbinding - several new vendor/device ID pairs added to xpad game controller driver - several drivers switched to using str_enable_disable and similar helpers instead of open-coding - add mapping for F23 to atkbd driver so that MS "Copilot" key shortcut works out of the box (if userspace is ready to handle it) - evbug input handler has been removed (debugging through evdev is strongly preferred to dumping all events into the kernel log). * tag 'input-for-v6.14-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (22 commits) Input: synaptics - fix crash when enabling pass-through port Input: atkbd - map F23 key to support default copilot shortcut Input: xpad - add support for Nacon Evol-X Xbox One Controller Input: xpad - add unofficial Xbox 360 wireless receiver clone Input: xpad - add support for wooting two he (arm) Input: xpad - improve name of 8BitDo controller 2dc8:3106 Input: xpad - add QH Electronics VID/PID Input: joystick - use str_off_on() helper in sw_connect() Input: Use str_enable_disable-like helpers Input: use guard notation in input core Input: poller - convert locking to guard notation Input: mt - make use of __free() cleanup facility Input: mt - convert locking to guard notation Input: ff-memless - make use of __free() cleanup facility Input: ff-memless - convert locking to guard notation Input: ff-core - make use of __free() cleanup facility Input: ff-core - convert locking to guard notation Input: remove evbug driver Input: mma8450 - add chip ID check in probe Input: bbnsm_pwrkey - add remove hook ...
This commit is contained in:
@@ -152,20 +152,6 @@ config INPUT_EVDEV
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called evdev.
|
||||
|
||||
config INPUT_EVBUG
|
||||
tristate "Event debugging"
|
||||
help
|
||||
Say Y here if you have a problem with the input subsystem and
|
||||
want all events (keypresses, mouse movements), to be output to
|
||||
the system log. While this is useful for debugging, it's also
|
||||
a security threat - your keypresses include your passwords, of
|
||||
course.
|
||||
|
||||
If unsure, say N.
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called evbug.
|
||||
|
||||
config INPUT_KUNIT_TEST
|
||||
tristate "KUnit tests for Input" if !KUNIT_ALL_TESTS
|
||||
depends on INPUT && KUNIT
|
||||
|
||||
@@ -18,7 +18,6 @@ obj-$(CONFIG_INPUT_LEDS) += input-leds.o
|
||||
obj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.o
|
||||
obj-$(CONFIG_INPUT_JOYDEV) += joydev.o
|
||||
obj-$(CONFIG_INPUT_EVDEV) += evdev.o
|
||||
obj-$(CONFIG_INPUT_EVBUG) += evbug.o
|
||||
|
||||
obj-$(CONFIG_INPUT_KEYBOARD) += keyboard/
|
||||
obj-$(CONFIG_INPUT_MOUSE) += mouse/
|
||||
|
||||
@@ -1,100 +0,0 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
/*
|
||||
* Copyright (c) 1999-2001 Vojtech Pavlik
|
||||
*/
|
||||
|
||||
/*
|
||||
* Input driver event debug module - dumps all events into syslog
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||
|
||||
#include <linux/slab.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/device.h>
|
||||
|
||||
MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
|
||||
MODULE_DESCRIPTION("Input driver event debug module");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
static void evbug_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
|
||||
{
|
||||
printk(KERN_DEBUG pr_fmt("Event. Dev: %s, Type: %d, Code: %d, Value: %d\n"),
|
||||
dev_name(&handle->dev->dev), type, code, value);
|
||||
}
|
||||
|
||||
static int evbug_connect(struct input_handler *handler, struct input_dev *dev,
|
||||
const struct input_device_id *id)
|
||||
{
|
||||
struct input_handle *handle;
|
||||
int error;
|
||||
|
||||
handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
|
||||
if (!handle)
|
||||
return -ENOMEM;
|
||||
|
||||
handle->dev = dev;
|
||||
handle->handler = handler;
|
||||
handle->name = "evbug";
|
||||
|
||||
error = input_register_handle(handle);
|
||||
if (error)
|
||||
goto err_free_handle;
|
||||
|
||||
error = input_open_device(handle);
|
||||
if (error)
|
||||
goto err_unregister_handle;
|
||||
|
||||
printk(KERN_DEBUG pr_fmt("Connected device: %s (%s at %s)\n"),
|
||||
dev_name(&dev->dev),
|
||||
dev->name ?: "unknown",
|
||||
dev->phys ?: "unknown");
|
||||
|
||||
return 0;
|
||||
|
||||
err_unregister_handle:
|
||||
input_unregister_handle(handle);
|
||||
err_free_handle:
|
||||
kfree(handle);
|
||||
return error;
|
||||
}
|
||||
|
||||
static void evbug_disconnect(struct input_handle *handle)
|
||||
{
|
||||
printk(KERN_DEBUG pr_fmt("Disconnected device: %s\n"),
|
||||
dev_name(&handle->dev->dev));
|
||||
|
||||
input_close_device(handle);
|
||||
input_unregister_handle(handle);
|
||||
kfree(handle);
|
||||
}
|
||||
|
||||
static const struct input_device_id evbug_ids[] = {
|
||||
{ .driver_info = 1 }, /* Matches all devices */
|
||||
{ }, /* Terminating zero entry */
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(input, evbug_ids);
|
||||
|
||||
static struct input_handler evbug_handler = {
|
||||
.event = evbug_event,
|
||||
.connect = evbug_connect,
|
||||
.disconnect = evbug_disconnect,
|
||||
.name = "evbug",
|
||||
.id_table = evbug_ids,
|
||||
};
|
||||
|
||||
static int __init evbug_init(void)
|
||||
{
|
||||
return input_register_handler(&evbug_handler);
|
||||
}
|
||||
|
||||
static void __exit evbug_exit(void)
|
||||
{
|
||||
input_unregister_handler(&evbug_handler);
|
||||
}
|
||||
|
||||
module_init(evbug_init);
|
||||
module_exit(evbug_exit);
|
||||
@@ -93,7 +93,7 @@ int input_ff_upload(struct input_dev *dev, struct ff_effect *effect,
|
||||
{
|
||||
struct ff_device *ff = dev->ff;
|
||||
struct ff_effect *old;
|
||||
int ret = 0;
|
||||
int error;
|
||||
int id;
|
||||
|
||||
if (!test_bit(EV_FF, dev->evbit))
|
||||
@@ -114,22 +114,20 @@ int input_ff_upload(struct input_dev *dev, struct ff_effect *effect,
|
||||
}
|
||||
|
||||
if (!test_bit(effect->type, ff->ffbit)) {
|
||||
ret = compat_effect(ff, effect);
|
||||
if (ret)
|
||||
return ret;
|
||||
error = compat_effect(ff, effect);
|
||||
if (error)
|
||||
return error;
|
||||
}
|
||||
|
||||
mutex_lock(&ff->mutex);
|
||||
guard(mutex)(&ff->mutex);
|
||||
|
||||
if (effect->id == -1) {
|
||||
for (id = 0; id < ff->max_effects; id++)
|
||||
if (!ff->effect_owners[id])
|
||||
break;
|
||||
|
||||
if (id >= ff->max_effects) {
|
||||
ret = -ENOSPC;
|
||||
goto out;
|
||||
}
|
||||
if (id >= ff->max_effects)
|
||||
return -ENOSPC;
|
||||
|
||||
effect->id = id;
|
||||
old = NULL;
|
||||
@@ -137,30 +135,26 @@ int input_ff_upload(struct input_dev *dev, struct ff_effect *effect,
|
||||
} else {
|
||||
id = effect->id;
|
||||
|
||||
ret = check_effect_access(ff, id, file);
|
||||
if (ret)
|
||||
goto out;
|
||||
error = check_effect_access(ff, id, file);
|
||||
if (error)
|
||||
return error;
|
||||
|
||||
old = &ff->effects[id];
|
||||
|
||||
if (!check_effects_compatible(effect, old)) {
|
||||
ret = -EINVAL;
|
||||
goto out;
|
||||
}
|
||||
if (!check_effects_compatible(effect, old))
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
ret = ff->upload(dev, effect, old);
|
||||
if (ret)
|
||||
goto out;
|
||||
error = ff->upload(dev, effect, old);
|
||||
if (error)
|
||||
return error;
|
||||
|
||||
spin_lock_irq(&dev->event_lock);
|
||||
ff->effects[id] = *effect;
|
||||
ff->effect_owners[id] = file;
|
||||
spin_unlock_irq(&dev->event_lock);
|
||||
scoped_guard(spinlock_irq, &dev->event_lock) {
|
||||
ff->effects[id] = *effect;
|
||||
ff->effect_owners[id] = file;
|
||||
}
|
||||
|
||||
out:
|
||||
mutex_unlock(&ff->mutex);
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(input_ff_upload);
|
||||
|
||||
@@ -178,17 +172,16 @@ static int erase_effect(struct input_dev *dev, int effect_id,
|
||||
if (error)
|
||||
return error;
|
||||
|
||||
spin_lock_irq(&dev->event_lock);
|
||||
ff->playback(dev, effect_id, 0);
|
||||
ff->effect_owners[effect_id] = NULL;
|
||||
spin_unlock_irq(&dev->event_lock);
|
||||
scoped_guard(spinlock_irq, &dev->event_lock) {
|
||||
ff->playback(dev, effect_id, 0);
|
||||
ff->effect_owners[effect_id] = NULL;
|
||||
}
|
||||
|
||||
if (ff->erase) {
|
||||
error = ff->erase(dev, effect_id);
|
||||
if (error) {
|
||||
spin_lock_irq(&dev->event_lock);
|
||||
ff->effect_owners[effect_id] = file;
|
||||
spin_unlock_irq(&dev->event_lock);
|
||||
scoped_guard(spinlock_irq, &dev->event_lock)
|
||||
ff->effect_owners[effect_id] = file;
|
||||
|
||||
return error;
|
||||
}
|
||||
@@ -210,16 +203,12 @@ static int erase_effect(struct input_dev *dev, int effect_id,
|
||||
int input_ff_erase(struct input_dev *dev, int effect_id, struct file *file)
|
||||
{
|
||||
struct ff_device *ff = dev->ff;
|
||||
int ret;
|
||||
|
||||
if (!test_bit(EV_FF, dev->evbit))
|
||||
return -ENOSYS;
|
||||
|
||||
mutex_lock(&ff->mutex);
|
||||
ret = erase_effect(dev, effect_id, file);
|
||||
mutex_unlock(&ff->mutex);
|
||||
|
||||
return ret;
|
||||
guard(mutex)(&ff->mutex);
|
||||
return erase_effect(dev, effect_id, file);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(input_ff_erase);
|
||||
|
||||
@@ -239,13 +228,11 @@ int input_ff_flush(struct input_dev *dev, struct file *file)
|
||||
|
||||
dev_dbg(&dev->dev, "flushing now\n");
|
||||
|
||||
mutex_lock(&ff->mutex);
|
||||
guard(mutex)(&ff->mutex);
|
||||
|
||||
for (i = 0; i < ff->max_effects; i++)
|
||||
erase_effect(dev, i, file);
|
||||
|
||||
mutex_unlock(&ff->mutex);
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(input_ff_flush);
|
||||
@@ -303,8 +290,6 @@ EXPORT_SYMBOL_GPL(input_ff_event);
|
||||
*/
|
||||
int input_ff_create(struct input_dev *dev, unsigned int max_effects)
|
||||
{
|
||||
struct ff_device *ff;
|
||||
size_t ff_dev_size;
|
||||
int i;
|
||||
|
||||
if (!max_effects) {
|
||||
@@ -317,25 +302,19 @@ int input_ff_create(struct input_dev *dev, unsigned int max_effects)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
ff_dev_size = struct_size(ff, effect_owners, max_effects);
|
||||
if (ff_dev_size == SIZE_MAX) /* overflow */
|
||||
return -EINVAL;
|
||||
|
||||
ff = kzalloc(ff_dev_size, GFP_KERNEL);
|
||||
struct ff_device *ff __free(kfree) =
|
||||
kzalloc(struct_size(ff, effect_owners, max_effects),
|
||||
GFP_KERNEL);
|
||||
if (!ff)
|
||||
return -ENOMEM;
|
||||
|
||||
ff->effects = kcalloc(max_effects, sizeof(struct ff_effect),
|
||||
GFP_KERNEL);
|
||||
if (!ff->effects) {
|
||||
kfree(ff);
|
||||
ff->effects = kcalloc(max_effects, sizeof(*ff->effects), GFP_KERNEL);
|
||||
if (!ff->effects)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
ff->max_effects = max_effects;
|
||||
mutex_init(&ff->mutex);
|
||||
|
||||
dev->ff = ff;
|
||||
dev->flush = input_ff_flush;
|
||||
dev->event = input_ff_event;
|
||||
__set_bit(EV_FF, dev->evbit);
|
||||
@@ -348,6 +327,8 @@ int input_ff_create(struct input_dev *dev, unsigned int max_effects)
|
||||
if (test_bit(FF_PERIODIC, ff->ffbit))
|
||||
__set_bit(FF_RUMBLE, dev->ffbit);
|
||||
|
||||
dev->ff = no_free_ptr(ff);
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(input_ff_create);
|
||||
|
||||
@@ -401,13 +401,11 @@ static void ml_effect_timer(struct timer_list *t)
|
||||
{
|
||||
struct ml_device *ml = from_timer(ml, t, timer);
|
||||
struct input_dev *dev = ml->dev;
|
||||
unsigned long flags;
|
||||
|
||||
pr_debug("timer: updating effects\n");
|
||||
|
||||
spin_lock_irqsave(&dev->event_lock, flags);
|
||||
guard(spinlock_irqsave)(&dev->event_lock);
|
||||
ml_play_effects(ml);
|
||||
spin_unlock_irqrestore(&dev->event_lock, flags);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -465,7 +463,7 @@ static int ml_ff_upload(struct input_dev *dev,
|
||||
struct ml_device *ml = dev->ff->private;
|
||||
struct ml_effect_state *state = &ml->states[effect->id];
|
||||
|
||||
spin_lock_irq(&dev->event_lock);
|
||||
guard(spinlock_irq)(&dev->event_lock);
|
||||
|
||||
if (test_bit(FF_EFFECT_STARTED, &state->flags)) {
|
||||
__clear_bit(FF_EFFECT_PLAYING, &state->flags);
|
||||
@@ -477,8 +475,6 @@ static int ml_ff_upload(struct input_dev *dev,
|
||||
ml_schedule_timer(ml);
|
||||
}
|
||||
|
||||
spin_unlock_irq(&dev->event_lock);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -507,12 +503,11 @@ static void ml_ff_destroy(struct ff_device *ff)
|
||||
int input_ff_create_memless(struct input_dev *dev, void *data,
|
||||
int (*play_effect)(struct input_dev *, void *, struct ff_effect *))
|
||||
{
|
||||
struct ml_device *ml;
|
||||
struct ff_device *ff;
|
||||
int error;
|
||||
int i;
|
||||
|
||||
ml = kzalloc(sizeof(struct ml_device), GFP_KERNEL);
|
||||
struct ml_device *ml __free(kfree) = kzalloc(sizeof(*ml), GFP_KERNEL);
|
||||
if (!ml)
|
||||
return -ENOMEM;
|
||||
|
||||
@@ -525,13 +520,10 @@ int input_ff_create_memless(struct input_dev *dev, void *data,
|
||||
set_bit(FF_GAIN, dev->ffbit);
|
||||
|
||||
error = input_ff_create(dev, FF_MEMLESS_EFFECTS);
|
||||
if (error) {
|
||||
kfree(ml);
|
||||
if (error)
|
||||
return error;
|
||||
}
|
||||
|
||||
ff = dev->ff;
|
||||
ff->private = ml;
|
||||
ff->upload = ml_ff_upload;
|
||||
ff->playback = ml_ff_playback;
|
||||
ff->set_gain = ml_ff_set_gain;
|
||||
@@ -548,6 +540,8 @@ int input_ff_create_memless(struct input_dev *dev, void *data,
|
||||
for (i = 0; i < FF_MEMLESS_EFFECTS; i++)
|
||||
ml->states[i].effect = &ff->effects[i];
|
||||
|
||||
ff->private = no_free_ptr(ml);
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(input_ff_create_memless);
|
||||
|
||||
@@ -39,20 +39,20 @@ static void copy_abs(struct input_dev *dev, unsigned int dst, unsigned int src)
|
||||
int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots,
|
||||
unsigned int flags)
|
||||
{
|
||||
struct input_mt *mt = dev->mt;
|
||||
int i;
|
||||
|
||||
if (!num_slots)
|
||||
return 0;
|
||||
if (mt)
|
||||
return mt->num_slots != num_slots ? -EINVAL : 0;
|
||||
|
||||
if (dev->mt)
|
||||
return dev->mt->num_slots != num_slots ? -EINVAL : 0;
|
||||
|
||||
/* Arbitrary limit for avoiding too large memory allocation. */
|
||||
if (num_slots > 1024)
|
||||
return -EINVAL;
|
||||
|
||||
mt = kzalloc(struct_size(mt, slots, num_slots), GFP_KERNEL);
|
||||
struct input_mt *mt __free(kfree) =
|
||||
kzalloc(struct_size(mt, slots, num_slots), GFP_KERNEL);
|
||||
if (!mt)
|
||||
goto err_mem;
|
||||
return -ENOMEM;
|
||||
|
||||
mt->num_slots = num_slots;
|
||||
mt->flags = flags;
|
||||
@@ -86,21 +86,18 @@ int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots,
|
||||
unsigned int n2 = num_slots * num_slots;
|
||||
mt->red = kcalloc(n2, sizeof(*mt->red), GFP_KERNEL);
|
||||
if (!mt->red)
|
||||
goto err_mem;
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
/* Mark slots as 'inactive' */
|
||||
for (i = 0; i < num_slots; i++)
|
||||
for (unsigned int i = 0; i < num_slots; i++)
|
||||
input_mt_set_value(&mt->slots[i], ABS_MT_TRACKING_ID, -1);
|
||||
|
||||
/* Mark slots as 'unused' */
|
||||
mt->frame = 1;
|
||||
|
||||
dev->mt = mt;
|
||||
dev->mt = no_free_ptr(mt);
|
||||
return 0;
|
||||
err_mem:
|
||||
kfree(mt);
|
||||
return -ENOMEM;
|
||||
}
|
||||
EXPORT_SYMBOL(input_mt_init_slots);
|
||||
|
||||
@@ -285,14 +282,10 @@ void input_mt_drop_unused(struct input_dev *dev)
|
||||
struct input_mt *mt = dev->mt;
|
||||
|
||||
if (mt) {
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&dev->event_lock, flags);
|
||||
guard(spinlock_irqsave)(&dev->event_lock);
|
||||
|
||||
__input_mt_drop_unused(dev, mt);
|
||||
mt->frame++;
|
||||
|
||||
spin_unlock_irqrestore(&dev->event_lock, flags);
|
||||
}
|
||||
}
|
||||
EXPORT_SYMBOL(input_mt_drop_unused);
|
||||
@@ -339,11 +332,8 @@ void input_mt_sync_frame(struct input_dev *dev)
|
||||
return;
|
||||
|
||||
if (mt->flags & INPUT_MT_DROP_UNUSED) {
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&dev->event_lock, flags);
|
||||
guard(spinlock_irqsave)(&dev->event_lock);
|
||||
__input_mt_drop_unused(dev, mt);
|
||||
spin_unlock_irqrestore(&dev->event_lock, flags);
|
||||
}
|
||||
|
||||
if ((mt->flags & INPUT_MT_POINTER) && !(mt->flags & INPUT_MT_SEMI_MT))
|
||||
|
||||
@@ -162,7 +162,7 @@ static ssize_t input_dev_set_poll_interval(struct device *dev,
|
||||
if (interval > poller->poll_interval_max)
|
||||
return -EINVAL;
|
||||
|
||||
mutex_lock(&input->mutex);
|
||||
guard(mutex)(&input->mutex);
|
||||
|
||||
poller->poll_interval = interval;
|
||||
|
||||
@@ -172,8 +172,6 @@ static ssize_t input_dev_set_poll_interval(struct device *dev,
|
||||
input_dev_poller_queue_work(poller);
|
||||
}
|
||||
|
||||
mutex_unlock(&input->mutex);
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -14,6 +14,7 @@
|
||||
#include <linux/input.h>
|
||||
#include <linux/gameport.h>
|
||||
#include <linux/jiffies.h>
|
||||
#include <linux/string_choices.h>
|
||||
|
||||
#define DRIVER_DESC "Microsoft SideWinder joystick family driver"
|
||||
|
||||
@@ -677,7 +678,7 @@ static int sw_connect(struct gameport *gameport, struct gameport_driver *drv)
|
||||
case 48: /* Ambiguous */
|
||||
if (j == 14) { /* ID length 14*3 -> FFP */
|
||||
sw->type = SW_ID_FFP;
|
||||
sprintf(comment, " [AC %s]", sw_get_bits(idbuf,38,1,3) ? "off" : "on");
|
||||
sprintf(comment, " [AC %s]", str_off_on(sw_get_bits(idbuf,38,1,3)));
|
||||
} else
|
||||
sw->type = SW_ID_PP;
|
||||
break;
|
||||
|
||||
@@ -150,6 +150,7 @@ static const struct xpad_device {
|
||||
{ 0x045e, 0x028e, "Microsoft X-Box 360 pad", 0, XTYPE_XBOX360 },
|
||||
{ 0x045e, 0x028f, "Microsoft X-Box 360 pad v2", 0, XTYPE_XBOX360 },
|
||||
{ 0x045e, 0x0291, "Xbox 360 Wireless Receiver (XBOX)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
|
||||
{ 0x045e, 0x02a9, "Xbox 360 Wireless Receiver (Unofficial)", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360W },
|
||||
{ 0x045e, 0x02d1, "Microsoft X-Box One pad", 0, XTYPE_XBOXONE },
|
||||
{ 0x045e, 0x02dd, "Microsoft X-Box One pad (Firmware 2015)", 0, XTYPE_XBOXONE },
|
||||
{ 0x045e, 0x02e3, "Microsoft X-Box One Elite pad", MAP_PADDLES, XTYPE_XBOXONE },
|
||||
@@ -305,6 +306,7 @@ static const struct xpad_device {
|
||||
{ 0x1689, 0xfe00, "Razer Sabertooth", 0, XTYPE_XBOX360 },
|
||||
{ 0x17ef, 0x6182, "Lenovo Legion Controller for Windows", 0, XTYPE_XBOX360 },
|
||||
{ 0x1949, 0x041a, "Amazon Game Controller", 0, XTYPE_XBOX360 },
|
||||
{ 0x1a86, 0xe310, "QH Electronics Controller", 0, XTYPE_XBOX360 },
|
||||
{ 0x1bad, 0x0002, "Harmonix Rock Band Guitar", 0, XTYPE_XBOX360 },
|
||||
{ 0x1bad, 0x0003, "Harmonix Rock Band Drumkit", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
|
||||
{ 0x1bad, 0x0130, "Ion Drum Rocker", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 },
|
||||
@@ -373,16 +375,19 @@ static const struct xpad_device {
|
||||
{ 0x294b, 0x3303, "Snakebyte GAMEPAD BASE X", 0, XTYPE_XBOXONE },
|
||||
{ 0x294b, 0x3404, "Snakebyte GAMEPAD RGB X", 0, XTYPE_XBOXONE },
|
||||
{ 0x2dc8, 0x2000, "8BitDo Pro 2 Wired Controller fox Xbox", 0, XTYPE_XBOXONE },
|
||||
{ 0x2dc8, 0x3106, "8BitDo Pro 2 Wired Controller", 0, XTYPE_XBOX360 },
|
||||
{ 0x2dc8, 0x3106, "8BitDo Ultimate Wireless / Pro 2 Wired Controller", 0, XTYPE_XBOX360 },
|
||||
{ 0x2dc8, 0x310a, "8BitDo Ultimate 2C Wireless Controller", 0, XTYPE_XBOX360 },
|
||||
{ 0x2e24, 0x0652, "Hyperkin Duke X-Box One pad", 0, XTYPE_XBOXONE },
|
||||
{ 0x31e3, 0x1100, "Wooting One", 0, XTYPE_XBOX360 },
|
||||
{ 0x31e3, 0x1200, "Wooting Two", 0, XTYPE_XBOX360 },
|
||||
{ 0x31e3, 0x1210, "Wooting Lekker", 0, XTYPE_XBOX360 },
|
||||
{ 0x31e3, 0x1220, "Wooting Two HE", 0, XTYPE_XBOX360 },
|
||||
{ 0x31e3, 0x1230, "Wooting Two HE (ARM)", 0, XTYPE_XBOX360 },
|
||||
{ 0x31e3, 0x1300, "Wooting 60HE (AVR)", 0, XTYPE_XBOX360 },
|
||||
{ 0x31e3, 0x1310, "Wooting 60HE (ARM)", 0, XTYPE_XBOX360 },
|
||||
{ 0x3285, 0x0607, "Nacon GC-100", 0, XTYPE_XBOX360 },
|
||||
{ 0x3285, 0x0646, "Nacon Pro Compact", 0, XTYPE_XBOXONE },
|
||||
{ 0x3285, 0x0663, "Nacon Evol-X", 0, XTYPE_XBOXONE },
|
||||
{ 0x3537, 0x1004, "GameSir T4 Kaleid", 0, XTYPE_XBOX360 },
|
||||
{ 0x3767, 0x0101, "Fanatec Speedster 3 Forceshock Wheel", 0, XTYPE_XBOX },
|
||||
{ 0xffff, 0xffff, "Chinese-made Xbox Controller", 0, XTYPE_XBOX },
|
||||
@@ -514,6 +519,7 @@ static const struct usb_device_id xpad_table[] = {
|
||||
XPAD_XBOX360_VENDOR(0x1689), /* Razer Onza */
|
||||
XPAD_XBOX360_VENDOR(0x17ef), /* Lenovo */
|
||||
XPAD_XBOX360_VENDOR(0x1949), /* Amazon controllers */
|
||||
XPAD_XBOX360_VENDOR(0x1a86), /* QH Electronics */
|
||||
XPAD_XBOX360_VENDOR(0x1bad), /* Harmonix Rock Band guitar and drums */
|
||||
XPAD_XBOX360_VENDOR(0x20d6), /* PowerA controllers */
|
||||
XPAD_XBOXONE_VENDOR(0x20d6), /* PowerA controllers */
|
||||
@@ -530,6 +536,7 @@ static const struct usb_device_id xpad_table[] = {
|
||||
XPAD_XBOX360_VENDOR(0x2f24), /* GameSir controllers */
|
||||
XPAD_XBOX360_VENDOR(0x31e3), /* Wooting Keyboards */
|
||||
XPAD_XBOX360_VENDOR(0x3285), /* Nacon GC-100 */
|
||||
XPAD_XBOXONE_VENDOR(0x3285), /* Nacon Evol-X */
|
||||
XPAD_XBOX360_VENDOR(0x3537), /* GameSir Controllers */
|
||||
XPAD_XBOXONE_VENDOR(0x3537), /* GameSir Controllers */
|
||||
{ }
|
||||
|
||||
@@ -89,7 +89,7 @@ static const unsigned short atkbd_set2_keycode[ATKBD_KEYMAP_SIZE] = {
|
||||
0, 46, 45, 32, 18, 5, 4, 95, 0, 57, 47, 33, 20, 19, 6,183,
|
||||
0, 49, 48, 35, 34, 21, 7,184, 0, 0, 50, 36, 22, 8, 9,185,
|
||||
0, 51, 37, 23, 24, 11, 10, 0, 0, 52, 53, 38, 39, 25, 12, 0,
|
||||
0, 89, 40, 0, 26, 13, 0, 0, 58, 54, 28, 27, 0, 43, 0, 85,
|
||||
0, 89, 40, 0, 26, 13, 0,193, 58, 54, 28, 27, 0, 43, 0, 85,
|
||||
0, 86, 91, 90, 92, 0, 14, 94, 0, 79,124, 75, 71,121, 0, 0,
|
||||
82, 83, 80, 76, 77, 72, 1, 69, 87, 78, 81, 74, 55, 73, 70, 99,
|
||||
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
#include <linux/delay.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/string_choices.h>
|
||||
#include <linux/bitops.h>
|
||||
|
||||
struct dir685_touchkeys {
|
||||
@@ -48,7 +49,7 @@ static irqreturn_t dir685_tk_irq_thread(int irq, void *data)
|
||||
changed = tk->cur_key ^ key;
|
||||
for_each_set_bit(i, &changed, num_bits) {
|
||||
dev_dbg(tk->dev, "key %d is %s\n", i,
|
||||
test_bit(i, &key) ? "down" : "up");
|
||||
str_down_up(test_bit(i, &key)));
|
||||
input_report_key(tk->input, tk->codes[i], test_bit(i, &key));
|
||||
}
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#include <linux/platform_data/lm8323.h>
|
||||
#include <linux/pm.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/string_choices.h>
|
||||
|
||||
/* Commands to send to the chip. */
|
||||
#define LM8323_CMD_READ_ID 0x80 /* Read chip ID. */
|
||||
@@ -269,7 +270,7 @@ static void process_keys(struct lm8323_chip *lm)
|
||||
unsigned short keycode = lm->keymap[key];
|
||||
|
||||
dev_vdbg(&lm->client->dev, "key 0x%02x %s\n",
|
||||
key, isdown ? "down" : "up");
|
||||
key, str_down_up(isdown));
|
||||
|
||||
if (lm->kp_enabled) {
|
||||
input_event(lm->idev, EV_MSC, MSC_SCAN, key);
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/pwm.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/string_choices.h>
|
||||
#include <linux/workqueue.h>
|
||||
#include <linux/regulator/consumer.h>
|
||||
#include <linux/mfd/max77693.h>
|
||||
@@ -94,7 +95,7 @@ static int max77843_haptic_bias(struct max77693_haptic *haptic, bool on)
|
||||
on << MAINCTRL1_BIASEN_SHIFT);
|
||||
if (error) {
|
||||
dev_err(haptic->dev, "failed to %s bias: %d\n",
|
||||
on ? "enable" : "disable", error);
|
||||
str_enable_disable(on), error);
|
||||
return error;
|
||||
}
|
||||
|
||||
|
||||
@@ -38,6 +38,8 @@
|
||||
|
||||
#define MMA8450_CTRL_REG1 0x38
|
||||
#define MMA8450_CTRL_REG2 0x39
|
||||
#define MMA8450_ID 0xc6
|
||||
#define MMA8450_WHO_AM_I 0x0f
|
||||
|
||||
static int mma8450_read(struct i2c_client *c, unsigned int off)
|
||||
{
|
||||
@@ -148,8 +150,20 @@ static void mma8450_close(struct input_dev *input)
|
||||
*/
|
||||
static int mma8450_probe(struct i2c_client *c)
|
||||
{
|
||||
struct i2c_adapter *adapter = c->adapter;
|
||||
struct input_dev *input;
|
||||
int err;
|
||||
int err, client_id;
|
||||
|
||||
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE |
|
||||
I2C_FUNC_SMBUS_BYTE_DATA))
|
||||
return dev_err_probe(&c->dev, -EINVAL,
|
||||
"I2C adapter doesn't support SMBUS BYTE");
|
||||
|
||||
client_id = i2c_smbus_read_byte_data(c, MMA8450_WHO_AM_I);
|
||||
if (client_id != MMA8450_ID)
|
||||
return dev_err_probe(&c->dev, -EINVAL,
|
||||
"unexpected chip ID 0x%x (vs 0x%x)\n",
|
||||
client_id, MMA8450_ID);
|
||||
|
||||
input = devm_input_allocate_device(&c->dev);
|
||||
if (!input)
|
||||
|
||||
@@ -187,6 +187,12 @@ static int bbnsm_pwrkey_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void bbnsm_pwrkey_remove(struct platform_device *pdev)
|
||||
{
|
||||
dev_pm_clear_wake_irq(&pdev->dev);
|
||||
device_init_wakeup(&pdev->dev, false);
|
||||
}
|
||||
|
||||
static int __maybe_unused bbnsm_pwrkey_suspend(struct device *dev)
|
||||
{
|
||||
struct platform_device *pdev = to_platform_device(dev);
|
||||
@@ -223,6 +229,8 @@ static struct platform_driver bbnsm_pwrkey_driver = {
|
||||
.of_match_table = bbnsm_pwrkey_ids,
|
||||
},
|
||||
.probe = bbnsm_pwrkey_probe,
|
||||
.remove = bbnsm_pwrkey_remove,
|
||||
|
||||
};
|
||||
module_platform_driver(bbnsm_pwrkey_driver);
|
||||
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/regulator/consumer.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/string_choices.h>
|
||||
|
||||
#define MAX_MAGNITUDE_SHIFT 16
|
||||
|
||||
@@ -44,7 +45,7 @@ static int regulator_haptic_toggle(struct regulator_haptic *haptic, bool on)
|
||||
if (error) {
|
||||
dev_err(haptic->dev,
|
||||
"failed to switch regulator %s: %d\n",
|
||||
on ? "on" : "off", error);
|
||||
str_on_off(on), error);
|
||||
return error;
|
||||
}
|
||||
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
#include <linux/slab.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/string_choices.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/uaccess.h>
|
||||
#include <linux/jiffies.h>
|
||||
@@ -199,7 +200,7 @@ static int elan_set_power(struct elan_tp_data *data, bool on)
|
||||
} while (--repeat > 0);
|
||||
|
||||
dev_err(&data->client->dev, "failed to set power %s: %d\n",
|
||||
on ? "on" : "off", error);
|
||||
str_on_off(on), error);
|
||||
return error;
|
||||
}
|
||||
|
||||
|
||||
@@ -665,23 +665,50 @@ static void synaptics_pt_stop(struct serio *serio)
|
||||
priv->pt_port = NULL;
|
||||
}
|
||||
|
||||
static int synaptics_pt_open(struct serio *serio)
|
||||
{
|
||||
struct psmouse *parent = psmouse_from_serio(serio->parent);
|
||||
struct synaptics_data *priv = parent->private;
|
||||
|
||||
guard(serio_pause_rx)(parent->ps2dev.serio);
|
||||
priv->pt_port_open = true;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void synaptics_pt_close(struct serio *serio)
|
||||
{
|
||||
struct psmouse *parent = psmouse_from_serio(serio->parent);
|
||||
struct synaptics_data *priv = parent->private;
|
||||
|
||||
guard(serio_pause_rx)(parent->ps2dev.serio);
|
||||
priv->pt_port_open = false;
|
||||
}
|
||||
|
||||
static int synaptics_is_pt_packet(u8 *buf)
|
||||
{
|
||||
return (buf[0] & 0xFC) == 0x84 && (buf[3] & 0xCC) == 0xC4;
|
||||
}
|
||||
|
||||
static void synaptics_pass_pt_packet(struct serio *ptport, u8 *packet)
|
||||
static void synaptics_pass_pt_packet(struct synaptics_data *priv, u8 *packet)
|
||||
{
|
||||
struct psmouse *child = psmouse_from_serio(ptport);
|
||||
struct serio *ptport;
|
||||
|
||||
if (child && child->state == PSMOUSE_ACTIVATED) {
|
||||
serio_interrupt(ptport, packet[1], 0);
|
||||
serio_interrupt(ptport, packet[4], 0);
|
||||
serio_interrupt(ptport, packet[5], 0);
|
||||
if (child->pktsize == 4)
|
||||
serio_interrupt(ptport, packet[2], 0);
|
||||
} else {
|
||||
serio_interrupt(ptport, packet[1], 0);
|
||||
ptport = priv->pt_port;
|
||||
if (!ptport)
|
||||
return;
|
||||
|
||||
serio_interrupt(ptport, packet[1], 0);
|
||||
|
||||
if (priv->pt_port_open) {
|
||||
struct psmouse *child = psmouse_from_serio(ptport);
|
||||
|
||||
if (child->state == PSMOUSE_ACTIVATED) {
|
||||
serio_interrupt(ptport, packet[4], 0);
|
||||
serio_interrupt(ptport, packet[5], 0);
|
||||
if (child->pktsize == 4)
|
||||
serio_interrupt(ptport, packet[2], 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -720,6 +747,8 @@ static void synaptics_pt_create(struct psmouse *psmouse)
|
||||
serio->write = synaptics_pt_write;
|
||||
serio->start = synaptics_pt_start;
|
||||
serio->stop = synaptics_pt_stop;
|
||||
serio->open = synaptics_pt_open;
|
||||
serio->close = synaptics_pt_close;
|
||||
serio->parent = psmouse->ps2dev.serio;
|
||||
|
||||
psmouse->pt_activate = synaptics_pt_activate;
|
||||
@@ -1216,11 +1245,10 @@ static psmouse_ret_t synaptics_process_byte(struct psmouse *psmouse)
|
||||
|
||||
if (SYN_CAP_PASS_THROUGH(priv->info.capabilities) &&
|
||||
synaptics_is_pt_packet(psmouse->packet)) {
|
||||
if (priv->pt_port)
|
||||
synaptics_pass_pt_packet(priv->pt_port,
|
||||
psmouse->packet);
|
||||
} else
|
||||
synaptics_pass_pt_packet(priv, psmouse->packet);
|
||||
} else {
|
||||
synaptics_process_packet(psmouse);
|
||||
}
|
||||
|
||||
return PSMOUSE_FULL_PACKET;
|
||||
}
|
||||
|
||||
@@ -188,6 +188,7 @@ struct synaptics_data {
|
||||
bool disable_gesture; /* disable gestures */
|
||||
|
||||
struct serio *pt_port; /* Pass-through serio port */
|
||||
bool pt_port_open;
|
||||
|
||||
/*
|
||||
* Last received Advanced Gesture Mode (AGM) packet. An AGM packet
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user