All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Improve Alps HID Touchpad code
@ 2016-06-21 10:28 Masaki Ota
  2016-06-21 22:35 ` Dmitry Torokhov
  0 siblings, 1 reply; 13+ messages in thread
From: Masaki Ota @ 2016-06-21 10:28 UTC (permalink / raw)
  To: jikos
  Cc: benjamin.tissorires, peter.hutterer, hdegoede, dmitry.torokhov,
	linux-input, masaki.ota, naoki.saito

>From Masaki Ota <masaki.ota@jp.alps.com>

Remove the unnecessary codes.
Add the device ID of "HID_DEVICE_ID_ALPS_U1_DUAL" to hid-ids.h

Signed-off-by: Masaki Ota <masaki.ota@jp.alps.com>
---
 drivers/hid/hid-alps.c | 98 +++++++++++++++++++++-----------------------------
 drivers/hid/hid-core.c |  3 +-
 drivers/hid/hid-ids.h  |  1 +
 3 files changed, 44 insertions(+), 58 deletions(-)

diff --git a/drivers/hid/hid-alps.c b/drivers/hid/hid-alps.c
index ff64c929..e6a0e88 100644
--- a/drivers/hid/hid-alps.c
+++ b/drivers/hid/hid-alps.c
@@ -15,6 +15,9 @@
 #include <asm/unaligned.h>
 #include "hid-ids.h"
 
+#define STATUS_SUCCESS	0
+#define STATUS_FAIL	1
+
 /* ALPS Device Product ID */
 #define HID_PRODUCT_ID_T3_BTNLESS	0xD0C0
 #define HID_PRODUCT_ID_COSMO		0x1202
@@ -98,8 +101,6 @@ struct u1_dev {
 	u32	sp_btn_cnt;
 };
 
-static struct u1_dev *priv;
-
 static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	u8 *read_val, u8 write_val, bool read_flag)
 {
@@ -108,16 +109,10 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	u8 *input;
 	u8 *readbuf;
 
-	input = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
+	input = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
 	if (!input)
 		return -ENOMEM;
 
-	readbuf = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
-	if (!readbuf) {
-		kfree(input);
-		return -ENOMEM;
-	}
-
 	input[0] = U1_FEATURE_REPORT_ID;
 	if (read_flag) {
 		input[1] = U1_CMD_REGISTER_READ;
@@ -136,8 +131,8 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 
 	input[7] = check_sum;
 	ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, input,
-			sizeof(u8)*U1_FEATURE_REPORT_LEN, HID_FEATURE_REPORT,
-			HID_REQ_SET_REPORT);
+			U1_FEATURE_REPORT_LEN,
+			HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
 
 	if (ret < 0) {
 		dev_err(&hdev->dev, "failed to read command (%d)\n", ret);
@@ -145,8 +140,14 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	}
 
 	if (read_flag) {
+		readbuf = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
+		if (!readbuf) {
+			kfree(input);
+			return -ENOMEM;
+		}
+
 		ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, readbuf,
-				sizeof(u8)*U1_FEATURE_REPORT_LEN,
+				U1_FEATURE_REPORT_LEN,
 				HID_FEATURE_REPORT, HID_REQ_GET_REPORT);
 
 		if (ret < 0) {
@@ -155,15 +156,14 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 		}
 
 		*read_val = readbuf[6];
+
+		kfree(readbuf);
 	}
 
-	kfree(input);
-	kfree(readbuf);
-	return 0;
+	ret = STATUS_SUCCESS;
 
 exit:
 	kfree(input);
-	kfree(readbuf);
 	return ret;
 }
 
@@ -171,7 +171,7 @@ static int alps_raw_event(struct hid_device *hdev,
 		struct hid_report *report, u8 *data, int size)
 {
 	int x[MAX_TOUCHES], y[MAX_TOUCHES], z[MAX_TOUCHES];
-	int i, left, right, middle;
+	int i;
 	short sp_x, sp_y, sp_z;
 	struct u1_dev *hdata = hid_get_drvdata(hdev);
 
@@ -182,12 +182,9 @@ static int alps_raw_event(struct hid_device *hdev,
 		break;
 	case U1_ABSOLUTE_REPORT_ID:
 		for (i = 0; i < MAX_TOUCHES; i++) {
-			x[i] = (data[3+(5*i)] | (data[4+(5*i)] << 8));
-			y[i] = (data[5+(5*i)] | (data[6+(5*i)] << 8));
+			x[i] = get_unaligned_le16(data+3+(5*i));
+			y[i] = get_unaligned_le16(data+5+(5*i));
 			z[i] = data[7+(5*i)] & 0x7F;
-			left = data[1] & 0x1;
-			right = (data[1] & 0x2) >> 1;
-			middle = (data[1] & 0x4) >> 2;
 
 			input_mt_slot(hdata->input, i);
 
@@ -209,33 +206,37 @@ static int alps_raw_event(struct hid_device *hdev,
 		}
 
 		input_mt_sync_frame(hdata->input);
-		input_sync(hdata->input);
 
-		input_event(hdata->input, EV_KEY, BTN_LEFT, left);
-		input_event(hdata->input, EV_KEY, BTN_RIGHT, right);
-		input_event(hdata->input, EV_KEY, BTN_MIDDLE, middle);
+		input_event(hdata->input, EV_KEY, BTN_LEFT,
+			data[1] & 0x1);
+		input_event(hdata->input, EV_KEY, BTN_RIGHT,
+			(data[1] & 0x2) >> 1);
+		input_event(hdata->input, EV_KEY, BTN_MIDDLE,
+			(data[1] & 0x4) >> 2);
+
+		input_sync(hdata->input);
 
 		return 1;
 
 	case U1_SP_ABSOLUTE_REPORT_ID:
-		sp_x = (data[2] | (data[3] << 8));
-		sp_y = (data[4] | (data[5] << 8));
+		sp_x = get_unaligned_le16(data+2);
+		sp_y = get_unaligned_le16(data+4);
 		sp_z = (data[6] | data[7]) & 0x7FFF;
-		left = data[1] & 0x1;
-		right = (data[1] & 0x2) >> 1;
-		middle = (data[1] & 0x4) >> 2;
 
 		sp_x = sp_x / 8;
 		sp_y = sp_y / 8;
 
-		input_event(priv->input2, EV_REL, REL_X, sp_x);
-		input_event(priv->input2, EV_REL, REL_Y, sp_y);
+		input_event(hdata->input2, EV_REL, REL_X, sp_x);
+		input_event(hdata->input2, EV_REL, REL_Y, sp_y);
 
-		input_event(priv->input2, EV_KEY, BTN_LEFT, left);
-		input_event(priv->input2, EV_KEY, BTN_RIGHT, right);
-		input_event(priv->input2, EV_KEY, BTN_MIDDLE, middle);
+		input_event(hdata->input2, EV_KEY, BTN_LEFT,
+			data[1] & 0x1);
+		input_event(hdata->input2, EV_KEY, BTN_RIGHT,
+			(data[1] & 0x2) >> 1);
+		input_event(hdata->input2, EV_KEY, BTN_MIDDLE,
+			(data[1] & 0x4) >> 2);
 
-		input_sync(priv->input2);
+		input_sync(hdata->input2);
 
 		return 1;
 	}
@@ -265,15 +266,6 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 	int ret;
 	int res_x, res_y, i;
 
-	/* Check device product ID */
-	switch (hdev->product) {
-	case HID_PRODUCT_ID_U1:
-	case HID_PRODUCT_ID_U1_DUAL:
-		break;
-	default:
-		return 0;
-	}
-
 	data->input = input;
 
 	hid_dbg(hdev, "Opening low level driver\n");
@@ -393,20 +385,13 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 	/* Stick device initialization */
 	if (devInfo.dev_type & U1_DEVTYPE_SP_SUPPORT) {
 
-		priv = kzalloc(sizeof(struct u1_dev), GFP_KERNEL);
-		if (!priv) {
-			hid_device_io_stop(hdev);
-			hid_hw_close(hdev);
-			return -ENOMEM;
-		}
-
 		input2 = input_allocate_device();
 		if (!input2) {
 			input_free_device(input2);
 			goto exit;
 		}
 
-		priv->input2 = input2;
+		data->input2 = input2;
 
 		devInfo.dev_ctrl |= U1_SP_ABS_MODE;
 		ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
@@ -444,7 +429,7 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 		__set_bit(INPUT_PROP_POINTER, input2->propbit);
 		__set_bit(INPUT_PROP_POINTING_STICK, input2->propbit);
 
-		if (input_register_device(priv->input2)) {
+		if (input_register_device(data->input2)) {
 			input_free_device(input2);
 			goto exit;
 		}
@@ -495,12 +480,11 @@ static int alps_probe(struct hid_device *hdev, const struct hid_device_id *id)
 static void alps_remove(struct hid_device *hdev)
 {
 	hid_hw_stop(hdev);
-	kfree(priv);
 }
 
 static const struct hid_device_id alps_id[] = {
 	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY,
-		USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
+		USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_DUAL) },
 	{ }
 };
 MODULE_DEVICE_TABLE(hid, alps_id);
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index 3cdbc4b..678d8bd 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -1772,7 +1772,8 @@ static const struct hid_device_id hid_have_special_driver[] = {
 	{ HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
-	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
+	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP,
+	HID_DEVICE_ID_ALPS_U1_DUAL) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) },
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) },
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) },
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index a5a429c..c4f665d 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -71,6 +71,7 @@
 #define USB_DEVICE_ID_IBM_GAMEPAD	0x1101
 
 #define USB_VENDOR_ID_ALPS_JP		0x044E
+#define HID_DEVICE_ID_ALPS_U1_DUAL	0x120B
 
 #define USB_VENDOR_ID_ANTON		0x1130
 #define USB_DEVICE_ID_ANTON_TOUCH_PAD	0x3101
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH] Improve Alps HID Touchpad code
  2016-06-21 10:28 [PATCH] Improve Alps HID Touchpad code Masaki Ota
@ 2016-06-21 22:35 ` Dmitry Torokhov
  2016-06-21 22:38   ` Jiri Kosina
  0 siblings, 1 reply; 13+ messages in thread
From: Dmitry Torokhov @ 2016-06-21 22:35 UTC (permalink / raw)
  To: Masaki Ota
  Cc: jikos, benjamin.tissorires, peter.hutterer, hdegoede,
	linux-input, masaki.ota, naoki.saito

On Tue, Jun 21, 2016 at 07:28:32PM +0900, Masaki Ota wrote:
> From Masaki Ota <masaki.ota@jp.alps.com>
> 
> Remove the unnecessary codes.
> Add the device ID of "HID_DEVICE_ID_ALPS_U1_DUAL" to hid-ids.h
> 
> Signed-off-by: Masaki Ota <masaki.ota@jp.alps.com>
> ---
>  drivers/hid/hid-alps.c | 98 +++++++++++++++++++++-----------------------------
>  drivers/hid/hid-core.c |  3 +-
>  drivers/hid/hid-ids.h  |  1 +
>  3 files changed, 44 insertions(+), 58 deletions(-)
> 
> diff --git a/drivers/hid/hid-alps.c b/drivers/hid/hid-alps.c
> index ff64c929..e6a0e88 100644
> --- a/drivers/hid/hid-alps.c
> +++ b/drivers/hid/hid-alps.c
> @@ -15,6 +15,9 @@
>  #include <asm/unaligned.h>
>  #include "hid-ids.h"
>  
> +#define STATUS_SUCCESS	0

O is the standard success code, please use it directly.

> +#define STATUS_FAIL	1

I do not see it being used anywhere.

> +
>  /* ALPS Device Product ID */
>  #define HID_PRODUCT_ID_T3_BTNLESS	0xD0C0
>  #define HID_PRODUCT_ID_COSMO		0x1202
> @@ -98,8 +101,6 @@ struct u1_dev {
>  	u32	sp_btn_cnt;
>  };
>  
> -static struct u1_dev *priv;
> -
>  static int u1_read_write_register(struct hid_device *hdev, u32 address,
>  	u8 *read_val, u8 write_val, bool read_flag)
>  {
> @@ -108,16 +109,10 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
>  	u8 *input;
>  	u8 *readbuf;
>  
> -	input = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
> +	input = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
>  	if (!input)
>  		return -ENOMEM;
>  
> -	readbuf = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
> -	if (!readbuf) {
> -		kfree(input);
> -		return -ENOMEM;
> -	}
> -
>  	input[0] = U1_FEATURE_REPORT_ID;
>  	if (read_flag) {
>  		input[1] = U1_CMD_REGISTER_READ;
> @@ -136,8 +131,8 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
>  
>  	input[7] = check_sum;
>  	ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, input,
> -			sizeof(u8)*U1_FEATURE_REPORT_LEN, HID_FEATURE_REPORT,
> -			HID_REQ_SET_REPORT);
> +			U1_FEATURE_REPORT_LEN,
> +			HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
>  
>  	if (ret < 0) {
>  		dev_err(&hdev->dev, "failed to read command (%d)\n", ret);
> @@ -145,8 +140,14 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
>  	}
>  
>  	if (read_flag) {
> +		readbuf = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
> +		if (!readbuf) {
> +			kfree(input);
> +			return -ENOMEM;
> +		}
> +
>  		ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, readbuf,
> -				sizeof(u8)*U1_FEATURE_REPORT_LEN,
> +				U1_FEATURE_REPORT_LEN,
>  				HID_FEATURE_REPORT, HID_REQ_GET_REPORT);
>  
>  		if (ret < 0) {
> @@ -155,15 +156,14 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
>  		}
>  
>  		*read_val = readbuf[6];
> +
> +		kfree(readbuf);
>  	}
>  
> -	kfree(input);
> -	kfree(readbuf);
> -	return 0;
> +	ret = STATUS_SUCCESS;
>  
>  exit:
>  	kfree(input);
> -	kfree(readbuf);
>  	return ret;
>  }
>  
> @@ -171,7 +171,7 @@ static int alps_raw_event(struct hid_device *hdev,
>  		struct hid_report *report, u8 *data, int size)
>  {
>  	int x[MAX_TOUCHES], y[MAX_TOUCHES], z[MAX_TOUCHES];

Should be unsigned I think.

> -	int i, left, right, middle;
> +	int i;
>  	short sp_x, sp_y, sp_z;
>  	struct u1_dev *hdata = hid_get_drvdata(hdev);
>  
> @@ -182,12 +182,9 @@ static int alps_raw_event(struct hid_device *hdev,
>  		break;
>  	case U1_ABSOLUTE_REPORT_ID:
>  		for (i = 0; i < MAX_TOUCHES; i++) {
> -			x[i] = (data[3+(5*i)] | (data[4+(5*i)] << 8));
> -			y[i] = (data[5+(5*i)] | (data[6+(5*i)] << 8));
> +			x[i] = get_unaligned_le16(data+3+(5*i));
> +			y[i] = get_unaligned_le16(data+5+(5*i));
>  			z[i] = data[7+(5*i)] & 0x7F;

Could use some spaces around operations. You also do not need to have
arrays for coordinates. I'd do:

			u8 *contact = &data[i * 5];
			x = get_unaligned_le16(contact + 3);
			y = get_unaligned_le16(contact + 5);
			x = contact[7] & 0x7f;


> -			left = data[1] & 0x1;
> -			right = (data[1] & 0x2) >> 1;
> -			middle = (data[1] & 0x4) >> 2;
>  
>  			input_mt_slot(hdata->input, i);
>  
> @@ -209,33 +206,37 @@ static int alps_raw_event(struct hid_device *hdev,
>  		}
>  
>  		input_mt_sync_frame(hdata->input);
> -		input_sync(hdata->input);
>  
> -		input_event(hdata->input, EV_KEY, BTN_LEFT, left);
> -		input_event(hdata->input, EV_KEY, BTN_RIGHT, right);
> -		input_event(hdata->input, EV_KEY, BTN_MIDDLE, middle);
> +		input_event(hdata->input, EV_KEY, BTN_LEFT,
> +			data[1] & 0x1);
> +		input_event(hdata->input, EV_KEY, BTN_RIGHT,
> +			(data[1] & 0x2) >> 1);
> +		input_event(hdata->input, EV_KEY, BTN_MIDDLE,
> +			(data[1] & 0x4) >> 2);

I'd rather you did:

		input_report_key(hdata->input, BTN_LEFT, data[1] & 0x1);
		input_report_key(hdata->input, BTN_RIGHT, data[1] & 0x2);
		input_report_key(hdata->input, BTN_MIDDLE, data[1] & 0x4);

and use input_report_abs() for absolute events.

> +
> +		input_sync(hdata->input);
>  
>  		return 1;
>  
>  	case U1_SP_ABSOLUTE_REPORT_ID:
> -		sp_x = (data[2] | (data[3] << 8));
> -		sp_y = (data[4] | (data[5] << 8));
> +		sp_x = get_unaligned_le16(data+2);
> +		sp_y = get_unaligned_le16(data+4);
>  		sp_z = (data[6] | data[7]) & 0x7FFF;

Where do we use sp_z?

> -		left = data[1] & 0x1;
> -		right = (data[1] & 0x2) >> 1;
> -		middle = (data[1] & 0x4) >> 2;
>  
>  		sp_x = sp_x / 8;
>  		sp_y = sp_y / 8;
>  
> -		input_event(priv->input2, EV_REL, REL_X, sp_x);
> -		input_event(priv->input2, EV_REL, REL_Y, sp_y);
> +		input_event(hdata->input2, EV_REL, REL_X, sp_x);
> +		input_event(hdata->input2, EV_REL, REL_Y, sp_y);

		input_report_rel(...);

>  
> -		input_event(priv->input2, EV_KEY, BTN_LEFT, left);
> -		input_event(priv->input2, EV_KEY, BTN_RIGHT, right);
> -		input_event(priv->input2, EV_KEY, BTN_MIDDLE, middle);
> +		input_event(hdata->input2, EV_KEY, BTN_LEFT,
> +			data[1] & 0x1);
> +		input_event(hdata->input2, EV_KEY, BTN_RIGHT,
> +			(data[1] & 0x2) >> 1);
> +		input_event(hdata->input2, EV_KEY, BTN_MIDDLE,
> +			(data[1] & 0x4) >> 2);

		input_report_key().

>  
> -		input_sync(priv->input2);
> +		input_sync(hdata->input2);
>  
>  		return 1;
>  	}
> @@ -265,15 +266,6 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
>  	int ret;
>  	int res_x, res_y, i;
>  
> -	/* Check device product ID */
> -	switch (hdev->product) {
> -	case HID_PRODUCT_ID_U1:
> -	case HID_PRODUCT_ID_U1_DUAL:
> -		break;
> -	default:
> -		return 0;
> -	}
> -
>  	data->input = input;
>  
>  	hid_dbg(hdev, "Opening low level driver\n");
> @@ -393,20 +385,13 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
>  	/* Stick device initialization */
>  	if (devInfo.dev_type & U1_DEVTYPE_SP_SUPPORT) {
>  
> -		priv = kzalloc(sizeof(struct u1_dev), GFP_KERNEL);
> -		if (!priv) {
> -			hid_device_io_stop(hdev);
> -			hid_hw_close(hdev);
> -			return -ENOMEM;
> -		}
> -
>  		input2 = input_allocate_device();
>  		if (!input2) {
>  			input_free_device(input2);
>  			goto exit;
>  		}
>  
> -		priv->input2 = input2;
> +		data->input2 = input2;
>  
>  		devInfo.dev_ctrl |= U1_SP_ABS_MODE;
>  		ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
> @@ -444,7 +429,7 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
>  		__set_bit(INPUT_PROP_POINTER, input2->propbit);
>  		__set_bit(INPUT_PROP_POINTING_STICK, input2->propbit);
>  
> -		if (input_register_device(priv->input2)) {
> +		if (input_register_device(data->input2)) {
>  			input_free_device(input2);
>  			goto exit;
>  		}
> @@ -495,12 +480,11 @@ static int alps_probe(struct hid_device *hdev, const struct hid_device_id *id)
>  static void alps_remove(struct hid_device *hdev)
>  {
>  	hid_hw_stop(hdev);
> -	kfree(priv);
>  }
>  
>  static const struct hid_device_id alps_id[] = {
>  	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY,
> -		USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
> +		USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_DUAL) },
>  	{ }
>  };
>  MODULE_DEVICE_TABLE(hid, alps_id);
> diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
> index 3cdbc4b..678d8bd 100644
> --- a/drivers/hid/hid-core.c
> +++ b/drivers/hid/hid-core.c
> @@ -1772,7 +1772,8 @@ static const struct hid_device_id hid_have_special_driver[] = {
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
> -	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
> +	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP,
> +	HID_DEVICE_ID_ALPS_U1_DUAL) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) },
>  	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) },
>  	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) },
> diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
> index a5a429c..c4f665d 100644
> --- a/drivers/hid/hid-ids.h
> +++ b/drivers/hid/hid-ids.h
> @@ -71,6 +71,7 @@
>  #define USB_DEVICE_ID_IBM_GAMEPAD	0x1101
>  
>  #define USB_VENDOR_ID_ALPS_JP		0x044E
> +#define HID_DEVICE_ID_ALPS_U1_DUAL	0x120B
>  
>  #define USB_VENDOR_ID_ANTON		0x1130
>  #define USB_DEVICE_ID_ANTON_TOUCH_PAD	0x3101
> -- 
> 2.7.4
> 

Thanks.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] Improve Alps HID Touchpad code
  2016-06-21 22:35 ` Dmitry Torokhov
@ 2016-06-21 22:38   ` Jiri Kosina
  2016-06-22  2:48     ` Masaki Ota
  2016-06-22  4:42     ` Masaki Ota
  0 siblings, 2 replies; 13+ messages in thread
From: Jiri Kosina @ 2016-06-21 22:38 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Masaki Ota, benjamin.tissorires, peter.hutterer, hdegoede,
	linux-input, masaki.ota, naoki.saito

On Tue, 21 Jun 2016, Dmitry Torokhov wrote:

> > diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
> > index 3cdbc4b..678d8bd 100644
> > --- a/drivers/hid/hid-core.c
> > +++ b/drivers/hid/hid-core.c
> > @@ -1772,7 +1772,8 @@ static const struct hid_device_id hid_have_special_driver[] = {
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
> > -	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
> > +	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP,
> > +	HID_DEVICE_ID_ALPS_U1_DUAL) },

On top of what Dmitry said, the above has been (corrupted) line-wrapped 
(most likely by your mail client). Could you please fix that up while 
fixing the rest of Dmitry's valuable review comments?

Thanks,

-- 
Jiri Kosina
SUSE Labs


^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] Improve Alps HID Touchpad code
  2016-06-21 22:38   ` Jiri Kosina
@ 2016-06-22  2:48     ` Masaki Ota
  2016-06-22  4:42     ` Masaki Ota
  1 sibling, 0 replies; 13+ messages in thread
From: Masaki Ota @ 2016-06-22  2:48 UTC (permalink / raw)
  To: Jiri Kosina, Dmitry Torokhov
  Cc: Masaki Ota, benjamin.tissorires, peter.hutterer, hdegoede,
	linux-input, Naoki Saito

Hi, Jiri,

Sorry, I cannot catch your meaning. What is the part corrupted? 
I added "HID_DEVICE_ID_ALPS_U1_DUAL" instead of " HID_ANY_ID".
Because we want to use our devices except for "HID_DEVICE_ID_ALPS_U1_DUAL" as Mouse mode.

Best Regards,
Masaki Ota
-----Original Message-----
From: Jiri Kosina [mailto:jikos@kernel.org] 
Sent: Wednesday, June 22, 2016 7:39 AM
To: Dmitry Torokhov
Cc: Masaki Ota; benjamin.tissorires@redhat.com; peter.hutterer@who-t.net; hdegoede@redhat.com; linux-input@vger.kernel.org; 太田 真喜 Masaki Ota; 斉藤 直樹 Naoki Saito
Subject: Re: [PATCH] Improve Alps HID Touchpad code

On Tue, 21 Jun 2016, Dmitry Torokhov wrote:

> > diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 
> > 3cdbc4b..678d8bd 100644
> > --- a/drivers/hid/hid-core.c
> > +++ b/drivers/hid/hid-core.c
> > @@ -1772,7 +1772,8 @@ static const struct hid_device_id hid_have_special_driver[] = {
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
> > -	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
> > +	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP,
> > +	HID_DEVICE_ID_ALPS_U1_DUAL) },

On top of what Dmitry said, the above has been (corrupted) line-wrapped (most likely by your mail client). Could you please fix that up while fixing the rest of Dmitry's valuable review comments?

Thanks,

--
Jiri Kosina
SUSE Labs


^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] Improve Alps HID Touchpad code
  2016-06-21 22:38   ` Jiri Kosina
  2016-06-22  2:48     ` Masaki Ota
@ 2016-06-22  4:42     ` Masaki Ota
  2016-06-23  0:08       ` Dmitry Torokhov
  1 sibling, 1 reply; 13+ messages in thread
From: Masaki Ota @ 2016-06-22  4:42 UTC (permalink / raw)
  To: Jiri Kosina, Dmitry Torokhov
  Cc: Masaki Ota, benjamin.tissorires, peter.hutterer, hdegoede,
	linux-input, Naoki Saito

Hi,Jiri,

Sorry, I understood.
Actually I don't add line-wrapping, but how do we solve it.

Best Regards,
Masaki Ota
-----Original Message-----
From: 太田 真喜 Masaki Ota 
Sent: Wednesday, June 22, 2016 11:49 AM
To: 'Jiri Kosina'; Dmitry Torokhov
Cc: Masaki Ota; benjamin.tissorires@redhat.com; peter.hutterer@who-t.net; hdegoede@redhat.com; linux-input@vger.kernel.org; 斉藤 直樹 Naoki Saito
Subject: RE: [PATCH] Improve Alps HID Touchpad code

Hi, Jiri,

Sorry, I cannot catch your meaning. What is the part corrupted? 
I added "HID_DEVICE_ID_ALPS_U1_DUAL" instead of " HID_ANY_ID".
Because we want to use our devices except for "HID_DEVICE_ID_ALPS_U1_DUAL" as Mouse mode.

Best Regards,
Masaki Ota
-----Original Message-----
From: Jiri Kosina [mailto:jikos@kernel.org]
Sent: Wednesday, June 22, 2016 7:39 AM
To: Dmitry Torokhov
Cc: Masaki Ota; benjamin.tissorires@redhat.com; peter.hutterer@who-t.net; hdegoede@redhat.com; linux-input@vger.kernel.org; 太田 真喜 Masaki Ota; 斉藤 直樹 Naoki Saito
Subject: Re: [PATCH] Improve Alps HID Touchpad code

On Tue, 21 Jun 2016, Dmitry Torokhov wrote:

> > diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 
> > 3cdbc4b..678d8bd 100644
> > --- a/drivers/hid/hid-core.c
> > +++ b/drivers/hid/hid-core.c
> > @@ -1772,7 +1772,8 @@ static const struct hid_device_id hid_have_special_driver[] = {
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
> >  	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
> > -	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
> > +	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP,
> > +	HID_DEVICE_ID_ALPS_U1_DUAL) },

On top of what Dmitry said, the above has been (corrupted) line-wrapped (most likely by your mail client). Could you please fix that up while fixing the rest of Dmitry's valuable review comments?

Thanks,

--
Jiri Kosina
SUSE Labs


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] Improve Alps HID Touchpad code
  2016-06-22  4:42     ` Masaki Ota
@ 2016-06-23  0:08       ` Dmitry Torokhov
  0 siblings, 0 replies; 13+ messages in thread
From: Dmitry Torokhov @ 2016-06-23  0:08 UTC (permalink / raw)
  To: Masaki Ota
  Cc: Jiri Kosina, Masaki Ota, benjamin.tissorires, peter.hutterer,
	hdegoede, linux-input, Naoki Saito

Hi Masaki,

On Wed, Jun 22, 2016 at 04:42:33AM +0000, Masaki Ota wrote:
> Hi,Jiri,
> 
> Sorry, I understood.
> Actually I don't add line-wrapping, but how do we solve it.

I recommend setting up and using "git send-email". Also please do not
top post.

Thanks.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] Improve Alps HID Touchpad code
  2016-07-22  8:10     ` Masaki Ota
@ 2016-07-27 14:12       ` Jiri Kosina
  0 siblings, 0 replies; 13+ messages in thread
From: Jiri Kosina @ 2016-07-27 14:12 UTC (permalink / raw)
  To: Masaki Ota; +Cc: linux-input, Naoki Saito

On Fri, 22 Jul 2016, Masaki Ota wrote:

> Hi, Jiri,
> 
> Good day.
> 
> Dell is asking me about this Alps modification's "commit id".
> Do you know about it?

The patches are queued in hid.git repository for 4.8. You can see them 
here:

	https://git.kernel.org/cgit/linux/kernel/git/jikos/hid.git/log/?h=for-4.8/alps

The branch is not rebasing, so the commit ids will be the same once it 
hits Linus' tree.

-- 
Jiri Kosina
SUSE Labs


^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: [PATCH] Improve Alps HID Touchpad code
  2016-06-23  6:58   ` Jiri Kosina
@ 2016-07-22  8:10     ` Masaki Ota
  2016-07-27 14:12       ` Jiri Kosina
  0 siblings, 1 reply; 13+ messages in thread
From: Masaki Ota @ 2016-07-22  8:10 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: linux-input, Naoki Saito

Hi, Jiri,

Good day.

Dell is asking me about this Alps modification's "commit id".
Do you know about it?

Best Regards,
Masaki Ota

-----Original Message-----
From: Jiri Kosina [mailto:jikos@kernel.org] 
Sent: Thursday, June 23, 2016 3:59 PM
To: Dmitry Torokhov
Cc: Masaki Ota; benjamin.tissorires@redhat.com; peter.hutterer@who-t.net; hdegoede@redhat.com; linux-input@vger.kernel.org; 太田 真喜 Masaki Ota; 斉藤 直樹 Naoki Saito
Subject: Re: [PATCH] Improve Alps HID Touchpad code

On Wed, 22 Jun 2016, Dmitry Torokhov wrote:

> Same here. Maybe Jiri will fix it up by hand while appplying?

Yup, I have fixed that and applied.

> Otherwise:
> 
> Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

Thanks,

-- 
Jiri Kosina
SUSE Labs


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] Improve Alps HID Touchpad code
  2016-06-23  0:11 ` Dmitry Torokhov
@ 2016-06-23  6:58   ` Jiri Kosina
  2016-07-22  8:10     ` Masaki Ota
  0 siblings, 1 reply; 13+ messages in thread
From: Jiri Kosina @ 2016-06-23  6:58 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Masaki Ota, benjamin.tissorires, peter.hutterer, hdegoede,
	linux-input, masaki.ota, naoki.saito

On Wed, 22 Jun 2016, Dmitry Torokhov wrote:

> Same here. Maybe Jiri will fix it up by hand while appplying?

Yup, I have fixed that and applied.

> Otherwise:
> 
> Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

Thanks,

-- 
Jiri Kosina
SUSE Labs


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] Improve Alps HID Touchpad code
  2016-06-22  4:11 Masaki Ota
@ 2016-06-23  0:11 ` Dmitry Torokhov
  2016-06-23  6:58   ` Jiri Kosina
  0 siblings, 1 reply; 13+ messages in thread
From: Dmitry Torokhov @ 2016-06-23  0:11 UTC (permalink / raw)
  To: Masaki Ota
  Cc: jikos, benjamin.tissorires, peter.hutterer, hdegoede,
	linux-input, masaki.ota, naoki.saito

On Wed, Jun 22, 2016 at 01:11:08PM +0900, Masaki Ota wrote:
>  
> -		input_event(hdata->input, EV_KEY, BTN_LEFT, left);
> -		input_event(hdata->input, EV_KEY, BTN_RIGHT, right);
> -		input_event(hdata->input, EV_KEY, BTN_MIDDLE, middle);
> +		input_report_key(hdata->input, BTN_LEFT,
> +			data[1] & 0x1);
> +		input_report_key(hdata->input, BTN_RIGHT,
> +			(data[1] & 0x2) >> 1);
> +		input_report_key(hdata->input, BTN_MIDDLE,
> +			(data[1] & 0x4) >> 2);

There is no really need to do shifts as input_report_key() converts
value to 0/1 for you.

> +
> +		input_sync(hdata->input);
>  
>  		return 1;
>  
>  	case U1_SP_ABSOLUTE_REPORT_ID:
> -		sp_x = (data[2] | (data[3] << 8));
> -		sp_y = (data[4] | (data[5] << 8));
> -		sp_z = (data[6] | data[7]) & 0x7FFF;
> -		left = data[1] & 0x1;
> -		right = (data[1] & 0x2) >> 1;
> -		middle = (data[1] & 0x4) >> 2;
> +		sp_x = get_unaligned_le16(data+2);
> +		sp_y = get_unaligned_le16(data+4);
>  
>  		sp_x = sp_x / 8;
>  		sp_y = sp_y / 8;
>  
> -		input_event(priv->input2, EV_REL, REL_X, sp_x);
> -		input_event(priv->input2, EV_REL, REL_Y, sp_y);
> +		input_report_rel(hdata->input2, REL_X, sp_x);
> +		input_report_rel(hdata->input2, REL_Y, sp_y);
>  
> -		input_event(priv->input2, EV_KEY, BTN_LEFT, left);
> -		input_event(priv->input2, EV_KEY, BTN_RIGHT, right);
> -		input_event(priv->input2, EV_KEY, BTN_MIDDLE, middle);
> +		input_report_key(hdata->input2, BTN_LEFT,
> +			data[1] & 0x1);
> +		input_report_key(hdata->input2, BTN_RIGHT,
> +			(data[1] & 0x2) >> 1);
> +		input_report_key(hdata->input2, BTN_MIDDLE,
> +			(data[1] & 0x4) >> 2);

Same here. Maybe Jiri will fix it up by hand while appplying?

Otherwise:

Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

-- 
Dmitry

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH] Improve Alps HID Touchpad code
@ 2016-06-22  4:11 Masaki Ota
  2016-06-23  0:11 ` Dmitry Torokhov
  0 siblings, 1 reply; 13+ messages in thread
From: Masaki Ota @ 2016-06-22  4:11 UTC (permalink / raw)
  To: jikos
  Cc: benjamin.tissorires, peter.hutterer, hdegoede, dmitry.torokhov,
	linux-input, masaki.ota, naoki.saito

>From Masaki Ota <masaki.ota@jp.alps.com>

Remove an unnecessary codes.
Change input_ivent() function to appropriate function.
Add the device ID of "HID_DEVICE_ID_ALPS_U1_DUAL". 

Signed-off-by: Masaki Ota <masaki.ota@jp.alps.com>
---
 drivers/hid/hid-alps.c | 116 ++++++++++++++++++++-----------------------------
 drivers/hid/hid-core.c |   2 +-
 drivers/hid/hid-ids.h  |   1 +
 3 files changed, 50 insertions(+), 69 deletions(-)

diff --git a/drivers/hid/hid-alps.c b/drivers/hid/hid-alps.c
index ff64c929..39e21e6 100644
--- a/drivers/hid/hid-alps.c
+++ b/drivers/hid/hid-alps.c
@@ -98,8 +98,6 @@ struct u1_dev {
 	u32	sp_btn_cnt;
 };
 
-static struct u1_dev *priv;
-
 static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	u8 *read_val, u8 write_val, bool read_flag)
 {
@@ -108,16 +106,10 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	u8 *input;
 	u8 *readbuf;
 
-	input = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
+	input = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
 	if (!input)
 		return -ENOMEM;
 
-	readbuf = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
-	if (!readbuf) {
-		kfree(input);
-		return -ENOMEM;
-	}
-
 	input[0] = U1_FEATURE_REPORT_ID;
 	if (read_flag) {
 		input[1] = U1_CMD_REGISTER_READ;
@@ -136,8 +128,8 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 
 	input[7] = check_sum;
 	ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, input,
-			sizeof(u8)*U1_FEATURE_REPORT_LEN, HID_FEATURE_REPORT,
-			HID_REQ_SET_REPORT);
+			U1_FEATURE_REPORT_LEN,
+			HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
 
 	if (ret < 0) {
 		dev_err(&hdev->dev, "failed to read command (%d)\n", ret);
@@ -145,8 +137,14 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	}
 
 	if (read_flag) {
+		readbuf = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
+		if (!readbuf) {
+			kfree(input);
+			return -ENOMEM;
+		}
+
 		ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, readbuf,
-				sizeof(u8)*U1_FEATURE_REPORT_LEN,
+				U1_FEATURE_REPORT_LEN,
 				HID_FEATURE_REPORT, HID_REQ_GET_REPORT);
 
 		if (ret < 0) {
@@ -155,24 +153,23 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 		}
 
 		*read_val = readbuf[6];
+
+		kfree(readbuf);
 	}
 
-	kfree(input);
-	kfree(readbuf);
-	return 0;
+	ret = 0;
 
 exit:
 	kfree(input);
-	kfree(readbuf);
 	return ret;
 }
 
 static int alps_raw_event(struct hid_device *hdev,
 		struct hid_report *report, u8 *data, int size)
 {
-	int x[MAX_TOUCHES], y[MAX_TOUCHES], z[MAX_TOUCHES];
-	int i, left, right, middle;
-	short sp_x, sp_y, sp_z;
+	unsigned int x, y, z;
+	int i;
+	short sp_x, sp_y;
 	struct u1_dev *hdata = hid_get_drvdata(hdev);
 
 	switch (data[0]) {
@@ -182,16 +179,15 @@ static int alps_raw_event(struct hid_device *hdev,
 		break;
 	case U1_ABSOLUTE_REPORT_ID:
 		for (i = 0; i < MAX_TOUCHES; i++) {
-			x[i] = (data[3+(5*i)] | (data[4+(5*i)] << 8));
-			y[i] = (data[5+(5*i)] | (data[6+(5*i)] << 8));
-			z[i] = data[7+(5*i)] & 0x7F;
-			left = data[1] & 0x1;
-			right = (data[1] & 0x2) >> 1;
-			middle = (data[1] & 0x4) >> 2;
+			u8 *contact = &data[i * 5];
+
+			x = get_unaligned_le16(contact + 3);
+			y = get_unaligned_le16(contact + 5);
+			z = contact[7] & 0x7F;
 
 			input_mt_slot(hdata->input, i);
 
-			if (z[i] != 0) {
+			if (z != 0) {
 				input_mt_report_slot_state(hdata->input,
 					MT_TOOL_FINGER, 1);
 			} else {
@@ -200,42 +196,43 @@ static int alps_raw_event(struct hid_device *hdev,
 				break;
 			}
 
-			input_event(hdata->input, EV_ABS,
-				ABS_MT_POSITION_X, x[i]);
-			input_event(hdata->input, EV_ABS,
-				ABS_MT_POSITION_Y, y[i]);
-			input_event(hdata->input, EV_ABS,
-				ABS_MT_PRESSURE, z[i]);
+			input_report_abs(hdata->input, ABS_MT_POSITION_X, x);
+			input_report_abs(hdata->input, ABS_MT_POSITION_Y, y);
+			input_report_abs(hdata->input, ABS_MT_PRESSURE, z);
+
 		}
 
 		input_mt_sync_frame(hdata->input);
-		input_sync(hdata->input);
 
-		input_event(hdata->input, EV_KEY, BTN_LEFT, left);
-		input_event(hdata->input, EV_KEY, BTN_RIGHT, right);
-		input_event(hdata->input, EV_KEY, BTN_MIDDLE, middle);
+		input_report_key(hdata->input, BTN_LEFT,
+			data[1] & 0x1);
+		input_report_key(hdata->input, BTN_RIGHT,
+			(data[1] & 0x2) >> 1);
+		input_report_key(hdata->input, BTN_MIDDLE,
+			(data[1] & 0x4) >> 2);
+
+		input_sync(hdata->input);
 
 		return 1;
 
 	case U1_SP_ABSOLUTE_REPORT_ID:
-		sp_x = (data[2] | (data[3] << 8));
-		sp_y = (data[4] | (data[5] << 8));
-		sp_z = (data[6] | data[7]) & 0x7FFF;
-		left = data[1] & 0x1;
-		right = (data[1] & 0x2) >> 1;
-		middle = (data[1] & 0x4) >> 2;
+		sp_x = get_unaligned_le16(data+2);
+		sp_y = get_unaligned_le16(data+4);
 
 		sp_x = sp_x / 8;
 		sp_y = sp_y / 8;
 
-		input_event(priv->input2, EV_REL, REL_X, sp_x);
-		input_event(priv->input2, EV_REL, REL_Y, sp_y);
+		input_report_rel(hdata->input2, REL_X, sp_x);
+		input_report_rel(hdata->input2, REL_Y, sp_y);
 
-		input_event(priv->input2, EV_KEY, BTN_LEFT, left);
-		input_event(priv->input2, EV_KEY, BTN_RIGHT, right);
-		input_event(priv->input2, EV_KEY, BTN_MIDDLE, middle);
+		input_report_key(hdata->input2, BTN_LEFT,
+			data[1] & 0x1);
+		input_report_key(hdata->input2, BTN_RIGHT,
+			(data[1] & 0x2) >> 1);
+		input_report_key(hdata->input2, BTN_MIDDLE,
+			(data[1] & 0x4) >> 2);
 
-		input_sync(priv->input2);
+		input_sync(hdata->input2);
 
 		return 1;
 	}
@@ -265,15 +262,6 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 	int ret;
 	int res_x, res_y, i;
 
-	/* Check device product ID */
-	switch (hdev->product) {
-	case HID_PRODUCT_ID_U1:
-	case HID_PRODUCT_ID_U1_DUAL:
-		break;
-	default:
-		return 0;
-	}
-
 	data->input = input;
 
 	hid_dbg(hdev, "Opening low level driver\n");
@@ -393,20 +381,13 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 	/* Stick device initialization */
 	if (devInfo.dev_type & U1_DEVTYPE_SP_SUPPORT) {
 
-		priv = kzalloc(sizeof(struct u1_dev), GFP_KERNEL);
-		if (!priv) {
-			hid_device_io_stop(hdev);
-			hid_hw_close(hdev);
-			return -ENOMEM;
-		}
-
 		input2 = input_allocate_device();
 		if (!input2) {
 			input_free_device(input2);
 			goto exit;
 		}
 
-		priv->input2 = input2;
+		data->input2 = input2;
 
 		devInfo.dev_ctrl |= U1_SP_ABS_MODE;
 		ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
@@ -444,7 +425,7 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 		__set_bit(INPUT_PROP_POINTER, input2->propbit);
 		__set_bit(INPUT_PROP_POINTING_STICK, input2->propbit);
 
-		if (input_register_device(priv->input2)) {
+		if (input_register_device(data->input2)) {
 			input_free_device(input2);
 			goto exit;
 		}
@@ -495,12 +476,11 @@ static int alps_probe(struct hid_device *hdev, const struct hid_device_id *id)
 static void alps_remove(struct hid_device *hdev)
 {
 	hid_hw_stop(hdev);
-	kfree(priv);
 }
 
 static const struct hid_device_id alps_id[] = {
 	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY,
-		USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
+		USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_DUAL) },
 	{ }
 };
 MODULE_DEVICE_TABLE(hid, alps_id);
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index 3cdbc4b..7f989f6 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -1772,7 +1772,7 @@ static const struct hid_device_id hid_have_special_driver[] = {
 	{ HID_USB_DEVICE(USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_RP_649) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
-	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
+	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_DUAL) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE) },
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) },
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) },
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index a5a429c..c4f665d 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -71,6 +71,7 @@
 #define USB_DEVICE_ID_IBM_GAMEPAD	0x1101
 
 #define USB_VENDOR_ID_ALPS_JP		0x044E
+#define HID_DEVICE_ID_ALPS_U1_DUAL	0x120B
 
 #define USB_VENDOR_ID_ANTON		0x1130
 #define USB_DEVICE_ID_ANTON_TOUCH_PAD	0x3101
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH] Improve Alps HID Touchpad code
  2016-06-21  8:14 Masaki Ota
@ 2016-06-21  8:22 ` Jiri Kosina
  0 siblings, 0 replies; 13+ messages in thread
From: Jiri Kosina @ 2016-06-21  8:22 UTC (permalink / raw)
  To: Masaki Ota
  Cc: benjamin.tissorires, peter.hutterer, hdegoede, dmitry.torokhov,
	linux-input, masaki.ota, naoki.saito

On Tue, 21 Jun 2016, Masaki Ota wrote:

> >From Masaki Ota <masaki.ota@jp.alps.com>
> 
> Remove the unnecessary codes.
> Add the device ID of "HID_DEVICE_ID_ALPS_U1_DUAL" to hid-ids.h
> 
> Signed-off-by: Masaki Ota <masaki.ota@jp.alps.com>

I have already accepted the previous version on the driver and made a 
couple of fixes on top (I've CCed you on all the patches).

Could you please base your further fixes on top of the 'for-4.8/alps' 
branch of

	git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git

tree?

Thanks,

-- 
Jiri Kosina
SUSE Labs


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH] Improve Alps HID Touchpad code
@ 2016-06-21  8:14 Masaki Ota
  2016-06-21  8:22 ` Jiri Kosina
  0 siblings, 1 reply; 13+ messages in thread
From: Masaki Ota @ 2016-06-21  8:14 UTC (permalink / raw)
  To: jikos
  Cc: benjamin.tissorires, peter.hutterer, hdegoede, dmitry.torokhov,
	linux-input, masaki.ota, naoki.saito

>From Masaki Ota <masaki.ota@jp.alps.com>

Remove the unnecessary codes.
Add the device ID of "HID_DEVICE_ID_ALPS_U1_DUAL" to hid-ids.h

Signed-off-by: Masaki Ota <masaki.ota@jp.alps.com>
---
 drivers/hid/hid-alps.c | 96 +++++++++++++++++++++-----------------------------
 drivers/hid/hid-core.c |  4 +--
 drivers/hid/hid-ids.h  |  1 +
 3 files changed, 43 insertions(+), 58 deletions(-)

diff --git a/drivers/hid/hid-alps.c b/drivers/hid/hid-alps.c
index 776b3a4..e6a0e88 100644
--- a/drivers/hid/hid-alps.c
+++ b/drivers/hid/hid-alps.c
@@ -15,6 +15,9 @@
 #include <asm/unaligned.h>
 #include "hid-ids.h"
 
+#define STATUS_SUCCESS	0
+#define STATUS_FAIL	1
+
 /* ALPS Device Product ID */
 #define HID_PRODUCT_ID_T3_BTNLESS	0xD0C0
 #define HID_PRODUCT_ID_COSMO		0x1202
@@ -98,8 +101,6 @@ struct u1_dev {
 	u32	sp_btn_cnt;
 };
 
-struct u1_dev *priv;
-
 static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	u8 *read_val, u8 write_val, bool read_flag)
 {
@@ -108,16 +109,10 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	u8 *input;
 	u8 *readbuf;
 
-	input = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
+	input = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
 	if (!input)
 		return -ENOMEM;
 
-	readbuf = kzalloc(sizeof(u8)*U1_FEATURE_REPORT_LEN, GFP_KERNEL);
-	if (!readbuf) {
-		kfree(input);
-		return -ENOMEM;
-	}
-
 	input[0] = U1_FEATURE_REPORT_ID;
 	if (read_flag) {
 		input[1] = U1_CMD_REGISTER_READ;
@@ -136,7 +131,7 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 
 	input[7] = check_sum;
 	ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, input,
-			sizeof(u8)*U1_FEATURE_REPORT_LEN,
+			U1_FEATURE_REPORT_LEN,
 			HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
 
 	if (ret < 0) {
@@ -145,8 +140,14 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 	}
 
 	if (read_flag) {
+		readbuf = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
+		if (!readbuf) {
+			kfree(input);
+			return -ENOMEM;
+		}
+
 		ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, readbuf,
-				sizeof(u8)*U1_FEATURE_REPORT_LEN,
+				U1_FEATURE_REPORT_LEN,
 				HID_FEATURE_REPORT, HID_REQ_GET_REPORT);
 
 		if (ret < 0) {
@@ -155,15 +156,14 @@ static int u1_read_write_register(struct hid_device *hdev, u32 address,
 		}
 
 		*read_val = readbuf[6];
+
+		kfree(readbuf);
 	}
 
-	kfree(input);
-	kfree(readbuf);
-	return 0;
+	ret = STATUS_SUCCESS;
 
 exit:
 	kfree(input);
-	kfree(readbuf);
 	return ret;
 }
 
@@ -171,7 +171,7 @@ static int alps_raw_event(struct hid_device *hdev,
 		struct hid_report *report, u8 *data, int size)
 {
 	int x[MAX_TOUCHES], y[MAX_TOUCHES], z[MAX_TOUCHES];
-	int i, left, right, middle;
+	int i;
 	short sp_x, sp_y, sp_z;
 	struct u1_dev *hdata = hid_get_drvdata(hdev);
 
@@ -182,12 +182,9 @@ static int alps_raw_event(struct hid_device *hdev,
 		break;
 	case U1_ABSOLUTE_REPORT_ID:
 		for (i = 0; i < MAX_TOUCHES; i++) {
-			x[i] = (data[3+(5*i)] | (data[4+(5*i)] << 8));
-			y[i] = (data[5+(5*i)] | (data[6+(5*i)] << 8));
+			x[i] = get_unaligned_le16(data+3+(5*i));
+			y[i] = get_unaligned_le16(data+5+(5*i));
 			z[i] = data[7+(5*i)] & 0x7F;
-			left = data[1] & 0x1;
-			right = (data[1] & 0x2) >> 1;
-			middle = (data[1] & 0x4) >> 2;
 
 			input_mt_slot(hdata->input, i);
 
@@ -209,33 +206,37 @@ static int alps_raw_event(struct hid_device *hdev,
 		}
 
 		input_mt_sync_frame(hdata->input);
-		input_sync(hdata->input);
 
-		input_event(hdata->input, EV_KEY, BTN_LEFT, left);
-		input_event(hdata->input, EV_KEY, BTN_RIGHT, right);
-		input_event(hdata->input, EV_KEY, BTN_MIDDLE, middle);
+		input_event(hdata->input, EV_KEY, BTN_LEFT,
+			data[1] & 0x1);
+		input_event(hdata->input, EV_KEY, BTN_RIGHT,
+			(data[1] & 0x2) >> 1);
+		input_event(hdata->input, EV_KEY, BTN_MIDDLE,
+			(data[1] & 0x4) >> 2);
+
+		input_sync(hdata->input);
 
 		return 1;
 
 	case U1_SP_ABSOLUTE_REPORT_ID:
-		sp_x = (data[2] | (data[3] << 8));
-		sp_y = (data[4] | (data[5] << 8));
+		sp_x = get_unaligned_le16(data+2);
+		sp_y = get_unaligned_le16(data+4);
 		sp_z = (data[6] | data[7]) & 0x7FFF;
-		left = data[1] & 0x1;
-		right = (data[1] & 0x2) >> 1;
-		middle = (data[1] & 0x4) >> 2;
 
 		sp_x = sp_x / 8;
 		sp_y = sp_y / 8;
 
-		input_event(priv->input2, EV_REL, REL_X, sp_x);
-		input_event(priv->input2, EV_REL, REL_Y, sp_y);
+		input_event(hdata->input2, EV_REL, REL_X, sp_x);
+		input_event(hdata->input2, EV_REL, REL_Y, sp_y);
 
-		input_event(priv->input2, EV_KEY, BTN_LEFT, left);
-		input_event(priv->input2, EV_KEY, BTN_RIGHT, right);
-		input_event(priv->input2, EV_KEY, BTN_MIDDLE, middle);
+		input_event(hdata->input2, EV_KEY, BTN_LEFT,
+			data[1] & 0x1);
+		input_event(hdata->input2, EV_KEY, BTN_RIGHT,
+			(data[1] & 0x2) >> 1);
+		input_event(hdata->input2, EV_KEY, BTN_MIDDLE,
+			(data[1] & 0x4) >> 2);
 
-		input_sync(priv->input2);
+		input_sync(hdata->input2);
 
 		return 1;
 	}
@@ -265,15 +266,6 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 	int ret;
 	int res_x, res_y, i;
 
-	/* Check device product ID */
-	switch (hdev->product) {
-	case HID_PRODUCT_ID_U1:
-	case HID_PRODUCT_ID_U1_DUAL:
-		break;
-	default:
-		return 0;
-	}
-
 	data->input = input;
 
 	hid_dbg(hdev, "Opening low level driver\n");
@@ -393,20 +385,13 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 	/* Stick device initialization */
 	if (devInfo.dev_type & U1_DEVTYPE_SP_SUPPORT) {
 
-		priv = kzalloc(sizeof(struct u1_dev), GFP_KERNEL);
-		if (!priv) {
-			hid_device_io_stop(hdev);
-			hid_hw_close(hdev);
-			return -ENOMEM;
-		}
-
 		input2 = input_allocate_device();
 		if (!input2) {
 			input_free_device(input2);
 			goto exit;
 		}
 
-		priv->input2 = input2;
+		data->input2 = input2;
 
 		devInfo.dev_ctrl |= U1_SP_ABS_MODE;
 		ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
@@ -444,7 +429,7 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
 		__set_bit(INPUT_PROP_POINTER, input2->propbit);
 		__set_bit(INPUT_PROP_POINTING_STICK, input2->propbit);
 
-		if (input_register_device(priv->input2)) {
+		if (input_register_device(data->input2)) {
 			input_free_device(input2);
 			goto exit;
 		}
@@ -495,12 +480,11 @@ static int alps_probe(struct hid_device *hdev, const struct hid_device_id *id)
 static void alps_remove(struct hid_device *hdev)
 {
 	hid_hw_stop(hdev);
-	kfree(priv);
 }
 
 static const struct hid_device_id alps_id[] = {
 	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY,
-		USB_VENDOR_ID_ALPS_JP, HID_ANY_ID) },
+		USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_DUAL) },
 	{ }
 };
 MODULE_DEVICE_TABLE(hid, alps_id);
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index 470663d..33255b1 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -1731,8 +1731,8 @@ static const struct hid_device_id hid_have_special_driver[] = {
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0x0802) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ACRUX, 0xf705) },
-	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDER_ID_ALPS_JP,
-	HID_ANY_ID) },
+	{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY, USB_VENDOR_ID_ALPS_JP,
+	HID_DEVICE_ID_ALPS_U1_DUAL) },
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICMOUSE) },
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGICTRACKPAD) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI) },
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index cac68c7..2038056 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -68,6 +68,7 @@
 #define USB_DEVICE_ID_IBM_GAMEPAD	0x1101
 
 #define USB_VENDOR_ID_ALPS_JP		0x044E
+#define HID_DEVICE_ID_ALPS_U1_DUAL	0x120B
 
 #define USB_VENDOR_ID_ANTON		0x1130
 #define USB_DEVICE_ID_ANTON_TOUCH_PAD	0x3101
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2016-07-27 14:12 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-21 10:28 [PATCH] Improve Alps HID Touchpad code Masaki Ota
2016-06-21 22:35 ` Dmitry Torokhov
2016-06-21 22:38   ` Jiri Kosina
2016-06-22  2:48     ` Masaki Ota
2016-06-22  4:42     ` Masaki Ota
2016-06-23  0:08       ` Dmitry Torokhov
  -- strict thread matches above, loose matches on Subject: below --
2016-06-22  4:11 Masaki Ota
2016-06-23  0:11 ` Dmitry Torokhov
2016-06-23  6:58   ` Jiri Kosina
2016-07-22  8:10     ` Masaki Ota
2016-07-27 14:12       ` Jiri Kosina
2016-06-21  8:14 Masaki Ota
2016-06-21  8:22 ` Jiri Kosina

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.