Commit c7083d3f authored by Masaki Ota's avatar Masaki Ota Committed by Jiri Kosina

HID: alps: properly handle max_fingers and minimum on X and Y axis

Create x_min, y_min and max_fingers variables for set correct XY minimum value
and the number of max finger on each devices.

[jkosina@suse.cz: update shortlog]
Signed-off-by: default avatarMasaki Ota <masaki.ota@jp.alps.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 5d8c720d
...@@ -73,9 +73,12 @@ ...@@ -73,9 +73,12 @@
* @y_active_len_mm: active area length of Y (mm) * @y_active_len_mm: active area length of Y (mm)
* @x_max: maximum x coordinate value * @x_max: maximum x coordinate value
* @y_max: maximum y coordinate value * @y_max: maximum y coordinate value
* @x_min: minimum x coordinate value
* @y_min: minimum y coordinate value
* @btn_cnt: number of buttons * @btn_cnt: number of buttons
* @sp_btn_cnt: number of stick buttons * @sp_btn_cnt: number of stick buttons
* @has_sp: boolean of sp existense * @has_sp: boolean of sp existense
* @max_fingers: total number of fingers
*/ */
struct u1_dev { struct u1_dev {
struct input_dev *input; struct input_dev *input;
...@@ -95,9 +98,12 @@ struct u1_dev { ...@@ -95,9 +98,12 @@ struct u1_dev {
u32 y_active_len_mm; u32 y_active_len_mm;
u32 x_max; u32 x_max;
u32 y_max; u32 y_max;
u32 x_min;
u32 y_min;
u32 btn_cnt; u32 btn_cnt;
u32 sp_btn_cnt; u32 sp_btn_cnt;
u8 has_sp; u8 has_sp;
u8 max_fingers;
}; };
static int u1_read_write_register(struct hid_device *hdev, u32 address, static int u1_read_write_register(struct hid_device *hdev, u32 address,
...@@ -319,8 +325,10 @@ static int u1_init(struct hid_device *hdev, struct u1_dev *pri_data) ...@@ -319,8 +325,10 @@ static int u1_init(struct hid_device *hdev, struct u1_dev *pri_data)
pri_data->x_max = pri_data->x_max =
(pri_data->resolution << 2) * (pri_data->sen_line_num_x - 1); (pri_data->resolution << 2) * (pri_data->sen_line_num_x - 1);
pri_data->x_min = 1;
pri_data->y_max = pri_data->y_max =
(pri_data->resolution << 2) * (pri_data->sen_line_num_y - 1); (pri_data->resolution << 2) * (pri_data->sen_line_num_y - 1);
pri_data->y_min = 1;
ret = u1_read_write_register(hdev, ADDRESS_U1_PAD_BTN, ret = u1_read_write_register(hdev, ADDRESS_U1_PAD_BTN,
&pri_data->btn_info, 0, true); &pri_data->btn_info, 0, true);
...@@ -328,6 +336,12 @@ static int u1_init(struct hid_device *hdev, struct u1_dev *pri_data) ...@@ -328,6 +336,12 @@ static int u1_init(struct hid_device *hdev, struct u1_dev *pri_data)
dev_err(&hdev->dev, "failed U1_PAD_BTN (%d)\n", ret); dev_err(&hdev->dev, "failed U1_PAD_BTN (%d)\n", ret);
goto exit; goto exit;
} }
if ((pri_data->btn_info & 0x0F) == (pri_data->btn_info & 0xF0) >> 4) {
pri_data->btn_cnt = (pri_data->btn_info & 0x0F);
} else {
/* Button pad */
pri_data->btn_cnt = 1;
}
pri_data->has_sp = 0; pri_data->has_sp = 0;
/* Check StickPointer device */ /* Check StickPointer device */
...@@ -355,7 +369,7 @@ static int u1_init(struct hid_device *hdev, struct u1_dev *pri_data) ...@@ -355,7 +369,7 @@ static int u1_init(struct hid_device *hdev, struct u1_dev *pri_data)
} }
pri_data->has_sp = 1; pri_data->has_sp = 1;
} }
pri_data->max_fingers = 5;
exit: exit:
return ret; return ret;
} }
...@@ -383,8 +397,10 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi) ...@@ -383,8 +397,10 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
goto exit; goto exit;
__set_bit(EV_ABS, input->evbit); __set_bit(EV_ABS, input->evbit);
input_set_abs_params(input, ABS_MT_POSITION_X, 1, data->x_max, 0, 0); input_set_abs_params(input, ABS_MT_POSITION_X,
input_set_abs_params(input, ABS_MT_POSITION_Y, 1, data->y_max, 0, 0); data->x_min, data->x_max, 0, 0);
input_set_abs_params(input, ABS_MT_POSITION_Y,
data->y_min, data->y_max, 0, 0);
if (data->x_active_len_mm && data->y_active_len_mm) { if (data->x_active_len_mm && data->y_active_len_mm) {
res_x = (data->x_max - 1) / data->x_active_len_mm; res_x = (data->x_max - 1) / data->x_active_len_mm;
...@@ -396,26 +412,21 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi) ...@@ -396,26 +412,21 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
input_set_abs_params(input, ABS_MT_PRESSURE, 0, 64, 0, 0); input_set_abs_params(input, ABS_MT_PRESSURE, 0, 64, 0, 0);
input_mt_init_slots(input, MAX_TOUCHES, INPUT_MT_POINTER); input_mt_init_slots(input, data->max_fingers, INPUT_MT_POINTER);
__set_bit(EV_KEY, input->evbit); __set_bit(EV_KEY, input->evbit);
if ((data->btn_info & 0x0F) == (data->btn_info & 0xF0) >> 4) {
data->btn_cnt = (data->btn_info & 0x0F); if (data->btn_cnt == 1)
} else {
/* Button pad */
data->btn_cnt = 1;
__set_bit(INPUT_PROP_BUTTONPAD, input->propbit); __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
}
for (i = 0; i < data->btn_cnt; i++) for (i = 0; i < data->btn_cnt; i++)
__set_bit(BTN_LEFT + i, input->keybit); __set_bit(BTN_LEFT + i, input->keybit);
/* Stick device initialization */ /* Stick device initialization */
if (data->has_sp) { if (data->has_sp) {
input2 = input_allocate_device(); input2 = input_allocate_device();
if (!input2) { if (!input2) {
ret = -ENOMEM; input_free_device(input2);
goto exit; goto exit;
} }
...@@ -439,8 +450,7 @@ static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi) ...@@ -439,8 +450,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_POINTER, input2->propbit);
__set_bit(INPUT_PROP_POINTING_STICK, input2->propbit); __set_bit(INPUT_PROP_POINTING_STICK, input2->propbit);
ret = input_register_device(data->input2); if (input_register_device(data->input2)) {
if (ret) {
input_free_device(input2); input_free_device(input2);
goto exit; goto exit;
} }
......
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