Commit ff462551 authored by Anssi Hannula's avatar Anssi Hannula Committed by Dmitry Torokhov

Input: uinput - switch to the new FF interface

The userspace interface of the force feedback part is changed and
documentation in uinput.h is updated accordingly. MODULE_VERSION
is also incremented to reflect the revision.
Signed-off-by: default avatarAnssi Hannula <anssi.hannula@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent dc76c912
...@@ -20,6 +20,9 @@ ...@@ -20,6 +20,9 @@
* Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org> * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
* *
* Changes/Revisions: * Changes/Revisions:
* 0.3 09/04/2006 (Anssi Hannula <anssi.hannula@gmail.com>)
* - updated ff support for the changes in kernel interface
* - added MODULE_VERSION
* 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>) * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
* - added force feedback support * - added force feedback support
* - added UI_SET_PHYS * - added UI_SET_PHYS
...@@ -107,18 +110,31 @@ static int uinput_request_submit(struct input_dev *dev, struct uinput_request *r ...@@ -107,18 +110,31 @@ static int uinput_request_submit(struct input_dev *dev, struct uinput_request *r
return request->retval; return request->retval;
} }
static int uinput_dev_upload_effect(struct input_dev *dev, struct ff_effect *effect) static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
{
uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
}
static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
{
uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
}
static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
{
return uinput_dev_event(dev, EV_FF, effect_id, value);
}
static int uinput_dev_upload_effect(struct input_dev *dev, struct ff_effect *effect, struct ff_effect *old)
{ {
struct uinput_request request; struct uinput_request request;
int retval; int retval;
if (!test_bit(EV_FF, dev->evbit))
return -ENOSYS;
request.id = -1; request.id = -1;
init_completion(&request.done); init_completion(&request.done);
request.code = UI_FF_UPLOAD; request.code = UI_FF_UPLOAD;
request.u.effect = effect; request.u.upload.effect = effect;
request.u.upload.old = old;
retval = uinput_request_reserve_slot(dev->private, &request); retval = uinput_request_reserve_slot(dev->private, &request);
if (!retval) if (!retval)
...@@ -168,6 +184,7 @@ static void uinput_destroy_device(struct uinput_device *udev) ...@@ -168,6 +184,7 @@ static void uinput_destroy_device(struct uinput_device *udev)
static int uinput_create_device(struct uinput_device *udev) static int uinput_create_device(struct uinput_device *udev)
{ {
struct input_dev *dev = udev->dev;
int error; int error;
if (udev->state != UIST_SETUP_COMPLETE) { if (udev->state != UIST_SETUP_COMPLETE) {
...@@ -175,15 +192,29 @@ static int uinput_create_device(struct uinput_device *udev) ...@@ -175,15 +192,29 @@ static int uinput_create_device(struct uinput_device *udev)
return -EINVAL; return -EINVAL;
} }
error = input_register_device(udev->dev); if (udev->ff_effects_max) {
if (error) { error = input_ff_create(dev, udev->ff_effects_max);
uinput_destroy_device(udev); if (error)
return error; goto fail1;
dev->ff->upload = uinput_dev_upload_effect;
dev->ff->erase = uinput_dev_erase_effect;
dev->ff->playback = uinput_dev_playback;
dev->ff->set_gain = uinput_dev_set_gain;
dev->ff->set_autocenter = uinput_dev_set_autocenter;
} }
error = input_register_device(udev->dev);
if (error)
goto fail2;
udev->state = UIST_CREATED; udev->state = UIST_CREATED;
return 0; return 0;
fail2: input_ff_destroy(dev);
fail1: uinput_destroy_device(udev);
return error;
} }
static int uinput_open(struct inode *inode, struct file *file) static int uinput_open(struct inode *inode, struct file *file)
...@@ -243,8 +274,6 @@ static int uinput_allocate_device(struct uinput_device *udev) ...@@ -243,8 +274,6 @@ static int uinput_allocate_device(struct uinput_device *udev)
return -ENOMEM; return -ENOMEM;
udev->dev->event = uinput_dev_event; udev->dev->event = uinput_dev_event;
udev->dev->upload_effect = uinput_dev_upload_effect;
udev->dev->erase_effect = uinput_dev_erase_effect;
udev->dev->private = udev; udev->dev->private = udev;
return 0; return 0;
...@@ -278,6 +307,8 @@ static int uinput_setup_device(struct uinput_device *udev, const char __user *bu ...@@ -278,6 +307,8 @@ static int uinput_setup_device(struct uinput_device *udev, const char __user *bu
goto exit; goto exit;
} }
udev->ff_effects_max = user_dev->ff_effects_max;
size = strnlen(user_dev->name, UINPUT_MAX_NAME_SIZE) + 1; size = strnlen(user_dev->name, UINPUT_MAX_NAME_SIZE) + 1;
if (!size) { if (!size) {
retval = -EINVAL; retval = -EINVAL;
...@@ -296,7 +327,6 @@ static int uinput_setup_device(struct uinput_device *udev, const char __user *bu ...@@ -296,7 +327,6 @@ static int uinput_setup_device(struct uinput_device *udev, const char __user *bu
dev->id.vendor = user_dev->id.vendor; dev->id.vendor = user_dev->id.vendor;
dev->id.product = user_dev->id.product; dev->id.product = user_dev->id.product;
dev->id.version = user_dev->id.version; dev->id.version = user_dev->id.version;
dev->ff_effects_max = user_dev->ff_effects_max;
size = sizeof(int) * (ABS_MAX + 1); size = sizeof(int) * (ABS_MAX + 1);
memcpy(dev->absmax, user_dev->absmax, size); memcpy(dev->absmax, user_dev->absmax, size);
...@@ -525,12 +555,17 @@ static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -525,12 +555,17 @@ static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
break; break;
} }
req = uinput_request_find(udev, ff_up.request_id); req = uinput_request_find(udev, ff_up.request_id);
if (!(req && req->code == UI_FF_UPLOAD && req->u.effect)) { if (!(req && req->code == UI_FF_UPLOAD && req->u.upload.effect)) {
retval = -EINVAL; retval = -EINVAL;
break; break;
} }
ff_up.retval = 0; ff_up.retval = 0;
memcpy(&ff_up.effect, req->u.effect, sizeof(struct ff_effect)); memcpy(&ff_up.effect, req->u.upload.effect, sizeof(struct ff_effect));
if (req->u.upload.old)
memcpy(&ff_up.old, req->u.upload.old, sizeof(struct ff_effect));
else
memset(&ff_up.old, 0, sizeof(struct ff_effect));
if (copy_to_user(p, &ff_up, sizeof(ff_up))) { if (copy_to_user(p, &ff_up, sizeof(ff_up))) {
retval = -EFAULT; retval = -EFAULT;
break; break;
...@@ -561,12 +596,11 @@ static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg) ...@@ -561,12 +596,11 @@ static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
break; break;
} }
req = uinput_request_find(udev, ff_up.request_id); req = uinput_request_find(udev, ff_up.request_id);
if (!(req && req->code == UI_FF_UPLOAD && req->u.effect)) { if (!(req && req->code == UI_FF_UPLOAD && req->u.upload.effect)) {
retval = -EINVAL; retval = -EINVAL;
break; break;
} }
req->retval = ff_up.retval; req->retval = ff_up.retval;
memcpy(req->u.effect, &ff_up.effect, sizeof(struct ff_effect));
uinput_request_done(udev, req); uinput_request_done(udev, req);
break; break;
...@@ -622,6 +656,7 @@ static void __exit uinput_exit(void) ...@@ -622,6 +656,7 @@ static void __exit uinput_exit(void)
MODULE_AUTHOR("Aristeu Sergio Rozanski Filho"); MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
MODULE_DESCRIPTION("User level driver support for input subsystem"); MODULE_DESCRIPTION("User level driver support for input subsystem");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION("0.3");
module_init(uinput_init); module_init(uinput_init);
module_exit(uinput_exit); module_exit(uinput_exit);
......
...@@ -22,12 +22,18 @@ ...@@ -22,12 +22,18 @@
* Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org> * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
* *
* Changes/Revisions: * Changes/Revisions:
* 0.3 24/05/2006 (Anssi Hannula <anssi.hannulagmail.com>)
* - update ff support for the changes in kernel interface
* - add UINPUT_VERSION
* 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>) * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
* - added force feedback support * - added force feedback support
* - added UI_SET_PHYS * - added UI_SET_PHYS
* 0.1 20/06/2002 * 0.1 20/06/2002
* - first public version * - first public version
*/ */
#define UINPUT_VERSION 3
#ifdef __KERNEL__ #ifdef __KERNEL__
#define UINPUT_MINOR 223 #define UINPUT_MINOR 223
#define UINPUT_NAME "uinput" #define UINPUT_NAME "uinput"
...@@ -45,7 +51,10 @@ struct uinput_request { ...@@ -45,7 +51,10 @@ struct uinput_request {
union { union {
int effect_id; int effect_id;
struct ff_effect* effect; struct {
struct ff_effect *effect;
struct ff_effect *old;
} upload;
} u; } u;
}; };
...@@ -58,6 +67,7 @@ struct uinput_device { ...@@ -58,6 +67,7 @@ struct uinput_device {
unsigned char head; unsigned char head;
unsigned char tail; unsigned char tail;
struct input_event buff[UINPUT_BUFFER_SIZE]; struct input_event buff[UINPUT_BUFFER_SIZE];
int ff_effects_max;
struct uinput_request *requests[UINPUT_NUM_REQUESTS]; struct uinput_request *requests[UINPUT_NUM_REQUESTS];
wait_queue_head_t requests_waitq; wait_queue_head_t requests_waitq;
...@@ -69,6 +79,7 @@ struct uinput_ff_upload { ...@@ -69,6 +79,7 @@ struct uinput_ff_upload {
int request_id; int request_id;
int retval; int retval;
struct ff_effect effect; struct ff_effect effect;
struct ff_effect old;
}; };
struct uinput_ff_erase { struct uinput_ff_erase {
...@@ -98,33 +109,33 @@ struct uinput_ff_erase { ...@@ -98,33 +109,33 @@ struct uinput_ff_erase {
#define UI_BEGIN_FF_ERASE _IOWR(UINPUT_IOCTL_BASE, 202, struct uinput_ff_erase) #define UI_BEGIN_FF_ERASE _IOWR(UINPUT_IOCTL_BASE, 202, struct uinput_ff_erase)
#define UI_END_FF_ERASE _IOW(UINPUT_IOCTL_BASE, 203, struct uinput_ff_erase) #define UI_END_FF_ERASE _IOW(UINPUT_IOCTL_BASE, 203, struct uinput_ff_erase)
/* To write a force-feedback-capable driver, the upload_effect /*
* To write a force-feedback-capable driver, the upload_effect
* and erase_effect callbacks in input_dev must be implemented. * and erase_effect callbacks in input_dev must be implemented.
* The uinput driver will generate a fake input event when one of * The uinput driver will generate a fake input event when one of
* these callbacks are invoked. The userspace code then uses * these callbacks are invoked. The userspace code then uses
* ioctls to retrieve additional parameters and send the return code. * ioctls to retrieve additional parameters and send the return code.
* The callback blocks until this return code is sent. * The callback blocks until this return code is sent.
* *
* The described callback mechanism is only used if EV_FF is set. * The described callback mechanism is only used if ff_effects_max
* Otherwise, default implementations of upload_effect and erase_effect * is set.
* are used.
* *
* To implement upload_effect(): * To implement upload_effect():
* 1. Wait for an event with type==EV_UINPUT and code==UI_FF_UPLOAD. * 1. Wait for an event with type == EV_UINPUT and code == UI_FF_UPLOAD.
* A request ID will be given in 'value'. * A request ID will be given in 'value'.
* 2. Allocate a uinput_ff_upload struct, fill in request_id with * 2. Allocate a uinput_ff_upload struct, fill in request_id with
* the 'value' from the EV_UINPUT event. * the 'value' from the EV_UINPUT event.
* 3. Issue a UI_BEGIN_FF_UPLOAD ioctl, giving it the * 3. Issue a UI_BEGIN_FF_UPLOAD ioctl, giving it the
* uinput_ff_upload struct. It will be filled in with the * uinput_ff_upload struct. It will be filled in with the
* ff_effect passed to upload_effect(). * ff_effects passed to upload_effect().
* 4. Perform the effect upload, and place the modified ff_effect * 4. Perform the effect upload, and place a return code back into
* and a return code back into the uinput_ff_upload struct. the uinput_ff_upload struct.
* 5. Issue a UI_END_FF_UPLOAD ioctl, also giving it the * 5. Issue a UI_END_FF_UPLOAD ioctl, also giving it the
* uinput_ff_upload_effect struct. This will complete execution * uinput_ff_upload_effect struct. This will complete execution
* of our upload_effect() handler. * of our upload_effect() handler.
* *
* To implement erase_effect(): * To implement erase_effect():
* 1. Wait for an event with type==EV_UINPUT and code==UI_FF_ERASE. * 1. Wait for an event with type == EV_UINPUT and code == UI_FF_ERASE.
* A request ID will be given in 'value'. * A request ID will be given in 'value'.
* 2. Allocate a uinput_ff_erase struct, fill in request_id with * 2. Allocate a uinput_ff_erase struct, fill in request_id with
* the 'value' from the EV_UINPUT event. * the 'value' from the EV_UINPUT event.
...@@ -133,13 +144,13 @@ struct uinput_ff_erase { ...@@ -133,13 +144,13 @@ struct uinput_ff_erase {
* effect ID passed to erase_effect(). * effect ID passed to erase_effect().
* 4. Perform the effect erasure, and place a return code back * 4. Perform the effect erasure, and place a return code back
* into the uinput_ff_erase struct. * into the uinput_ff_erase struct.
* and a return code back into the uinput_ff_erase struct.
* 5. Issue a UI_END_FF_ERASE ioctl, also giving it the * 5. Issue a UI_END_FF_ERASE ioctl, also giving it the
* uinput_ff_erase_effect struct. This will complete execution * uinput_ff_erase_effect struct. This will complete execution
* of our erase_effect() handler. * of our erase_effect() handler.
*/ */
/* This is the new event type, used only by uinput. /*
* This is the new event type, used only by uinput.
* 'code' is UI_FF_UPLOAD or UI_FF_ERASE, and 'value' * 'code' is UI_FF_UPLOAD or UI_FF_ERASE, and 'value'
* is the unique request ID. This number was picked * is the unique request ID. This number was picked
* arbitrarily, above EV_MAX (since the input system * arbitrarily, above EV_MAX (since the input system
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment