Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * HID Driver for ELAN Touchpad
  4 *
  5 * Currently only supports touchpad found on HP Pavilion X2 10
  6 *
  7 * Copyright (c) 2016 Alexandrov Stanislav <neko@nya.ai>
 
 
 
 
 
  8 */
  9
 10#include <linux/hid.h>
 11#include <linux/input/mt.h>
 12#include <linux/leds.h>
 13#include <linux/module.h>
 14#include <linux/usb.h>
 15
 16#include "hid-ids.h"
 17
 18#define ELAN_MT_I2C		0x5d
 19#define ELAN_SINGLE_FINGER	0x81
 20#define ELAN_MT_FIRST_FINGER	0x82
 21#define ELAN_MT_SECOND_FINGER	0x83
 22#define ELAN_INPUT_REPORT_SIZE	8
 23#define ELAN_I2C_REPORT_SIZE	32
 24#define ELAN_FINGER_DATA_LEN	5
 25#define ELAN_MAX_FINGERS	5
 26#define ELAN_MAX_PRESSURE	255
 27#define ELAN_TP_USB_INTF	1
 28
 29#define ELAN_FEATURE_REPORT	0x0d
 30#define ELAN_FEATURE_SIZE	5
 31#define ELAN_PARAM_MAX_X	6
 32#define ELAN_PARAM_MAX_Y	7
 33#define ELAN_PARAM_RES		8
 34
 35#define ELAN_MUTE_LED_REPORT	0xBC
 36#define ELAN_LED_REPORT_SIZE	8
 37
 38#define ELAN_HAS_LED		BIT(0)
 
 
 
 
 
 
 
 
 39
 40struct elan_drvdata {
 41	struct input_dev *input;
 42	u8 prev_report[ELAN_INPUT_REPORT_SIZE];
 43	struct led_classdev mute_led;
 44	u8 mute_led_state;
 45	u16 max_x;
 46	u16 max_y;
 47	u16 res_x;
 48	u16 res_y;
 49};
 50
 51static int is_not_elan_touchpad(struct hid_device *hdev)
 52{
 53	if (hid_is_usb(hdev)) {
 54		struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
 55
 56		return (intf->altsetting->desc.bInterfaceNumber !=
 57			ELAN_TP_USB_INTF);
 58	}
 59
 60	return 0;
 61}
 62
 63static int elan_input_mapping(struct hid_device *hdev, struct hid_input *hi,
 64			      struct hid_field *field, struct hid_usage *usage,
 65			      unsigned long **bit, int *max)
 66{
 67	if (is_not_elan_touchpad(hdev))
 68		return 0;
 69
 70	if (field->report->id == ELAN_SINGLE_FINGER ||
 71	    field->report->id == ELAN_MT_FIRST_FINGER ||
 72	    field->report->id == ELAN_MT_SECOND_FINGER ||
 73	    field->report->id == ELAN_MT_I2C)
 74		return -1;
 75
 76	return 0;
 77}
 78
 79static int elan_get_device_param(struct hid_device *hdev,
 80				 unsigned char *dmabuf, unsigned char param)
 81{
 82	int ret;
 83
 84	dmabuf[0] = ELAN_FEATURE_REPORT;
 85	dmabuf[1] = 0x05;
 86	dmabuf[2] = 0x03;
 87	dmabuf[3] = param;
 88	dmabuf[4] = 0x01;
 89
 90	ret = hid_hw_raw_request(hdev, ELAN_FEATURE_REPORT, dmabuf,
 91				 ELAN_FEATURE_SIZE, HID_FEATURE_REPORT,
 92				 HID_REQ_SET_REPORT);
 93	if (ret != ELAN_FEATURE_SIZE) {
 94		hid_err(hdev, "Set report error for parm %d: %d\n", param, ret);
 95		return ret;
 96	}
 97
 98	ret = hid_hw_raw_request(hdev, ELAN_FEATURE_REPORT, dmabuf,
 99				 ELAN_FEATURE_SIZE, HID_FEATURE_REPORT,
100				 HID_REQ_GET_REPORT);
101	if (ret != ELAN_FEATURE_SIZE) {
102		hid_err(hdev, "Get report error for parm %d: %d\n", param, ret);
103		return ret;
104	}
105
106	return 0;
107}
108
109static unsigned int elan_convert_res(char val)
110{
111	/*
112	 * (value from firmware) * 10 + 790 = dpi
113	 * dpi * 10 / 254 = dots/mm
114	 */
115	return (val * 10 + 790) * 10 / 254;
116}
117
118static int elan_get_device_params(struct hid_device *hdev)
119{
120	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
121	unsigned char *dmabuf;
122	int ret;
123
124	dmabuf = kmalloc(ELAN_FEATURE_SIZE, GFP_KERNEL);
125	if (!dmabuf)
126		return -ENOMEM;
127
128	ret = elan_get_device_param(hdev, dmabuf, ELAN_PARAM_MAX_X);
129	if (ret)
130		goto err;
131
132	drvdata->max_x = (dmabuf[4] << 8) | dmabuf[3];
133
134	ret = elan_get_device_param(hdev, dmabuf, ELAN_PARAM_MAX_Y);
135	if (ret)
136		goto err;
137
138	drvdata->max_y = (dmabuf[4] << 8) | dmabuf[3];
139
140	ret = elan_get_device_param(hdev, dmabuf, ELAN_PARAM_RES);
141	if (ret)
142		goto err;
143
144	drvdata->res_x = elan_convert_res(dmabuf[3]);
145	drvdata->res_y = elan_convert_res(dmabuf[4]);
146
147err:
148	kfree(dmabuf);
149	return ret;
150}
151
152static int elan_input_configured(struct hid_device *hdev, struct hid_input *hi)
153{
154	int ret;
155	struct input_dev *input;
156	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
157
158	if (is_not_elan_touchpad(hdev))
159		return 0;
160
161	ret = elan_get_device_params(hdev);
162	if (ret)
163		return ret;
164
165	input = devm_input_allocate_device(&hdev->dev);
166	if (!input)
167		return -ENOMEM;
168
169	input->name = "Elan Touchpad";
170	input->phys = hdev->phys;
171	input->uniq = hdev->uniq;
172	input->id.bustype = hdev->bus;
173	input->id.vendor  = hdev->vendor;
174	input->id.product = hdev->product;
175	input->id.version = hdev->version;
176	input->dev.parent = &hdev->dev;
177
178	input_set_abs_params(input, ABS_MT_POSITION_X, 0, drvdata->max_x,
179			     0, 0);
180	input_set_abs_params(input, ABS_MT_POSITION_Y, 0, drvdata->max_y,
181			     0, 0);
182	input_set_abs_params(input, ABS_MT_PRESSURE, 0, ELAN_MAX_PRESSURE,
183			     0, 0);
 
 
184
185	__set_bit(BTN_LEFT, input->keybit);
186	__set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
187
188	ret = input_mt_init_slots(input, ELAN_MAX_FINGERS, INPUT_MT_POINTER);
 
189	if (ret) {
190		hid_err(hdev, "Failed to init elan MT slots: %d\n", ret);
191		return ret;
192	}
193
194	input_abs_set_res(input, ABS_X, drvdata->res_x);
195	input_abs_set_res(input, ABS_Y, drvdata->res_y);
196
197	ret = input_register_device(input);
198	if (ret) {
199		hid_err(hdev, "Failed to register elan input device: %d\n",
200			ret);
201		input_mt_destroy_slots(input);
202		return ret;
203	}
204
205	drvdata->input = input;
206
207	return 0;
208}
209
210static void elan_report_mt_slot(struct elan_drvdata *drvdata, u8 *data,
211				unsigned int slot_num)
212{
213	struct input_dev *input = drvdata->input;
214	int x, y, p;
215
216	bool active = !!data;
217
218	input_mt_slot(input, slot_num);
219	input_mt_report_slot_state(input, MT_TOOL_FINGER, active);
220	if (active) {
221		x = ((data[0] & 0xF0) << 4) | data[1];
222		y = drvdata->max_y -
223		    (((data[0] & 0x07) << 8) | data[2]);
224		p = data[4];
225
226		input_report_abs(input, ABS_MT_POSITION_X, x);
227		input_report_abs(input, ABS_MT_POSITION_Y, y);
228		input_report_abs(input, ABS_MT_PRESSURE, p);
229	}
230}
231
232static void elan_usb_report_input(struct elan_drvdata *drvdata, u8 *data)
233{
234	int i;
235	struct input_dev *input = drvdata->input;
236
237	/*
238	 * There is 3 types of reports: for single touch,
239	 * for multitouch - first finger and for multitouch - second finger
240	 *
241	 * packet structure for ELAN_SINGLE_FINGER and ELAN_MT_FIRST_FINGER:
242	 *
243	 * byte 1: 1   0   0   0   0   0   0   1  // 0x81 or 0x82
244	 * byte 2: 0   0   0   0   0   0   0   0  // looks like unused
245	 * byte 3: f5  f4  f3  f2  f1  0   0   L
246	 * byte 4: x12 x11 x10 x9  0?  y11 y10 y9
247	 * byte 5: x8  x7  x6  x5  x4  x3  x2  x1
248	 * byte 6: y8  y7  y6  y5  y4  y3  y2  y1
249	 * byte 7: sy4 sy3 sy2 sy1 sx4 sx3 sx2 sx1
250	 * byte 8: p8  p7  p6  p5  p4  p3  p2  p1
251	 *
252	 * packet structure for ELAN_MT_SECOND_FINGER:
253	 *
254	 * byte 1: 1   0   0   0   0   0   1   1  // 0x83
255	 * byte 2: x12 x11 x10 x9  0   y11 y10 y9
256	 * byte 3: x8  x7  x6  x5  x4  x3  x2  x1
257	 * byte 4: y8  y7  y6  y5  y4  y3  y2  y1
258	 * byte 5: sy4 sy3 sy2 sy1 sx4 sx3 sx2 sx1
259	 * byte 6: p8  p7  p6  p5  p4  p3  p2  p1
260	 * byte 7: 0   0   0   0   0   0   0   0
261	 * byte 8: 0   0   0   0   0   0   0   0
262	 *
263	 * f5-f1: finger touch bits
264	 * L: clickpad button
265	 * sy / sx: finger width / height expressed in traces, the total number
266	 *          of traces can be queried by doing a HID_REQ_SET_REPORT
267	 *          { 0x0d, 0x05, 0x03, 0x05, 0x01 } followed by a GET, in the
268	 *          returned buf, buf[3]=no-x-traces, buf[4]=no-y-traces.
269	 * p: pressure
270	 */
271
272	if (data[0] == ELAN_SINGLE_FINGER) {
273		for (i = 0; i < ELAN_MAX_FINGERS; i++) {
274			if (data[2] & BIT(i + 3))
275				elan_report_mt_slot(drvdata, data + 3, i);
276			else
277				elan_report_mt_slot(drvdata, NULL, i);
278		}
279		input_report_key(input, BTN_LEFT, data[2] & 0x01);
280	}
281	/*
282	 * When touched with two fingers Elan touchpad will emit two HID reports
283	 * first is ELAN_MT_FIRST_FINGER and second is ELAN_MT_SECOND_FINGER
284	 * we will save ELAN_MT_FIRST_FINGER report and wait for
285	 * ELAN_MT_SECOND_FINGER to finish multitouch
286	 */
287	if (data[0] == ELAN_MT_FIRST_FINGER) {
288		memcpy(drvdata->prev_report, data,
289		       sizeof(drvdata->prev_report));
290		return;
291	}
292
293	if (data[0] == ELAN_MT_SECOND_FINGER) {
294		int first = 0;
295		u8 *prev_report = drvdata->prev_report;
296
297		if (prev_report[0] != ELAN_MT_FIRST_FINGER)
298			return;
299
300		for (i = 0; i < ELAN_MAX_FINGERS; i++) {
301			if (prev_report[2] & BIT(i + 3)) {
302				if (!first) {
303					first = 1;
304					elan_report_mt_slot(drvdata, prev_report + 3, i);
305				} else {
306					elan_report_mt_slot(drvdata, data + 1, i);
307				}
308			} else {
309				elan_report_mt_slot(drvdata, NULL, i);
310			}
311		}
312		input_report_key(input, BTN_LEFT, prev_report[2] & 0x01);
313	}
314
315	input_mt_sync_frame(input);
316	input_sync(input);
317}
318
319static void elan_i2c_report_input(struct elan_drvdata *drvdata, u8 *data)
320{
321	struct input_dev *input = drvdata->input;
322	u8 *finger_data;
323	int i;
324
325	/*
326	 * Elan MT touchpads in i2c mode send finger data in the same format
327	 * as in USB mode, but then with all fingers in a single packet.
328	 *
329	 * packet structure for ELAN_MT_I2C:
330	 *
331	 * byte     1: 1   0   0   1   1   1   0   1   // 0x5d
332	 * byte     2: f5  f4  f3  f2  f1  0   0   L
333	 * byte     3: x12 x11 x10 x9  0?  y11 y10 y9
334	 * byte     4: x8  x7  x6  x5  x4  x3  x2  x1
335	 * byte     5: y8  y7  y6  y5  y4  y3  y2  y1
336	 * byte     6: sy4 sy3 sy2 sy1 sx4 sx3 sx2 sx1
337	 * byte     7: p8  p7  p6  p5  p4  p3  p2  p1
338	 * byte  8-12: Same as byte 3-7 for second finger down
339	 * byte 13-17: Same as byte 3-7 for third finger down
340	 * byte 18-22: Same as byte 3-7 for fourth finger down
341	 * byte 23-27: Same as byte 3-7 for fifth finger down
342	 */
343
344	finger_data = data + 2;
345	for (i = 0; i < ELAN_MAX_FINGERS; i++) {
346		if (data[1] & BIT(i + 3)) {
347			elan_report_mt_slot(drvdata, finger_data, i);
348			finger_data += ELAN_FINGER_DATA_LEN;
349		} else {
350			elan_report_mt_slot(drvdata, NULL, i);
351		}
352	}
353
354	input_report_key(input, BTN_LEFT, data[1] & 0x01);
355	input_mt_sync_frame(input);
356	input_sync(input);
357}
358
359static int elan_raw_event(struct hid_device *hdev,
360			  struct hid_report *report, u8 *data, int size)
361{
362	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
363
364	if (is_not_elan_touchpad(hdev))
365		return 0;
366
367	if (data[0] == ELAN_SINGLE_FINGER ||
368	    data[0] == ELAN_MT_FIRST_FINGER ||
369	    data[0] == ELAN_MT_SECOND_FINGER) {
370		if (size == ELAN_INPUT_REPORT_SIZE) {
371			elan_usb_report_input(drvdata, data);
372			return 1;
373		}
374	}
375
376	if (data[0] == ELAN_MT_I2C && size == ELAN_I2C_REPORT_SIZE) {
377		elan_i2c_report_input(drvdata, data);
378		return 1;
379	}
380
381	return 0;
382}
383
384static int elan_start_multitouch(struct hid_device *hdev)
385{
386	int ret;
387
388	/*
389	 * This byte sequence will enable multitouch mode and disable
390	 * mouse emulation
391	 */
392	static const unsigned char buf[] = { 0x0D, 0x00, 0x03, 0x21, 0x00 };
393	unsigned char *dmabuf = kmemdup(buf, sizeof(buf), GFP_KERNEL);
394
395	if (!dmabuf)
396		return -ENOMEM;
397
398	ret = hid_hw_raw_request(hdev, dmabuf[0], dmabuf, sizeof(buf),
399				 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
400
401	kfree(dmabuf);
402
403	if (ret != sizeof(buf)) {
404		hid_err(hdev, "Failed to start multitouch: %d\n", ret);
405		return ret;
406	}
407
408	return 0;
409}
410
 
 
 
 
 
 
 
 
 
411static int elan_mute_led_set_brigtness(struct led_classdev *led_cdev,
412				       enum led_brightness value)
413{
414	int ret;
415	u8 led_state;
416	struct device *dev = led_cdev->dev->parent;
417	struct hid_device *hdev = to_hid_device(dev);
418	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
419
420	unsigned char *dmabuf = kzalloc(ELAN_LED_REPORT_SIZE, GFP_KERNEL);
421
422	if (!dmabuf)
423		return -ENOMEM;
424
425	led_state = !!value;
426
427	dmabuf[0] = ELAN_MUTE_LED_REPORT;
428	dmabuf[1] = 0x02;
429	dmabuf[2] = led_state;
430
431	ret = hid_hw_raw_request(hdev, dmabuf[0], dmabuf, ELAN_LED_REPORT_SIZE,
432				 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
433
434	kfree(dmabuf);
435
436	if (ret != ELAN_LED_REPORT_SIZE) {
437		if (ret != -ENODEV)
438			hid_err(hdev, "Failed to set mute led brightness: %d\n", ret);
439		return ret < 0 ? ret : -EIO;
440	}
441
442	drvdata->mute_led_state = led_state;
443	return 0;
444}
445
446static int elan_init_mute_led(struct hid_device *hdev)
447{
448	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
449	struct led_classdev *mute_led = &drvdata->mute_led;
450
451	mute_led->name = "elan:red:mute";
452	mute_led->default_trigger = "audio-mute";
453	mute_led->brightness_set_blocking = elan_mute_led_set_brigtness;
454	mute_led->max_brightness = LED_ON;
455	mute_led->flags = LED_HW_PLUGGABLE;
456	mute_led->dev = &hdev->dev;
457
458	return devm_led_classdev_register(&hdev->dev, mute_led);
459}
460
461static int elan_probe(struct hid_device *hdev, const struct hid_device_id *id)
462{
463	int ret;
464	struct elan_drvdata *drvdata;
465
466	drvdata = devm_kzalloc(&hdev->dev, sizeof(*drvdata), GFP_KERNEL);
467
468	if (!drvdata)
469		return -ENOMEM;
470
 
471	hid_set_drvdata(hdev, drvdata);
472
473	ret = hid_parse(hdev);
474	if (ret) {
475		hid_err(hdev, "Hid Parse failed\n");
476		return ret;
477	}
478
479	ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
480	if (ret) {
481		hid_err(hdev, "Hid hw start failed\n");
482		return ret;
483	}
484
485	if (is_not_elan_touchpad(hdev))
486		return 0;
487
488	if (!drvdata->input) {
489		hid_err(hdev, "Input device is not registered\n");
490		ret = -ENAVAIL;
491		goto err;
492	}
493
494	ret = elan_start_multitouch(hdev);
495	if (ret)
496		goto err;
497
498	if (id->driver_data & ELAN_HAS_LED) {
499		ret = elan_init_mute_led(hdev);
500		if (ret)
501			goto err;
502	}
503
504	return 0;
505err:
506	hid_hw_stop(hdev);
507	return ret;
508}
509
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510static const struct hid_device_id elan_devices[] = {
511	{ HID_USB_DEVICE(USB_VENDOR_ID_ELAN, USB_DEVICE_ID_HP_X2),
512	  .driver_data = ELAN_HAS_LED },
513	{ HID_USB_DEVICE(USB_VENDOR_ID_ELAN, USB_DEVICE_ID_HP_X2_10_COVER),
514	  .driver_data = ELAN_HAS_LED },
515	{ HID_I2C_DEVICE(USB_VENDOR_ID_ELAN, USB_DEVICE_ID_TOSHIBA_CLICK_L9W) },
516	{ }
517};
 
518MODULE_DEVICE_TABLE(hid, elan_devices);
519
520static struct hid_driver elan_driver = {
521	.name = "elan",
522	.id_table = elan_devices,
523	.input_mapping = elan_input_mapping,
524	.input_configured = elan_input_configured,
525	.raw_event = elan_raw_event,
526	.probe = elan_probe,
 
527};
528
529module_hid_driver(elan_driver);
530
531MODULE_LICENSE("GPL");
532MODULE_AUTHOR("Alexandrov Stanislav");
533MODULE_DESCRIPTION("Driver for HID ELAN Touchpads");
v4.17
 
  1/*
  2 * HID Driver for ELAN Touchpad
  3 *
  4 * Currently only supports touchpad found on HP Pavilion X2 10
  5 *
  6 * Copyright (c) 2016 Alexandrov Stanislav <neko@nya.ai>
  7 *
  8 * This program is free software; you can redistribute it and/or modify it
  9 * under the terms of the GNU General Public License as published by the Free
 10 * Software Foundation; either version 2 of the License, or (at your option)
 11 * any later version.
 12 */
 13
 14#include <linux/hid.h>
 15#include <linux/input/mt.h>
 16#include <linux/leds.h>
 17#include <linux/module.h>
 18#include <linux/usb.h>
 19
 20#include "hid-ids.h"
 21
 
 22#define ELAN_SINGLE_FINGER	0x81
 23#define ELAN_MT_FIRST_FINGER	0x82
 24#define ELAN_MT_SECOND_FINGER	0x83
 25#define ELAN_INPUT_REPORT_SIZE	8
 
 
 
 
 
 
 
 
 
 
 
 26
 27#define ELAN_MUTE_LED_REPORT	0xBC
 28#define ELAN_LED_REPORT_SIZE	8
 29
 30struct elan_touchpad_settings {
 31	u8 max_fingers;
 32	u16 max_x;
 33	u16 max_y;
 34	u8 max_area_x;
 35	u8 max_area_y;
 36	u8 max_w;
 37	int usb_bInterfaceNumber;
 38};
 39
 40struct elan_drvdata {
 41	struct input_dev *input;
 42	u8 prev_report[ELAN_INPUT_REPORT_SIZE];
 43	struct led_classdev mute_led;
 44	u8 mute_led_state;
 45	struct elan_touchpad_settings *settings;
 
 
 
 46};
 47
 48static int is_not_elan_touchpad(struct hid_device *hdev)
 49{
 50	struct usb_interface *intf = to_usb_interface(hdev->dev.parent);
 51	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
 
 
 
 
 52
 53	return (intf->altsetting->desc.bInterfaceNumber != drvdata->settings->usb_bInterfaceNumber);
 54}
 55
 56static int elan_input_mapping(struct hid_device *hdev, struct hid_input *hi,
 57			      struct hid_field *field, struct hid_usage *usage,
 58			      unsigned long **bit, int *max)
 59{
 60	if (is_not_elan_touchpad(hdev))
 61		return 0;
 62
 63	if (field->report->id == ELAN_SINGLE_FINGER ||
 64	    field->report->id == ELAN_MT_FIRST_FINGER ||
 65	    field->report->id == ELAN_MT_SECOND_FINGER)
 
 66		return -1;
 67
 68	return 0;
 69}
 70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 71static int elan_input_configured(struct hid_device *hdev, struct hid_input *hi)
 72{
 73	int ret;
 74	struct input_dev *input;
 75	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
 76
 77	if (is_not_elan_touchpad(hdev))
 78		return 0;
 79
 
 
 
 
 80	input = devm_input_allocate_device(&hdev->dev);
 81	if (!input)
 82		return -ENOMEM;
 83
 84	input->name = "Elan Touchpad";
 85	input->phys = hdev->phys;
 86	input->uniq = hdev->uniq;
 87	input->id.bustype = hdev->bus;
 88	input->id.vendor  = hdev->vendor;
 89	input->id.product = hdev->product;
 90	input->id.version = hdev->version;
 91	input->dev.parent = &hdev->dev;
 92
 93	input_set_abs_params(input, ABS_MT_POSITION_X, 0,
 94			     drvdata->settings->max_x, 0, 0);
 95	input_set_abs_params(input, ABS_MT_POSITION_Y, 0,
 96			     drvdata->settings->max_y, 0, 0);
 97	input_set_abs_params(input, ABS_MT_TOUCH_MAJOR, 0,
 98			     drvdata->settings->max_fingers, 0, 0);
 99	input_set_abs_params(input, ABS_TOOL_WIDTH, 0,
100			     drvdata->settings->max_w, 0, 0);
101
102	__set_bit(BTN_LEFT, input->keybit);
103	__set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
104
105	ret = input_mt_init_slots(input, drvdata->settings->max_fingers,
106				  INPUT_MT_POINTER);
107	if (ret) {
108		hid_err(hdev, "Failed to init elan MT slots: %d\n", ret);
109		return ret;
110	}
111
 
 
 
112	ret = input_register_device(input);
113	if (ret) {
114		hid_err(hdev, "Failed to register elan input device: %d\n",
115			ret);
116		input_free_device(input);
117		return ret;
118	}
119
120	drvdata->input = input;
121
122	return 0;
123}
124
125static void elan_report_mt_slot(struct elan_drvdata *drvdata, u8 *data,
126				unsigned int slot_num)
127{
128	struct input_dev *input = drvdata->input;
129	int x, y, w;
130
131	bool active = !!data;
132
133	input_mt_slot(input, slot_num);
134	input_mt_report_slot_state(input, MT_TOOL_FINGER, active);
135	if (active) {
136		x = ((data[0] & 0xF0) << 4) | data[1];
137		y = drvdata->settings->max_y -
138		    (((data[0] & 0x07) << 8) | data[2]);
139		w = data[4];
140
141		input_report_abs(input, ABS_MT_POSITION_X, x);
142		input_report_abs(input, ABS_MT_POSITION_Y, y);
143		input_report_abs(input, ABS_TOOL_WIDTH, w);
144	}
145}
146
147static void elan_report_input(struct elan_drvdata *drvdata, u8 *data)
148{
149	int i;
150	struct input_dev *input = drvdata->input;
151
152	/*
153	 * There is 3 types of reports: for single touch,
154	 * for multitouch - first finger and for multitouch - second finger
155	 *
156	 * packet structure for ELAN_SINGLE_FINGER and ELAN_MT_FIRST_FINGER:
157	 *
158	 * byte 1: 1   0   0   0   0   0   0   1  // 0x81 or 0x82
159	 * byte 2: 0   0   0   0   0   0   0   0  // looks like unused
160	 * byte 3: f5  f4  f3  f2  f1  0   0   L
161	 * byte 4: x12 x11 x10 x9  0?  y11 y10 y9
162	 * byte 5: x8  x7  x6  x5  x4  x3  x2  x1
163	 * byte 6: y8  y7  y6  y5  y4  y3  y2  y1
164	 * byte 7: sy4 sy3 sy2 sy1 sx4 sx3 sx2 sx1
165	 * byte 8: w8  w7  w6  w5  w4  w3  w2  w1
166	 *
167	 * packet structure for ELAN_MT_SECOND_FINGER:
168	 *
169	 * byte 1: 1   0   0   0   0   0   1   1  // 0x83
170	 * byte 2: x12 x11 x10 x9  0   y11 y10 y9
171	 * byte 3: x8  x7  x6  x5  x4  x3  x2  x1
172	 * byte 4: y8  y7  y6  y5  y4  y3  y2  y1
173	 * byte 5: sy4 sy3 sy2 sy1 sx4 sx3 sx2 sx1
174	 * byte 6: w8  w7  w6  w5  w4  w3  w2  w1
175	 * byte 7: 0   0   0   0   0   0   0   0
176	 * byte 8: 0   0   0   0   0   0   0   0
177	 *
178	 * f5-f1: finger touch bits
179	 * L: clickpad button
180	 * sy / sx: not sure yet, but this looks like rectangular
181	 * area for finger
182	 * w: looks like finger width
 
 
183	 */
184
185	if (data[0] == ELAN_SINGLE_FINGER) {
186		for (i = 0; i < drvdata->settings->max_fingers; i++) {
187			if (data[2] & BIT(i + 3))
188				elan_report_mt_slot(drvdata, data + 3, i);
189			else
190				elan_report_mt_slot(drvdata, NULL, i);
191		}
192		input_report_key(input, BTN_LEFT, data[2] & 0x01);
193	}
194	/*
195	 * When touched with two fingers Elan touchpad will emit two HID reports
196	 * first is ELAN_MT_FIRST_FINGER and second is ELAN_MT_SECOND_FINGER
197	 * we will save ELAN_MT_FIRST_FINGER report and wait for
198	 * ELAN_MT_SECOND_FINGER to finish multitouch
199	 */
200	if (data[0] == ELAN_MT_FIRST_FINGER) {
201		memcpy(drvdata->prev_report, data,
202		       sizeof(drvdata->prev_report));
203		return;
204	}
205
206	if (data[0] == ELAN_MT_SECOND_FINGER) {
207		int first = 0;
208		u8 *prev_report = drvdata->prev_report;
209
210		if (prev_report[0] != ELAN_MT_FIRST_FINGER)
211			return;
212
213		for (i = 0; i < drvdata->settings->max_fingers; i++) {
214			if (prev_report[2] & BIT(i + 3)) {
215				if (!first) {
216					first = 1;
217					elan_report_mt_slot(drvdata, prev_report + 3, i);
218				} else {
219					elan_report_mt_slot(drvdata, data + 1, i);
220				}
221			} else {
222				elan_report_mt_slot(drvdata, NULL, i);
223			}
224		}
225		input_report_key(input, BTN_LEFT, prev_report[2] & 0x01);
226	}
227
228	input_mt_sync_frame(input);
229	input_sync(input);
230}
231
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232static int elan_raw_event(struct hid_device *hdev,
233			  struct hid_report *report, u8 *data, int size)
234{
235	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
236
237	if (is_not_elan_touchpad(hdev))
238		return 0;
239
240	if (data[0] == ELAN_SINGLE_FINGER ||
241	    data[0] == ELAN_MT_FIRST_FINGER ||
242	    data[0] == ELAN_MT_SECOND_FINGER) {
243		if (size == ELAN_INPUT_REPORT_SIZE) {
244			elan_report_input(drvdata, data);
245			return 1;
246		}
247	}
248
 
 
 
 
 
249	return 0;
250}
251
252static int elan_start_multitouch(struct hid_device *hdev)
253{
254	int ret;
255
256	/*
257	 * This byte sequence will enable multitouch mode and disable
258	 * mouse emulation
259	 */
260	const unsigned char buf[] = { 0x0D, 0x00, 0x03, 0x21, 0x00 };
261	unsigned char *dmabuf = kmemdup(buf, sizeof(buf), GFP_KERNEL);
262
263	if (!dmabuf)
264		return -ENOMEM;
265
266	ret = hid_hw_raw_request(hdev, dmabuf[0], dmabuf, sizeof(buf),
267				 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
268
269	kfree(dmabuf);
270
271	if (ret != sizeof(buf)) {
272		hid_err(hdev, "Failed to start multitouch: %d\n", ret);
273		return ret;
274	}
275
276	return 0;
277}
278
279static enum led_brightness elan_mute_led_get_brigtness(struct led_classdev *led_cdev)
280{
281	struct device *dev = led_cdev->dev->parent;
282	struct hid_device *hdev = to_hid_device(dev);
283	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
284
285	return drvdata->mute_led_state;
286}
287
288static int elan_mute_led_set_brigtness(struct led_classdev *led_cdev,
289				       enum led_brightness value)
290{
291	int ret;
292	u8 led_state;
293	struct device *dev = led_cdev->dev->parent;
294	struct hid_device *hdev = to_hid_device(dev);
295	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
296
297	unsigned char *dmabuf = kzalloc(ELAN_LED_REPORT_SIZE, GFP_KERNEL);
298
299	if (!dmabuf)
300		return -ENOMEM;
301
302	led_state = !!value;
303
304	dmabuf[0] = ELAN_MUTE_LED_REPORT;
305	dmabuf[1] = 0x02;
306	dmabuf[2] = led_state;
307
308	ret = hid_hw_raw_request(hdev, dmabuf[0], dmabuf, ELAN_LED_REPORT_SIZE,
309				 HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
310
311	kfree(dmabuf);
312
313	if (ret != ELAN_LED_REPORT_SIZE) {
314		hid_err(hdev, "Failed to set mute led brightness: %d\n", ret);
315		return ret;
 
316	}
317
318	drvdata->mute_led_state = led_state;
319	return 0;
320}
321
322static int elan_init_mute_led(struct hid_device *hdev)
323{
324	struct elan_drvdata *drvdata = hid_get_drvdata(hdev);
325	struct led_classdev *mute_led = &drvdata->mute_led;
326
327	mute_led->name = "elan:red:mute";
328	mute_led->brightness_get = elan_mute_led_get_brigtness;
329	mute_led->brightness_set_blocking = elan_mute_led_set_brigtness;
330	mute_led->max_brightness = LED_ON;
 
331	mute_led->dev = &hdev->dev;
332
333	return devm_led_classdev_register(&hdev->dev, mute_led);
334}
335
336static int elan_probe(struct hid_device *hdev, const struct hid_device_id *id)
337{
338	int ret;
339	struct elan_drvdata *drvdata;
340
341	drvdata = devm_kzalloc(&hdev->dev, sizeof(*drvdata), GFP_KERNEL);
342
343	if (!drvdata)
344		return -ENOMEM;
345
346	drvdata->settings = (struct elan_touchpad_settings *)id->driver_data;
347	hid_set_drvdata(hdev, drvdata);
348
349	ret = hid_parse(hdev);
350	if (ret) {
351		hid_err(hdev, "Hid Parse failed\n");
352		return ret;
353	}
354
355	ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
356	if (ret) {
357		hid_err(hdev, "Hid hw start failed\n");
358		return ret;
359	}
360
361	if (is_not_elan_touchpad(hdev))
362		return 0;
363
364	if (!drvdata->input) {
365		hid_err(hdev, "Input device is not registred\n");
366		ret = -ENAVAIL;
367		goto err;
368	}
369
370	ret = elan_start_multitouch(hdev);
371	if (ret)
372		goto err;
373
374	ret = elan_init_mute_led(hdev);
375	if (ret)
376		goto err;
 
 
377
378	return 0;
379err:
380	hid_hw_stop(hdev);
381	return ret;
382}
383
384static void elan_remove(struct hid_device *hdev)
385{
386	hid_hw_stop(hdev);
387}
388
389static const struct elan_touchpad_settings hp_x2_10_touchpad_data = {
390	.max_fingers = 5,
391	.max_x = 2930,
392	.max_y = 1250,
393	.max_area_x = 15,
394	.max_area_y = 15,
395	.max_w = 255,
396	.usb_bInterfaceNumber = 1,
397};
398
399static const struct hid_device_id elan_devices[] = {
 
 
400	{ HID_USB_DEVICE(USB_VENDOR_ID_ELAN, USB_DEVICE_ID_HP_X2_10_COVER),
401		(kernel_ulong_t)&hp_x2_10_touchpad_data},
 
402	{ }
403};
404
405MODULE_DEVICE_TABLE(hid, elan_devices);
406
407static struct hid_driver elan_driver = {
408	.name = "elan",
409	.id_table = elan_devices,
410	.input_mapping = elan_input_mapping,
411	.input_configured = elan_input_configured,
412	.raw_event = elan_raw_event,
413	.probe = elan_probe,
414	.remove = elan_remove,
415};
416
417module_hid_driver(elan_driver);
418
419MODULE_LICENSE("GPL");
420MODULE_AUTHOR("Alexandrov Stanislav");
421MODULE_DESCRIPTION("Driver for HID ELAN Touchpads");