Input: mousedev - implement proper locking
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
@@ -61,9 +61,11 @@ struct mousedev {
|
|||||||
int open;
|
int open;
|
||||||
int minor;
|
int minor;
|
||||||
char name[16];
|
char name[16];
|
||||||
|
struct input_handle handle;
|
||||||
wait_queue_head_t wait;
|
wait_queue_head_t wait;
|
||||||
struct list_head client_list;
|
struct list_head client_list;
|
||||||
struct input_handle handle;
|
spinlock_t client_lock; /* protects client_list */
|
||||||
|
struct mutex mutex;
|
||||||
struct device dev;
|
struct device dev;
|
||||||
|
|
||||||
struct list_head mixdev_node;
|
struct list_head mixdev_node;
|
||||||
@@ -113,28 +115,36 @@ static unsigned char mousedev_imex_seq[] = { 0xf3, 200, 0xf3, 200, 0xf3, 80 };
|
|||||||
static struct input_handler mousedev_handler;
|
static struct input_handler mousedev_handler;
|
||||||
|
|
||||||
static struct mousedev *mousedev_table[MOUSEDEV_MINORS];
|
static struct mousedev *mousedev_table[MOUSEDEV_MINORS];
|
||||||
|
static DEFINE_MUTEX(mousedev_table_mutex);
|
||||||
static struct mousedev *mousedev_mix;
|
static struct mousedev *mousedev_mix;
|
||||||
static LIST_HEAD(mousedev_mix_list);
|
static LIST_HEAD(mousedev_mix_list);
|
||||||
|
|
||||||
|
static void mixdev_open_devices(void);
|
||||||
|
static void mixdev_close_devices(void);
|
||||||
|
|
||||||
#define fx(i) (mousedev->old_x[(mousedev->pkt_count - (i)) & 03])
|
#define fx(i) (mousedev->old_x[(mousedev->pkt_count - (i)) & 03])
|
||||||
#define fy(i) (mousedev->old_y[(mousedev->pkt_count - (i)) & 03])
|
#define fy(i) (mousedev->old_y[(mousedev->pkt_count - (i)) & 03])
|
||||||
|
|
||||||
static void mousedev_touchpad_event(struct input_dev *dev, struct mousedev *mousedev, unsigned int code, int value)
|
static void mousedev_touchpad_event(struct input_dev *dev,
|
||||||
|
struct mousedev *mousedev,
|
||||||
|
unsigned int code, int value)
|
||||||
{
|
{
|
||||||
int size, tmp;
|
int size, tmp;
|
||||||
enum { FRACTION_DENOM = 128 };
|
enum { FRACTION_DENOM = 128 };
|
||||||
|
|
||||||
switch (code) {
|
switch (code) {
|
||||||
|
|
||||||
case ABS_X:
|
case ABS_X:
|
||||||
fx(0) = value;
|
fx(0) = value;
|
||||||
if (mousedev->touch && mousedev->pkt_count >= 2) {
|
if (mousedev->touch && mousedev->pkt_count >= 2) {
|
||||||
size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
|
size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
|
||||||
if (size == 0)
|
if (size == 0)
|
||||||
size = 256 * 2;
|
size = 256 * 2;
|
||||||
tmp = ((value - fx(2)) * (256 * FRACTION_DENOM)) / size;
|
tmp = ((value - fx(2)) * 256 * FRACTION_DENOM) / size;
|
||||||
tmp += mousedev->frac_dx;
|
tmp += mousedev->frac_dx;
|
||||||
mousedev->packet.dx = tmp / FRACTION_DENOM;
|
mousedev->packet.dx = tmp / FRACTION_DENOM;
|
||||||
mousedev->frac_dx = tmp - mousedev->packet.dx * FRACTION_DENOM;
|
mousedev->frac_dx =
|
||||||
|
tmp - mousedev->packet.dx * FRACTION_DENOM;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -145,20 +155,23 @@ static void mousedev_touchpad_event(struct input_dev *dev, struct mousedev *mous
|
|||||||
size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
|
size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
|
||||||
if (size == 0)
|
if (size == 0)
|
||||||
size = 256 * 2;
|
size = 256 * 2;
|
||||||
tmp = -((value - fy(2)) * (256 * FRACTION_DENOM)) / size;
|
tmp = -((value - fy(2)) * 256 * FRACTION_DENOM) / size;
|
||||||
tmp += mousedev->frac_dy;
|
tmp += mousedev->frac_dy;
|
||||||
mousedev->packet.dy = tmp / FRACTION_DENOM;
|
mousedev->packet.dy = tmp / FRACTION_DENOM;
|
||||||
mousedev->frac_dy = tmp - mousedev->packet.dy * FRACTION_DENOM;
|
mousedev->frac_dy = tmp -
|
||||||
|
mousedev->packet.dy * FRACTION_DENOM;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev, unsigned int code, int value)
|
static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev,
|
||||||
|
unsigned int code, int value)
|
||||||
{
|
{
|
||||||
int size;
|
int size;
|
||||||
|
|
||||||
switch (code) {
|
switch (code) {
|
||||||
|
|
||||||
case ABS_X:
|
case ABS_X:
|
||||||
size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
|
size = dev->absmax[ABS_X] - dev->absmin[ABS_X];
|
||||||
if (size == 0)
|
if (size == 0)
|
||||||
@@ -167,7 +180,8 @@ static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev,
|
|||||||
value = dev->absmax[ABS_X];
|
value = dev->absmax[ABS_X];
|
||||||
if (value < dev->absmin[ABS_X])
|
if (value < dev->absmin[ABS_X])
|
||||||
value = dev->absmin[ABS_X];
|
value = dev->absmin[ABS_X];
|
||||||
mousedev->packet.x = ((value - dev->absmin[ABS_X]) * xres) / size;
|
mousedev->packet.x =
|
||||||
|
((value - dev->absmin[ABS_X]) * xres) / size;
|
||||||
mousedev->packet.abs_event = 1;
|
mousedev->packet.abs_event = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -179,41 +193,58 @@ static void mousedev_abs_event(struct input_dev *dev, struct mousedev *mousedev,
|
|||||||
value = dev->absmax[ABS_Y];
|
value = dev->absmax[ABS_Y];
|
||||||
if (value < dev->absmin[ABS_Y])
|
if (value < dev->absmin[ABS_Y])
|
||||||
value = dev->absmin[ABS_Y];
|
value = dev->absmin[ABS_Y];
|
||||||
mousedev->packet.y = yres - ((value - dev->absmin[ABS_Y]) * yres) / size;
|
mousedev->packet.y = yres -
|
||||||
|
((value - dev->absmin[ABS_Y]) * yres) / size;
|
||||||
mousedev->packet.abs_event = 1;
|
mousedev->packet.abs_event = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mousedev_rel_event(struct mousedev *mousedev, unsigned int code, int value)
|
static void mousedev_rel_event(struct mousedev *mousedev,
|
||||||
|
unsigned int code, int value)
|
||||||
{
|
{
|
||||||
switch (code) {
|
switch (code) {
|
||||||
case REL_X: mousedev->packet.dx += value; break;
|
case REL_X:
|
||||||
case REL_Y: mousedev->packet.dy -= value; break;
|
mousedev->packet.dx += value;
|
||||||
case REL_WHEEL: mousedev->packet.dz -= value; break;
|
break;
|
||||||
|
|
||||||
|
case REL_Y:
|
||||||
|
mousedev->packet.dy -= value;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case REL_WHEEL:
|
||||||
|
mousedev->packet.dz -= value;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mousedev_key_event(struct mousedev *mousedev, unsigned int code, int value)
|
static void mousedev_key_event(struct mousedev *mousedev,
|
||||||
|
unsigned int code, int value)
|
||||||
{
|
{
|
||||||
int index;
|
int index;
|
||||||
|
|
||||||
switch (code) {
|
switch (code) {
|
||||||
|
|
||||||
case BTN_TOUCH:
|
case BTN_TOUCH:
|
||||||
case BTN_0:
|
case BTN_0:
|
||||||
case BTN_LEFT: index = 0; break;
|
case BTN_LEFT: index = 0; break;
|
||||||
|
|
||||||
case BTN_STYLUS:
|
case BTN_STYLUS:
|
||||||
case BTN_1:
|
case BTN_1:
|
||||||
case BTN_RIGHT: index = 1; break;
|
case BTN_RIGHT: index = 1; break;
|
||||||
|
|
||||||
case BTN_2:
|
case BTN_2:
|
||||||
case BTN_FORWARD:
|
case BTN_FORWARD:
|
||||||
case BTN_STYLUS2:
|
case BTN_STYLUS2:
|
||||||
case BTN_MIDDLE: index = 2; break;
|
case BTN_MIDDLE: index = 2; break;
|
||||||
|
|
||||||
case BTN_3:
|
case BTN_3:
|
||||||
case BTN_BACK:
|
case BTN_BACK:
|
||||||
case BTN_SIDE: index = 3; break;
|
case BTN_SIDE: index = 3; break;
|
||||||
|
|
||||||
case BTN_4:
|
case BTN_4:
|
||||||
case BTN_EXTRA: index = 4; break;
|
case BTN_EXTRA: index = 4; break;
|
||||||
|
|
||||||
default: return;
|
default: return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -226,19 +257,22 @@ static void mousedev_key_event(struct mousedev *mousedev, unsigned int code, int
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mousedev_notify_readers(struct mousedev *mousedev, struct mousedev_hw_data *packet)
|
static void mousedev_notify_readers(struct mousedev *mousedev,
|
||||||
|
struct mousedev_hw_data *packet)
|
||||||
{
|
{
|
||||||
struct mousedev_client *client;
|
struct mousedev_client *client;
|
||||||
struct mousedev_motion *p;
|
struct mousedev_motion *p;
|
||||||
unsigned long flags;
|
unsigned int new_head;
|
||||||
int wake_readers = 0;
|
int wake_readers = 0;
|
||||||
|
|
||||||
list_for_each_entry(client, &mousedev->client_list, node) {
|
list_for_each_entry_rcu(client, &mousedev->client_list, node) {
|
||||||
spin_lock_irqsave(&client->packet_lock, flags);
|
|
||||||
|
/* Just acquire the lock, interrupts already disabled */
|
||||||
|
spin_lock(&client->packet_lock);
|
||||||
|
|
||||||
p = &client->packets[client->head];
|
p = &client->packets[client->head];
|
||||||
if (client->ready && p->buttons != mousedev->packet.buttons) {
|
if (client->ready && p->buttons != mousedev->packet.buttons) {
|
||||||
unsigned int new_head = (client->head + 1) % PACKET_QUEUE_LEN;
|
new_head = (client->head + 1) % PACKET_QUEUE_LEN;
|
||||||
if (new_head != client->tail) {
|
if (new_head != client->tail) {
|
||||||
p = &client->packets[client->head = new_head];
|
p = &client->packets[client->head = new_head];
|
||||||
memset(p, 0, sizeof(struct mousedev_motion));
|
memset(p, 0, sizeof(struct mousedev_motion));
|
||||||
@@ -253,19 +287,22 @@ static void mousedev_notify_readers(struct mousedev *mousedev, struct mousedev_h
|
|||||||
}
|
}
|
||||||
|
|
||||||
client->pos_x += packet->dx;
|
client->pos_x += packet->dx;
|
||||||
client->pos_x = client->pos_x < 0 ? 0 : (client->pos_x >= xres ? xres : client->pos_x);
|
client->pos_x = client->pos_x < 0 ?
|
||||||
|
0 : (client->pos_x >= xres ? xres : client->pos_x);
|
||||||
client->pos_y += packet->dy;
|
client->pos_y += packet->dy;
|
||||||
client->pos_y = client->pos_y < 0 ? 0 : (client->pos_y >= yres ? yres : client->pos_y);
|
client->pos_y = client->pos_y < 0 ?
|
||||||
|
0 : (client->pos_y >= yres ? yres : client->pos_y);
|
||||||
|
|
||||||
p->dx += packet->dx;
|
p->dx += packet->dx;
|
||||||
p->dy += packet->dy;
|
p->dy += packet->dy;
|
||||||
p->dz += packet->dz;
|
p->dz += packet->dz;
|
||||||
p->buttons = mousedev->packet.buttons;
|
p->buttons = mousedev->packet.buttons;
|
||||||
|
|
||||||
if (p->dx || p->dy || p->dz || p->buttons != client->last_buttons)
|
if (p->dx || p->dy || p->dz ||
|
||||||
|
p->buttons != client->last_buttons)
|
||||||
client->ready = 1;
|
client->ready = 1;
|
||||||
|
|
||||||
spin_unlock_irqrestore(&client->packet_lock, flags);
|
spin_unlock(&client->packet_lock);
|
||||||
|
|
||||||
if (client->ready) {
|
if (client->ready) {
|
||||||
kill_fasync(&client->fasync, SIGIO, POLL_IN);
|
kill_fasync(&client->fasync, SIGIO, POLL_IN);
|
||||||
@@ -281,7 +318,8 @@ static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
|
|||||||
{
|
{
|
||||||
if (!value) {
|
if (!value) {
|
||||||
if (mousedev->touch &&
|
if (mousedev->touch &&
|
||||||
time_before(jiffies, mousedev->touch + msecs_to_jiffies(tap_time))) {
|
time_before(jiffies,
|
||||||
|
mousedev->touch + msecs_to_jiffies(tap_time))) {
|
||||||
/*
|
/*
|
||||||
* Toggle left button to emulate tap.
|
* Toggle left button to emulate tap.
|
||||||
* We rely on the fact that mousedev_mix always has 0
|
* We rely on the fact that mousedev_mix always has 0
|
||||||
@@ -290,7 +328,8 @@ static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
|
|||||||
set_bit(0, &mousedev->packet.buttons);
|
set_bit(0, &mousedev->packet.buttons);
|
||||||
set_bit(0, &mousedev_mix->packet.buttons);
|
set_bit(0, &mousedev_mix->packet.buttons);
|
||||||
mousedev_notify_readers(mousedev, &mousedev_mix->packet);
|
mousedev_notify_readers(mousedev, &mousedev_mix->packet);
|
||||||
mousedev_notify_readers(mousedev_mix, &mousedev_mix->packet);
|
mousedev_notify_readers(mousedev_mix,
|
||||||
|
&mousedev_mix->packet);
|
||||||
clear_bit(0, &mousedev->packet.buttons);
|
clear_bit(0, &mousedev->packet.buttons);
|
||||||
clear_bit(0, &mousedev_mix->packet.buttons);
|
clear_bit(0, &mousedev_mix->packet.buttons);
|
||||||
}
|
}
|
||||||
@@ -302,18 +341,21 @@ static void mousedev_touchpad_touch(struct mousedev *mousedev, int value)
|
|||||||
mousedev->touch = jiffies;
|
mousedev->touch = jiffies;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mousedev_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
|
static void mousedev_event(struct input_handle *handle,
|
||||||
|
unsigned int type, unsigned int code, int value)
|
||||||
{
|
{
|
||||||
struct mousedev *mousedev = handle->private;
|
struct mousedev *mousedev = handle->private;
|
||||||
|
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
|
||||||
case EV_ABS:
|
case EV_ABS:
|
||||||
/* Ignore joysticks */
|
/* Ignore joysticks */
|
||||||
if (test_bit(BTN_TRIGGER, handle->dev->keybit))
|
if (test_bit(BTN_TRIGGER, handle->dev->keybit))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
|
if (test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
|
||||||
mousedev_touchpad_event(handle->dev, mousedev, code, value);
|
mousedev_touchpad_event(handle->dev,
|
||||||
|
mousedev, code, value);
|
||||||
else
|
else
|
||||||
mousedev_abs_event(handle->dev, mousedev, code, value);
|
mousedev_abs_event(handle->dev, mousedev, code, value);
|
||||||
|
|
||||||
@@ -325,7 +367,8 @@ static void mousedev_event(struct input_handle *handle, unsigned int type, unsig
|
|||||||
|
|
||||||
case EV_KEY:
|
case EV_KEY:
|
||||||
if (value != 2) {
|
if (value != 2) {
|
||||||
if (code == BTN_TOUCH && test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
|
if (code == BTN_TOUCH &&
|
||||||
|
test_bit(BTN_TOOL_FINGER, handle->dev->keybit))
|
||||||
mousedev_touchpad_touch(mousedev, value);
|
mousedev_touchpad_touch(mousedev, value);
|
||||||
else
|
else
|
||||||
mousedev_key_event(mousedev, code, value);
|
mousedev_key_event(mousedev, code, value);
|
||||||
@@ -336,8 +379,10 @@ static void mousedev_event(struct input_handle *handle, unsigned int type, unsig
|
|||||||
if (code == SYN_REPORT) {
|
if (code == SYN_REPORT) {
|
||||||
if (mousedev->touch) {
|
if (mousedev->touch) {
|
||||||
mousedev->pkt_count++;
|
mousedev->pkt_count++;
|
||||||
/* Input system eats duplicate events, but we need all of them
|
/*
|
||||||
* to do correct averaging so apply present one forward
|
* Input system eats duplicate events,
|
||||||
|
* but we need all of them to do correct
|
||||||
|
* averaging so apply present one forward
|
||||||
*/
|
*/
|
||||||
fx(0) = fx(1);
|
fx(0) = fx(1);
|
||||||
fy(0) = fy(1);
|
fy(0) = fy(1);
|
||||||
@@ -346,7 +391,8 @@ static void mousedev_event(struct input_handle *handle, unsigned int type, unsig
|
|||||||
mousedev_notify_readers(mousedev, &mousedev->packet);
|
mousedev_notify_readers(mousedev, &mousedev->packet);
|
||||||
mousedev_notify_readers(mousedev_mix, &mousedev->packet);
|
mousedev_notify_readers(mousedev_mix, &mousedev->packet);
|
||||||
|
|
||||||
mousedev->packet.dx = mousedev->packet.dy = mousedev->packet.dz = 0;
|
mousedev->packet.dx = mousedev->packet.dy =
|
||||||
|
mousedev->packet.dz = 0;
|
||||||
mousedev->packet.abs_event = 0;
|
mousedev->packet.abs_event = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -367,41 +413,45 @@ static void mousedev_free(struct device *dev)
|
|||||||
{
|
{
|
||||||
struct mousedev *mousedev = container_of(dev, struct mousedev, dev);
|
struct mousedev *mousedev = container_of(dev, struct mousedev, dev);
|
||||||
|
|
||||||
mousedev_table[mousedev->minor] = NULL;
|
|
||||||
kfree(mousedev);
|
kfree(mousedev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mixdev_add_device(struct mousedev *mousedev)
|
static int mousedev_open_device(struct mousedev *mousedev)
|
||||||
{
|
{
|
||||||
int error;
|
int retval;
|
||||||
|
|
||||||
if (mousedev_mix->open) {
|
retval = mutex_lock_interruptible(&mousedev->mutex);
|
||||||
error = input_open_device(&mousedev->handle);
|
if (retval)
|
||||||
if (error)
|
return retval;
|
||||||
return error;
|
|
||||||
|
|
||||||
mousedev->open++;
|
if (mousedev->minor == MOUSEDEV_MIX)
|
||||||
mousedev->mixdev_open = 1;
|
mixdev_open_devices();
|
||||||
}
|
else if (!mousedev->exist)
|
||||||
|
retval = -ENODEV;
|
||||||
|
else if (!mousedev->open++)
|
||||||
|
retval = input_open_device(&mousedev->handle);
|
||||||
|
|
||||||
get_device(&mousedev->dev);
|
mutex_unlock(&mousedev->mutex);
|
||||||
list_add_tail(&mousedev->mixdev_node, &mousedev_mix_list);
|
return retval;
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mixdev_remove_device(struct mousedev *mousedev)
|
static void mousedev_close_device(struct mousedev *mousedev)
|
||||||
{
|
{
|
||||||
if (mousedev->mixdev_open) {
|
mutex_lock(&mousedev->mutex);
|
||||||
mousedev->mixdev_open = 0;
|
|
||||||
if (!--mousedev->open && mousedev->exist)
|
if (mousedev->minor == MOUSEDEV_MIX)
|
||||||
|
mixdev_close_devices();
|
||||||
|
else if (mousedev->exist && !--mousedev->open)
|
||||||
input_close_device(&mousedev->handle);
|
input_close_device(&mousedev->handle);
|
||||||
}
|
|
||||||
|
|
||||||
list_del_init(&mousedev->mixdev_node);
|
mutex_unlock(&mousedev->mutex);
|
||||||
put_device(&mousedev->dev);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Open all available devices so they can all be multiplexed in one.
|
||||||
|
* stream. Note that this function is called with mousedev_mix->mutex
|
||||||
|
* held.
|
||||||
|
*/
|
||||||
static void mixdev_open_devices(void)
|
static void mixdev_open_devices(void)
|
||||||
{
|
{
|
||||||
struct mousedev *mousedev;
|
struct mousedev *mousedev;
|
||||||
@@ -411,16 +461,19 @@ static void mixdev_open_devices(void)
|
|||||||
|
|
||||||
list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
|
list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
|
||||||
if (!mousedev->mixdev_open) {
|
if (!mousedev->mixdev_open) {
|
||||||
if (!mousedev->open && mousedev->exist)
|
if (mousedev_open_device(mousedev))
|
||||||
if (input_open_device(&mousedev->handle))
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
mousedev->open++;
|
|
||||||
mousedev->mixdev_open = 1;
|
mousedev->mixdev_open = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Close all devices that were opened as part of multiplexed
|
||||||
|
* device. Note that this function is called with mousedev_mix->mutex
|
||||||
|
* held.
|
||||||
|
*/
|
||||||
static void mixdev_close_devices(void)
|
static void mixdev_close_devices(void)
|
||||||
{
|
{
|
||||||
struct mousedev *mousedev;
|
struct mousedev *mousedev;
|
||||||
@@ -431,33 +484,50 @@ static void mixdev_close_devices(void)
|
|||||||
list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
|
list_for_each_entry(mousedev, &mousedev_mix_list, mixdev_node) {
|
||||||
if (mousedev->mixdev_open) {
|
if (mousedev->mixdev_open) {
|
||||||
mousedev->mixdev_open = 0;
|
mousedev->mixdev_open = 0;
|
||||||
if (!--mousedev->open && mousedev->exist)
|
mousedev_close_device(mousedev);
|
||||||
input_close_device(&mousedev->handle);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void mousedev_attach_client(struct mousedev *mousedev,
|
||||||
|
struct mousedev_client *client)
|
||||||
|
{
|
||||||
|
spin_lock(&mousedev->client_lock);
|
||||||
|
list_add_tail_rcu(&client->node, &mousedev->client_list);
|
||||||
|
spin_unlock(&mousedev->client_lock);
|
||||||
|
/*
|
||||||
|
* We don't use synchronize_rcu() here because read-side
|
||||||
|
* critical section is protected by a spinlock (dev->event_lock)
|
||||||
|
* instead of rcu_read_lock().
|
||||||
|
*/
|
||||||
|
synchronize_sched();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void mousedev_detach_client(struct mousedev *mousedev,
|
||||||
|
struct mousedev_client *client)
|
||||||
|
{
|
||||||
|
spin_lock(&mousedev->client_lock);
|
||||||
|
list_del_rcu(&client->node);
|
||||||
|
spin_unlock(&mousedev->client_lock);
|
||||||
|
synchronize_sched();
|
||||||
|
}
|
||||||
|
|
||||||
static int mousedev_release(struct inode *inode, struct file *file)
|
static int mousedev_release(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
struct mousedev_client *client = file->private_data;
|
struct mousedev_client *client = file->private_data;
|
||||||
struct mousedev *mousedev = client->mousedev;
|
struct mousedev *mousedev = client->mousedev;
|
||||||
|
|
||||||
mousedev_fasync(-1, file, 0);
|
mousedev_fasync(-1, file, 0);
|
||||||
|
mousedev_detach_client(mousedev, client);
|
||||||
list_del(&client->node);
|
|
||||||
kfree(client);
|
kfree(client);
|
||||||
|
|
||||||
if (mousedev->minor == MOUSEDEV_MIX)
|
mousedev_close_device(mousedev);
|
||||||
mixdev_close_devices();
|
|
||||||
else if (!--mousedev->open && mousedev->exist)
|
|
||||||
input_close_device(&mousedev->handle);
|
|
||||||
|
|
||||||
put_device(&mousedev->dev);
|
put_device(&mousedev->dev);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int mousedev_open(struct inode *inode, struct file *file)
|
static int mousedev_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
struct mousedev_client *client;
|
struct mousedev_client *client;
|
||||||
@@ -475,12 +545,17 @@ static int mousedev_open(struct inode *inode, struct file *file)
|
|||||||
if (i >= MOUSEDEV_MINORS)
|
if (i >= MOUSEDEV_MINORS)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
error = mutex_lock_interruptible(&mousedev_table_mutex);
|
||||||
|
if (error)
|
||||||
|
return error;
|
||||||
mousedev = mousedev_table[i];
|
mousedev = mousedev_table[i];
|
||||||
|
if (mousedev)
|
||||||
|
get_device(&mousedev->dev);
|
||||||
|
mutex_unlock(&mousedev_table_mutex);
|
||||||
|
|
||||||
if (!mousedev)
|
if (!mousedev)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
get_device(&mousedev->dev);
|
|
||||||
|
|
||||||
client = kzalloc(sizeof(struct mousedev_client), GFP_KERNEL);
|
client = kzalloc(sizeof(struct mousedev_client), GFP_KERNEL);
|
||||||
if (!client) {
|
if (!client) {
|
||||||
error = -ENOMEM;
|
error = -ENOMEM;
|
||||||
@@ -491,21 +566,17 @@ static int mousedev_open(struct inode *inode, struct file *file)
|
|||||||
client->pos_x = xres / 2;
|
client->pos_x = xres / 2;
|
||||||
client->pos_y = yres / 2;
|
client->pos_y = yres / 2;
|
||||||
client->mousedev = mousedev;
|
client->mousedev = mousedev;
|
||||||
list_add_tail(&client->node, &mousedev->client_list);
|
mousedev_attach_client(mousedev, client);
|
||||||
|
|
||||||
if (mousedev->minor == MOUSEDEV_MIX)
|
error = mousedev_open_device(mousedev);
|
||||||
mixdev_open_devices();
|
|
||||||
else if (!mousedev->open++ && mousedev->exist) {
|
|
||||||
error = input_open_device(&mousedev->handle);
|
|
||||||
if (error)
|
if (error)
|
||||||
goto err_free_client;
|
goto err_free_client;
|
||||||
}
|
|
||||||
|
|
||||||
file->private_data = client;
|
file->private_data = client;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_free_client:
|
err_free_client:
|
||||||
list_del(&client->node);
|
mousedev_detach_client(mousedev, client);
|
||||||
kfree(client);
|
kfree(client);
|
||||||
err_put_mousedev:
|
err_put_mousedev:
|
||||||
put_device(&mousedev->dev);
|
put_device(&mousedev->dev);
|
||||||
@@ -517,15 +588,13 @@ static inline int mousedev_limit_delta(int delta, int limit)
|
|||||||
return delta > limit ? limit : (delta < -limit ? -limit : delta);
|
return delta > limit ? limit : (delta < -limit ? -limit : delta);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mousedev_packet(struct mousedev_client *client, signed char *ps2_data)
|
static void mousedev_packet(struct mousedev_client *client,
|
||||||
|
signed char *ps2_data)
|
||||||
{
|
{
|
||||||
struct mousedev_motion *p;
|
struct mousedev_motion *p = &client->packets[client->tail];
|
||||||
unsigned long flags;
|
|
||||||
|
|
||||||
spin_lock_irqsave(&client->packet_lock, flags);
|
ps2_data[0] = 0x08 |
|
||||||
p = &client->packets[client->tail];
|
((p->dx < 0) << 4) | ((p->dy < 0) << 5) | (p->buttons & 0x07);
|
||||||
|
|
||||||
ps2_data[0] = 0x08 | ((p->dx < 0) << 4) | ((p->dy < 0) << 5) | (p->buttons & 0x07);
|
|
||||||
ps2_data[1] = mousedev_limit_delta(p->dx, 127);
|
ps2_data[1] = mousedev_limit_delta(p->dx, 127);
|
||||||
ps2_data[2] = mousedev_limit_delta(p->dy, 127);
|
ps2_data[2] = mousedev_limit_delta(p->dy, 127);
|
||||||
p->dx -= ps2_data[1];
|
p->dx -= ps2_data[1];
|
||||||
@@ -540,7 +609,8 @@ static void mousedev_packet(struct mousedev_client *client, signed char *ps2_dat
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case MOUSEDEV_EMUL_IMPS:
|
case MOUSEDEV_EMUL_IMPS:
|
||||||
ps2_data[0] |= ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
|
ps2_data[0] |=
|
||||||
|
((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
|
||||||
ps2_data[3] = mousedev_limit_delta(p->dz, 127);
|
ps2_data[3] = mousedev_limit_delta(p->dz, 127);
|
||||||
p->dz -= ps2_data[3];
|
p->dz -= ps2_data[3];
|
||||||
client->bufsiz = 4;
|
client->bufsiz = 4;
|
||||||
@@ -548,7 +618,8 @@ static void mousedev_packet(struct mousedev_client *client, signed char *ps2_dat
|
|||||||
|
|
||||||
case MOUSEDEV_EMUL_PS2:
|
case MOUSEDEV_EMUL_PS2:
|
||||||
default:
|
default:
|
||||||
ps2_data[0] |= ((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
|
ps2_data[0] |=
|
||||||
|
((p->buttons & 0x10) >> 3) | ((p->buttons & 0x08) >> 1);
|
||||||
p->dz = 0;
|
p->dz = 0;
|
||||||
client->bufsiz = 3;
|
client->bufsiz = 3;
|
||||||
break;
|
break;
|
||||||
@@ -561,41 +632,14 @@ static void mousedev_packet(struct mousedev_client *client, signed char *ps2_dat
|
|||||||
} else
|
} else
|
||||||
client->tail = (client->tail + 1) % PACKET_QUEUE_LEN;
|
client->tail = (client->tail + 1) % PACKET_QUEUE_LEN;
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&client->packet_lock, flags);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void mousedev_generate_response(struct mousedev_client *client,
|
||||||
static ssize_t mousedev_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
|
int command)
|
||||||
{
|
{
|
||||||
struct mousedev_client *client = file->private_data;
|
client->ps2[0] = 0xfa; /* ACK */
|
||||||
unsigned char c;
|
|
||||||
unsigned int i;
|
|
||||||
|
|
||||||
for (i = 0; i < count; i++) {
|
switch (command) {
|
||||||
|
|
||||||
if (get_user(c, buffer + i))
|
|
||||||
return -EFAULT;
|
|
||||||
|
|
||||||
if (c == mousedev_imex_seq[client->imexseq]) {
|
|
||||||
if (++client->imexseq == MOUSEDEV_SEQ_LEN) {
|
|
||||||
client->imexseq = 0;
|
|
||||||
client->mode = MOUSEDEV_EMUL_EXPS;
|
|
||||||
}
|
|
||||||
} else
|
|
||||||
client->imexseq = 0;
|
|
||||||
|
|
||||||
if (c == mousedev_imps_seq[client->impsseq]) {
|
|
||||||
if (++client->impsseq == MOUSEDEV_SEQ_LEN) {
|
|
||||||
client->impsseq = 0;
|
|
||||||
client->mode = MOUSEDEV_EMUL_IMPS;
|
|
||||||
}
|
|
||||||
} else
|
|
||||||
client->impsseq = 0;
|
|
||||||
|
|
||||||
client->ps2[0] = 0xfa;
|
|
||||||
|
|
||||||
switch (c) {
|
|
||||||
|
|
||||||
case 0xeb: /* Poll */
|
case 0xeb: /* Poll */
|
||||||
mousedev_packet(client, &client->ps2[1]);
|
mousedev_packet(client, &client->ps2[1]);
|
||||||
@@ -604,9 +648,15 @@ static ssize_t mousedev_write(struct file *file, const char __user *buffer, size
|
|||||||
|
|
||||||
case 0xf2: /* Get ID */
|
case 0xf2: /* Get ID */
|
||||||
switch (client->mode) {
|
switch (client->mode) {
|
||||||
case MOUSEDEV_EMUL_PS2: client->ps2[1] = 0; break;
|
case MOUSEDEV_EMUL_PS2:
|
||||||
case MOUSEDEV_EMUL_IMPS: client->ps2[1] = 3; break;
|
client->ps2[1] = 0;
|
||||||
case MOUSEDEV_EMUL_EXPS: client->ps2[1] = 4; break;
|
break;
|
||||||
|
case MOUSEDEV_EMUL_IMPS:
|
||||||
|
client->ps2[1] = 3;
|
||||||
|
break;
|
||||||
|
case MOUSEDEV_EMUL_EXPS:
|
||||||
|
client->ps2[1] = 4;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
client->bufsiz = 2;
|
client->bufsiz = 2;
|
||||||
break;
|
break;
|
||||||
@@ -627,34 +677,72 @@ static ssize_t mousedev_write(struct file *file, const char __user *buffer, size
|
|||||||
client->bufsiz = 1;
|
client->bufsiz = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
client->buffer = client->bufsiz;
|
client->buffer = client->bufsiz;
|
||||||
|
}
|
||||||
|
|
||||||
|
static ssize_t mousedev_write(struct file *file, const char __user *buffer,
|
||||||
|
size_t count, loff_t *ppos)
|
||||||
|
{
|
||||||
|
struct mousedev_client *client = file->private_data;
|
||||||
|
unsigned char c;
|
||||||
|
unsigned int i;
|
||||||
|
|
||||||
|
for (i = 0; i < count; i++) {
|
||||||
|
|
||||||
|
if (get_user(c, buffer + i))
|
||||||
|
return -EFAULT;
|
||||||
|
|
||||||
|
spin_lock_irq(&client->packet_lock);
|
||||||
|
|
||||||
|
if (c == mousedev_imex_seq[client->imexseq]) {
|
||||||
|
if (++client->imexseq == MOUSEDEV_SEQ_LEN) {
|
||||||
|
client->imexseq = 0;
|
||||||
|
client->mode = MOUSEDEV_EMUL_EXPS;
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
client->imexseq = 0;
|
||||||
|
|
||||||
|
if (c == mousedev_imps_seq[client->impsseq]) {
|
||||||
|
if (++client->impsseq == MOUSEDEV_SEQ_LEN) {
|
||||||
|
client->impsseq = 0;
|
||||||
|
client->mode = MOUSEDEV_EMUL_IMPS;
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
client->impsseq = 0;
|
||||||
|
|
||||||
|
mousedev_generate_response(client, c);
|
||||||
|
|
||||||
|
spin_unlock_irq(&client->packet_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
kill_fasync(&client->fasync, SIGIO, POLL_IN);
|
kill_fasync(&client->fasync, SIGIO, POLL_IN);
|
||||||
|
|
||||||
wake_up_interruptible(&client->mousedev->wait);
|
wake_up_interruptible(&client->mousedev->wait);
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t mousedev_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
|
static ssize_t mousedev_read(struct file *file, char __user *buffer,
|
||||||
|
size_t count, loff_t *ppos)
|
||||||
{
|
{
|
||||||
struct mousedev_client *client = file->private_data;
|
struct mousedev_client *client = file->private_data;
|
||||||
|
struct mousedev *mousedev = client->mousedev;
|
||||||
|
signed char data[sizeof(client->ps2)];
|
||||||
int retval = 0;
|
int retval = 0;
|
||||||
|
|
||||||
if (!client->ready && !client->buffer && (file->f_flags & O_NONBLOCK))
|
if (!client->ready && !client->buffer && mousedev->exist &&
|
||||||
|
(file->f_flags & O_NONBLOCK))
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
|
|
||||||
retval = wait_event_interruptible(client->mousedev->wait,
|
retval = wait_event_interruptible(mousedev->wait,
|
||||||
!client->mousedev->exist || client->ready || client->buffer);
|
!mousedev->exist || client->ready || client->buffer);
|
||||||
|
|
||||||
if (retval)
|
if (retval)
|
||||||
return retval;
|
return retval;
|
||||||
|
|
||||||
if (!client->mousedev->exist)
|
if (!mousedev->exist)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
spin_lock_irq(&client->packet_lock);
|
||||||
|
|
||||||
if (!client->buffer && client->ready) {
|
if (!client->buffer && client->ready) {
|
||||||
mousedev_packet(client, client->ps2);
|
mousedev_packet(client, client->ps2);
|
||||||
client->buffer = client->bufsiz;
|
client->buffer = client->bufsiz;
|
||||||
@@ -663,9 +751,12 @@ static ssize_t mousedev_read(struct file *file, char __user *buffer, size_t coun
|
|||||||
if (count > client->buffer)
|
if (count > client->buffer)
|
||||||
count = client->buffer;
|
count = client->buffer;
|
||||||
|
|
||||||
|
memcpy(data, client->ps2 + client->bufsiz - client->buffer, count);
|
||||||
client->buffer -= count;
|
client->buffer -= count;
|
||||||
|
|
||||||
if (copy_to_user(buffer, client->ps2 + client->bufsiz - client->buffer - count, count))
|
spin_unlock_irq(&client->packet_lock);
|
||||||
|
|
||||||
|
if (copy_to_user(buffer, data, count))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
@@ -692,6 +783,60 @@ static const struct file_operations mousedev_fops = {
|
|||||||
.fasync = mousedev_fasync,
|
.fasync = mousedev_fasync,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static int mousedev_install_chrdev(struct mousedev *mousedev)
|
||||||
|
{
|
||||||
|
mousedev_table[mousedev->minor] = mousedev;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void mousedev_remove_chrdev(struct mousedev *mousedev)
|
||||||
|
{
|
||||||
|
mutex_lock(&mousedev_table_mutex);
|
||||||
|
mousedev_table[mousedev->minor] = NULL;
|
||||||
|
mutex_unlock(&mousedev_table_mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Mark device non-existent. This disables writes, ioctls and
|
||||||
|
* prevents new users from opening the device. Already posted
|
||||||
|
* blocking reads will stay, however new ones will fail.
|
||||||
|
*/
|
||||||
|
static void mousedev_mark_dead(struct mousedev *mousedev)
|
||||||
|
{
|
||||||
|
mutex_lock(&mousedev->mutex);
|
||||||
|
mousedev->exist = 0;
|
||||||
|
mutex_unlock(&mousedev->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Wake up users waiting for IO so they can disconnect from
|
||||||
|
* dead device.
|
||||||
|
*/
|
||||||
|
static void mousedev_hangup(struct mousedev *mousedev)
|
||||||
|
{
|
||||||
|
struct mousedev_client *client;
|
||||||
|
|
||||||
|
spin_lock(&mousedev->client_lock);
|
||||||
|
list_for_each_entry(client, &mousedev->client_list, node)
|
||||||
|
kill_fasync(&client->fasync, SIGIO, POLL_HUP);
|
||||||
|
spin_unlock(&mousedev->client_lock);
|
||||||
|
|
||||||
|
wake_up_interruptible(&mousedev->wait);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void mousedev_cleanup(struct mousedev *mousedev)
|
||||||
|
{
|
||||||
|
struct input_handle *handle = &mousedev->handle;
|
||||||
|
|
||||||
|
mousedev_mark_dead(mousedev);
|
||||||
|
mousedev_hangup(mousedev);
|
||||||
|
mousedev_remove_chrdev(mousedev);
|
||||||
|
|
||||||
|
/* mousedev is marked dead so no one else accesses mousedev->open */
|
||||||
|
if (mousedev->open)
|
||||||
|
input_close_device(handle);
|
||||||
|
}
|
||||||
|
|
||||||
static struct mousedev *mousedev_create(struct input_dev *dev,
|
static struct mousedev *mousedev_create(struct input_dev *dev,
|
||||||
struct input_handler *handler,
|
struct input_handler *handler,
|
||||||
int minor)
|
int minor)
|
||||||
@@ -707,6 +852,10 @@ static struct mousedev *mousedev_create(struct input_dev *dev,
|
|||||||
|
|
||||||
INIT_LIST_HEAD(&mousedev->client_list);
|
INIT_LIST_HEAD(&mousedev->client_list);
|
||||||
INIT_LIST_HEAD(&mousedev->mixdev_node);
|
INIT_LIST_HEAD(&mousedev->mixdev_node);
|
||||||
|
spin_lock_init(&mousedev->client_lock);
|
||||||
|
mutex_init(&mousedev->mutex);
|
||||||
|
lockdep_set_subclass(&mousedev->mutex,
|
||||||
|
minor == MOUSEDEV_MIX ? MOUSEDEV_MIX : 0);
|
||||||
init_waitqueue_head(&mousedev->wait);
|
init_waitqueue_head(&mousedev->wait);
|
||||||
|
|
||||||
if (minor == MOUSEDEV_MIX)
|
if (minor == MOUSEDEV_MIX)
|
||||||
@@ -731,14 +880,27 @@ static struct mousedev *mousedev_create(struct input_dev *dev,
|
|||||||
mousedev->dev.release = mousedev_free;
|
mousedev->dev.release = mousedev_free;
|
||||||
device_initialize(&mousedev->dev);
|
device_initialize(&mousedev->dev);
|
||||||
|
|
||||||
mousedev_table[minor] = mousedev;
|
if (minor != MOUSEDEV_MIX) {
|
||||||
|
error = input_register_handle(&mousedev->handle);
|
||||||
|
if (error)
|
||||||
|
goto err_free_mousedev;
|
||||||
|
}
|
||||||
|
|
||||||
|
error = mousedev_install_chrdev(mousedev);
|
||||||
|
if (error)
|
||||||
|
goto err_unregister_handle;
|
||||||
|
|
||||||
error = device_add(&mousedev->dev);
|
error = device_add(&mousedev->dev);
|
||||||
if (error)
|
if (error)
|
||||||
goto err_free_mousedev;
|
goto err_cleanup_mousedev;
|
||||||
|
|
||||||
return mousedev;
|
return mousedev;
|
||||||
|
|
||||||
|
err_cleanup_mousedev:
|
||||||
|
mousedev_cleanup(mousedev);
|
||||||
|
err_unregister_handle:
|
||||||
|
if (minor != MOUSEDEV_MIX)
|
||||||
|
input_unregister_handle(&mousedev->handle);
|
||||||
err_free_mousedev:
|
err_free_mousedev:
|
||||||
put_device(&mousedev->dev);
|
put_device(&mousedev->dev);
|
||||||
err_out:
|
err_out:
|
||||||
@@ -747,29 +909,64 @@ static struct mousedev *mousedev_create(struct input_dev *dev,
|
|||||||
|
|
||||||
static void mousedev_destroy(struct mousedev *mousedev)
|
static void mousedev_destroy(struct mousedev *mousedev)
|
||||||
{
|
{
|
||||||
struct mousedev_client *client;
|
|
||||||
|
|
||||||
device_del(&mousedev->dev);
|
device_del(&mousedev->dev);
|
||||||
mousedev->exist = 0;
|
mousedev_cleanup(mousedev);
|
||||||
|
if (mousedev->minor != MOUSEDEV_MIX)
|
||||||
|
input_unregister_handle(&mousedev->handle);
|
||||||
|
put_device(&mousedev->dev);
|
||||||
|
}
|
||||||
|
|
||||||
if (mousedev->open) {
|
static int mixdev_add_device(struct mousedev *mousedev)
|
||||||
input_close_device(&mousedev->handle);
|
{
|
||||||
list_for_each_entry(client, &mousedev->client_list, node)
|
int retval;
|
||||||
kill_fasync(&client->fasync, SIGIO, POLL_HUP);
|
|
||||||
wake_up_interruptible(&mousedev->wait);
|
retval = mutex_lock_interruptible(&mousedev_mix->mutex);
|
||||||
|
if (retval)
|
||||||
|
return retval;
|
||||||
|
|
||||||
|
if (mousedev_mix->open) {
|
||||||
|
retval = mousedev_open_device(mousedev);
|
||||||
|
if (retval)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
mousedev->mixdev_open = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_device(&mousedev->dev);
|
||||||
|
list_add_tail(&mousedev->mixdev_node, &mousedev_mix_list);
|
||||||
|
|
||||||
|
out:
|
||||||
|
mutex_unlock(&mousedev_mix->mutex);
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void mixdev_remove_device(struct mousedev *mousedev)
|
||||||
|
{
|
||||||
|
mutex_lock(&mousedev_mix->mutex);
|
||||||
|
|
||||||
|
if (mousedev->mixdev_open) {
|
||||||
|
mousedev->mixdev_open = 0;
|
||||||
|
mousedev_close_device(mousedev);
|
||||||
|
}
|
||||||
|
|
||||||
|
list_del_init(&mousedev->mixdev_node);
|
||||||
|
mutex_unlock(&mousedev_mix->mutex);
|
||||||
|
|
||||||
put_device(&mousedev->dev);
|
put_device(&mousedev->dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mousedev_connect(struct input_handler *handler, struct input_dev *dev,
|
static int mousedev_connect(struct input_handler *handler,
|
||||||
|
struct input_dev *dev,
|
||||||
const struct input_device_id *id)
|
const struct input_device_id *id)
|
||||||
{
|
{
|
||||||
struct mousedev *mousedev;
|
struct mousedev *mousedev;
|
||||||
int minor;
|
int minor;
|
||||||
int error;
|
int error;
|
||||||
|
|
||||||
for (minor = 0; minor < MOUSEDEV_MINORS && mousedev_table[minor]; minor++);
|
for (minor = 0; minor < MOUSEDEV_MINORS; minor++)
|
||||||
|
if (!mousedev_table[minor])
|
||||||
|
break;
|
||||||
|
|
||||||
if (minor == MOUSEDEV_MINORS) {
|
if (minor == MOUSEDEV_MINORS) {
|
||||||
printk(KERN_ERR "mousedev: no more free mousedev devices\n");
|
printk(KERN_ERR "mousedev: no more free mousedev devices\n");
|
||||||
return -ENFILE;
|
return -ENFILE;
|
||||||
@@ -779,21 +976,13 @@ static int mousedev_connect(struct input_handler *handler, struct input_dev *dev
|
|||||||
if (IS_ERR(mousedev))
|
if (IS_ERR(mousedev))
|
||||||
return PTR_ERR(mousedev);
|
return PTR_ERR(mousedev);
|
||||||
|
|
||||||
error = input_register_handle(&mousedev->handle);
|
|
||||||
if (error)
|
|
||||||
goto err_delete_mousedev;
|
|
||||||
|
|
||||||
error = mixdev_add_device(mousedev);
|
error = mixdev_add_device(mousedev);
|
||||||
if (error)
|
if (error) {
|
||||||
goto err_unregister_handle;
|
mousedev_destroy(mousedev);
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_unregister_handle:
|
|
||||||
input_unregister_handle(&mousedev->handle);
|
|
||||||
err_delete_mousedev:
|
|
||||||
device_unregister(&mousedev->dev);
|
|
||||||
return error;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mousedev_disconnect(struct input_handle *handle)
|
static void mousedev_disconnect(struct input_handle *handle)
|
||||||
@@ -801,33 +990,42 @@ static void mousedev_disconnect(struct input_handle *handle)
|
|||||||
struct mousedev *mousedev = handle->private;
|
struct mousedev *mousedev = handle->private;
|
||||||
|
|
||||||
mixdev_remove_device(mousedev);
|
mixdev_remove_device(mousedev);
|
||||||
input_unregister_handle(handle);
|
|
||||||
mousedev_destroy(mousedev);
|
mousedev_destroy(mousedev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct input_device_id mousedev_ids[] = {
|
static const struct input_device_id mousedev_ids[] = {
|
||||||
{
|
{
|
||||||
.flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT | INPUT_DEVICE_ID_MATCH_RELBIT,
|
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
|
||||||
|
INPUT_DEVICE_ID_MATCH_KEYBIT |
|
||||||
|
INPUT_DEVICE_ID_MATCH_RELBIT,
|
||||||
.evbit = { BIT(EV_KEY) | BIT(EV_REL) },
|
.evbit = { BIT(EV_KEY) | BIT(EV_REL) },
|
||||||
.keybit = { [LONG(BTN_LEFT)] = BIT(BTN_LEFT) },
|
.keybit = { [LONG(BTN_LEFT)] = BIT(BTN_LEFT) },
|
||||||
.relbit = { BIT(REL_X) | BIT(REL_Y) },
|
.relbit = { BIT(REL_X) | BIT(REL_Y) },
|
||||||
}, /* A mouse like device, at least one button, two relative axes */
|
}, /* A mouse like device, at least one button,
|
||||||
|
two relative axes */
|
||||||
{
|
{
|
||||||
.flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_RELBIT,
|
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
|
||||||
|
INPUT_DEVICE_ID_MATCH_RELBIT,
|
||||||
.evbit = { BIT(EV_KEY) | BIT(EV_REL) },
|
.evbit = { BIT(EV_KEY) | BIT(EV_REL) },
|
||||||
.relbit = { BIT(REL_WHEEL) },
|
.relbit = { BIT(REL_WHEEL) },
|
||||||
}, /* A separate scrollwheel */
|
}, /* A separate scrollwheel */
|
||||||
{
|
{
|
||||||
.flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT | INPUT_DEVICE_ID_MATCH_ABSBIT,
|
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
|
||||||
|
INPUT_DEVICE_ID_MATCH_KEYBIT |
|
||||||
|
INPUT_DEVICE_ID_MATCH_ABSBIT,
|
||||||
.evbit = { BIT(EV_KEY) | BIT(EV_ABS) },
|
.evbit = { BIT(EV_KEY) | BIT(EV_ABS) },
|
||||||
.keybit = { [LONG(BTN_TOUCH)] = BIT(BTN_TOUCH) },
|
.keybit = { [LONG(BTN_TOUCH)] = BIT(BTN_TOUCH) },
|
||||||
.absbit = { BIT(ABS_X) | BIT(ABS_Y) },
|
.absbit = { BIT(ABS_X) | BIT(ABS_Y) },
|
||||||
}, /* A tablet like device, at least touch detection, two absolute axes */
|
}, /* A tablet like device, at least touch detection,
|
||||||
|
two absolute axes */
|
||||||
{
|
{
|
||||||
.flags = INPUT_DEVICE_ID_MATCH_EVBIT | INPUT_DEVICE_ID_MATCH_KEYBIT | INPUT_DEVICE_ID_MATCH_ABSBIT,
|
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
|
||||||
|
INPUT_DEVICE_ID_MATCH_KEYBIT |
|
||||||
|
INPUT_DEVICE_ID_MATCH_ABSBIT,
|
||||||
.evbit = { BIT(EV_KEY) | BIT(EV_ABS) },
|
.evbit = { BIT(EV_KEY) | BIT(EV_ABS) },
|
||||||
.keybit = { [LONG(BTN_TOOL_FINGER)] = BIT(BTN_TOOL_FINGER) },
|
.keybit = { [LONG(BTN_TOOL_FINGER)] = BIT(BTN_TOOL_FINGER) },
|
||||||
.absbit = { BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_PRESSURE) | BIT(ABS_TOOL_WIDTH) },
|
.absbit = { BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_PRESSURE) |
|
||||||
|
BIT(ABS_TOOL_WIDTH) },
|
||||||
}, /* A touchpad */
|
}, /* A touchpad */
|
||||||
|
|
||||||
{ }, /* Terminating entry */
|
{ }, /* Terminating entry */
|
||||||
|
Reference in New Issue
Block a user