Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Force feedback support for Zeroplus based devices |
| 4 | * |
| 5 | * Copyright (c) 2005, 2006 Anssi Hannula <anssi.hannula@gmail.com> |
| 6 | */ |
| 7 | |
| 8 | /* |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 12 | #include <linux/hid.h> |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 13 | #include <linux/input.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Paul Gortmaker | 8f86a2c | 2011-07-03 13:39:48 -0400 | [diff] [blame] | 15 | #include <linux/module.h> |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 16 | |
| 17 | #include "hid-ids.h" |
| 18 | |
Jiri Kosina | 0f6f431 | 2009-05-15 15:46:44 +0200 | [diff] [blame] | 19 | #ifdef CONFIG_ZEROPLUS_FF |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 20 | |
| 21 | struct zpff_device { |
| 22 | struct hid_report *report; |
| 23 | }; |
| 24 | |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 25 | static int zpff_play(struct input_dev *dev, void *data, |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 26 | struct ff_effect *effect) |
| 27 | { |
Dmitry Torokhov | e071298 | 2007-05-09 10:17:31 +0200 | [diff] [blame] | 28 | struct hid_device *hid = input_get_drvdata(dev); |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 29 | 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 Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 40 | dbg_hid("called with 0x%04x 0x%04x\n", left, right); |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 41 | |
| 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 Kosina | 58037eb | 2007-05-30 15:07:13 +0200 | [diff] [blame] | 47 | dbg_hid("running with 0x%02x 0x%02x\n", left, right); |
Benjamin Tissoires | d8814272 | 2013-02-25 11:31:46 +0100 | [diff] [blame] | 48 | hid_hw_request(hid, zpff->report, HID_REQ_SET_REPORT); |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 53 | static int zpff_init(struct hid_device *hid) |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 54 | { |
| 55 | struct zpff_device *zpff; |
| 56 | struct hid_report *report; |
Alan Stern | d9d4b1e | 2019-10-03 14:53:59 -0400 | [diff] [blame] | 57 | struct hid_input *hidinput; |
| 58 | struct input_dev *dev; |
Kees Cook | 78214e8 | 2013-09-11 21:56:51 +0200 | [diff] [blame] | 59 | int i, error; |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 60 | |
Alan Stern | d9d4b1e | 2019-10-03 14:53:59 -0400 | [diff] [blame] | 61 | if (list_empty(&hid->inputs)) { |
| 62 | hid_err(hid, "no inputs found\n"); |
| 63 | return -ENODEV; |
| 64 | } |
| 65 | hidinput = list_entry(hid->inputs.next, struct hid_input, list); |
| 66 | dev = hidinput->input; |
| 67 | |
Kees Cook | 78214e8 | 2013-09-11 21:56:51 +0200 | [diff] [blame] | 68 | for (i = 0; i < 4; i++) { |
| 69 | report = hid_validate_values(hid, HID_OUTPUT_REPORT, 0, i, 1); |
| 70 | if (!report) |
| 71 | return -ENODEV; |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | zpff = kzalloc(sizeof(struct zpff_device), GFP_KERNEL); |
| 75 | if (!zpff) |
| 76 | return -ENOMEM; |
| 77 | |
| 78 | set_bit(FF_RUMBLE, dev->ffbit); |
| 79 | |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 80 | error = input_ff_create_memless(dev, zpff, zpff_play); |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 81 | if (error) { |
| 82 | kfree(zpff); |
| 83 | return error; |
| 84 | } |
| 85 | |
| 86 | zpff->report = report; |
| 87 | zpff->report->field[0]->value[0] = 0x00; |
| 88 | zpff->report->field[1]->value[0] = 0x02; |
| 89 | zpff->report->field[2]->value[0] = 0x00; |
| 90 | zpff->report->field[3]->value[0] = 0x00; |
Benjamin Tissoires | d8814272 | 2013-02-25 11:31:46 +0100 | [diff] [blame] | 91 | hid_hw_request(hid, zpff->report, HID_REQ_SET_REPORT); |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 92 | |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 93 | hid_info(hid, "force feedback for Zeroplus based devices by Anssi Hannula <anssi.hannula@gmail.com>\n"); |
Anssi Hannula | bb3caf7 | 2006-07-19 01:44:17 -0400 | [diff] [blame] | 94 | |
| 95 | return 0; |
| 96 | } |
Jiri Kosina | 0f6f431 | 2009-05-15 15:46:44 +0200 | [diff] [blame] | 97 | #else |
| 98 | static inline int zpff_init(struct hid_device *hid) |
| 99 | { |
| 100 | return 0; |
| 101 | } |
| 102 | #endif |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 103 | |
| 104 | static int zp_probe(struct hid_device *hdev, const struct hid_device_id *id) |
| 105 | { |
| 106 | int ret; |
| 107 | |
| 108 | ret = hid_parse(hdev); |
| 109 | if (ret) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 110 | hid_err(hdev, "parse failed\n"); |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 111 | goto err; |
| 112 | } |
| 113 | |
| 114 | ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT & ~HID_CONNECT_FF); |
| 115 | if (ret) { |
Joe Perches | 4291ee3 | 2010-12-09 19:29:03 -0800 | [diff] [blame] | 116 | hid_err(hdev, "hw start failed\n"); |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 117 | goto err; |
| 118 | } |
| 119 | |
| 120 | zpff_init(hdev); |
| 121 | |
| 122 | return 0; |
| 123 | err: |
| 124 | return ret; |
| 125 | } |
| 126 | |
| 127 | static const struct hid_device_id zp_devices[] = { |
| 128 | { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) }, |
| 129 | { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) }, |
| 130 | { } |
| 131 | }; |
| 132 | MODULE_DEVICE_TABLE(hid, zp_devices); |
| 133 | |
| 134 | static struct hid_driver zp_driver = { |
| 135 | .name = "zeroplus", |
| 136 | .id_table = zp_devices, |
| 137 | .probe = zp_probe, |
| 138 | }; |
H Hartley Sweeten | f425458 | 2012-12-17 15:28:26 -0700 | [diff] [blame] | 139 | module_hid_driver(zp_driver); |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 140 | |
Jiri Slaby | 987fbc1 | 2008-09-18 12:23:32 +0200 | [diff] [blame] | 141 | MODULE_LICENSE("GPL"); |