1 // SPDX-License-Identifier: GPL-2.0-only
3 * ISHTP-HID glue driver.
5 * Copyright (c) 2012-2016, Intel Corporation.
9 #include <linux/intel-ish-client-if.h>
10 #include <uapi/linux/input.h>
11 #include "ishtp-hid.h"
14 * ishtp_hid_parse() - hid-core .parse() callback
15 * @hid: hid device instance
17 * This function gets called during call to hid_add_device
19 * Return: 0 on success and non zero on error
21 static int ishtp_hid_parse(struct hid_device *hid)
23 struct ishtp_hid_data *hid_data = hid->driver_data;
24 struct ishtp_cl_data *client_data = hid_data->client_data;
27 rv = hid_parse_report(hid, client_data->report_descr[hid_data->index],
28 client_data->report_descr_size[hid_data->index]);
35 /* Empty callbacks with success return code */
36 static int ishtp_hid_start(struct hid_device *hid)
41 static void ishtp_hid_stop(struct hid_device *hid)
45 static int ishtp_hid_open(struct hid_device *hid)
50 static void ishtp_hid_close(struct hid_device *hid)
54 static int ishtp_raw_request(struct hid_device *hid, unsigned char reportnum,
55 __u8 *buf, size_t len, unsigned char rtype,
58 struct ishtp_hid_data *hid_data = hid->driver_data;
59 char *ishtp_buf = NULL;
61 unsigned int header_size = sizeof(struct hostif_msg);
63 if (rtype == HID_OUTPUT_REPORT)
66 hid_data->request_done = false;
68 case HID_REQ_GET_REPORT:
69 hid_data->raw_buf = buf;
70 hid_data->raw_buf_size = len;
71 hid_data->raw_get_req = true;
73 hid_ishtp_get_report(hid, reportnum, rtype);
75 case HID_REQ_SET_REPORT:
77 * Spare 7 bytes for 64b accesses through
78 * get/put_unaligned_le64()
80 ishtp_buf_len = len + header_size;
81 ishtp_buf = kzalloc(ishtp_buf_len + 7, GFP_KERNEL);
85 memcpy(ishtp_buf + header_size, buf, len);
86 hid_ishtp_set_feature(hid, ishtp_buf, ishtp_buf_len, reportnum);
97 * ishtp_hid_request() - hid-core .request() callback
98 * @hid: hid device instance
99 * @rep: pointer to hid_report
100 * @reqtype: type of req. [GET|SET]_REPORT
102 * This function is used to set/get feaure/input report.
104 static void ishtp_hid_request(struct hid_device *hid, struct hid_report *rep,
107 struct ishtp_hid_data *hid_data = hid->driver_data;
108 /* the specific report length, just HID part of it */
109 unsigned int len = ((rep->size - 1) >> 3) + 1 + (rep->id > 0);
111 unsigned int header_size = sizeof(struct hostif_msg);
115 hid_data->request_done = false;
117 case HID_REQ_GET_REPORT:
118 hid_data->raw_get_req = false;
119 hid_ishtp_get_report(hid, rep->id, rep->type);
121 case HID_REQ_SET_REPORT:
123 * Spare 7 bytes for 64b accesses through
124 * get/put_unaligned_le64()
126 buf = kzalloc(len + 7, GFP_KERNEL);
130 hid_output_report(rep, buf + header_size);
131 hid_ishtp_set_feature(hid, buf, len, rep->id);
138 * ishtp_wait_for_response() - hid-core .wait() callback
139 * @hid: hid device instance
141 * This function is used to wait after get feaure/input report.
143 * Return: 0 on success and non zero on error
145 static int ishtp_wait_for_response(struct hid_device *hid)
147 struct ishtp_hid_data *hid_data = hid->driver_data;
150 hid_ishtp_trace(client_data, "%s hid %p\n", __func__, hid);
152 rv = ishtp_hid_link_ready_wait(hid_data->client_data);
156 if (!hid_data->request_done)
157 wait_event_interruptible_timeout(hid_data->hid_wait,
158 hid_data->request_done, 3 * HZ);
160 if (!hid_data->request_done) {
162 "timeout waiting for response from ISHTP device\n");
165 hid_ishtp_trace(client_data, "%s hid %p done\n", __func__, hid);
167 hid_data->request_done = false;
173 * ishtp_hid_wakeup() - Wakeup caller
174 * @hid: hid device instance
176 * This function will wakeup caller waiting for Get/Set feature report
178 void ishtp_hid_wakeup(struct hid_device *hid)
180 struct ishtp_hid_data *hid_data = hid->driver_data;
182 hid_data->request_done = true;
183 wake_up_interruptible(&hid_data->hid_wait);
186 static struct hid_ll_driver ishtp_hid_ll_driver = {
187 .parse = ishtp_hid_parse,
188 .start = ishtp_hid_start,
189 .stop = ishtp_hid_stop,
190 .open = ishtp_hid_open,
191 .close = ishtp_hid_close,
192 .request = ishtp_hid_request,
193 .wait = ishtp_wait_for_response,
194 .raw_request = ishtp_raw_request
198 * ishtp_hid_probe() - hid register ll driver
199 * @cur_hid_dev: Index of hid device calling to register
200 * @client_data: Client data pointer
202 * This function is used to allocate and add HID device.
204 * Return: 0 on success, non zero on error
206 int ishtp_hid_probe(unsigned int cur_hid_dev,
207 struct ishtp_cl_data *client_data)
210 struct hid_device *hid;
211 struct ishtp_hid_data *hid_data;
213 hid = hid_allocate_device();
219 hid_data = kzalloc(sizeof(*hid_data), GFP_KERNEL);
225 hid_data->index = cur_hid_dev;
226 hid_data->client_data = client_data;
227 init_waitqueue_head(&hid_data->hid_wait);
229 hid->driver_data = hid_data;
231 client_data->hid_sensor_hubs[cur_hid_dev] = hid;
233 hid->ll_driver = &ishtp_hid_ll_driver;
234 hid->bus = BUS_INTEL_ISHTP;
235 hid->dev.parent = ishtp_device(client_data->cl_device);
237 hid->version = le16_to_cpu(ISH_HID_VERSION);
238 hid->vendor = le16_to_cpu(client_data->hid_devices[cur_hid_dev].vid);
239 hid->product = le16_to_cpu(client_data->hid_devices[cur_hid_dev].pid);
240 snprintf(hid->name, sizeof(hid->name), "%s %04X:%04X", "hid-ishtp",
241 hid->vendor, hid->product);
243 rv = hid_add_device(hid);
247 hid_ishtp_trace(client_data, "%s allocated hid %p\n", __func__, hid);
254 hid_destroy_device(hid);
259 * ishtp_hid_probe() - Remove registered hid device
260 * @client_data: client data pointer
262 * This function is used to destroy allocatd HID device.
264 void ishtp_hid_remove(struct ishtp_cl_data *client_data)
268 for (i = 0; i < client_data->num_hid_devices; ++i) {
269 if (client_data->hid_sensor_hubs[i]) {
270 kfree(client_data->hid_sensor_hubs[i]->driver_data);
271 hid_destroy_device(client_data->hid_sensor_hubs[i]);
272 client_data->hid_sensor_hubs[i] = NULL;