blob: 550055ec27a5ce620f42b2c92662719ec0c32a65 [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>
Viresh Kumar067906f2015-08-06 12:44:55 +053011#include <linux/workqueue.h>
Alex Elder30c6d9d2015-05-22 13:02:08 -050012
Viresh Kumarf66427a2015-09-02 21:27:13 +053013#include "greybus.h"
14
Jeffrey Carlyle140026b2016-05-06 12:43:53 -070015#define SVC_INTF_EJECT_TIMEOUT 9000
16#define SVC_INTF_ACTIVATE_TIMEOUT 6000
Johan Hovold1f3e09e2016-08-26 12:59:45 +020017#define SVC_INTF_RESUME_TIMEOUT 3000
Johan Hovoldd18da862016-03-09 12:20:46 +010018
Johan Hovold9ae41092015-12-02 18:23:29 +010019struct gb_svc_deferred_request {
Viresh Kumar067906f2015-08-06 12:44:55 +053020 struct work_struct work;
Johan Hovold9ae41092015-12-02 18:23:29 +010021 struct gb_operation *operation;
Viresh Kumar067906f2015-08-06 12:44:55 +053022};
23
Viresh Kumaread35462015-07-21 17:44:19 +053024
Mitchell Tasmanee2f2072016-05-04 17:30:23 -040025static int gb_svc_queue_deferred_request(struct gb_operation *operation);
26
Johan Hovold66069fb2015-11-25 15:59:09 +010027static ssize_t endo_id_show(struct device *dev,
28 struct device_attribute *attr, char *buf)
29{
30 struct gb_svc *svc = to_gb_svc(dev);
31
32 return sprintf(buf, "0x%04x\n", svc->endo_id);
33}
34static DEVICE_ATTR_RO(endo_id);
35
36static ssize_t ap_intf_id_show(struct device *dev,
37 struct device_attribute *attr, char *buf)
38{
39 struct gb_svc *svc = to_gb_svc(dev);
40
41 return sprintf(buf, "%u\n", svc->ap_intf_id);
42}
43static DEVICE_ATTR_RO(ap_intf_id);
44
Rui Miguel Silva2c92bd52016-01-11 13:46:33 +000045// FIXME
46// This is a hack, we need to do this "right" and clean the interface up
47// properly, not just forcibly yank the thing out of the system and hope for the
48// best. But for now, people want their modules to come out without having to
49// throw the thing to the ground or get out a screwdriver.
50static ssize_t intf_eject_store(struct device *dev,
51 struct device_attribute *attr, const char *buf,
52 size_t len)
53{
54 struct gb_svc *svc = to_gb_svc(dev);
55 unsigned short intf_id;
56 int ret;
57
58 ret = kstrtou16(buf, 10, &intf_id);
59 if (ret < 0)
60 return ret;
61
62 dev_warn(dev, "Forcibly trying to eject interface %d\n", intf_id);
63
64 ret = gb_svc_intf_eject(svc, intf_id);
65 if (ret < 0)
66 return ret;
67
68 return len;
69}
70static DEVICE_ATTR_WO(intf_eject);
71
Greg Kroah-Hartmand5628532016-01-26 15:17:08 -080072static ssize_t watchdog_show(struct device *dev, struct device_attribute *attr,
73 char *buf)
74{
75 struct gb_svc *svc = to_gb_svc(dev);
76
77 return sprintf(buf, "%s\n",
78 gb_svc_watchdog_enabled(svc) ? "enabled" : "disabled");
79}
80
81static ssize_t watchdog_store(struct device *dev,
82 struct device_attribute *attr, const char *buf,
83 size_t len)
84{
85 struct gb_svc *svc = to_gb_svc(dev);
86 int retval;
87 bool user_request;
88
89 retval = strtobool(buf, &user_request);
90 if (retval)
91 return retval;
92
93 if (user_request)
94 retval = gb_svc_watchdog_enable(svc);
95 else
96 retval = gb_svc_watchdog_disable(svc);
97 if (retval)
98 return retval;
99 return len;
100}
101static DEVICE_ATTR_RW(watchdog);
102
David Lin7c4a0ed2016-07-26 16:27:28 -0700103static ssize_t watchdog_action_show(struct device *dev,
104 struct device_attribute *attr, char *buf)
105{
106 struct gb_svc *svc = to_gb_svc(dev);
107
108 if (svc->action == GB_SVC_WATCHDOG_BITE_PANIC_KERNEL)
109 return sprintf(buf, "panic\n");
110 else if (svc->action == GB_SVC_WATCHDOG_BITE_RESET_UNIPRO)
111 return sprintf(buf, "reset\n");
112
113 return -EINVAL;
114}
115
116static ssize_t watchdog_action_store(struct device *dev,
117 struct device_attribute *attr,
118 const char *buf, size_t len)
119{
120 struct gb_svc *svc = to_gb_svc(dev);
121
122 if (sysfs_streq(buf, "panic"))
123 svc->action = GB_SVC_WATCHDOG_BITE_PANIC_KERNEL;
124 else if (sysfs_streq(buf, "reset"))
125 svc->action = GB_SVC_WATCHDOG_BITE_RESET_UNIPRO;
126 else
127 return -EINVAL;
128
129 return len;
130}
131static DEVICE_ATTR_RW(watchdog_action);
132
David Lin95046772016-04-20 16:55:08 -0700133static int gb_svc_pwrmon_rail_count_get(struct gb_svc *svc, u8 *value)
134{
135 struct gb_svc_pwrmon_rail_count_get_response response;
136 int ret;
137
138 ret = gb_operation_sync(svc->connection,
139 GB_SVC_TYPE_PWRMON_RAIL_COUNT_GET, NULL, 0,
140 &response, sizeof(response));
141 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200142 dev_err(&svc->dev, "failed to get rail count: %d\n", ret);
David Lin95046772016-04-20 16:55:08 -0700143 return ret;
144 }
145
146 *value = response.rail_count;
147
148 return 0;
149}
150
151static int gb_svc_pwrmon_rail_names_get(struct gb_svc *svc,
Johan Hovoldf35fdb22016-04-21 11:43:38 +0200152 struct gb_svc_pwrmon_rail_names_get_response *response,
153 size_t bufsize)
David Lin95046772016-04-20 16:55:08 -0700154{
155 int ret;
156
157 ret = gb_operation_sync(svc->connection,
158 GB_SVC_TYPE_PWRMON_RAIL_NAMES_GET, NULL, 0,
159 response, bufsize);
160 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200161 dev_err(&svc->dev, "failed to get rail names: %d\n", ret);
David Lin95046772016-04-20 16:55:08 -0700162 return ret;
163 }
164
David Lin8fb76c32016-06-08 09:39:00 +0200165 if (response->status != GB_SVC_OP_SUCCESS) {
166 dev_err(&svc->dev,
167 "SVC error while getting rail names: %u\n",
168 response->status);
169 return -EREMOTEIO;
170 }
171
David Lin95046772016-04-20 16:55:08 -0700172 return 0;
173}
174
175static int gb_svc_pwrmon_sample_get(struct gb_svc *svc, u8 rail_id,
176 u8 measurement_type, u32 *value)
177{
178 struct gb_svc_pwrmon_sample_get_request request;
179 struct gb_svc_pwrmon_sample_get_response response;
180 int ret;
181
182 request.rail_id = rail_id;
183 request.measurement_type = measurement_type;
184
185 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_PWRMON_SAMPLE_GET,
186 &request, sizeof(request),
187 &response, sizeof(response));
188 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200189 dev_err(&svc->dev, "failed to get rail sample: %d\n", ret);
David Lin95046772016-04-20 16:55:08 -0700190 return ret;
191 }
192
193 if (response.result) {
194 dev_err(&svc->dev,
195 "UniPro error while getting rail power sample (%d %d): %d\n",
196 rail_id, measurement_type, response.result);
197 switch (response.result) {
198 case GB_SVC_PWRMON_GET_SAMPLE_INVAL:
199 return -EINVAL;
200 case GB_SVC_PWRMON_GET_SAMPLE_NOSUPP:
Johan Hovold5b35ef92016-04-21 11:43:37 +0200201 return -ENOMSG;
David Lin95046772016-04-20 16:55:08 -0700202 default:
Johan Hovold4aea5a12016-05-19 16:20:16 +0200203 return -EREMOTEIO;
David Lin95046772016-04-20 16:55:08 -0700204 }
205 }
206
207 *value = le32_to_cpu(response.measurement);
208
209 return 0;
210}
211
David Linddb10c82016-04-07 20:15:30 -0700212int gb_svc_pwrmon_intf_sample_get(struct gb_svc *svc, u8 intf_id,
213 u8 measurement_type, u32 *value)
214{
215 struct gb_svc_pwrmon_intf_sample_get_request request;
216 struct gb_svc_pwrmon_intf_sample_get_response response;
217 int ret;
218
219 request.intf_id = intf_id;
220 request.measurement_type = measurement_type;
221
222 ret = gb_operation_sync(svc->connection,
223 GB_SVC_TYPE_PWRMON_INTF_SAMPLE_GET,
224 &request, sizeof(request),
225 &response, sizeof(response));
226 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200227 dev_err(&svc->dev, "failed to get intf sample: %d\n", ret);
David Linddb10c82016-04-07 20:15:30 -0700228 return ret;
229 }
230
231 if (response.result) {
232 dev_err(&svc->dev,
233 "UniPro error while getting intf power sample (%d %d): %d\n",
234 intf_id, measurement_type, response.result);
235 switch (response.result) {
236 case GB_SVC_PWRMON_GET_SAMPLE_INVAL:
237 return -EINVAL;
238 case GB_SVC_PWRMON_GET_SAMPLE_NOSUPP:
Johan Hovold0bba4fb2016-05-19 16:20:14 +0200239 return -ENOMSG;
David Linddb10c82016-04-07 20:15:30 -0700240 default:
Johan Hovold4aea5a12016-05-19 16:20:16 +0200241 return -EREMOTEIO;
David Linddb10c82016-04-07 20:15:30 -0700242 }
243 }
244
245 *value = le32_to_cpu(response.measurement);
246
247 return 0;
248}
249
Johan Hovold66069fb2015-11-25 15:59:09 +0100250static struct attribute *svc_attrs[] = {
251 &dev_attr_endo_id.attr,
252 &dev_attr_ap_intf_id.attr,
Rui Miguel Silva2c92bd52016-01-11 13:46:33 +0000253 &dev_attr_intf_eject.attr,
Greg Kroah-Hartmand5628532016-01-26 15:17:08 -0800254 &dev_attr_watchdog.attr,
David Lin7c4a0ed2016-07-26 16:27:28 -0700255 &dev_attr_watchdog_action.attr,
Johan Hovold66069fb2015-11-25 15:59:09 +0100256 NULL,
257};
258ATTRIBUTE_GROUPS(svc);
259
Johan Hovold4d5f6212016-03-29 18:56:04 -0400260int gb_svc_intf_device_id(struct gb_svc *svc, u8 intf_id, u8 device_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500261{
262 struct gb_svc_intf_device_id_request request;
263
264 request.intf_id = intf_id;
265 request.device_id = device_id;
266
267 return gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_DEVICE_ID,
268 &request, sizeof(request), NULL, 0);
269}
270
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000271int gb_svc_intf_eject(struct gb_svc *svc, u8 intf_id)
272{
273 struct gb_svc_intf_eject_request request;
Johan Hovolde676ccd2016-03-09 12:20:45 +0100274 int ret;
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000275
276 request.intf_id = intf_id;
277
278 /*
279 * The pulse width for module release in svc is long so we need to
280 * increase the timeout so the operation will not return to soon.
281 */
Johan Hovolde676ccd2016-03-09 12:20:45 +0100282 ret = gb_operation_sync_timeout(svc->connection,
283 GB_SVC_TYPE_INTF_EJECT, &request,
284 sizeof(request), NULL, 0,
Johan Hovoldd18da862016-03-09 12:20:46 +0100285 SVC_INTF_EJECT_TIMEOUT);
Johan Hovolde676ccd2016-03-09 12:20:45 +0100286 if (ret) {
287 dev_err(&svc->dev, "failed to eject interface %u\n", intf_id);
288 return ret;
289 }
290
291 return 0;
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000292}
Rui Miguel Silvac5d55fb2016-01-11 13:46:31 +0000293
Johan Hovold017482b2016-04-23 18:47:27 +0200294int gb_svc_intf_vsys_set(struct gb_svc *svc, u8 intf_id, bool enable)
295{
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700296 struct gb_svc_intf_vsys_request request;
297 struct gb_svc_intf_vsys_response response;
298 int type, ret;
Johan Hovold017482b2016-04-23 18:47:27 +0200299
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700300 request.intf_id = intf_id;
301
302 if (enable)
303 type = GB_SVC_TYPE_INTF_VSYS_ENABLE;
304 else
305 type = GB_SVC_TYPE_INTF_VSYS_DISABLE;
306
307 ret = gb_operation_sync(svc->connection, type,
308 &request, sizeof(request),
309 &response, sizeof(response));
310 if (ret < 0)
311 return ret;
312 if (response.result_code != GB_SVC_INTF_VSYS_OK)
313 return -EREMOTEIO;
Johan Hovold017482b2016-04-23 18:47:27 +0200314 return 0;
315}
316
317int gb_svc_intf_refclk_set(struct gb_svc *svc, u8 intf_id, bool enable)
318{
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700319 struct gb_svc_intf_refclk_request request;
320 struct gb_svc_intf_refclk_response response;
321 int type, ret;
Johan Hovold017482b2016-04-23 18:47:27 +0200322
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700323 request.intf_id = intf_id;
324
325 if (enable)
326 type = GB_SVC_TYPE_INTF_REFCLK_ENABLE;
327 else
328 type = GB_SVC_TYPE_INTF_REFCLK_DISABLE;
329
330 ret = gb_operation_sync(svc->connection, type,
331 &request, sizeof(request),
332 &response, sizeof(response));
333 if (ret < 0)
334 return ret;
335 if (response.result_code != GB_SVC_INTF_REFCLK_OK)
336 return -EREMOTEIO;
Johan Hovold017482b2016-04-23 18:47:27 +0200337 return 0;
338}
339
340int gb_svc_intf_unipro_set(struct gb_svc *svc, u8 intf_id, bool enable)
341{
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700342 struct gb_svc_intf_unipro_request request;
343 struct gb_svc_intf_unipro_response response;
344 int type, ret;
Johan Hovold017482b2016-04-23 18:47:27 +0200345
Jeffrey Carlyle144763b2016-05-06 12:43:52 -0700346 request.intf_id = intf_id;
347
348 if (enable)
349 type = GB_SVC_TYPE_INTF_UNIPRO_ENABLE;
350 else
351 type = GB_SVC_TYPE_INTF_UNIPRO_DISABLE;
352
353 ret = gb_operation_sync(svc->connection, type,
354 &request, sizeof(request),
355 &response, sizeof(response));
356 if (ret < 0)
357 return ret;
358 if (response.result_code != GB_SVC_INTF_UNIPRO_OK)
359 return -EREMOTEIO;
Johan Hovold017482b2016-04-23 18:47:27 +0200360 return 0;
361}
362
Johan Hovold1e8e22b2016-04-23 18:47:28 +0200363int gb_svc_intf_activate(struct gb_svc *svc, u8 intf_id, u8 *intf_type)
364{
Jeffrey Carlyle140026b2016-05-06 12:43:53 -0700365 struct gb_svc_intf_activate_request request;
366 struct gb_svc_intf_activate_response response;
367 int ret;
Johan Hovold1e8e22b2016-04-23 18:47:28 +0200368
Jeffrey Carlyle140026b2016-05-06 12:43:53 -0700369 request.intf_id = intf_id;
370
371 ret = gb_operation_sync_timeout(svc->connection,
372 GB_SVC_TYPE_INTF_ACTIVATE,
373 &request, sizeof(request),
374 &response, sizeof(response),
375 SVC_INTF_ACTIVATE_TIMEOUT);
376 if (ret < 0)
377 return ret;
Jeffrey Carlyle03fba182016-05-11 10:08:55 -0700378 if (response.status != GB_SVC_OP_SUCCESS) {
379 dev_err(&svc->dev, "failed to activate interface %u: %u\n",
380 intf_id, response.status);
381 return -EREMOTEIO;
382 }
Jeffrey Carlyle140026b2016-05-06 12:43:53 -0700383
384 *intf_type = response.intf_type;
Johan Hovold1e8e22b2016-04-23 18:47:28 +0200385
386 return 0;
387}
388
David Linfc8a4022016-07-07 22:07:00 -0500389int gb_svc_intf_resume(struct gb_svc *svc, u8 intf_id)
390{
391 struct gb_svc_intf_resume_request request;
392 struct gb_svc_intf_resume_response response;
393 int ret;
394
395 request.intf_id = intf_id;
396
397 ret = gb_operation_sync_timeout(svc->connection,
398 GB_SVC_TYPE_INTF_RESUME,
399 &request, sizeof(request),
400 &response, sizeof(response),
401 SVC_INTF_RESUME_TIMEOUT);
402 if (ret < 0) {
403 dev_err(&svc->dev, "failed to send interface resume %u: %d\n",
404 intf_id, ret);
405 return ret;
406 }
407
408 if (response.status != GB_SVC_OP_SUCCESS) {
409 dev_err(&svc->dev, "failed to resume interface %u: %u\n",
410 intf_id, response.status);
411 return -EREMOTEIO;
412 }
413
414 return 0;
415}
416
Viresh Kumar19151c32015-09-09 21:08:29 +0530417int gb_svc_dme_peer_get(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
418 u32 *value)
419{
420 struct gb_svc_dme_peer_get_request request;
421 struct gb_svc_dme_peer_get_response response;
422 u16 result;
423 int ret;
424
425 request.intf_id = intf_id;
426 request.attr = cpu_to_le16(attr);
427 request.selector = cpu_to_le16(selector);
428
429 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_GET,
430 &request, sizeof(request),
431 &response, sizeof(response));
432 if (ret) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530433 dev_err(&svc->dev, "failed to get DME attribute (%u 0x%04x %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100434 intf_id, attr, selector, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +0530435 return ret;
436 }
437
438 result = le16_to_cpu(response.result_code);
439 if (result) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530440 dev_err(&svc->dev, "UniPro error while getting DME attribute (%u 0x%04x %u): %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100441 intf_id, attr, selector, result);
Johan Hovold4aea5a12016-05-19 16:20:16 +0200442 return -EREMOTEIO;
Viresh Kumar19151c32015-09-09 21:08:29 +0530443 }
444
445 if (value)
446 *value = le32_to_cpu(response.attr_value);
447
448 return 0;
449}
Viresh Kumar19151c32015-09-09 21:08:29 +0530450
451int gb_svc_dme_peer_set(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
452 u32 value)
453{
454 struct gb_svc_dme_peer_set_request request;
455 struct gb_svc_dme_peer_set_response response;
456 u16 result;
457 int ret;
458
459 request.intf_id = intf_id;
460 request.attr = cpu_to_le16(attr);
461 request.selector = cpu_to_le16(selector);
462 request.value = cpu_to_le32(value);
463
464 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_SET,
465 &request, sizeof(request),
466 &response, sizeof(response));
467 if (ret) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530468 dev_err(&svc->dev, "failed to set DME attribute (%u 0x%04x %u %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100469 intf_id, attr, selector, value, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +0530470 return ret;
471 }
472
473 result = le16_to_cpu(response.result_code);
474 if (result) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530475 dev_err(&svc->dev, "UniPro error while setting DME attribute (%u 0x%04x %u %u): %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100476 intf_id, attr, selector, value, result);
Johan Hovold4aea5a12016-05-19 16:20:16 +0200477 return -EREMOTEIO;
Viresh Kumar19151c32015-09-09 21:08:29 +0530478 }
479
480 return 0;
481}
Viresh Kumar19151c32015-09-09 21:08:29 +0530482
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530483int gb_svc_connection_create(struct gb_svc *svc,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500484 u8 intf1_id, u16 cport1_id,
Viresh Kumar1575ef182015-10-07 15:40:24 -0400485 u8 intf2_id, u16 cport2_id,
Johan Hovold27f25c12016-03-03 13:34:38 +0100486 u8 cport_flags)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500487{
488 struct gb_svc_conn_create_request request;
489
490 request.intf1_id = intf1_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100491 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500492 request.intf2_id = intf2_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100493 request.cport2_id = cpu_to_le16(cport2_id);
Johan Hovold34145b62016-03-03 13:34:37 +0100494 request.tc = 0; /* TC0 */
Johan Hovold27f25c12016-03-03 13:34:38 +0100495 request.flags = cport_flags;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500496
497 return gb_operation_sync(svc->connection, GB_SVC_TYPE_CONN_CREATE,
498 &request, sizeof(request), NULL, 0);
499}
500
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530501void gb_svc_connection_destroy(struct gb_svc *svc, u8 intf1_id, u16 cport1_id,
502 u8 intf2_id, u16 cport2_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500503{
504 struct gb_svc_conn_destroy_request request;
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530505 struct gb_connection *connection = svc->connection;
506 int ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500507
508 request.intf1_id = intf1_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100509 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500510 request.intf2_id = intf2_id;
Rui Miguel Silva2498050b2015-09-15 15:33:51 +0100511 request.cport2_id = cpu_to_le16(cport2_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500512
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530513 ret = gb_operation_sync(connection, GB_SVC_TYPE_CONN_DESTROY,
514 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100515 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530516 dev_err(&svc->dev, "failed to destroy connection (%u:%u %u:%u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100517 intf1_id, cport1_id, intf2_id, cport2_id, ret);
518 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500519}
520
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100521int gb_svc_timesync_enable(struct gb_svc *svc, u8 count, u64 frame_time,
522 u32 strobe_delay, u32 refclk)
523{
524 struct gb_connection *connection = svc->connection;
525 struct gb_svc_timesync_enable_request request;
526
527 request.count = count;
528 request.frame_time = cpu_to_le64(frame_time);
529 request.strobe_delay = cpu_to_le32(strobe_delay);
530 request.refclk = cpu_to_le32(refclk);
531 return gb_operation_sync(connection,
532 GB_SVC_TYPE_TIMESYNC_ENABLE,
533 &request, sizeof(request), NULL, 0);
534}
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100535
536int gb_svc_timesync_disable(struct gb_svc *svc)
537{
538 struct gb_connection *connection = svc->connection;
539
540 return gb_operation_sync(connection,
541 GB_SVC_TYPE_TIMESYNC_DISABLE,
542 NULL, 0, NULL, 0);
543}
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100544
545int gb_svc_timesync_authoritative(struct gb_svc *svc, u64 *frame_time)
546{
547 struct gb_connection *connection = svc->connection;
548 struct gb_svc_timesync_authoritative_response response;
549 int ret, i;
550
551 ret = gb_operation_sync(connection,
552 GB_SVC_TYPE_TIMESYNC_AUTHORITATIVE, NULL, 0,
553 &response, sizeof(response));
554 if (ret < 0)
555 return ret;
556
557 for (i = 0; i < GB_TIMESYNC_MAX_STROBES; i++)
558 frame_time[i] = le64_to_cpu(response.frame_time[i]);
559 return 0;
560}
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100561
562int gb_svc_timesync_ping(struct gb_svc *svc, u64 *frame_time)
563{
564 struct gb_connection *connection = svc->connection;
565 struct gb_svc_timesync_ping_response response;
566 int ret;
567
568 ret = gb_operation_sync(connection,
569 GB_SVC_TYPE_TIMESYNC_PING,
570 NULL, 0,
571 &response, sizeof(response));
572 if (ret < 0)
573 return ret;
574
575 *frame_time = le64_to_cpu(response.frame_time);
576 return 0;
577}
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100578
579int gb_svc_timesync_wake_pins_acquire(struct gb_svc *svc, u32 strobe_mask)
580{
581 struct gb_connection *connection = svc->connection;
582 struct gb_svc_timesync_wake_pins_acquire_request request;
583
584 request.strobe_mask = cpu_to_le32(strobe_mask);
585 return gb_operation_sync(connection,
586 GB_SVC_TYPE_TIMESYNC_WAKE_PINS_ACQUIRE,
587 &request, sizeof(request),
588 NULL, 0);
589}
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100590
591int gb_svc_timesync_wake_pins_release(struct gb_svc *svc)
592{
593 struct gb_connection *connection = svc->connection;
594
595 return gb_operation_sync(connection,
596 GB_SVC_TYPE_TIMESYNC_WAKE_PINS_RELEASE,
597 NULL, 0, NULL, 0);
598}
Bryan O'Donoghue57050202016-05-12 12:43:50 +0100599
Viresh Kumarbb106852015-09-07 16:01:25 +0530600/* Creates bi-directional routes between the devices */
Johan Hovold4d5f6212016-03-29 18:56:04 -0400601int gb_svc_route_create(struct gb_svc *svc, u8 intf1_id, u8 dev1_id,
Viresh Kumar505f16c2015-08-31 17:21:07 +0530602 u8 intf2_id, u8 dev2_id)
Perry Hunge08aaa42015-07-24 19:02:31 -0400603{
604 struct gb_svc_route_create_request request;
605
606 request.intf1_id = intf1_id;
607 request.dev1_id = dev1_id;
608 request.intf2_id = intf2_id;
609 request.dev2_id = dev2_id;
610
611 return gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_CREATE,
612 &request, sizeof(request), NULL, 0);
613}
Perry Hunge08aaa42015-07-24 19:02:31 -0400614
Viresh Kumar0a020572015-09-07 18:05:26 +0530615/* Destroys bi-directional routes between the devices */
Johan Hovold4d5f6212016-03-29 18:56:04 -0400616void gb_svc_route_destroy(struct gb_svc *svc, u8 intf1_id, u8 intf2_id)
Viresh Kumar0a020572015-09-07 18:05:26 +0530617{
618 struct gb_svc_route_destroy_request request;
619 int ret;
620
621 request.intf1_id = intf1_id;
622 request.intf2_id = intf2_id;
623
624 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_DESTROY,
625 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100626 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530627 dev_err(&svc->dev, "failed to destroy route (%u %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100628 intf1_id, intf2_id, ret);
629 }
Viresh Kumar0a020572015-09-07 18:05:26 +0530630}
631
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200632int gb_svc_intf_set_power_mode(struct gb_svc *svc, u8 intf_id, u8 hs_series,
633 u8 tx_mode, u8 tx_gear, u8 tx_nlanes,
Eli Sennesh8c2522d2016-06-03 11:24:44 -0400634 u8 tx_amplitude, u8 tx_hs_equalizer,
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200635 u8 rx_mode, u8 rx_gear, u8 rx_nlanes,
Eli Sennesh8c2522d2016-06-03 11:24:44 -0400636 u8 flags, u32 quirks,
637 struct gb_svc_l2_timer_cfg *local,
638 struct gb_svc_l2_timer_cfg *remote)
Laurent Pinchart784f8762015-12-18 21:23:22 +0200639{
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200640 struct gb_svc_intf_set_pwrm_request request;
641 struct gb_svc_intf_set_pwrm_response response;
642 int ret;
Eli Sennesh8c2522d2016-06-03 11:24:44 -0400643 u16 result_code;
644
645 memset(&request, 0, sizeof(request));
Laurent Pinchart784f8762015-12-18 21:23:22 +0200646
647 request.intf_id = intf_id;
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200648 request.hs_series = hs_series;
649 request.tx_mode = tx_mode;
650 request.tx_gear = tx_gear;
651 request.tx_nlanes = tx_nlanes;
Eli Sennesh8c2522d2016-06-03 11:24:44 -0400652 request.tx_amplitude = tx_amplitude;
653 request.tx_hs_equalizer = tx_hs_equalizer;
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200654 request.rx_mode = rx_mode;
655 request.rx_gear = rx_gear;
656 request.rx_nlanes = rx_nlanes;
Laurent Pinchart784f8762015-12-18 21:23:22 +0200657 request.flags = flags;
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200658 request.quirks = cpu_to_le32(quirks);
Eli Sennesh8c2522d2016-06-03 11:24:44 -0400659 if (local)
660 request.local_l2timerdata = *local;
661 if (remote)
662 request.remote_l2timerdata = *remote;
Laurent Pinchart784f8762015-12-18 21:23:22 +0200663
Laurent Pinchartaab4a1a2016-01-06 16:16:46 +0200664 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_SET_PWRM,
665 &request, sizeof(request),
666 &response, sizeof(response));
667 if (ret < 0)
668 return ret;
669
Eli Sennesh8c2522d2016-06-03 11:24:44 -0400670 result_code = response.result_code;
671 if (result_code != GB_SVC_SETPWRM_PWR_LOCAL) {
672 dev_err(&svc->dev, "set power mode = %d\n", result_code);
673 return -EIO;
674 }
675
676 return 0;
Laurent Pinchart784f8762015-12-18 21:23:22 +0200677}
Greg Kroah-Hartman46bb6472016-08-18 21:30:19 +0200678EXPORT_SYMBOL_GPL(gb_svc_intf_set_power_mode);
Laurent Pinchart784f8762015-12-18 21:23:22 +0200679
David Linc7dc28f2016-07-07 22:07:00 -0500680int gb_svc_intf_set_power_mode_hibernate(struct gb_svc *svc, u8 intf_id)
681{
682 struct gb_svc_intf_set_pwrm_request request;
683 struct gb_svc_intf_set_pwrm_response response;
684 int ret;
685 u16 result_code;
686
687 memset(&request, 0, sizeof(request));
688
689 request.intf_id = intf_id;
690 request.hs_series = GB_SVC_UNIPRO_HS_SERIES_A;
691 request.tx_mode = GB_SVC_UNIPRO_HIBERNATE_MODE;
692 request.rx_mode = GB_SVC_UNIPRO_HIBERNATE_MODE;
693
694 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_SET_PWRM,
695 &request, sizeof(request),
696 &response, sizeof(response));
697 if (ret < 0) {
698 dev_err(&svc->dev,
699 "failed to send set power mode operation to interface %u: %d\n",
700 intf_id, ret);
701 return ret;
702 }
703
704 result_code = response.result_code;
705 if (result_code != GB_SVC_SETPWRM_PWR_OK) {
706 dev_err(&svc->dev,
707 "failed to hibernate the link for interface %u: %u\n",
708 intf_id, result_code);
709 return -EIO;
710 }
711
712 return 0;
713}
714
Greg Kroah-Hartman55ec09e2016-01-19 23:30:42 -0800715int gb_svc_ping(struct gb_svc *svc)
716{
Greg Kroah-Hartman839ac5b2016-01-26 08:57:50 -0800717 return gb_operation_sync_timeout(svc->connection, GB_SVC_TYPE_PING,
718 NULL, 0, NULL, 0,
719 GB_OPERATION_TIMEOUT_DEFAULT * 2);
Greg Kroah-Hartman55ec09e2016-01-19 23:30:42 -0800720}
Greg Kroah-Hartman55ec09e2016-01-19 23:30:42 -0800721
Viresh Kumaread35462015-07-21 17:44:19 +0530722static int gb_svc_version_request(struct gb_operation *op)
723{
724 struct gb_connection *connection = op->connection;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -0400725 struct gb_svc *svc = gb_connection_get_data(connection);
Johan Hovolda2cf2e52016-04-29 17:08:36 +0200726 struct gb_svc_version_request *request;
727 struct gb_svc_version_response *response;
Viresh Kumaread35462015-07-21 17:44:19 +0530728
Johan Hovold55510842015-11-19 18:28:01 +0100729 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100730 dev_err(&svc->dev, "short version request (%zu < %zu)\n",
Johan Hovold55510842015-11-19 18:28:01 +0100731 op->request->payload_size,
732 sizeof(*request));
733 return -EINVAL;
734 }
735
Johan Hovoldcfb16902015-09-15 10:48:01 +0200736 request = op->request->payload;
Viresh Kumaread35462015-07-21 17:44:19 +0530737
Johan Hovoldcfb16902015-09-15 10:48:01 +0200738 if (request->major > GB_SVC_VERSION_MAJOR) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530739 dev_warn(&svc->dev, "unsupported major version (%u > %u)\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100740 request->major, GB_SVC_VERSION_MAJOR);
Viresh Kumaread35462015-07-21 17:44:19 +0530741 return -ENOTSUPP;
742 }
743
Johan Hovold357de002016-01-19 12:51:19 +0100744 svc->protocol_major = request->major;
745 svc->protocol_minor = request->minor;
Viresh Kumar3ea959e32015-08-11 07:36:14 +0530746
Johan Hovold684156a2015-11-25 15:59:19 +0100747 if (!gb_operation_response_alloc(op, sizeof(*response), GFP_KERNEL))
Viresh Kumaread35462015-07-21 17:44:19 +0530748 return -ENOMEM;
Viresh Kumaread35462015-07-21 17:44:19 +0530749
Johan Hovoldcfb16902015-09-15 10:48:01 +0200750 response = op->response->payload;
Johan Hovold357de002016-01-19 12:51:19 +0100751 response->major = svc->protocol_major;
752 response->minor = svc->protocol_minor;
Johan Hovold59832932015-09-15 10:48:00 +0200753
Viresh Kumaread35462015-07-21 17:44:19 +0530754 return 0;
755}
756
David Lin95046772016-04-20 16:55:08 -0700757static ssize_t pwr_debugfs_voltage_read(struct file *file, char __user *buf,
758 size_t len, loff_t *offset)
759{
760 struct svc_debugfs_pwrmon_rail *pwrmon_rails = file->f_inode->i_private;
761 struct gb_svc *svc = pwrmon_rails->svc;
762 int ret, desc;
763 u32 value;
764 char buff[16];
765
766 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
767 GB_SVC_PWRMON_TYPE_VOL, &value);
768 if (ret) {
769 dev_err(&svc->dev,
Johan Hovold89f2df42016-04-21 11:43:36 +0200770 "failed to get voltage sample %u: %d\n",
771 pwrmon_rails->id, ret);
David Lin95046772016-04-20 16:55:08 -0700772 return ret;
773 }
774
775 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
776
777 return simple_read_from_buffer(buf, len, offset, buff, desc);
778}
779
780static ssize_t pwr_debugfs_current_read(struct file *file, char __user *buf,
781 size_t len, loff_t *offset)
782{
783 struct svc_debugfs_pwrmon_rail *pwrmon_rails = file->f_inode->i_private;
784 struct gb_svc *svc = pwrmon_rails->svc;
785 int ret, desc;
786 u32 value;
787 char buff[16];
788
789 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
790 GB_SVC_PWRMON_TYPE_CURR, &value);
791 if (ret) {
792 dev_err(&svc->dev,
Johan Hovold89f2df42016-04-21 11:43:36 +0200793 "failed to get current sample %u: %d\n",
794 pwrmon_rails->id, ret);
David Lin95046772016-04-20 16:55:08 -0700795 return ret;
796 }
797
798 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
799
800 return simple_read_from_buffer(buf, len, offset, buff, desc);
801}
802
803static ssize_t pwr_debugfs_power_read(struct file *file, char __user *buf,
804 size_t len, loff_t *offset)
805{
806 struct svc_debugfs_pwrmon_rail *pwrmon_rails = file->f_inode->i_private;
807 struct gb_svc *svc = pwrmon_rails->svc;
808 int ret, desc;
809 u32 value;
810 char buff[16];
811
812 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
813 GB_SVC_PWRMON_TYPE_PWR, &value);
814 if (ret) {
Johan Hovold89f2df42016-04-21 11:43:36 +0200815 dev_err(&svc->dev, "failed to get power sample %u: %d\n",
816 pwrmon_rails->id, ret);
David Lin95046772016-04-20 16:55:08 -0700817 return ret;
818 }
819
820 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
821
822 return simple_read_from_buffer(buf, len, offset, buff, desc);
823}
824
825static const struct file_operations pwrmon_debugfs_voltage_fops = {
826 .read = pwr_debugfs_voltage_read,
827};
828
829static const struct file_operations pwrmon_debugfs_current_fops = {
830 .read = pwr_debugfs_current_read,
831};
832
833static const struct file_operations pwrmon_debugfs_power_fops = {
834 .read = pwr_debugfs_power_read,
835};
836
Johan Hovold12185192016-04-23 18:47:20 +0200837static void gb_svc_pwrmon_debugfs_init(struct gb_svc *svc)
David Lin95046772016-04-20 16:55:08 -0700838{
839 int i;
840 size_t bufsize;
841 struct dentry *dent;
David Lin3fd747a2016-04-22 19:03:42 -0700842 struct gb_svc_pwrmon_rail_names_get_response *rail_names;
843 u8 rail_count;
David Lin95046772016-04-20 16:55:08 -0700844
845 dent = debugfs_create_dir("pwrmon", svc->debugfs_dentry);
846 if (IS_ERR_OR_NULL(dent))
847 return;
848
David Lin3fd747a2016-04-22 19:03:42 -0700849 if (gb_svc_pwrmon_rail_count_get(svc, &rail_count))
David Lin95046772016-04-20 16:55:08 -0700850 goto err_pwrmon_debugfs;
851
David Lin3fd747a2016-04-22 19:03:42 -0700852 if (!rail_count || rail_count > GB_SVC_PWRMON_MAX_RAIL_COUNT)
David Lin95046772016-04-20 16:55:08 -0700853 goto err_pwrmon_debugfs;
854
David Lin8fb76c32016-06-08 09:39:00 +0200855 bufsize = sizeof(*rail_names) +
856 GB_SVC_PWRMON_RAIL_NAME_BUFSIZE * rail_count;
David Lin95046772016-04-20 16:55:08 -0700857
David Lin3fd747a2016-04-22 19:03:42 -0700858 rail_names = kzalloc(bufsize, GFP_KERNEL);
859 if (!rail_names)
David Lin95046772016-04-20 16:55:08 -0700860 goto err_pwrmon_debugfs;
861
David Lin3fd747a2016-04-22 19:03:42 -0700862 svc->pwrmon_rails = kcalloc(rail_count, sizeof(*svc->pwrmon_rails),
David Lin95046772016-04-20 16:55:08 -0700863 GFP_KERNEL);
864 if (!svc->pwrmon_rails)
865 goto err_pwrmon_debugfs_free;
866
David Lin3fd747a2016-04-22 19:03:42 -0700867 if (gb_svc_pwrmon_rail_names_get(svc, rail_names, bufsize))
David Lin95046772016-04-20 16:55:08 -0700868 goto err_pwrmon_debugfs_free;
869
David Lin3fd747a2016-04-22 19:03:42 -0700870 for (i = 0; i < rail_count; i++) {
David Lin95046772016-04-20 16:55:08 -0700871 struct dentry *dir;
872 struct svc_debugfs_pwrmon_rail *rail = &svc->pwrmon_rails[i];
873 char fname[GB_SVC_PWRMON_RAIL_NAME_BUFSIZE];
874
875 snprintf(fname, sizeof(fname), "%s",
David Lin3fd747a2016-04-22 19:03:42 -0700876 (char *)&rail_names->name[i]);
David Lin95046772016-04-20 16:55:08 -0700877
878 rail->id = i;
879 rail->svc = svc;
880
881 dir = debugfs_create_dir(fname, dent);
882 debugfs_create_file("voltage_now", S_IRUGO, dir, rail,
883 &pwrmon_debugfs_voltage_fops);
884 debugfs_create_file("current_now", S_IRUGO, dir, rail,
885 &pwrmon_debugfs_current_fops);
886 debugfs_create_file("power_now", S_IRUGO, dir, rail,
887 &pwrmon_debugfs_power_fops);
Alex Elder898d75f2016-05-24 13:34:52 -0500888 }
David Lin3fd747a2016-04-22 19:03:42 -0700889
890 kfree(rail_names);
David Lin95046772016-04-20 16:55:08 -0700891 return;
892
893err_pwrmon_debugfs_free:
David Lin3fd747a2016-04-22 19:03:42 -0700894 kfree(rail_names);
David Lin95046772016-04-20 16:55:08 -0700895 kfree(svc->pwrmon_rails);
896 svc->pwrmon_rails = NULL;
897
898err_pwrmon_debugfs:
899 debugfs_remove(dent);
900}
901
Johan Hovold12185192016-04-23 18:47:20 +0200902static void gb_svc_debugfs_init(struct gb_svc *svc)
David Lin95046772016-04-20 16:55:08 -0700903{
904 svc->debugfs_dentry = debugfs_create_dir(dev_name(&svc->dev),
905 gb_debugfs_get());
Johan Hovold12185192016-04-23 18:47:20 +0200906 gb_svc_pwrmon_debugfs_init(svc);
David Lin95046772016-04-20 16:55:08 -0700907}
908
Johan Hovold12185192016-04-23 18:47:20 +0200909static void gb_svc_debugfs_exit(struct gb_svc *svc)
David Lin95046772016-04-20 16:55:08 -0700910{
911 debugfs_remove_recursive(svc->debugfs_dentry);
David Lin9983ea62016-04-22 19:03:43 -0700912 kfree(svc->pwrmon_rails);
913 svc->pwrmon_rails = NULL;
David Lin95046772016-04-20 16:55:08 -0700914}
915
Viresh Kumaread35462015-07-21 17:44:19 +0530916static int gb_svc_hello(struct gb_operation *op)
917{
918 struct gb_connection *connection = op->connection;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -0400919 struct gb_svc *svc = gb_connection_get_data(connection);
Viresh Kumaread35462015-07-21 17:44:19 +0530920 struct gb_svc_hello_request *hello_request;
Viresh Kumaread35462015-07-21 17:44:19 +0530921 int ret;
922
Viresh Kumar0c32d2a2015-08-11 07:29:19 +0530923 if (op->request->payload_size < sizeof(*hello_request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100924 dev_warn(&svc->dev, "short hello request (%zu < %zu)\n",
925 op->request->payload_size,
926 sizeof(*hello_request));
Viresh Kumaread35462015-07-21 17:44:19 +0530927 return -EINVAL;
928 }
929
930 hello_request = op->request->payload;
Johan Hovold66069fb2015-11-25 15:59:09 +0100931 svc->endo_id = le16_to_cpu(hello_request->endo_id);
932 svc->ap_intf_id = hello_request->interface_id;
Viresh Kumaread35462015-07-21 17:44:19 +0530933
Johan Hovold88f7b962015-11-25 15:59:08 +0100934 ret = device_add(&svc->dev);
935 if (ret) {
936 dev_err(&svc->dev, "failed to register svc device: %d\n", ret);
937 return ret;
938 }
939
Greg Kroah-Hartmaned7279a2016-01-20 22:51:49 -0800940 ret = gb_svc_watchdog_create(svc);
941 if (ret) {
942 dev_err(&svc->dev, "failed to create watchdog: %d\n", ret);
Bryan O'Donoghue4a448422016-06-05 14:03:27 +0100943 goto err_unregister_device;
Greg Kroah-Hartmaned7279a2016-01-20 22:51:49 -0800944 }
945
Johan Hovold12185192016-04-23 18:47:20 +0200946 gb_svc_debugfs_init(svc);
David Lin95046772016-04-20 16:55:08 -0700947
Bryan O'Donoghue4a448422016-06-05 14:03:27 +0100948 ret = gb_timesync_svc_add(svc);
949 if (ret) {
950 dev_err(&svc->dev, "failed to add SVC to timesync: %d\n", ret);
951 gb_svc_debugfs_exit(svc);
952 goto err_unregister_device;
953 }
954
Mitchell Tasmanee2f2072016-05-04 17:30:23 -0400955 return gb_svc_queue_deferred_request(op);
Bryan O'Donoghue4a448422016-06-05 14:03:27 +0100956
957err_unregister_device:
958 gb_svc_watchdog_destroy(svc);
Bryan O'Donoghue4a448422016-06-05 14:03:27 +0100959 device_del(&svc->dev);
960 return ret;
Viresh Kumaread35462015-07-21 17:44:19 +0530961}
962
Johan Hovoldb482b0d2016-04-23 18:47:31 +0200963static struct gb_interface *gb_svc_interface_lookup(struct gb_svc *svc,
964 u8 intf_id)
965{
966 struct gb_host_device *hd = svc->hd;
967 struct gb_module *module;
968 size_t num_interfaces;
969 u8 module_id;
970
971 list_for_each_entry(module, &hd->modules, hd_node) {
972 module_id = module->module_id;
973 num_interfaces = module->num_interfaces;
974
975 if (intf_id >= module_id &&
976 intf_id < module_id + num_interfaces) {
977 return module->interfaces[intf_id - module_id];
978 }
979 }
980
981 return NULL;
982}
983
Johan Hovoldb15d97d2016-04-23 18:47:24 +0200984static struct gb_module *gb_svc_module_lookup(struct gb_svc *svc, u8 module_id)
985{
986 struct gb_host_device *hd = svc->hd;
987 struct gb_module *module;
988
989 list_for_each_entry(module, &hd->modules, hd_node) {
990 if (module->module_id == module_id)
991 return module;
992 }
993
994 return NULL;
995}
996
Mitchell Tasmanee2f2072016-05-04 17:30:23 -0400997static void gb_svc_process_hello_deferred(struct gb_operation *operation)
998{
999 struct gb_connection *connection = operation->connection;
1000 struct gb_svc *svc = gb_connection_get_data(connection);
1001 int ret;
1002
1003 /*
1004 * XXX This is a hack/work-around to reconfigure the APBridgeA-Switch
1005 * link to PWM G2, 1 Lane, Slow Auto, so that it has sufficient
1006 * bandwidth for 3 audio streams plus boot-over-UniPro of a hot-plugged
1007 * module.
1008 *
1009 * The code should be removed once SW-2217, Heuristic for UniPro
1010 * Power Mode Changes is resolved.
1011 */
1012 ret = gb_svc_intf_set_power_mode(svc, svc->ap_intf_id,
1013 GB_SVC_UNIPRO_HS_SERIES_A,
1014 GB_SVC_UNIPRO_SLOW_AUTO_MODE,
1015 2, 1,
Eli Sennesh8c2522d2016-06-03 11:24:44 -04001016 GB_SVC_SMALL_AMPLITUDE, GB_SVC_NO_DE_EMPHASIS,
Mitchell Tasmanee2f2072016-05-04 17:30:23 -04001017 GB_SVC_UNIPRO_SLOW_AUTO_MODE,
1018 2, 1,
Eli Sennesh8c2522d2016-06-03 11:24:44 -04001019 0, 0,
1020 NULL, NULL);
Mitchell Tasmanee2f2072016-05-04 17:30:23 -04001021
1022 if (ret)
1023 dev_warn(&svc->dev,
1024 "power mode change failed on AP to switch link: %d\n",
1025 ret);
1026}
1027
Johan Hovold22bb9382016-04-23 18:47:30 +02001028static void gb_svc_process_module_inserted(struct gb_operation *operation)
1029{
1030 struct gb_svc_module_inserted_request *request;
1031 struct gb_connection *connection = operation->connection;
1032 struct gb_svc *svc = gb_connection_get_data(connection);
1033 struct gb_host_device *hd = svc->hd;
1034 struct gb_module *module;
1035 size_t num_interfaces;
1036 u8 module_id;
1037 u16 flags;
1038 int ret;
1039
1040 /* The request message size has already been verified. */
1041 request = operation->request->payload;
1042 module_id = request->primary_intf_id;
1043 num_interfaces = request->intf_count;
1044 flags = le16_to_cpu(request->flags);
1045
1046 dev_dbg(&svc->dev, "%s - id = %u, num_interfaces = %zu, flags = 0x%04x\n",
1047 __func__, module_id, num_interfaces, flags);
1048
1049 if (flags & GB_SVC_MODULE_INSERTED_FLAG_NO_PRIMARY) {
1050 dev_warn(&svc->dev, "no primary interface detected on module %u\n",
1051 module_id);
1052 }
1053
1054 module = gb_svc_module_lookup(svc, module_id);
1055 if (module) {
1056 dev_warn(&svc->dev, "unexpected module-inserted event %u\n",
1057 module_id);
1058 return;
1059 }
1060
1061 module = gb_module_create(hd, module_id, num_interfaces);
1062 if (!module) {
1063 dev_err(&svc->dev, "failed to create module\n");
1064 return;
1065 }
1066
1067 ret = gb_module_add(module);
1068 if (ret) {
1069 gb_module_put(module);
1070 return;
1071 }
1072
1073 list_add(&module->hd_node, &hd->modules);
1074}
1075
1076static void gb_svc_process_module_removed(struct gb_operation *operation)
1077{
1078 struct gb_svc_module_removed_request *request;
1079 struct gb_connection *connection = operation->connection;
1080 struct gb_svc *svc = gb_connection_get_data(connection);
1081 struct gb_module *module;
1082 u8 module_id;
1083
1084 /* The request message size has already been verified. */
1085 request = operation->request->payload;
1086 module_id = request->primary_intf_id;
1087
1088 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, module_id);
1089
1090 module = gb_svc_module_lookup(svc, module_id);
1091 if (!module) {
1092 dev_warn(&svc->dev, "unexpected module-removed event %u\n",
1093 module_id);
1094 return;
1095 }
1096
1097 module->disconnected = true;
1098
1099 gb_module_del(module);
1100 list_del(&module->hd_node);
1101 gb_module_put(module);
1102}
1103
Georgi Dobrev57fa2de2016-08-09 14:37:32 -07001104static void gb_svc_process_intf_oops(struct gb_operation *operation)
1105{
1106 struct gb_svc_intf_oops_request *request;
1107 struct gb_connection *connection = operation->connection;
1108 struct gb_svc *svc = gb_connection_get_data(connection);
1109 struct gb_interface *intf;
1110 u8 intf_id;
1111 u8 reason;
1112
1113 /* The request message size has already been verified. */
1114 request = operation->request->payload;
1115 intf_id = request->intf_id;
1116 reason = request->reason;
1117
1118 intf = gb_svc_interface_lookup(svc, intf_id);
1119 if (!intf) {
1120 dev_warn(&svc->dev, "unexpected interface-oops event %u\n",
1121 intf_id);
1122 return;
1123 }
1124
1125 dev_info(&svc->dev, "Deactivating interface %u, interface oops reason = %u\n",
1126 intf_id, reason);
1127
1128 mutex_lock(&intf->mutex);
1129 intf->disconnected = true;
1130 gb_interface_disable(intf);
1131 gb_interface_deactivate(intf);
1132 mutex_unlock(&intf->mutex);
1133}
1134
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001135static void gb_svc_process_intf_mailbox_event(struct gb_operation *operation)
1136{
1137 struct gb_svc_intf_mailbox_event_request *request;
1138 struct gb_connection *connection = operation->connection;
1139 struct gb_svc *svc = gb_connection_get_data(connection);
1140 struct gb_interface *intf;
1141 u8 intf_id;
1142 u16 result_code;
1143 u32 mailbox;
1144
1145 /* The request message size has already been verified. */
1146 request = operation->request->payload;
1147 intf_id = request->intf_id;
1148 result_code = le16_to_cpu(request->result_code);
1149 mailbox = le32_to_cpu(request->mailbox);
1150
1151 dev_dbg(&svc->dev, "%s - id = %u, result = 0x%04x, mailbox = 0x%08x\n",
1152 __func__, intf_id, result_code, mailbox);
1153
1154 intf = gb_svc_interface_lookup(svc, intf_id);
1155 if (!intf) {
1156 dev_warn(&svc->dev, "unexpected mailbox event %u\n", intf_id);
1157 return;
1158 }
1159
Johan Hovold55742d22016-05-27 17:26:40 +02001160 gb_interface_mailbox_event(intf, result_code, mailbox);
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001161}
1162
Johan Hovold9ae41092015-12-02 18:23:29 +01001163static void gb_svc_process_deferred_request(struct work_struct *work)
1164{
1165 struct gb_svc_deferred_request *dr;
1166 struct gb_operation *operation;
1167 struct gb_svc *svc;
1168 u8 type;
1169
1170 dr = container_of(work, struct gb_svc_deferred_request, work);
1171 operation = dr->operation;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001172 svc = gb_connection_get_data(operation->connection);
Johan Hovold9ae41092015-12-02 18:23:29 +01001173 type = operation->request->header->type;
1174
1175 switch (type) {
Mitchell Tasmanee2f2072016-05-04 17:30:23 -04001176 case GB_SVC_TYPE_SVC_HELLO:
1177 gb_svc_process_hello_deferred(operation);
1178 break;
Johan Hovold22bb9382016-04-23 18:47:30 +02001179 case GB_SVC_TYPE_MODULE_INSERTED:
1180 gb_svc_process_module_inserted(operation);
1181 break;
1182 case GB_SVC_TYPE_MODULE_REMOVED:
1183 gb_svc_process_module_removed(operation);
1184 break;
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001185 case GB_SVC_TYPE_INTF_MAILBOX_EVENT:
1186 gb_svc_process_intf_mailbox_event(operation);
1187 break;
Georgi Dobrev57fa2de2016-08-09 14:37:32 -07001188 case GB_SVC_TYPE_INTF_OOPS:
1189 gb_svc_process_intf_oops(operation);
1190 break;
Johan Hovold9ae41092015-12-02 18:23:29 +01001191 default:
Viresh Kumarb933fa42015-12-04 21:30:10 +05301192 dev_err(&svc->dev, "bad deferred request type: 0x%02x\n", type);
Johan Hovold9ae41092015-12-02 18:23:29 +01001193 }
1194
1195 gb_operation_put(operation);
1196 kfree(dr);
1197}
1198
1199static int gb_svc_queue_deferred_request(struct gb_operation *operation)
1200{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001201 struct gb_svc *svc = gb_connection_get_data(operation->connection);
Johan Hovold9ae41092015-12-02 18:23:29 +01001202 struct gb_svc_deferred_request *dr;
1203
1204 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1205 if (!dr)
1206 return -ENOMEM;
1207
1208 gb_operation_get(operation);
1209
1210 dr->operation = operation;
1211 INIT_WORK(&dr->work, gb_svc_process_deferred_request);
1212
Johan Hovold3e48aca2015-12-02 18:23:31 +01001213 queue_work(svc->wq, &dr->work);
Johan Hovold9ae41092015-12-02 18:23:29 +01001214
1215 return 0;
Viresh Kumar067906f2015-08-06 12:44:55 +05301216}
Viresh Kumaread35462015-07-21 17:44:19 +05301217
Alex Elder30c6d9d2015-05-22 13:02:08 -05001218static int gb_svc_intf_reset_recv(struct gb_operation *op)
1219{
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001220 struct gb_svc *svc = gb_connection_get_data(op->connection);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001221 struct gb_message *request = op->request;
1222 struct gb_svc_intf_reset_request *reset;
1223 u8 intf_id;
1224
1225 if (request->payload_size < sizeof(*reset)) {
Johan Hovold684156a2015-11-25 15:59:19 +01001226 dev_warn(&svc->dev, "short reset request received (%zu < %zu)\n",
1227 request->payload_size, sizeof(*reset));
Alex Elder30c6d9d2015-05-22 13:02:08 -05001228 return -EINVAL;
1229 }
1230 reset = request->payload;
1231
1232 intf_id = reset->intf_id;
1233
1234 /* FIXME Reset the interface here */
1235
1236 return 0;
1237}
1238
Johan Hovold22bb9382016-04-23 18:47:30 +02001239static int gb_svc_module_inserted_recv(struct gb_operation *op)
1240{
1241 struct gb_svc *svc = gb_connection_get_data(op->connection);
1242 struct gb_svc_module_inserted_request *request;
1243
1244 if (op->request->payload_size < sizeof(*request)) {
1245 dev_warn(&svc->dev, "short module-inserted request received (%zu < %zu)\n",
1246 op->request->payload_size, sizeof(*request));
1247 return -EINVAL;
1248 }
1249
1250 request = op->request->payload;
1251
1252 dev_dbg(&svc->dev, "%s - id = %u\n", __func__,
1253 request->primary_intf_id);
1254
1255 return gb_svc_queue_deferred_request(op);
1256}
1257
1258static int gb_svc_module_removed_recv(struct gb_operation *op)
1259{
1260 struct gb_svc *svc = gb_connection_get_data(op->connection);
1261 struct gb_svc_module_removed_request *request;
1262
1263 if (op->request->payload_size < sizeof(*request)) {
1264 dev_warn(&svc->dev, "short module-removed request received (%zu < %zu)\n",
1265 op->request->payload_size, sizeof(*request));
1266 return -EINVAL;
1267 }
1268
1269 request = op->request->payload;
1270
1271 dev_dbg(&svc->dev, "%s - id = %u\n", __func__,
1272 request->primary_intf_id);
1273
1274 return gb_svc_queue_deferred_request(op);
1275}
1276
Georgi Dobrev57fa2de2016-08-09 14:37:32 -07001277static int gb_svc_intf_oops_recv(struct gb_operation *op)
1278{
1279 struct gb_svc *svc = gb_connection_get_data(op->connection);
1280 struct gb_svc_intf_oops_request *request;
1281
1282 if (op->request->payload_size < sizeof(*request)) {
1283 dev_warn(&svc->dev, "short intf-oops request received (%zu < %zu)\n",
1284 op->request->payload_size, sizeof(*request));
1285 return -EINVAL;
1286 }
1287
1288 return gb_svc_queue_deferred_request(op);
1289}
1290
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001291static int gb_svc_intf_mailbox_event_recv(struct gb_operation *op)
1292{
1293 struct gb_svc *svc = gb_connection_get_data(op->connection);
1294 struct gb_svc_intf_mailbox_event_request *request;
1295
1296 if (op->request->payload_size < sizeof(*request)) {
1297 dev_warn(&svc->dev, "short mailbox request received (%zu < %zu)\n",
1298 op->request->payload_size, sizeof(*request));
1299 return -EINVAL;
1300 }
1301
1302 request = op->request->payload;
1303
1304 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, request->intf_id);
1305
1306 return gb_svc_queue_deferred_request(op);
1307}
1308
Johan Hovold84427942016-01-19 12:51:15 +01001309static int gb_svc_request_handler(struct gb_operation *op)
Alex Elder30c6d9d2015-05-22 13:02:08 -05001310{
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301311 struct gb_connection *connection = op->connection;
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001312 struct gb_svc *svc = gb_connection_get_data(connection);
Johan Hovold84427942016-01-19 12:51:15 +01001313 u8 type = op->type;
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301314 int ret = 0;
1315
1316 /*
1317 * SVC requests need to follow a specific order (at least initially) and
1318 * below code takes care of enforcing that. The expected order is:
1319 * - PROTOCOL_VERSION
1320 * - SVC_HELLO
1321 * - Any other request, but the earlier two.
1322 *
1323 * Incoming requests are guaranteed to be serialized and so we don't
1324 * need to protect 'state' for any races.
1325 */
Alex Elder30c6d9d2015-05-22 13:02:08 -05001326 switch (type) {
Johan Hovolda2cf2e52016-04-29 17:08:36 +02001327 case GB_SVC_TYPE_PROTOCOL_VERSION:
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301328 if (svc->state != GB_SVC_STATE_RESET)
1329 ret = -EINVAL;
1330 break;
Viresh Kumaread35462015-07-21 17:44:19 +05301331 case GB_SVC_TYPE_SVC_HELLO:
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301332 if (svc->state != GB_SVC_STATE_PROTOCOL_VERSION)
1333 ret = -EINVAL;
1334 break;
1335 default:
1336 if (svc->state != GB_SVC_STATE_SVC_HELLO)
1337 ret = -EINVAL;
1338 break;
1339 }
1340
1341 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +01001342 dev_warn(&svc->dev, "unexpected request 0x%02x received (state %u)\n",
1343 type, svc->state);
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301344 return ret;
1345 }
1346
1347 switch (type) {
Johan Hovolda2cf2e52016-04-29 17:08:36 +02001348 case GB_SVC_TYPE_PROTOCOL_VERSION:
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301349 ret = gb_svc_version_request(op);
1350 if (!ret)
1351 svc->state = GB_SVC_STATE_PROTOCOL_VERSION;
1352 return ret;
1353 case GB_SVC_TYPE_SVC_HELLO:
1354 ret = gb_svc_hello(op);
1355 if (!ret)
1356 svc->state = GB_SVC_STATE_SVC_HELLO;
1357 return ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -05001358 case GB_SVC_TYPE_INTF_RESET:
1359 return gb_svc_intf_reset_recv(op);
Johan Hovold22bb9382016-04-23 18:47:30 +02001360 case GB_SVC_TYPE_MODULE_INSERTED:
1361 return gb_svc_module_inserted_recv(op);
1362 case GB_SVC_TYPE_MODULE_REMOVED:
1363 return gb_svc_module_removed_recv(op);
Johan Hovoldb482b0d2016-04-23 18:47:31 +02001364 case GB_SVC_TYPE_INTF_MAILBOX_EVENT:
1365 return gb_svc_intf_mailbox_event_recv(op);
Georgi Dobrev57fa2de2016-08-09 14:37:32 -07001366 case GB_SVC_TYPE_INTF_OOPS:
1367 return gb_svc_intf_oops_recv(op);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001368 default:
Johan Hovold684156a2015-11-25 15:59:19 +01001369 dev_warn(&svc->dev, "unsupported request 0x%02x\n", type);
Alex Elder30c6d9d2015-05-22 13:02:08 -05001370 return -EINVAL;
1371 }
1372}
1373
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001374static void gb_svc_release(struct device *dev)
1375{
Johan Hovold88f7b962015-11-25 15:59:08 +01001376 struct gb_svc *svc = to_gb_svc(dev);
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001377
Johan Hovold7adeaae72015-12-07 15:05:37 +01001378 if (svc->connection)
1379 gb_connection_destroy(svc->connection);
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001380 ida_destroy(&svc->device_id_map);
Johan Hovold3e48aca2015-12-02 18:23:31 +01001381 destroy_workqueue(svc->wq);
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001382 kfree(svc);
1383}
1384
1385struct device_type greybus_svc_type = {
1386 .name = "greybus_svc",
1387 .release = gb_svc_release,
1388};
1389
Johan Hovold7adeaae72015-12-07 15:05:37 +01001390struct gb_svc *gb_svc_create(struct gb_host_device *hd)
Alex Elder30c6d9d2015-05-22 13:02:08 -05001391{
1392 struct gb_svc *svc;
Alex Elder30c6d9d2015-05-22 13:02:08 -05001393
1394 svc = kzalloc(sizeof(*svc), GFP_KERNEL);
1395 if (!svc)
Johan Hovold7adeaae72015-12-07 15:05:37 +01001396 return NULL;
Alex Elder30c6d9d2015-05-22 13:02:08 -05001397
Johan Hovold3e48aca2015-12-02 18:23:31 +01001398 svc->wq = alloc_workqueue("%s:svc", WQ_UNBOUND, 1, dev_name(&hd->dev));
1399 if (!svc->wq) {
1400 kfree(svc);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001401 return NULL;
Johan Hovold3e48aca2015-12-02 18:23:31 +01001402 }
1403
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001404 svc->dev.parent = &hd->dev;
1405 svc->dev.bus = &greybus_bus_type;
1406 svc->dev.type = &greybus_svc_type;
Johan Hovold66069fb2015-11-25 15:59:09 +01001407 svc->dev.groups = svc_groups;
Johan Hovoldefe6ef72015-11-25 15:59:06 +01001408 svc->dev.dma_mask = svc->dev.parent->dma_mask;
1409 device_initialize(&svc->dev);
1410
1411 dev_set_name(&svc->dev, "%d-svc", hd->bus_id);
1412
Johan Hovold6106e512015-11-25 15:59:07 +01001413 ida_init(&svc->device_id_map);
Viresh Kumar3ccb1602015-09-03 15:42:22 +05301414 svc->state = GB_SVC_STATE_RESET;
Johan Hovoldf0960d02015-12-03 19:18:02 +01001415 svc->hd = hd;
Viresh Kumard3d44842015-07-21 17:44:18 +05301416
Johan Hovoldf7ee0812016-01-21 17:34:21 +01001417 svc->connection = gb_connection_create_static(hd, GB_SVC_CPORT_ID,
1418 gb_svc_request_handler);
Johan Hovold24e094d2016-01-21 17:34:16 +01001419 if (IS_ERR(svc->connection)) {
1420 dev_err(&svc->dev, "failed to create connection: %ld\n",
1421 PTR_ERR(svc->connection));
Sandeep Patil1beb1fa2016-06-28 12:10:14 -07001422 goto err_put_device;
Johan Hovold7adeaae72015-12-07 15:05:37 +01001423 }
1424
Greg Kroah-Hartman0ec30632016-03-22 14:30:35 -04001425 gb_connection_set_data(svc->connection, svc);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001426
1427 return svc;
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001428
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001429err_put_device:
1430 put_device(&svc->dev);
1431 return NULL;
Johan Hovold7adeaae72015-12-07 15:05:37 +01001432}
1433
1434int gb_svc_add(struct gb_svc *svc)
1435{
1436 int ret;
1437
1438 /*
1439 * The SVC protocol is currently driven by the SVC, so the SVC device
1440 * is added from the connection request handler when enough
1441 * information has been received.
1442 */
Johan Hovoldf7ee0812016-01-21 17:34:21 +01001443 ret = gb_connection_enable(svc->connection);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001444 if (ret)
1445 return ret;
1446
1447 return 0;
1448}
1449
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001450static void gb_svc_remove_modules(struct gb_svc *svc)
Johan Hovold66d674c2016-03-09 12:20:41 +01001451{
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001452 struct gb_host_device *hd = svc->hd;
1453 struct gb_module *module, *tmp;
Johan Hovold66d674c2016-03-09 12:20:41 +01001454
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001455 list_for_each_entry_safe(module, tmp, &hd->modules, hd_node) {
1456 gb_module_del(module);
1457 list_del(&module->hd_node);
1458 gb_module_put(module);
Johan Hovold629c0d02016-03-09 12:20:43 +01001459 }
Johan Hovold66d674c2016-03-09 12:20:41 +01001460}
1461
Johan Hovold7adeaae72015-12-07 15:05:37 +01001462void gb_svc_del(struct gb_svc *svc)
1463{
Viresh Kumard1a8c362016-06-13 21:48:28 +05301464 gb_connection_disable_rx(svc->connection);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001465
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001466 /*
Sandeep Patil1beb1fa2016-06-28 12:10:14 -07001467 * The SVC device may have been registered from the request handler.
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001468 */
1469 if (device_is_registered(&svc->dev)) {
Bryan O'Donoghue4a448422016-06-05 14:03:27 +01001470 gb_timesync_svc_remove(svc);
Johan Hovold12185192016-04-23 18:47:20 +02001471 gb_svc_debugfs_exit(svc);
Greg Kroah-Hartmaned7279a2016-01-20 22:51:49 -08001472 gb_svc_watchdog_destroy(svc);
Rui Miguel Silvaebe99d62016-01-21 01:42:17 +00001473 device_del(&svc->dev);
1474 }
1475
Johan Hovold7adeaae72015-12-07 15:05:37 +01001476 flush_workqueue(svc->wq);
Johan Hovold66d674c2016-03-09 12:20:41 +01001477
Johan Hovoldb15d97d2016-04-23 18:47:24 +02001478 gb_svc_remove_modules(svc);
Viresh Kumard1a8c362016-06-13 21:48:28 +05301479
1480 gb_connection_disable(svc->connection);
Johan Hovold7adeaae72015-12-07 15:05:37 +01001481}
1482
1483void gb_svc_put(struct gb_svc *svc)
1484{
1485 put_device(&svc->dev);
1486}