blob: f90959e940287912e7b64ceed1eb2424f484455d [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Anssi Hannulabb3caf72006-07-19 01:44:17 -04002/*
3 * Force feedback support for Zeroplus based devices
4 *
5 * Copyright (c) 2005, 2006 Anssi Hannula <anssi.hannula@gmail.com>
6 */
7
8/*
Anssi Hannulabb3caf72006-07-19 01:44:17 -04009 */
10
11
Jiri Slaby987fbc12008-09-18 12:23:32 +020012#include <linux/hid.h>
Anssi Hannulabb3caf72006-07-19 01:44:17 -040013#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Paul Gortmaker8f86a2c2011-07-03 13:39:48 -040015#include <linux/module.h>
Jiri Slaby987fbc12008-09-18 12:23:32 +020016
17#include "hid-ids.h"
18
Jiri Kosina0f6f4312009-05-15 15:46:44 +020019#ifdef CONFIG_ZEROPLUS_FF
Anssi Hannulabb3caf72006-07-19 01:44:17 -040020
21struct zpff_device {
22 struct hid_report *report;
23};
24
Jiri Slaby987fbc12008-09-18 12:23:32 +020025static int zpff_play(struct input_dev *dev, void *data,
Anssi Hannulabb3caf72006-07-19 01:44:17 -040026 struct ff_effect *effect)
27{
Dmitry Torokhove0712982007-05-09 10:17:31 +020028 struct hid_device *hid = input_get_drvdata(dev);
Anssi Hannulabb3caf72006-07-19 01:44:17 -040029 struct zpff_device *zpff = data;
30 int left, right;
31
32 /*
33 * The following is specified the other way around in the Zeroplus
34 * datasheet but the order below is correct for the XFX Executioner;
35 * however it is possible that the XFX Executioner is an exception
36 */
37
38 left = effect->u.rumble.strong_magnitude;
39 right = effect->u.rumble.weak_magnitude;
Jiri Kosina58037eb2007-05-30 15:07:13 +020040 dbg_hid("called with 0x%04x 0x%04x\n", left, right);
Anssi Hannulabb3caf72006-07-19 01:44:17 -040041
42 left = left * 0x7f / 0xffff;
43 right = right * 0x7f / 0xffff;
44
45 zpff->report->field[2]->value[0] = left;
46 zpff->report->field[3]->value[0] = right;
Jiri Kosina58037eb2007-05-30 15:07:13 +020047 dbg_hid("running with 0x%02x 0x%02x\n", left, right);
Benjamin Tissoiresd88142722013-02-25 11:31:46 +010048 hid_hw_request(hid, zpff->report, HID_REQ_SET_REPORT);
Anssi Hannulabb3caf72006-07-19 01:44:17 -040049
50 return 0;
51}
52
Jiri Slaby987fbc12008-09-18 12:23:32 +020053static int zpff_init(struct hid_device *hid)
Anssi Hannulabb3caf72006-07-19 01:44:17 -040054{
55 struct zpff_device *zpff;
56 struct hid_report *report;
57 struct hid_input *hidinput = list_entry(hid->inputs.next,
58 struct hid_input, list);
Anssi Hannulabb3caf72006-07-19 01:44:17 -040059 struct input_dev *dev = hidinput->input;
Kees Cook78214e82013-09-11 21:56:51 +020060 int i, error;
Anssi Hannulabb3caf72006-07-19 01:44:17 -040061
Kees Cook78214e82013-09-11 21:56:51 +020062 for (i = 0; i < 4; i++) {
63 report = hid_validate_values(hid, HID_OUTPUT_REPORT, 0, i, 1);
64 if (!report)
65 return -ENODEV;
Anssi Hannulabb3caf72006-07-19 01:44:17 -040066 }
67
68 zpff = kzalloc(sizeof(struct zpff_device), GFP_KERNEL);
69 if (!zpff)
70 return -ENOMEM;
71
72 set_bit(FF_RUMBLE, dev->ffbit);
73
Jiri Slaby987fbc12008-09-18 12:23:32 +020074 error = input_ff_create_memless(dev, zpff, zpff_play);
Anssi Hannulabb3caf72006-07-19 01:44:17 -040075 if (error) {
76 kfree(zpff);
77 return error;
78 }
79
80 zpff->report = report;
81 zpff->report->field[0]->value[0] = 0x00;
82 zpff->report->field[1]->value[0] = 0x02;
83 zpff->report->field[2]->value[0] = 0x00;
84 zpff->report->field[3]->value[0] = 0x00;
Benjamin Tissoiresd88142722013-02-25 11:31:46 +010085 hid_hw_request(hid, zpff->report, HID_REQ_SET_REPORT);
Anssi Hannulabb3caf72006-07-19 01:44:17 -040086
Joe Perches4291ee32010-12-09 19:29:03 -080087 hid_info(hid, "force feedback for Zeroplus based devices by Anssi Hannula <anssi.hannula@gmail.com>\n");
Anssi Hannulabb3caf72006-07-19 01:44:17 -040088
89 return 0;
90}
Jiri Kosina0f6f4312009-05-15 15:46:44 +020091#else
92static inline int zpff_init(struct hid_device *hid)
93{
94 return 0;
95}
96#endif
Jiri Slaby987fbc12008-09-18 12:23:32 +020097
98static int zp_probe(struct hid_device *hdev, const struct hid_device_id *id)
99{
100 int ret;
101
102 ret = hid_parse(hdev);
103 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800104 hid_err(hdev, "parse failed\n");
Jiri Slaby987fbc12008-09-18 12:23:32 +0200105 goto err;
106 }
107
108 ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF);
109 if (ret) {
Joe Perches4291ee32010-12-09 19:29:03 -0800110 hid_err(hdev, "hw start failed\n");
Jiri Slaby987fbc12008-09-18 12:23:32 +0200111 goto err;
112 }
113
114 zpff_init(hdev);
115
116 return 0;
117err:
118 return ret;
119}
120
121static const struct hid_device_id zp_devices[] = {
122 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) },
123 { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) },
124 { }
125};
126MODULE_DEVICE_TABLE(hid, zp_devices);
127
128static struct hid_driver zp_driver = {
129 .name = "zeroplus",
130 .id_table = zp_devices,
131 .probe = zp_probe,
132};
H Hartley Sweetenf4254582012-12-17 15:28:26 -0700133module_hid_driver(zp_driver);
Jiri Slaby987fbc12008-09-18 12:23:32 +0200134
Jiri Slaby987fbc12008-09-18 12:23:32 +0200135MODULE_LICENSE("GPL");