Skip to content

Commit

Permalink
input: mt: Collect slots initialization code
Browse files Browse the repository at this point in the history
The MT slots devices all follow the same initialization pattern
of creating slots and hinting about buffer size. Let drivers call
an initialization function instead, and make sure it can be called
repeatedly without side effects.

Signed-off-by: Henrik Rydberg <[email protected]>
  • Loading branch information
rydberg committed Dec 16, 2010
1 parent 47c78e8 commit 8cde810
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
5 changes: 1 addition & 4 deletions drivers/hid/hid-3m-pct.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ MODULE_LICENSE("GPL");

#define MAX_SLOTS 60
#define MAX_TRKID USHRT_MAX
#define MAX_EVENTS 360

/* estimated signal-to-noise ratios */
#define SN_MOVE 2048
Expand Down Expand Up @@ -123,9 +122,7 @@ static int mmm_input_mapping(struct hid_device *hdev, struct hid_input *hi,
EV_ABS, ABS_MT_TRACKING_ID);
input_set_abs_params(hi->input, ABS_MT_TRACKING_ID,
0, MAX_TRKID, 0, 0);
if (!hi->input->mt)
input_mt_create_slots(hi->input, MAX_SLOTS);
input_set_events_per_packet(hi->input, MAX_EVENTS);
input_mt_init_slots(hi->input, MAX_SLOTS);
return 1;
}
/* let hid-input decide for the others */
Expand Down
19 changes: 13 additions & 6 deletions drivers/input/input-mt.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,35 +12,41 @@
#include <linux/slab.h>

/**
* input_mt_create_slots() - create MT input slots
* input_mt_init_slots() - initialize MT input slots
* @dev: input device supporting MT events and finger tracking
* @num_slots: number of slots used by the device
*
* This function allocates all necessary memory for MT slot handling in the
* input device, and adds ABS_MT_SLOT to the device capabilities. All slots
* are initially marked as unused by setting ABS_MT_TRACKING_ID to -1.
* This function allocates all necessary memory for MT slot handling
* in the input device, adds ABS_MT_SLOT to the device capabilities
* and sets up appropriate event buffers. All slots are initially
* marked as unused by setting ABS_MT_TRACKING_ID to -1. May be called
* repeatedly. Returns -EINVAL if attempting to reinitialize with a
* different number of slots.
*/
int input_mt_create_slots(struct input_dev *dev, unsigned int num_slots)
int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots)
{
int i;

if (!num_slots)
return 0;
if (dev->mt)
return dev->mtsize != num_slots ? -EINVAL : 0;

dev->mt = kcalloc(num_slots, sizeof(struct input_mt_slot), GFP_KERNEL);
if (!dev->mt)
return -ENOMEM;

dev->mtsize = num_slots;
input_set_abs_params(dev, ABS_MT_SLOT, 0, num_slots - 1, 0, 0);
input_set_events_per_packet(dev, 6 * num_slots);

/* Mark slots as 'unused' */
for (i = 0; i < num_slots; i++)
input_mt_set_value(&dev->mt[i], ABS_MT_TRACKING_ID, -1);

return 0;
}
EXPORT_SYMBOL(input_mt_create_slots);
EXPORT_SYMBOL(input_mt_init_slots);

/**
* input_mt_destroy_slots() - frees the MT slots of the input device
Expand All @@ -54,5 +60,6 @@ void input_mt_destroy_slots(struct input_dev *dev)
kfree(dev->mt);
dev->mt = NULL;
dev->mtsize = 0;
dev->slot = 0;
}
EXPORT_SYMBOL(input_mt_destroy_slots);
3 changes: 1 addition & 2 deletions drivers/input/misc/uinput.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,7 @@ static int uinput_setup_device(struct uinput_device *udev, const char __user *bu
goto exit;
if (test_bit(ABS_MT_SLOT, dev->absbit)) {
int nslot = input_abs_get_max(dev, ABS_MT_SLOT) + 1;
input_mt_create_slots(dev, nslot);
input_set_events_per_packet(dev, 6 * nslot);
input_mt_init_slots(dev, nslot);
} else if (test_bit(ABS_MT_POSITION_X, dev->absbit)) {
input_set_events_per_packet(dev, 60);
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/input/tablet/wacom_wac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ void wacom_setup_input_capabilities(struct input_dev *input_dev,
__set_bit(BTN_TOOL_FINGER, input_dev->keybit);
__set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit);

input_mt_create_slots(input_dev, 2);
input_mt_init_slots(input_dev, 2);
input_set_abs_params(input_dev, ABS_MT_POSITION_X,
0, features->x_max,
features->x_fuzz, 0);
Expand Down
2 changes: 1 addition & 1 deletion drivers/input/touchscreen/wacom_w8001.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ static int w8001_setup(struct w8001 *w8001)
case 5:
w8001->pktlen = W8001_PKTLEN_TOUCH2FG;

input_mt_create_slots(dev, 2);
input_mt_init_slots(dev, 2);
input_set_abs_params(dev, ABS_MT_TRACKING_ID,
0, MAX_TRACKING_ID, 0, 0);
input_set_abs_params(dev, ABS_MT_POSITION_X,
Expand Down
2 changes: 1 addition & 1 deletion include/linux/input/mt.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static inline int input_mt_get_value(const struct input_mt_slot *slot,
return slot->abs[code - ABS_MT_FIRST];
}

int input_mt_create_slots(struct input_dev *dev, unsigned int num_slots);
int input_mt_init_slots(struct input_dev *dev, unsigned int num_slots);
void input_mt_destroy_slots(struct input_dev *dev);

static inline void input_mt_slot(struct input_dev *dev, int slot)
Expand Down

0 comments on commit 8cde810

Please sign in to comment.