[PATCH 1/2] HID: wacom: Replace __set_bit with input_set_capability

Subsystems: hid core layer, the rest

STALE5256d

4 messages, 3 authors, 2012-03-16 · open the first message on its own page

[PATCH 1/2] HID: wacom: Replace __set_bit with input_set_capability

From: Przemo Firszt <hidden>
Date: 2012-03-14 19:55:47

It's a trivial patch. It's doesn't change the functionality as the helper
input_set_capability does the same thing.

Signed-off-by: Przemo Firszt <redacted>
---
 drivers/hid/hid-wacom.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c
index 5c25036..d04e2aa 100644
--- a/drivers/hid/hid-wacom.c
+++ b/drivers/hid/hid-wacom.c
@@ -492,9 +492,7 @@ static int wacom_input_mapped(struct hid_device *hdev, struct hid_input *hi,
 	__set_bit(BTN_MIDDLE, input->keybit);
 
 	/* Pad */
-	input->evbit[0] |= BIT(EV_MSC);
-
-	__set_bit(MSC_SERIAL, input->mscbit);
+	input_set_capability(input, EV_MSC, MSC_SERIAL);
 
 	__set_bit(BTN_0, input->keybit);
 	__set_bit(BTN_1, input->keybit);
-- 
1.7.6.4

[PATCH 2/2] HID: wacom: Add reporting of wheel for Intuos4 WL

From: Przemo Firszt <hidden>
Date: 2012-03-14 19:55:53

This patch adds reporting of ABS_WHEEL event. Raported walues are 0..71
and are related to absolute location of the finger on the wheel.

Signed-off-by: Przemo Firszt <redacted>
Reviewed-by: Jason Gerecke <redacted>
---
 drivers/hid/hid-wacom.c |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c
index d04e2aa..067e296 100644
--- a/drivers/hid/hid-wacom.c
+++ b/drivers/hid/hid-wacom.c
@@ -36,6 +36,7 @@
 struct wacom_data {
 	__u16 tool;
 	__u16 butstate;
+	__u8 whlstate;
 	__u8 features;
 	__u32 id;
 	__u32 serial;
@@ -322,6 +323,23 @@ static void wacom_i4_parse_button_report(struct wacom_data *wdata,
 			struct input_dev *input, unsigned char *data)
 {
 	__u16 new_butstate;
+	__u8 new_whlstate;
+	__u8 sync = 0;
+
+	new_whlstate = data[1];
+	if (new_whlstate != wdata->whlstate) {
+		wdata->whlstate = new_whlstate;
+		if (new_whlstate & 0x80) {
+			input_report_key(input, BTN_TOUCH, 1);
+			input_report_abs(input, ABS_WHEEL, (new_whlstate & 0x7f));
+			input_report_key(input, BTN_TOOL_FINGER, 1);
+		} else {
+			input_report_key(input, BTN_TOUCH, 0);
+			input_report_abs(input, ABS_WHEEL, 0);
+			input_report_key(input, BTN_TOOL_FINGER, 0);
+		}
+		sync = 1;
+	}
 
 	new_butstate = (data[3] << 1) | (data[2] & 0x01);
 	if (new_butstate != wdata->butstate) {
@@ -336,6 +354,10 @@ static void wacom_i4_parse_button_report(struct wacom_data *wdata,
 		input_report_key(input, BTN_7, new_butstate & 0x080);
 		input_report_key(input, BTN_8, new_butstate & 0x100);
 		input_report_key(input, BTN_TOOL_FINGER, 1);
+		sync = 1;
+	}
+
+	if (sync) {
 		input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
 		input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
 		input_sync(input);
@@ -510,6 +532,7 @@ static int wacom_input_mapped(struct hid_device *hdev, struct hid_input *hi,
 		input_set_abs_params(input, ABS_DISTANCE, 0, 32, 0, 0);
 		break;
 	case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH:
+		__set_bit(ABS_WHEEL, input->absbit);
 		__set_bit(ABS_MISC, input->absbit);
 		__set_bit(BTN_2, input->keybit);
 		__set_bit(BTN_3, input->keybit);
@@ -518,6 +541,7 @@ static int wacom_input_mapped(struct hid_device *hdev, struct hid_input *hi,
 		__set_bit(BTN_6, input->keybit);
 		__set_bit(BTN_7, input->keybit);
 		__set_bit(BTN_8, input->keybit);
+		input_set_abs_params(input, ABS_WHEEL, 0, 71, 0, 0);
 		input_set_abs_params(input, ABS_X, 0, 40640, 4, 0);
 		input_set_abs_params(input, ABS_Y, 0, 25400, 4, 0);
 		input_set_abs_params(input, ABS_PRESSURE, 0, 2047, 0, 0);
-- 
1.7.6.4

Re: [PATCH 2/2] HID: wacom: Add reporting of wheel for Intuos4 WL

From: Chris Bagwell <hidden>
Date: 2012-03-16 00:10:09

For both patches:

Reviewed-by: Chris Bagwell <redacted>

On Wed, Mar 14, 2012 at 2:55 PM, Przemo Firszt [off-list ref] wrote:
quoted hunk
This patch adds reporting of ABS_WHEEL event. Raported walues are 0..71
and are related to absolute location of the finger on the wheel.

Signed-off-by: Przemo Firszt <redacted>
Reviewed-by: Jason Gerecke <redacted>
---
 drivers/hid/hid-wacom.c |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/drivers/hid/hid-wacom.c b/drivers/hid/hid-wacom.c
index d04e2aa..067e296 100644
--- a/drivers/hid/hid-wacom.c
+++ b/drivers/hid/hid-wacom.c
@@ -36,6 +36,7 @@
 struct wacom_data {
       __u16 tool;
       __u16 butstate;
+       __u8 whlstate;
       __u8 features;
       __u32 id;
       __u32 serial;
@@ -322,6 +323,23 @@ static void wacom_i4_parse_button_report(struct wacom_data *wdata,
                       struct input_dev *input, unsigned char *data)
 {
       __u16 new_butstate;
+       __u8 new_whlstate;
+       __u8 sync = 0;
+
+       new_whlstate = data[1];
+       if (new_whlstate != wdata->whlstate) {
+               wdata->whlstate = new_whlstate;
+               if (new_whlstate & 0x80) {
+                       input_report_key(input, BTN_TOUCH, 1);
+                       input_report_abs(input, ABS_WHEEL, (new_whlstate & 0x7f));
+                       input_report_key(input, BTN_TOOL_FINGER, 1);
+               } else {
+                       input_report_key(input, BTN_TOUCH, 0);
+                       input_report_abs(input, ABS_WHEEL, 0);
+                       input_report_key(input, BTN_TOOL_FINGER, 0);
+               }
+               sync = 1;
+       }

       new_butstate = (data[3] << 1) | (data[2] & 0x01);
       if (new_butstate != wdata->butstate) {
@@ -336,6 +354,10 @@ static void wacom_i4_parse_button_report(struct wacom_data *wdata,
               input_report_key(input, BTN_7, new_butstate & 0x080);
               input_report_key(input, BTN_8, new_butstate & 0x100);
               input_report_key(input, BTN_TOOL_FINGER, 1);
+               sync = 1;
+       }
+
+       if (sync) {
               input_report_abs(input, ABS_MISC, PAD_DEVICE_ID);
               input_event(input, EV_MSC, MSC_SERIAL, 0xffffffff);
               input_sync(input);
@@ -510,6 +532,7 @@ static int wacom_input_mapped(struct hid_device *hdev, struct hid_input *hi,
               input_set_abs_params(input, ABS_DISTANCE, 0, 32, 0, 0);
               break;
       case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH:
+               __set_bit(ABS_WHEEL, input->absbit);
               __set_bit(ABS_MISC, input->absbit);
               __set_bit(BTN_2, input->keybit);
               __set_bit(BTN_3, input->keybit);
@@ -518,6 +541,7 @@ static int wacom_input_mapped(struct hid_device *hdev, struct hid_input *hi,
               __set_bit(BTN_6, input->keybit);
               __set_bit(BTN_7, input->keybit);
               __set_bit(BTN_8, input->keybit);
+               input_set_abs_params(input, ABS_WHEEL, 0, 71, 0, 0);
               input_set_abs_params(input, ABS_X, 0, 40640, 4, 0);
               input_set_abs_params(input, ABS_Y, 0, 25400, 4, 0);
               input_set_abs_params(input, ABS_PRESSURE, 0, 2047, 0, 0);
--
1.7.6.4

Re: [PATCH 1/2] HID: wacom: Replace __set_bit with input_set_capability

From: Jiri Kosina <hidden>
Date: 2012-03-16 11:16:44

On Wed, 14 Mar 2012, Przemo Firszt wrote:
It's a trivial patch. It's doesn't change the functionality as the helper
input_set_capability does the same thing.

Signed-off-by: Przemo Firszt <redacted>
Both patches applied, thanks.

-- 
Jiri Kosina
SUSE Labs
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help