blob: 80e8cf04ade9899ee9f3841d2e78bf66bd115763 [file] [log] [blame]
Alex Elder30c6d9d2015-05-22 13:02:08 -05001/*
2 * SVC Greybus driver.
3 *
4 * Copyright 2015 Google Inc.
5 * Copyright 2015 Linaro Ltd.
6 *
7 * Released under the GPLv2 only.
8 */
9
David Lin95046772016-04-20 16:55:08 -070010#include <linux/debugfs.h>
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +000011#include <linux/input.h>
Viresh Kumar067906f2015-08-06 12:44:55 +053012#include <linux/workqueue.h>
Alex Elder30c6d9d2015-05-22 13:02:08 -050013
Viresh Kumarf66427a2015-09-02 21:27:13 +053014#include "greybus.h"
15
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +000016#define SVC_KEY_ARA_BUTTON KEY_A
Viresh Kumarb45864d2015-07-24 15:32:21 +053017
Jeffrey Carlyle140026b2016-05-06 12:43:53 -070018#define SVC_INTF_EJECT_TIMEOUT 9000
19#define SVC_INTF_ACTIVATE_TIMEOUT 6000
Johan Hovoldd18da862016-03-09 12:20:46 +010020
Johan Hovold9ae41092015-12-02 18:23:29 +010021struct gb_svc_deferred_request {
Viresh Kumar067906f2015-08-06 12:44:55 +053022 struct work_struct work;
Johan Hovold9ae41092015-12-02 18:23:29 +010023 struct gb_operation *operation;
Viresh Kumar067906f2015-08-06 12:44:55 +053024};
25
Viresh Kumaread35462015-07-21 17:44:19 +053026
Mitchell Tasmanee2f2072016-05-04 17:30:23 -040027static int gb_svc_queue_deferred_request(struct gb_operation *operation);
28
Johan Hovold66069fb2015-11-25 15:59:09 +010029static ssize_t endo_id_show(struct device *dev,
30 struct device_attribute *attr, char *buf)
31{
32 struct gb_svc *svc = to_gb_svc(dev);
33
34 return sprintf(buf, "0x%04x\n", svc->endo_id);
35}
36static DEVICE_ATTR_RO(endo_id);
37
38static ssize_t ap_intf_id_show(struct device *dev,
39 struct device_attribute *attr, char *buf)
40{
41 struct gb_svc *svc = to_gb_svc(dev);
42
43 return sprintf(buf, "%u\n", svc->ap_intf_id);
44}
45static DEVICE_ATTR_RO(ap_intf_id);
46
Rui Miguel Silva2c92bd52016-01-11 13:46:33 +000047
48// FIXME
49// This is a hack, we need to do this "right" and clean the interface up
50// properly, not just forcibly yank the thing out of the system and hope for the
51// best. But for now, people want their modules to come out without having to
52// throw the thing to the ground or get out a screwdriver.
53static ssize_t intf_eject_store(struct device *dev,
54 struct device_attribute *attr, const char *buf,
55 size_t len)
56{
57 struct gb_svc *svc = to_gb_svc(dev);
58 unsigned short intf_id;
59 int ret;
60
61 ret = kstrtou16(buf, 10, &intf_id);
62 if (ret < 0)
63 return ret;
64
65 dev_warn(dev, "Forcibly trying to eject interface %d\n", intf_id);
66
67 ret = gb_svc_intf_eject(svc, intf_id);
68 if (ret < 0)
69 return ret;
70
71 return len;
72}
73static DEVICE_ATTR_WO(intf_eject);
74
Greg Kroah-Hartmand5628532016-01-26 15:17:08 -080075static ssize_t watchdog_show(struct device *dev, struct device_attribute *attr,
76 char *buf)
77{
78 struct gb_svc *svc = to_gb_svc(dev);
79
80 return sprintf(buf, "%s\n",
81 gb_svc_watchdog_enabled(svc) ? "enabled" : "disabled");
82}
83
84static ssize_t watchdog_store(struct device *dev,
85 struct device_attribute *attr, const char *buf,
86 size_t len)
87{
88 struct gb_svc *svc = to_gb_svc(dev);
89 int retval;
90 bool user_request;
91
92 retval = strtobool(buf, &user_request);
93 if (retval)
94 return retval;
95
96 if (user_request)
97 retval = gb_svc_watchdog_enable(svc);
98 else
99 retval = gb_svc_watchdog_disable(svc);
100 if (retval)
101 return retval;
102 return len;
103}
104static DEVICE_ATTR_RW(watchdog);
105
David Lin95046772016-04-20 16:55:08 -0700106static int gb_svc_pwrmon_rail_count_get(struct gb_svc *svc, u8 *value)
107{
108 struct gb_svc_pwrmon_rail_count_get_response response;
109 int ret;
110
111 ret = gb_operation_sync(svc->connection,
112 GB_SVC_TYPE_PWRMON_RAIL_COUNT_GET, NULL, 0,
113 &response, sizeof(response));
114 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200115 dev_err(&svc->dev, "failed to get rail count: %d\n", ret);
David Lin95046772016-04-20 16:55:08 -0700116 return ret;
117 }
118
119 *value = response.rail_count;
120
121 return 0;
122}
123
124static int gb_svc_pwrmon_rail_names_get(struct gb_svc *svc,
Johan Hovoldf35fdb22016-04-21 11:43:38 +0200125 struct gb_svc_pwrmon_rail_names_get_response *response,
126 size_t bufsize)
David Lin95046772016-04-20 16:55:08 -0700127{
128 int ret;
129
130 ret = gb_operation_sync(svc->connection,
131 GB_SVC_TYPE_PWRMON_RAIL_NAMES_GET, NULL, 0,
132 response, bufsize);
133 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200134 dev_err(&svc->dev, "failed to get rail names: %d\n", ret);
David Lin95046772016-04-20 16:55:08 -0700135 return ret;
136 }
137
138 return 0;
139}
140
141static int gb_svc_pwrmon_sample_get(struct gb_svc *svc, u8 rail_id,
142 u8 measurement_type, u32 *value)
143{
144 struct gb_svc_pwrmon_sample_get_request request;
145 struct gb_svc_pwrmon_sample_get_response response;
146 int ret;
147
148 request.rail_id = rail_id;
149 request.measurement_type = measurement_type;
150
151 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_PWRMON_SAMPLE_GET,
152 &request, sizeof(request),
153 &response, sizeof(response));
154 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200155 dev_err(&svc->dev, "failed to get rail sample: %d\n", ret);
David Lin95046772016-04-20 16:55:08 -0700156 return ret;
157 }
158
159 if (response.result) {
160 dev_err(&svc->dev,
161 "UniPro error while getting rail power sample (%d %d): %d\n",
162 rail_id, measurement_type, response.result);
163 switch (response.result) {
164 case GB_SVC_PWRMON_GET_SAMPLE_INVAL:
165 return -EINVAL;
166 case GB_SVC_PWRMON_GET_SAMPLE_NOSUPP:
Johan Hovold5b35ef92016-04-21 11:43:37 +0200167 return -ENOMSG;
David Lin95046772016-04-20 16:55:08 -0700168 default:
169 return -EIO;
170 }
171 }
172
173 *value = le32_to_cpu(response.measurement);
174
175 return 0;
176}
177
David Linddb10c82016-04-07 20:15:30 -0700178int gb_svc_pwrmon_intf_sample_get(struct gb_svc *svc, u8 intf_id,
179 u8 measurement_type, u32 *value)
180{
181 struct gb_svc_pwrmon_intf_sample_get_request request;
182 struct gb_svc_pwrmon_intf_sample_get_response response;
183 int ret;
184
185 request.intf_id = intf_id;
186 request.measurement_type = measurement_type;
187
188 ret = gb_operation_sync(svc->connection,
189 GB_SVC_TYPE_PWRMON_INTF_SAMPLE_GET,
190 &request, sizeof(request),
191 &response, sizeof(response));
192 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200193 dev_err(&svc->dev, "failed to get intf sample: %d\n", ret);
David Linddb10c82016-04-07 20:15:30 -0700194 return ret;
195 }
196
197 if (response.result) {
198 dev_err(&svc->dev,
199 "UniPro error while getting intf power sample (%d %d): %d\n",
200 intf_id, measurement_type, response.result);
201 switch (response.result) {
202 case GB_SVC_PWRMON_GET_SAMPLE_INVAL:
203 return -EINVAL;
204 case GB_SVC_PWRMON_GET_SAMPLE_NOSUPP:
205 return -ENOSYS;
206 default:
207 return -EIO;
208 }
209 }
210
211 *value = le32_to_cpu(response.measurement);
212
213 return 0;
214}
215
Johan Hovold66069fb2015-11-25 15:59:09 +0100216static struct attribute *svc_attrs[] = {
217 &dev_attr_endo_id.attr,
218 &dev_attr_ap_intf_id.attr,
Rui Miguel Silva2c92bd52016-01-11 13:46:33 +0000219 &dev_attr_intf_eject.attr,
Greg Kroah-Hartmand5628532016-01-26 15:17:08 -0800220 &dev_attr_watchdog.attr,
Johan Hovold66069fb2015-11-25 15:59:09 +0100221 NULL,
222};
223ATTRIBUTE_GROUPS(svc);
224
Johan Hovold4d5f6212016-03-29 18:56:04 -0400225int gb_svc_intf_device_id(struct gb_svc *svc, u8 intf_id, u8 device_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500226{
227 struct gb_svc_intf_device_id_request request;
228
229 request.intf_id = intf_id;
230 request.device_id = device_id;
231
232 return gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_DEVICE_ID,
233 &request, sizeof(request), NULL, 0);
234}
235
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000236int gb_svc_intf_eject(struct gb_svc *svc, u8 intf_id)
237{
238 struct gb_svc_intf_eject_request request;
Johan Hovolde676ccd2016-03-09 12:20:45 +0100239 int ret;
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000240
241 request.intf_id = intf_id;
242
243 /*
244 * The pulse width for module release in svc is long so we need to
245 * increase the timeout so the operation will not return to soon.
246 */
Johan Hovolde676ccd2016-03-09 12:20:45 +0100247 ret = gb_operation_sync_timeout(svc->connection,
248 GB_SVC_TYPE_INTF_EJECT, &request,
249 sizeof(request), NULL, 0,
Johan Hovoldd18da862016-03-09 12:20:46 +0100250 SVC_INTF_EJECT_TIMEOUT);
Johan Hovolde676ccd2016-03-09 12:20:45 +0100251 if (ret) {
252 dev_err(&svc->dev, "failed to eject interface %u\n", intf_id);
253 return ret;
254 }
255
256 return 0;
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000257}
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000258
Johan Hovold017482b2016-04-23 18:47:27 +0200259int gb_svc_intf_vsys_set(struct gb_svc *svc, u8 intf_id, bool enable)
260{
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700261 struct gb_svc_intf_vsys_request request;
262 struct gb_svc_intf_vsys_response response;
263 int type, ret;
Johan Hovold017482b2016-04-23 18:47:27 +0200264
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700265 request.intf_id = intf_id;
266
267 if (enable)
268 type = GB_SVC_TYPE_INTF_VSYS_ENABLE;
269 else
270 type = GB_SVC_TYPE_INTF_VSYS_DISABLE;
271
272 ret = gb_operation_sync(svc->connection, type,
273 &request, sizeof(request),
274 &response, sizeof(response));
275 if (ret < 0)
276 return ret;
277 if (response.result_code != GB_SVC_INTF_VSYS_OK)
278 return -EREMOTEIO;
Johan Hovold017482b2016-04-23 18:47:27 +0200279 return 0;
280}
281
282int gb_svc_intf_refclk_set(struct gb_svc *svc, u8 intf_id, bool enable)
283{
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700284 struct gb_svc_intf_refclk_request request;
285 struct gb_svc_intf_refclk_response response;
286 int type, ret;
Johan Hovold017482b2016-04-23 18:47:27 +0200287
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700288 request.intf_id = intf_id;
289
290 if (enable)
291 type = GB_SVC_TYPE_INTF_REFCLK_ENABLE;
292 else
293 type = GB_SVC_TYPE_INTF_REFCLK_DISABLE;
294
295 ret = gb_operation_sync(svc->connection, type,
296 &request, sizeof(request),
297 &response, sizeof(response));
298 if (ret < 0)
299 return ret;
300 if (response.result_code != GB_SVC_INTF_REFCLK_OK)
301 return -EREMOTEIO;
Johan Hovold017482b2016-04-23 18:47:27 +0200302 return 0;
303}
304
305int gb_svc_intf_unipro_set(struct gb_svc *svc, u8 intf_id, bool enable)
306{
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700307 struct gb_svc_intf_unipro_request request;
308 struct gb_svc_intf_unipro_response response;
309 int type, ret;
Johan Hovold017482b2016-04-23 18:47:27 +0200310
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700311 request.intf_id = intf_id;
312
313 if (enable)
314 type = GB_SVC_TYPE_INTF_UNIPRO_ENABLE;
315 else
316 type = GB_SVC_TYPE_INTF_UNIPRO_DISABLE;
317
318 ret = gb_operation_sync(svc->connection, type,
319 &request, sizeof(request),
320 &response, sizeof(response));
321 if (ret < 0)
322 return ret;
323 if (response.result_code != GB_SVC_INTF_UNIPRO_OK)
324 return -EREMOTEIO;
Johan Hovold017482b2016-04-23 18:47:27 +0200325 return 0;
326}
327
Johan Hovold1e8e22b2016-04-23 18:47:28 +0200328int gb_svc_intf_activate(struct gb_svc *svc, u8 intf_id, u8 *intf_type)
329{
Jeffrey Carlyle140026b2016-05-06 12:43:53 -0700330 struct gb_svc_intf_activate_request request;
331 struct gb_svc_intf_activate_response response;
332 int ret;
Johan Hovold1e8e22b2016-04-23 18:47:28 +0200333
Jeffrey Carlyle140026b2016-05-06 12:43:53 -0700334 request.intf_id = intf_id;
335
336 ret = gb_operation_sync_timeout(svc->connection,
337 GB_SVC_TYPE_INTF_ACTIVATE,
338 &request, sizeof(request),
339 &response, sizeof(response),
340 SVC_INTF_ACTIVATE_TIMEOUT);
341 if (ret < 0)
342 return ret;
Jeffrey Carlyle03fba182016-05-11 10:08:55 -0700343 if (response.status != GB_SVC_OP_SUCCESS) {
344 dev_err(&svc->dev, "failed to activate interface %u: %u\n",
345 intf_id, response.status);
346 return -EREMOTEIO;
347 }
Jeffrey Carlyle140026b2016-05-06 12:43:53 -0700348
349 *intf_type = response.intf_type;
Johan Hovold1e8e22b2016-04-23 18:47:28 +0200350
351 return 0;
352}
353
Viresh Kumar19151c32015-09-09 21:08:29 +0530354int gb_svc_dme_peer_get(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
355 u32 *value)
356{
357 struct gb_svc_dme_peer_get_request request;
358 struct gb_svc_dme_peer_get_response response;
359 u16 result;
360 int ret;
361
362 request.intf_id = intf_id;
363 request.attr = cpu_to_le16(attr);
364 request.selector = cpu_to_le16(selector);
365
366 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_GET,
367 &request, sizeof(request),
368 &response, sizeof(response));
369 if (ret) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530370 dev_err(&svc->dev, "failed to get DME attribute (%u 0x%04x %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100371 intf_id, attr, selector, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +0530372 return ret;
373 }
374
375 result = le16_to_cpu(response.result_code);
376 if (result) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530377 dev_err(&svc->dev, "UniPro error while getting DME attribute (%u 0x%04x %u): %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100378 intf_id, attr, selector, result);
Viresh Kumar4aac6c52015-12-04 21:30:08 +0530379 return -EIO;
Viresh Kumar19151c32015-09-09 21:08:29 +0530380 }
381
382 if (value)
383 *value = le32_to_cpu(response.attr_value);
384
385 return 0;
386}
387EXPORT_SYMBOL_GPL(gb_svc_dme_peer_get);
388
389int gb_svc_dme_peer_set(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
390 u32 value)
391{
392 struct gb_svc_dme_peer_set_request request;
393 struct gb_svc_dme_peer_set_response response;
394 u16 result;
395 int ret;
396
397 request.intf_id = intf_id;
398 request.attr = cpu_to_le16(attr);
399 request.selector = cpu_to_le16(selector);
400 request.value = cpu_to_le32(value);
401
402 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_SET,
403 &request, sizeof(request),
404 &response, sizeof(response));
405 if (ret) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530406 dev_err(&svc->dev, "failed to set DME attribute (%u 0x%04x %u %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100407 intf_id, attr, selector, value, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +0530408 return ret;
409 }
410
411 result = le16_to_cpu(response.result_code);
412 if (result) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530413 dev_err(&svc->dev, "UniPro error while setting DME attribute (%u 0x%04x %u %u): %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100414 intf_id, attr, selector, value, result);
Viresh Kumar4aac6c52015-12-04 21:30:08 +0530415 return -EIO;
Viresh Kumar19151c32015-09-09 21:08:29 +0530416 }
417
418 return 0;
419}
420EXPORT_SYMBOL_GPL(gb_svc_dme_peer_set);
421
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530422int gb_svc_connection_create(struct gb_svc *svc,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500423 u8 intf1_id, u16 cport1_id,
Viresh Kumar1575ef182015-10-07 15:40:24 -0400424 u8 intf2_id, u16 cport2_id,
Johan Hovold27f25c12016-03-03 13:34:38 +0100425 u8 cport_flags)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500426{
427 struct gb_svc_conn_create_request request;
428
429 request.intf1_id = intf1_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100430 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500431 request.intf2_id = intf2_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100432 request.cport2_id = cpu_to_le16(cport2_id);
Johan Hovold34145b62016-03-03 13:34:37 +0100433 request.tc = 0; /* TC0 */
Johan Hovold27f25c12016-03-03 13:34:38 +0100434 request.flags = cport_flags;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500435
436 return gb_operation_sync(svc->connection, GB_SVC_TYPE_CONN_CREATE,
437 &request, sizeof(request), NULL, 0);
438}
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530439EXPORT_SYMBOL_GPL(gb_svc_connection_create);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500440
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530441void gb_svc_connection_destroy(struct gb_svc *svc, u8 intf1_id, u16 cport1_id,
442 u8 intf2_id, u16 cport2_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500443{
444 struct gb_svc_conn_destroy_request request;
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530445 struct gb_connection *connection = svc->connection;
446 int ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500447
448 request.intf1_id = intf1_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100449 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500450 request.intf2_id = intf2_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100451 request.cport2_id = cpu_to_le16(cport2_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500452
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530453 ret = gb_operation_sync(connection, GB_SVC_TYPE_CONN_DESTROY,
454 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100455 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530456 dev_err(&svc->dev, "failed to destroy connection (%u:%u %u:%u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100457 intf1_id, cport1_id, intf2_id, cport2_id, ret);
458 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500459}
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530460EXPORT_SYMBOL_GPL(gb_svc_connection_destroy);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500461
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100462int gb_svc_timesync_enable(struct gb_svc *svc, u8 count, u64 frame_time,
463 u32 strobe_delay, u32 refclk)
464{
465 struct gb_connection *connection = svc->connection;
466 struct gb_svc_timesync_enable_request request;
467
468 request.count = count;
469 request.frame_time = cpu_to_le64(frame_time);
470 request.strobe_delay = cpu_to_le32(strobe_delay);
471 request.refclk = cpu_to_le32(refclk);
472 return gb_operation_sync(connection,
473 GB_SVC_TYPE_TIMESYNC_ENABLE,
474 &request, sizeof(request), NULL, 0);
475}
476EXPORT_SYMBOL_GPL(gb_svc_timesync_enable);
477
478int gb_svc_timesync_disable(struct gb_svc *svc)
479{
480 struct gb_connection *connection = svc->connection;
481
482 return gb_operation_sync(connection,
483 GB_SVC_TYPE_TIMESYNC_DISABLE,
484 NULL, 0, NULL, 0);
485}
486EXPORT_SYMBOL_GPL(gb_svc_timesync_disable);
487
488int gb_svc_timesync_authoritative(struct gb_svc *svc, u64 *frame_time)
489{
490 struct gb_connection *connection = svc->connection;
491 struct gb_svc_timesync_authoritative_response response;
492 int ret, i;
493
494 ret = gb_operation_sync(connection,
495 GB_SVC_TYPE_TIMESYNC_AUTHORITATIVE, NULL, 0,
496 &response, sizeof(response));
497 if (ret < 0)
498 return ret;
499
500 for (i = 0; i < GB_TIMESYNC_MAX_STROBES; i++)
501 frame_time[i] = le64_to_cpu(response.frame_time[i]);
502 return 0;
503}
504EXPORT_SYMBOL_GPL(gb_svc_timesync_authoritative);
505
506int gb_svc_timesync_ping(struct gb_svc *svc, u64 *frame_time)
507{
508 struct gb_connection *connection = svc->connection;
509 struct gb_svc_timesync_ping_response response;
510 int ret;
511
512 ret = gb_operation_sync(connection,
513 GB_SVC_TYPE_TIMESYNC_PING,
514 NULL, 0,
515 &response, sizeof(response));
516 if (ret < 0)
517 return ret;
518
519 *frame_time = le64_to_cpu(response.frame_time);
520 return 0;
521}
522EXPORT_SYMBOL_GPL(gb_svc_timesync_ping);
523
524int gb_svc_timesync_wake_pins_acquire(struct gb_svc *svc, u32 strobe_mask)
525{
526 struct gb_connection *connection = svc->connection;
527 struct gb_svc_timesync_wake_pins_acquire_request request;
528
529 request.strobe_mask = cpu_to_le32(strobe_mask);
530 return gb_operation_sync(connection,
531 GB_SVC_TYPE_TIMESYNC_WAKE_PINS_ACQUIRE,
532 &request, sizeof(request),
533 NULL, 0);
534}
535EXPORT_SYMBOL_GPL(gb_svc_timesync_wake_pins_acquire);
536
537int gb_svc_timesync_wake_pins_release(struct gb_svc *svc)
538{
539 struct gb_connection *connection = svc->connection;
540
541 return gb_operation_sync(connection,
542 GB_SVC_TYPE_TIMESYNC_WAKE_PINS_RELEASE,
543 NULL, 0, NULL, 0);
544}
545EXPORT_SYMBOL_GPL(gb_svc_timesync_wake_pins_release);
546
Viresh Kumarbb106852015-09-07 16:01:25 +0530547/* Creates bi-directional routes between the devices */
Johan Hovold4d5f6212016-03-29 18:56:04 -0400548int gb_svc_route_create(struct gb_svc *svc, u8 intf1_id, u8 dev1_id,
Viresh Kumar505f16c2015-08-31 17:21:07 +0530549 u8 intf2_id, u8 dev2_id)
Perry Hunge08aaa42015-07-24 19:02:31 -0400550{
551 struct gb_svc_route_create_request request;
552
553 request.intf1_id = intf1_id;
554 request.dev1_id = dev1_id;
555 request.intf2_id = intf2_id;
556 request.dev2_id = dev2_id;
557
558 return gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_CREATE,
559 &request, sizeof(request), NULL, 0);
560}
Perry Hunge08aaa42015-07-24 19:02:31 -0400561
Viresh Kumar0a020572015-09-07 18:05:26 +0530562/* Destroys bi-directional routes between the devices */
Johan Hovold4d5f6212016-03-29 18:56:04 -0400563void gb_svc_route_destroy(struct gb_svc *svc, u8 intf1_id, u8 intf2_id)
Viresh Kumar0a020572015-09-07 18:05:26 +0530564{
565 struct gb_svc_route_destroy_request request;
566 int ret;
567
568 request.intf1_id = intf1_id;
569 request.intf2_id = intf2_id;
570
571 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_DESTROY,
572 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100573 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530574 dev_err(&svc->dev, "failed to destroy route (%u %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100575 intf1_id, intf2_id, ret);
576 }
Viresh Kumar0a020572015-09-07 18:05:26 +0530577}
578
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200579int gb_svc_intf_set_power_mode(struct gb_svc *svc, u8 intf_id, u8 hs_series,
580 u8 tx_mode, u8 tx_gear, u8 tx_nlanes,
581 u8 rx_mode, u8 rx_gear, u8 rx_nlanes,
582 u8 flags, u32 quirks)
Laurent Pinchart784f8762015-12-18 21:23:22 +0200583{
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200584 struct gb_svc_intf_set_pwrm_request request;
585 struct gb_svc_intf_set_pwrm_response response;
586 int ret;
Laurent Pinchart784f8762015-12-18 21:23:22 +0200587
588 request.intf_id = intf_id;
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200589 request.hs_series = hs_series;
590 request.tx_mode = tx_mode;
591 request.tx_gear = tx_gear;
592 request.tx_nlanes = tx_nlanes;
593 request.rx_mode = rx_mode;
594 request.rx_gear = rx_gear;
595 request.rx_nlanes = rx_nlanes;
Laurent Pinchart784f8762015-12-18 21:23:22 +0200596 request.flags = flags;
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200597 request.quirks = cpu_to_le32(quirks);
Laurent Pinchart784f8762015-12-18 21:23:22 +0200598
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200599 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_SET_PWRM,
600 &request, sizeof(request),
601 &response, sizeof(response));
602 if (ret < 0)
603 return ret;
604
605 return le16_to_cpu(response.result_code);
Laurent Pinchart784f8762015-12-18 21:23:22 +0200606}
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200607EXPORT_SYMBOL_GPL(gb_svc_intf_set_power_mode);
Laurent Pinchart784f8762015-12-18 21:23:22 +0200608
Greg Kroah-Hartman55ec09e2016-01-19 23:30:42 -0800609int gb_svc_ping(struct gb_svc *svc)
610{
Greg Kroah-Hartman839ac5b2016-01-26 08:57:50 -0800611 return gb_operation_sync_timeout(svc->connection, GB_SVC_TYPE_PING,
612 NULL, 0, NULL, 0,
613 GB_OPERATION_TIMEOUT_DEFAULT * 2);
Greg Kroah-Hartman55ec09e2016-01-19 23:30:42 -0800614}
615EXPORT_SYMBOL_GPL(gb_svc_ping);
616
Viresh Kumaread35462015-07-21 17:44:19 +0530617static int gb_svc_version_request(struct gb_operation *op)
618{
619 struct gb_connection *connection = op->connection;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -0400620 struct gb_svc *svc = gb_connection_get_data(connection);
Johan Hovolda2cf2e52016-04-29 17:08:36 +0200621 struct gb_svc_version_request *request;
622 struct gb_svc_version_response *response;
Viresh Kumaread35462015-07-21 17:44:19 +0530623
Johan Hovold55510842015-11-19 18:28:01 +0100624 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100625 dev_err(&svc->dev, "short version request (%zu < %zu)\n",
Johan Hovold55510842015-11-19 18:28:01 +0100626 op->request->payload_size,
627 sizeof(*request));
628 return -EINVAL;
629 }
630
Johan Hovoldcfb16902015-09-15 10:48:01 +0200631 request = op->request->payload;
Viresh Kumaread35462015-07-21 17:44:19 +0530632
Johan Hovoldcfb16902015-09-15 10:48:01 +0200633 if (request->major > GB_SVC_VERSION_MAJOR) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530634 dev_warn(&svc->dev, "unsupported major version (%u > %u)\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100635 request->major, GB_SVC_VERSION_MAJOR);
Viresh Kumaread35462015-07-21 17:44:19 +0530636 return -ENOTSUPP;
637 }
638
Johan Hovold357de002016-01-19 12:51:19 +0100639 svc->protocol_major = request->major;
640 svc->protocol_minor = request->minor;
Viresh Kumar3ea959e32015-08-11 07:36:14 +0530641
Johan Hovold684156a2015-11-25 15:59:19 +0100642 if (!gb_operation_response_alloc(op, sizeof(*response), GFP_KERNEL))
Viresh Kumaread35462015-07-21 17:44:19 +0530643 return -ENOMEM;
Viresh Kumaread35462015-07-21 17:44:19 +0530644
Johan Hovoldcfb16902015-09-15 10:48:01 +0200645 response = op->response->payload;
Johan Hovold357de002016-01-19 12:51:19 +0100646 response->major = svc->protocol_major;
647 response->minor = svc->protocol_minor;
Johan Hovold59832932015-09-15 10:48:00 +0200648
Viresh Kumaread35462015-07-21 17:44:19 +0530649 return 0;
650}
651
David Lin95046772016-04-20 16:55:08 -0700652static ssize_t pwr_debugfs_voltage_read(struct file *file, char __user *buf,
653 size_t len, loff_t *offset)
654{
655 struct svc_debugfs_pwrmon_rail *pwrmon_rails = file->f_inode->i_private;
656 struct gb_svc *svc = pwrmon_rails->svc;
657 int ret, desc;
658 u32 value;
659 char buff[16];
660
661 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
662 GB_SVC_PWRMON_TYPE_VOL, &value);
663 if (ret) {
664 dev_err(&svc->dev,
Johan Hovold89f2df42016-04-21 11:43:36 +0200665 "failed to get voltage sample %u: %d\n",
666 pwrmon_rails->id, ret);
David Lin95046772016-04-20 16:55:08 -0700667 return ret;
668 }
669
670 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
671
672 return simple_read_from_buffer(buf, len, offset, buff, desc);
673}
674
675static ssize_t pwr_debugfs_current_read(struct file *file, char __user *buf,
676 size_t len, loff_t *offset)
677{
678 struct svc_debugfs_pwrmon_rail *pwrmon_rails = file->f_inode->i_private;
679 struct gb_svc *svc = pwrmon_rails->svc;
680 int ret, desc;
681 u32 value;
682 char buff[16];
683
684 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
685 GB_SVC_PWRMON_TYPE_CURR, &value);
686 if (ret) {
687 dev_err(&svc->dev,
Johan Hovold89f2df42016-04-21 11:43:36 +0200688 "failed to get current sample %u: %d\n",
689 pwrmon_rails->id, ret);
David Lin95046772016-04-20 16:55:08 -0700690 return ret;
691 }
692
693 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
694
695 return simple_read_from_buffer(buf, len, offset, buff, desc);
696}
697
698static ssize_t pwr_debugfs_power_read(struct file *file, char __user *buf,
699 size_t len, loff_t *offset)
700{
701 struct svc_debugfs_pwrmon_rail *pwrmon_rails = file->f_inode->i_private;
702 struct gb_svc *svc = pwrmon_rails->svc;
703 int ret, desc;
704 u32 value;
705 char buff[16];
706
707 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
708 GB_SVC_PWRMON_TYPE_PWR, &value);
709 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200710 dev_err(&svc->dev, "failed to get power sample %u: %d\n",
711 pwrmon_rails->id, ret);
David Lin95046772016-04-20 16:55:08 -0700712 return ret;
713 }
714
715 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
716
717 return simple_read_from_buffer(buf, len, offset, buff, desc);
718}
719
720static const struct file_operations pwrmon_debugfs_voltage_fops = {
721 .read = pwr_debugfs_voltage_read,
722};
723
724static const struct file_operations pwrmon_debugfs_current_fops = {
725 .read = pwr_debugfs_current_read,
726};
727
728static const struct file_operations pwrmon_debugfs_power_fops = {
729 .read = pwr_debugfs_power_read,
730};
731
Johan Hovold12185192016-04-23 18:47:20 +0200732static void gb_svc_pwrmon_debugfs_init(struct gb_svc *svc)
David Lin95046772016-04-20 16:55:08 -0700733{
734 int i;
735 size_t bufsize;
736 struct dentry *dent;
David Lin3fd747a2016-04-22 19:03:42 -0700737 struct gb_svc_pwrmon_rail_names_get_response *rail_names;
738 u8 rail_count;
David Lin95046772016-04-20 16:55:08 -0700739
740 dent = debugfs_create_dir("pwrmon", svc->debugfs_dentry);
741 if (IS_ERR_OR_NULL(dent))
742 return;
743
David Lin3fd747a2016-04-22 19:03:42 -0700744 if (gb_svc_pwrmon_rail_count_get(svc, &rail_count))
David Lin95046772016-04-20 16:55:08 -0700745 goto err_pwrmon_debugfs;
746
David Lin3fd747a2016-04-22 19:03:42 -0700747 if (!rail_count || rail_count > GB_SVC_PWRMON_MAX_RAIL_COUNT)
David Lin95046772016-04-20 16:55:08 -0700748 goto err_pwrmon_debugfs;
749
David Lin3fd747a2016-04-22 19:03:42 -0700750 bufsize = GB_SVC_PWRMON_RAIL_NAME_BUFSIZE * rail_count;
David Lin95046772016-04-20 16:55:08 -0700751
David Lin3fd747a2016-04-22 19:03:42 -0700752 rail_names = kzalloc(bufsize, GFP_KERNEL);
753 if (!rail_names)
David Lin95046772016-04-20 16:55:08 -0700754 goto err_pwrmon_debugfs;
755
David Lin3fd747a2016-04-22 19:03:42 -0700756 svc->pwrmon_rails = kcalloc(rail_count, sizeof(*svc->pwrmon_rails),
David Lin95046772016-04-20 16:55:08 -0700757 GFP_KERNEL);
758 if (!svc->pwrmon_rails)
759 goto err_pwrmon_debugfs_free;
760
David Lin3fd747a2016-04-22 19:03:42 -0700761 if (gb_svc_pwrmon_rail_names_get(svc, rail_names, bufsize))
David Lin95046772016-04-20 16:55:08 -0700762 goto err_pwrmon_debugfs_free;
763
David Lin3fd747a2016-04-22 19:03:42 -0700764 for (i = 0; i < rail_count; i++) {
David Lin95046772016-04-20 16:55:08 -0700765 struct dentry *dir;
766 struct svc_debugfs_pwrmon_rail *rail = &svc->pwrmon_rails[i];
767 char fname[GB_SVC_PWRMON_RAIL_NAME_BUFSIZE];
768
769 snprintf(fname, sizeof(fname), "%s",
David Lin3fd747a2016-04-22 19:03:42 -0700770 (char *)&rail_names->name[i]);
David Lin95046772016-04-20 16:55:08 -0700771
772 rail->id = i;
773 rail->svc = svc;
774
775 dir = debugfs_create_dir(fname, dent);
776 debugfs_create_file("voltage_now", S_IRUGO, dir, rail,
777 &pwrmon_debugfs_voltage_fops);
778 debugfs_create_file("current_now", S_IRUGO, dir, rail,
779 &pwrmon_debugfs_current_fops);
780 debugfs_create_file("power_now", S_IRUGO, dir, rail,
781 &pwrmon_debugfs_power_fops);
782 };
David Lin3fd747a2016-04-22 19:03:42 -0700783
784 kfree(rail_names);
David Lin95046772016-04-20 16:55:08 -0700785 return;
786
787err_pwrmon_debugfs_free:
David Lin3fd747a2016-04-22 19:03:42 -0700788 kfree(rail_names);
David Lin95046772016-04-20 16:55:08 -0700789 kfree(svc->pwrmon_rails);
790 svc->pwrmon_rails = NULL;
791
792err_pwrmon_debugfs:
793 debugfs_remove(dent);
794}
795
Johan Hovold12185192016-04-23 18:47:20 +0200796static void gb_svc_debugfs_init(struct gb_svc *svc)
David Lin95046772016-04-20 16:55:08 -0700797{
798 svc->debugfs_dentry = debugfs_create_dir(dev_name(&svc->dev),
799 gb_debugfs_get());
Johan Hovold12185192016-04-23 18:47:20 +0200800 gb_svc_pwrmon_debugfs_init(svc);
David Lin95046772016-04-20 16:55:08 -0700801}
802
Johan Hovold12185192016-04-23 18:47:20 +0200803static void gb_svc_debugfs_exit(struct gb_svc *svc)
David Lin95046772016-04-20 16:55:08 -0700804{
805 debugfs_remove_recursive(svc->debugfs_dentry);
David Lin9983ea62016-04-22 19:03:43 -0700806 kfree(svc->pwrmon_rails);
807 svc->pwrmon_rails = NULL;
David Lin95046772016-04-20 16:55:08 -0700808}
809
Viresh Kumaread35462015-07-21 17:44:19 +0530810static int gb_svc_hello(struct gb_operation *op)
811{
812 struct gb_connection *connection = op->connection;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -0400813 struct gb_svc *svc = gb_connection_get_data(connection);
Viresh Kumaread35462015-07-21 17:44:19 +0530814 struct gb_svc_hello_request *hello_request;
Viresh Kumaread35462015-07-21 17:44:19 +0530815 int ret;
816
Viresh Kumar0c32d2a2015-08-11 07:29:19 +0530817 if (op->request->payload_size < sizeof(*hello_request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100818 dev_warn(&svc->dev, "short hello request (%zu < %zu)\n",
819 op->request->payload_size,
820 sizeof(*hello_request));
Viresh Kumaread35462015-07-21 17:44:19 +0530821 return -EINVAL;
822 }
823
824 hello_request = op->request->payload;
Johan Hovold66069fb2015-11-25 15:59:09 +0100825 svc->endo_id = le16_to_cpu(hello_request->endo_id);
826 svc->ap_intf_id = hello_request->interface_id;
Viresh Kumaread35462015-07-21 17:44:19 +0530827
Johan Hovold88f7b962015-11-25 15:59:08 +0100828 ret = device_add(&svc->dev);
829 if (ret) {
830 dev_err(&svc->dev, "failed to register svc device: %d\n", ret);
831 return ret;
832 }
833
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +0000834 ret = input_register_device(svc->input);
835 if (ret) {
836 dev_err(&svc->dev, "failed to register input: %d\n", ret);
837 device_del(&svc->dev);
838 return ret;
839 }
840
Greg Kroah-Hartmaned7279a2016-01-20 22:51:49 -0800841 ret = gb_svc_watchdog_create(svc);
842 if (ret) {
843 dev_err(&svc->dev, "failed to create watchdog: %d\n", ret);
844 input_unregister_device(svc->input);
845 device_del(&svc->dev);
Greg Kroah-Hartman539d6e12016-01-23 17:36:00 -0800846 return ret;
Greg Kroah-Hartmaned7279a2016-01-20 22:51:49 -0800847 }
848
Johan Hovold12185192016-04-23 18:47:20 +0200849 gb_svc_debugfs_init(svc);
David Lin95046772016-04-20 16:55:08 -0700850
Mitchell Tasmanee2f2072016-05-04 17:30:23 -0400851 return gb_svc_queue_deferred_request(op);
Viresh Kumaread35462015-07-21 17:44:19 +0530852}
853
Johan Hovoldb482b0d2016-04-23 18:47:31 +0200854static struct gb_interface *gb_svc_interface_lookup(struct gb_svc *svc,
855 u8 intf_id)
856{
857 struct gb_host_device *hd = svc->hd;
858 struct gb_module *module;
859 size_t num_interfaces;
860 u8 module_id;
861
862 list_for_each_entry(module, &hd->modules, hd_node) {
863 module_id = module->module_id;
864 num_interfaces = module->num_interfaces;
865
866 if (intf_id >= module_id &&
867 intf_id < module_id + num_interfaces) {
868 return module->interfaces[intf_id - module_id];
869 }
870 }
871
872 return NULL;
873}
874
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200875static struct gb_module *gb_svc_module_lookup(struct gb_svc *svc, u8 module_id)
876{
877 struct gb_host_device *hd = svc->hd;
878 struct gb_module *module;
879
880 list_for_each_entry(module, &hd->modules, hd_node) {
881 if (module->module_id == module_id)
882 return module;
883 }
884
885 return NULL;
886}
887
Johan Hovold844fcbf2016-04-23 18:47:23 +0200888static void gb_svc_intf_reenable(struct gb_svc *svc, struct gb_interface *intf)
889{
890 int ret;
891
Johan Hovold36602a22016-04-23 18:47:25 +0200892 mutex_lock(&intf->mutex);
893
Johan Hovold844fcbf2016-04-23 18:47:23 +0200894 /* Mark as disconnected to prevent I/O during disable. */
895 intf->disconnected = true;
896 gb_interface_disable(intf);
897 intf->disconnected = false;
898
899 ret = gb_interface_enable(intf);
900 if (ret) {
901 dev_err(&svc->dev, "failed to enable interface %u: %d\n",
902 intf->interface_id, ret);
903
904 gb_interface_deactivate(intf);
905 }
Johan Hovold36602a22016-04-23 18:47:25 +0200906
907 mutex_unlock(&intf->mutex);
Johan Hovold844fcbf2016-04-23 18:47:23 +0200908}
909
Mitchell Tasmanee2f2072016-05-04 17:30:23 -0400910static void gb_svc_process_hello_deferred(struct gb_operation *operation)
911{
912 struct gb_connection *connection = operation->connection;
913 struct gb_svc *svc = gb_connection_get_data(connection);
914 int ret;
915
916 /*
917 * XXX This is a hack/work-around to reconfigure the APBridgeA-Switch
918 * link to PWM G2, 1 Lane, Slow Auto, so that it has sufficient
919 * bandwidth for 3 audio streams plus boot-over-UniPro of a hot-plugged
920 * module.
921 *
922 * The code should be removed once SW-2217, Heuristic for UniPro
923 * Power Mode Changes is resolved.
924 */
925 ret = gb_svc_intf_set_power_mode(svc, svc->ap_intf_id,
926 GB_SVC_UNIPRO_HS_SERIES_A,
927 GB_SVC_UNIPRO_SLOW_AUTO_MODE,
928 2, 1,
929 GB_SVC_UNIPRO_SLOW_AUTO_MODE,
930 2, 1,
931 0, 0);
932
933 if (ret)
934 dev_warn(&svc->dev,
935 "power mode change failed on AP to switch link: %d\n",
936 ret);
937}
938
Johan Hovold9ae41092015-12-02 18:23:29 +0100939static void gb_svc_process_intf_hotplug(struct gb_operation *operation)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500940{
Johan Hovold24456a092015-12-02 18:23:27 +0100941 struct gb_svc_intf_hotplug_request *request;
Johan Hovold9ae41092015-12-02 18:23:29 +0100942 struct gb_connection *connection = operation->connection;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -0400943 struct gb_svc *svc = gb_connection_get_data(connection);
Johan Hovold25376362015-11-03 18:03:23 +0100944 struct gb_host_device *hd = connection->hd;
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200945 struct gb_module *module;
Johan Hovoldbb2533a2016-03-09 12:20:34 +0100946 u8 intf_id;
Viresh Kumaread35462015-07-21 17:44:19 +0530947 int ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500948
Johan Hovold24456a092015-12-02 18:23:27 +0100949 /* The request message size has already been verified. */
Johan Hovold9ae41092015-12-02 18:23:29 +0100950 request = operation->request->payload;
Johan Hovold24456a092015-12-02 18:23:27 +0100951 intf_id = request->intf_id;
952
953 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, intf_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500954
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200955 /* All modules are considered 1x2 for now */
956 module = gb_svc_module_lookup(svc, intf_id);
957 if (module) {
Johan Hovold96fb6c32016-04-13 19:19:08 +0200958 dev_info(&svc->dev, "mode switch detected on interface %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100959 intf_id);
Johan Hovold96fb6c32016-04-13 19:19:08 +0200960
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200961 return gb_svc_intf_reenable(svc, module->interfaces[0]);
Viresh Kumarbbaca712015-09-23 16:48:08 -0700962 }
963
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200964 module = gb_module_create(hd, intf_id, 1);
965 if (!module) {
966 dev_err(&svc->dev, "failed to create module\n");
Johan Hovold9ae41092015-12-02 18:23:29 +0100967 return;
Viresh Kumaread35462015-07-21 17:44:19 +0530968 }
969
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200970 ret = gb_module_add(module);
Johan Hovold153ff7e2016-03-29 18:56:08 -0400971 if (ret) {
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200972 gb_module_put(module);
Johan Hovold96fb6c32016-04-13 19:19:08 +0200973 return;
Johan Hovold153ff7e2016-03-29 18:56:08 -0400974 }
Viresh Kumar63d742b2015-12-23 09:07:42 +0530975
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200976 list_add(&module->hd_node, &hd->modules);
Johan Hovold9ae41092015-12-02 18:23:29 +0100977}
978
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100979static void gb_svc_process_intf_hot_unplug(struct gb_operation *operation)
980{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -0400981 struct gb_svc *svc = gb_connection_get_data(operation->connection);
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100982 struct gb_svc_intf_hot_unplug_request *request;
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200983 struct gb_module *module;
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100984 u8 intf_id;
985
986 /* The request message size has already been verified. */
987 request = operation->request->payload;
988 intf_id = request->intf_id;
989
990 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, intf_id);
991
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200992 /* All modules are considered 1x2 for now */
993 module = gb_svc_module_lookup(svc, intf_id);
994 if (!module) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530995 dev_warn(&svc->dev, "could not find hot-unplug interface %u\n",
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100996 intf_id);
997 return;
998 }
999
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001000 module->disconnected = true;
Johan Hovold41d51402016-04-13 19:19:09 +02001001
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001002 gb_module_del(module);
1003 list_del(&module->hd_node);
1004 gb_module_put(module);
Johan Hovold57ccd4b2015-12-02 18:23:30 +01001005}
1006
Johan Hovold22bb9382016-04-23 18:47:30 +02001007static void gb_svc_process_module_inserted(struct gb_operation *operation)
1008{
1009 struct gb_svc_module_inserted_request *request;
1010 struct gb_connection *connection = operation->connection;
1011 struct gb_svc *svc = gb_connection_get_data(connection);
1012 struct gb_host_device *hd = svc->hd;
1013 struct gb_module *module;
1014 size_t num_interfaces;
1015 u8 module_id;
1016 u16 flags;
1017 int ret;
1018
1019 /* The request message size has already been verified. */
1020 request = operation->request->payload;
1021 module_id = request->primary_intf_id;
1022 num_interfaces = request->intf_count;
1023 flags = le16_to_cpu(request->flags);
1024
1025 dev_dbg(&svc->dev, "%s - id = %u, num_interfaces = %zu, flags = 0x%04x\n",
1026 __func__, module_id, num_interfaces, flags);
1027
1028 if (flags & GB_SVC_MODULE_INSERTED_FLAG_NO_PRIMARY) {
1029 dev_warn(&svc->dev, "no primary interface detected on module %u\n",
1030 module_id);
1031 }
1032
1033 module = gb_svc_module_lookup(svc, module_id);
1034 if (module) {
1035 dev_warn(&svc->dev, "unexpected module-inserted event %u\n",
1036 module_id);
1037 return;
1038 }
1039
1040 module = gb_module_create(hd, module_id, num_interfaces);
1041 if (!module) {
1042 dev_err(&svc->dev, "failed to create module\n");
1043 return;
1044 }
1045
1046 ret = gb_module_add(module);
1047 if (ret) {
1048 gb_module_put(module);
1049 return;
1050 }
1051
1052 list_add(&module->hd_node, &hd->modules);
1053}
1054
1055static void gb_svc_process_module_removed(struct gb_operation *operation)
1056{
1057 struct gb_svc_module_removed_request *request;
1058 struct gb_connection *connection = operation->connection;
1059 struct gb_svc *svc = gb_connection_get_data(connection);
1060 struct gb_module *module;
1061 u8 module_id;
1062
1063 /* The request message size has already been verified. */
1064 request = operation->request->payload;
1065 module_id = request->primary_intf_id;
1066
1067 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, module_id);
1068
1069 module = gb_svc_module_lookup(svc, module_id);
1070 if (!module) {
1071 dev_warn(&svc->dev, "unexpected module-removed event %u\n",
1072 module_id);
1073 return;
1074 }
1075
1076 module->disconnected = true;
1077
1078 gb_module_del(module);
1079 list_del(&module->hd_node);
1080 gb_module_put(module);
1081}
1082
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001083static void gb_svc_process_intf_mailbox_event(struct gb_operation *operation)
1084{
1085 struct gb_svc_intf_mailbox_event_request *request;
1086 struct gb_connection *connection = operation->connection;
1087 struct gb_svc *svc = gb_connection_get_data(connection);
1088 struct gb_interface *intf;
1089 u8 intf_id;
1090 u16 result_code;
1091 u32 mailbox;
1092
1093 /* The request message size has already been verified. */
1094 request = operation->request->payload;
1095 intf_id = request->intf_id;
1096 result_code = le16_to_cpu(request->result_code);
1097 mailbox = le32_to_cpu(request->mailbox);
1098
1099 dev_dbg(&svc->dev, "%s - id = %u, result = 0x%04x, mailbox = 0x%08x\n",
1100 __func__, intf_id, result_code, mailbox);
1101
1102 intf = gb_svc_interface_lookup(svc, intf_id);
1103 if (!intf) {
1104 dev_warn(&svc->dev, "unexpected mailbox event %u\n", intf_id);
1105 return;
1106 }
1107
1108 if (result_code) {
1109 dev_warn(&svc->dev,
1110 "mailbox event %u with UniPro error: 0x%04x\n",
1111 intf_id, result_code);
1112 goto err_disable_interface;
1113 }
1114
1115 if (mailbox != GB_SVC_INTF_MAILBOX_GREYBUS) {
1116 dev_warn(&svc->dev,
1117 "mailbox event %u with unexected value: 0x%08x\n",
1118 intf_id, mailbox);
1119 goto err_disable_interface;
1120 }
1121
1122 dev_info(&svc->dev, "mode switch detected on interface %u\n", intf_id);
1123
1124 gb_svc_intf_reenable(svc, intf);
1125
1126 return;
1127
1128err_disable_interface:
1129 mutex_lock(&intf->mutex);
1130 gb_interface_disable(intf);
1131 gb_interface_deactivate(intf);
1132 mutex_unlock(&intf->mutex);
1133}
1134
Johan Hovold9ae41092015-12-02 18:23:29 +01001135static void gb_svc_process_deferred_request(struct work_struct *work)
1136{
1137 struct gb_svc_deferred_request *dr;
1138 struct gb_operation *operation;
1139 struct gb_svc *svc;
1140 u8 type;
1141
1142 dr = container_of(work, struct gb_svc_deferred_request, work);
1143 operation = dr->operation;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001144 svc = gb_connection_get_data(operation->connection);
Johan Hovold9ae41092015-12-02 18:23:29 +01001145 type = operation->request->header->type;
1146
1147 switch (type) {
Mitchell Tasmanee2f2072016-05-04 17:30:23 -04001148 case GB_SVC_TYPE_SVC_HELLO:
1149 gb_svc_process_hello_deferred(operation);
1150 break;
Johan Hovold9ae41092015-12-02 18:23:29 +01001151 case GB_SVC_TYPE_INTF_HOTPLUG:
1152 gb_svc_process_intf_hotplug(operation);
1153 break;
Johan Hovold57ccd4b2015-12-02 18:23:30 +01001154 case GB_SVC_TYPE_INTF_HOT_UNPLUG:
1155 gb_svc_process_intf_hot_unplug(operation);
1156 break;
Johan Hovold22bb9382016-04-23 18:47:30 +02001157 case GB_SVC_TYPE_MODULE_INSERTED:
1158 gb_svc_process_module_inserted(operation);
1159 break;
1160 case GB_SVC_TYPE_MODULE_REMOVED:
1161 gb_svc_process_module_removed(operation);
1162 break;
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001163 case GB_SVC_TYPE_INTF_MAILBOX_EVENT:
1164 gb_svc_process_intf_mailbox_event(operation);
1165 break;
Johan Hovold9ae41092015-12-02 18:23:29 +01001166 default:
Viresh Kumarb933fa42015-12-04 21:30:10 +05301167 dev_err(&svc->dev, "bad deferred request type: 0x%02x\n", type);
Johan Hovold9ae41092015-12-02 18:23:29 +01001168 }
1169
1170 gb_operation_put(operation);
1171 kfree(dr);
1172}
1173
1174static int gb_svc_queue_deferred_request(struct gb_operation *operation)
1175{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001176 struct gb_svc *svc = gb_connection_get_data(operation->connection);
Johan Hovold9ae41092015-12-02 18:23:29 +01001177 struct gb_svc_deferred_request *dr;
1178
1179 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1180 if (!dr)
1181 return -ENOMEM;
1182
1183 gb_operation_get(operation);
1184
1185 dr->operation = operation;
1186 INIT_WORK(&dr->work, gb_svc_process_deferred_request);
1187
Johan Hovold3e48aca2015-12-02 18:23:31 +01001188 queue_work(svc->wq, &dr->work);
Johan Hovold9ae41092015-12-02 18:23:29 +01001189
1190 return 0;
Viresh Kumar067906f2015-08-06 12:44:55 +05301191}
Viresh Kumaread35462015-07-21 17:44:19 +05301192
Viresh Kumar067906f2015-08-06 12:44:55 +05301193/*
1194 * Bringing up a module can be time consuming, as that may require lots of
1195 * initialization on the module side. Over that, we may also need to download
1196 * the firmware first and flash that on the module.
1197 *
Johan Hovold3e48aca2015-12-02 18:23:31 +01001198 * In order not to make other svc events wait for all this to finish,
Viresh Kumar067906f2015-08-06 12:44:55 +05301199 * handle most of module hotplug stuff outside of the hotplug callback, with
1200 * help of a workqueue.
1201 */
1202static int gb_svc_intf_hotplug_recv(struct gb_operation *op)
1203{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001204 struct gb_svc *svc = gb_connection_get_data(op->connection);
Johan Hovoldd34a3642015-12-02 18:23:26 +01001205 struct gb_svc_intf_hotplug_request *request;
Viresh Kumar067906f2015-08-06 12:44:55 +05301206
Johan Hovoldd34a3642015-12-02 18:23:26 +01001207 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +01001208 dev_warn(&svc->dev, "short hotplug request received (%zu < %zu)\n",
Johan Hovoldd34a3642015-12-02 18:23:26 +01001209 op->request->payload_size, sizeof(*request));
Viresh Kumar067906f2015-08-06 12:44:55 +05301210 return -EINVAL;
1211 }
1212
Johan Hovoldd34a3642015-12-02 18:23:26 +01001213 request = op->request->payload;
1214
1215 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, request->intf_id);
1216
Johan Hovold9ae41092015-12-02 18:23:29 +01001217 return gb_svc_queue_deferred_request(op);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001218}
1219
1220static int gb_svc_intf_hot_unplug_recv(struct gb_operation *op)
1221{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001222 struct gb_svc *svc = gb_connection_get_data(op->connection);
Johan Hovoldd34a3642015-12-02 18:23:26 +01001223 struct gb_svc_intf_hot_unplug_request *request;
Alex Elder30c6d9d2015-05-22 13:02:08 -05001224
Johan Hovoldd34a3642015-12-02 18:23:26 +01001225 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +01001226 dev_warn(&svc->dev, "short hot unplug request received (%zu < %zu)\n",
Johan Hovoldd34a3642015-12-02 18:23:26 +01001227 op->request->payload_size, sizeof(*request));
Alex Elder30c6d9d2015-05-22 13:02:08 -05001228 return -EINVAL;
1229 }
Alex Elder30c6d9d2015-05-22 13:02:08 -05001230
Johan Hovoldd34a3642015-12-02 18:23:26 +01001231 request = op->request->payload;
Johan Hovoldd34a3642015-12-02 18:23:26 +01001232
Johan Hovold57ccd4b2015-12-02 18:23:30 +01001233 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, request->intf_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001234
Johan Hovold57ccd4b2015-12-02 18:23:30 +01001235 return gb_svc_queue_deferred_request(op);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001236}
1237
1238static int gb_svc_intf_reset_recv(struct gb_operation *op)
1239{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001240 struct gb_svc *svc = gb_connection_get_data(op->connection);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001241 struct gb_message *request = op->request;
1242 struct gb_svc_intf_reset_request *reset;
1243 u8 intf_id;
1244
1245 if (request->payload_size < sizeof(*reset)) {
Johan Hovold684156a2015-11-25 15:59:19 +01001246 dev_warn(&svc->dev, "short reset request received (%zu < %zu)\n",
1247 request->payload_size, sizeof(*reset));
Alex Elder30c6d9d2015-05-22 13:02:08 -05001248 return -EINVAL;
1249 }
1250 reset = request->payload;
1251
1252 intf_id = reset->intf_id;
1253
1254 /* FIXME Reset the interface here */
1255
1256 return 0;
1257}
1258
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001259static int gb_svc_key_code_map(struct gb_svc *svc, u16 key_code, u16 *code)
1260{
1261 switch (key_code) {
1262 case GB_KEYCODE_ARA:
1263 *code = SVC_KEY_ARA_BUTTON;
1264 break;
1265 default:
1266 dev_warn(&svc->dev, "unknown keycode received: %u\n", key_code);
1267 return -EINVAL;
1268 }
1269
1270 return 0;
1271}
1272
1273static int gb_svc_key_event_recv(struct gb_operation *op)
1274{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001275 struct gb_svc *svc = gb_connection_get_data(op->connection);
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001276 struct gb_message *request = op->request;
1277 struct gb_svc_key_event_request *key;
1278 u16 code;
1279 u8 event;
1280 int ret;
1281
1282 if (request->payload_size < sizeof(*key)) {
1283 dev_warn(&svc->dev, "short key request received (%zu < %zu)\n",
1284 request->payload_size, sizeof(*key));
1285 return -EINVAL;
1286 }
1287
1288 key = request->payload;
1289
1290 ret = gb_svc_key_code_map(svc, le16_to_cpu(key->key_code), &code);
1291 if (ret < 0)
1292 return ret;
1293
1294 event = key->key_event;
1295 if ((event != GB_SVC_KEY_PRESSED) && (event != GB_SVC_KEY_RELEASED)) {
1296 dev_warn(&svc->dev, "unknown key event received: %u\n", event);
1297 return -EINVAL;
1298 }
1299
1300 input_report_key(svc->input, code, (event == GB_SVC_KEY_PRESSED));
1301 input_sync(svc->input);
1302
1303 return 0;
1304}
1305
Johan Hovold22bb9382016-04-23 18:47:30 +02001306static int gb_svc_module_inserted_recv(struct gb_operation *op)
1307{
1308 struct gb_svc *svc = gb_connection_get_data(op->connection);
1309 struct gb_svc_module_inserted_request *request;
1310
1311 if (op->request->payload_size < sizeof(*request)) {
1312 dev_warn(&svc->dev, "short module-inserted request received (%zu < %zu)\n",
1313 op->request->payload_size, sizeof(*request));
1314 return -EINVAL;
1315 }
1316
1317 request = op->request->payload;
1318
1319 dev_dbg(&svc->dev, "%s - id = %u\n", __func__,
1320 request->primary_intf_id);
1321
1322 return gb_svc_queue_deferred_request(op);
1323}
1324
1325static int gb_svc_module_removed_recv(struct gb_operation *op)
1326{
1327 struct gb_svc *svc = gb_connection_get_data(op->connection);
1328 struct gb_svc_module_removed_request *request;
1329
1330 if (op->request->payload_size < sizeof(*request)) {
1331 dev_warn(&svc->dev, "short module-removed request received (%zu < %zu)\n",
1332 op->request->payload_size, sizeof(*request));
1333 return -EINVAL;
1334 }
1335
1336 request = op->request->payload;
1337
1338 dev_dbg(&svc->dev, "%s - id = %u\n", __func__,
1339 request->primary_intf_id);
1340
1341 return gb_svc_queue_deferred_request(op);
1342}
1343
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001344static int gb_svc_intf_mailbox_event_recv(struct gb_operation *op)
1345{
1346 struct gb_svc *svc = gb_connection_get_data(op->connection);
1347 struct gb_svc_intf_mailbox_event_request *request;
1348
1349 if (op->request->payload_size < sizeof(*request)) {
1350 dev_warn(&svc->dev, "short mailbox request received (%zu < %zu)\n",
1351 op->request->payload_size, sizeof(*request));
1352 return -EINVAL;
1353 }
1354
1355 request = op->request->payload;
1356
1357 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, request->intf_id);
1358
1359 return gb_svc_queue_deferred_request(op);
1360}
1361
Johan Hovold84427942016-01-19 12:51:15 +01001362static int gb_svc_request_handler(struct gb_operation *op)
Alex Elder30c6d9d2015-05-22 13:02:08 -05001363{
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301364 struct gb_connection *connection = op->connection;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001365 struct gb_svc *svc = gb_connection_get_data(connection);
Johan Hovold84427942016-01-19 12:51:15 +01001366 u8 type = op->type;
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301367 int ret = 0;
1368
1369 /*
1370 * SVC requests need to follow a specific order (at least initially) and
1371 * below code takes care of enforcing that. The expected order is:
1372 * - PROTOCOL_VERSION
1373 * - SVC_HELLO
1374 * - Any other request, but the earlier two.
1375 *
1376 * Incoming requests are guaranteed to be serialized and so we don't
1377 * need to protect 'state' for any races.
1378 */
Alex Elder30c6d9d2015-05-22 13:02:08 -05001379 switch (type) {
Johan Hovolda2cf2e52016-04-29 17:08:36 +02001380 case GB_SVC_TYPE_PROTOCOL_VERSION:
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301381 if (svc->state != GB_SVC_STATE_RESET)
1382 ret = -EINVAL;
1383 break;
Viresh Kumaread35462015-07-21 17:44:19 +05301384 case GB_SVC_TYPE_SVC_HELLO:
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301385 if (svc->state != GB_SVC_STATE_PROTOCOL_VERSION)
1386 ret = -EINVAL;
1387 break;
1388 default:
1389 if (svc->state != GB_SVC_STATE_SVC_HELLO)
1390 ret = -EINVAL;
1391 break;
1392 }
1393
1394 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +01001395 dev_warn(&svc->dev, "unexpected request 0x%02x received (state %u)\n",
1396 type, svc->state);
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301397 return ret;
1398 }
1399
1400 switch (type) {
Johan Hovolda2cf2e52016-04-29 17:08:36 +02001401 case GB_SVC_TYPE_PROTOCOL_VERSION:
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301402 ret = gb_svc_version_request(op);
1403 if (!ret)
1404 svc->state = GB_SVC_STATE_PROTOCOL_VERSION;
1405 return ret;
1406 case GB_SVC_TYPE_SVC_HELLO:
1407 ret = gb_svc_hello(op);
1408 if (!ret)
1409 svc->state = GB_SVC_STATE_SVC_HELLO;
1410 return ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -05001411 case GB_SVC_TYPE_INTF_HOTPLUG:
1412 return gb_svc_intf_hotplug_recv(op);
1413 case GB_SVC_TYPE_INTF_HOT_UNPLUG:
1414 return gb_svc_intf_hot_unplug_recv(op);
1415 case GB_SVC_TYPE_INTF_RESET:
1416 return gb_svc_intf_reset_recv(op);
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001417 case GB_SVC_TYPE_KEY_EVENT:
1418 return gb_svc_key_event_recv(op);
Johan Hovold22bb9382016-04-23 18:47:30 +02001419 case GB_SVC_TYPE_MODULE_INSERTED:
1420 return gb_svc_module_inserted_recv(op);
1421 case GB_SVC_TYPE_MODULE_REMOVED:
1422 return gb_svc_module_removed_recv(op);
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001423 case GB_SVC_TYPE_INTF_MAILBOX_EVENT:
1424 return gb_svc_intf_mailbox_event_recv(op);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001425 default:
Johan Hovold684156a2015-11-25 15:59:19 +01001426 dev_warn(&svc->dev, "unsupported request 0x%02x\n", type);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001427 return -EINVAL;
1428 }
1429}
1430
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001431static struct input_dev *gb_svc_input_create(struct gb_svc *svc)
1432{
1433 struct input_dev *input_dev;
1434
1435 input_dev = input_allocate_device();
1436 if (!input_dev)
1437 return ERR_PTR(-ENOMEM);
1438
1439 input_dev->name = dev_name(&svc->dev);
1440 svc->input_phys = kasprintf(GFP_KERNEL, "greybus-%s/input0",
1441 input_dev->name);
1442 if (!svc->input_phys)
1443 goto err_free_input;
1444
1445 input_dev->phys = svc->input_phys;
1446 input_dev->dev.parent = &svc->dev;
1447
1448 input_set_drvdata(input_dev, svc);
1449
1450 input_set_capability(input_dev, EV_KEY, SVC_KEY_ARA_BUTTON);
1451
1452 return input_dev;
1453
1454err_free_input:
1455 input_free_device(svc->input);
1456 return ERR_PTR(-ENOMEM);
1457}
1458
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001459static void gb_svc_release(struct device *dev)
1460{
Johan Hovold88f7b962015-11-25 15:59:08 +01001461 struct gb_svc *svc = to_gb_svc(dev);
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001462
Johan Hovold7adeaae72015-12-07 15:05:37 +01001463 if (svc->connection)
1464 gb_connection_destroy(svc->connection);
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001465 ida_destroy(&svc->device_id_map);
Johan Hovold3e48aca2015-12-02 18:23:31 +01001466 destroy_workqueue(svc->wq);
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001467 kfree(svc->input_phys);
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001468 kfree(svc);
1469}
1470
1471struct device_type greybus_svc_type = {
1472 .name = "greybus_svc",
1473 .release = gb_svc_release,
1474};
1475
Johan Hovold7adeaae72015-12-07 15:05:37 +01001476struct gb_svc *gb_svc_create(struct gb_host_device *hd)
Alex Elder30c6d9d2015-05-22 13:02:08 -05001477{
1478 struct gb_svc *svc;
Alex Elder30c6d9d2015-05-22 13:02:08 -05001479
1480 svc = kzalloc(sizeof(*svc), GFP_KERNEL);
1481 if (!svc)
Johan Hovold7adeaae72015-12-07 15:05:37 +01001482 return NULL;
Alex Elder30c6d9d2015-05-22 13:02:08 -05001483
Johan Hovold3e48aca2015-12-02 18:23:31 +01001484 svc->wq = alloc_workqueue("%s:svc", WQ_UNBOUND, 1, dev_name(&hd->dev));
1485 if (!svc->wq) {
1486 kfree(svc);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001487 return NULL;
Johan Hovold3e48aca2015-12-02 18:23:31 +01001488 }
1489
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001490 svc->dev.parent = &hd->dev;
1491 svc->dev.bus = &greybus_bus_type;
1492 svc->dev.type = &greybus_svc_type;
Johan Hovold66069fb2015-11-25 15:59:09 +01001493 svc->dev.groups = svc_groups;
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001494 svc->dev.dma_mask = svc->dev.parent->dma_mask;
1495 device_initialize(&svc->dev);
1496
1497 dev_set_name(&svc->dev, "%d-svc", hd->bus_id);
1498
Johan Hovold6106e512015-11-25 15:59:07 +01001499 ida_init(&svc->device_id_map);
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301500 svc->state = GB_SVC_STATE_RESET;
Johan Hovoldf0960d02015-12-03 19:18:02 +01001501 svc->hd = hd;
Viresh Kumard3d44842015-07-21 17:44:18 +05301502
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001503 svc->input = gb_svc_input_create(svc);
1504 if (IS_ERR(svc->input)) {
1505 dev_err(&svc->dev, "failed to create input device: %ld\n",
1506 PTR_ERR(svc->input));
1507 goto err_put_device;
1508 }
1509
Johan Hovoldf7ee0812016-01-21 17:34:21 +01001510 svc->connection = gb_connection_create_static(hd, GB_SVC_CPORT_ID,
1511 gb_svc_request_handler);
Johan Hovold24e094d2016-01-21 17:34:16 +01001512 if (IS_ERR(svc->connection)) {
1513 dev_err(&svc->dev, "failed to create connection: %ld\n",
1514 PTR_ERR(svc->connection));
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001515 goto err_free_input;
Johan Hovold7adeaae72015-12-07 15:05:37 +01001516 }
1517
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001518 gb_connection_set_data(svc->connection, svc);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001519
1520 return svc;
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001521
1522err_free_input:
1523 input_free_device(svc->input);
1524err_put_device:
1525 put_device(&svc->dev);
1526 return NULL;
Johan Hovold7adeaae72015-12-07 15:05:37 +01001527}
1528
1529int gb_svc_add(struct gb_svc *svc)
1530{
1531 int ret;
1532
1533 /*
1534 * The SVC protocol is currently driven by the SVC, so the SVC device
1535 * is added from the connection request handler when enough
1536 * information has been received.
1537 */
Johan Hovoldf7ee0812016-01-21 17:34:21 +01001538 ret = gb_connection_enable(svc->connection);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001539 if (ret)
1540 return ret;
1541
1542 return 0;
1543}
1544
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001545static void gb_svc_remove_modules(struct gb_svc *svc)
Johan Hovold66d674c2016-03-09 12:20:41 +01001546{
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001547 struct gb_host_device *hd = svc->hd;
1548 struct gb_module *module, *tmp;
Johan Hovold66d674c2016-03-09 12:20:41 +01001549
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001550 list_for_each_entry_safe(module, tmp, &hd->modules, hd_node) {
1551 gb_module_del(module);
1552 list_del(&module->hd_node);
1553 gb_module_put(module);
Johan Hovold629c0d02016-03-09 12:20:43 +01001554 }
Johan Hovold66d674c2016-03-09 12:20:41 +01001555}
1556
Johan Hovold7adeaae72015-12-07 15:05:37 +01001557void gb_svc_del(struct gb_svc *svc)
1558{
Johan Hovold84427942016-01-19 12:51:15 +01001559 gb_connection_disable(svc->connection);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001560
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001561 /*
1562 * The SVC device and input device may have been registered
1563 * from the request handler.
1564 */
1565 if (device_is_registered(&svc->dev)) {
Johan Hovold12185192016-04-23 18:47:20 +02001566 gb_svc_debugfs_exit(svc);
Greg Kroah-Hartmaned7279a2016-01-20 22:51:49 -08001567 gb_svc_watchdog_destroy(svc);
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001568 input_unregister_device(svc->input);
1569 device_del(&svc->dev);
1570 }
1571
Johan Hovold7adeaae72015-12-07 15:05:37 +01001572 flush_workqueue(svc->wq);
Johan Hovold66d674c2016-03-09 12:20:41 +01001573
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001574 gb_svc_remove_modules(svc);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001575}
1576
1577void gb_svc_put(struct gb_svc *svc)
1578{
1579 put_device(&svc->dev);
1580}