Linux 4.16.11
[linux/fpc-iii.git] / drivers / staging / greybus / svc.c
bloba874fed761a1dc199f87e540f3a9bc90ae3beb11
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * SVC Greybus driver.
5 * Copyright 2015 Google Inc.
6 * Copyright 2015 Linaro Ltd.
7 */
9 #include <linux/debugfs.h>
10 #include <linux/workqueue.h>
12 #include "greybus.h"
14 #define SVC_INTF_EJECT_TIMEOUT 9000
15 #define SVC_INTF_ACTIVATE_TIMEOUT 6000
16 #define SVC_INTF_RESUME_TIMEOUT 3000
18 struct gb_svc_deferred_request {
19 struct work_struct work;
20 struct gb_operation *operation;
24 static int gb_svc_queue_deferred_request(struct gb_operation *operation);
26 static ssize_t endo_id_show(struct device *dev,
27 struct device_attribute *attr, char *buf)
29 struct gb_svc *svc = to_gb_svc(dev);
31 return sprintf(buf, "0x%04x\n", svc->endo_id);
33 static DEVICE_ATTR_RO(endo_id);
35 static ssize_t ap_intf_id_show(struct device *dev,
36 struct device_attribute *attr, char *buf)
38 struct gb_svc *svc = to_gb_svc(dev);
40 return sprintf(buf, "%u\n", svc->ap_intf_id);
42 static DEVICE_ATTR_RO(ap_intf_id);
44 // FIXME
45 // This is a hack, we need to do this "right" and clean the interface up
46 // properly, not just forcibly yank the thing out of the system and hope for the
47 // best. But for now, people want their modules to come out without having to
48 // throw the thing to the ground or get out a screwdriver.
49 static ssize_t intf_eject_store(struct device *dev,
50 struct device_attribute *attr, const char *buf,
51 size_t len)
53 struct gb_svc *svc = to_gb_svc(dev);
54 unsigned short intf_id;
55 int ret;
57 ret = kstrtou16(buf, 10, &intf_id);
58 if (ret < 0)
59 return ret;
61 dev_warn(dev, "Forcibly trying to eject interface %d\n", intf_id);
63 ret = gb_svc_intf_eject(svc, intf_id);
64 if (ret < 0)
65 return ret;
67 return len;
69 static DEVICE_ATTR_WO(intf_eject);
71 static ssize_t watchdog_show(struct device *dev, struct device_attribute *attr,
72 char *buf)
74 struct gb_svc *svc = to_gb_svc(dev);
76 return sprintf(buf, "%s\n",
77 gb_svc_watchdog_enabled(svc) ? "enabled" : "disabled");
80 static ssize_t watchdog_store(struct device *dev,
81 struct device_attribute *attr, const char *buf,
82 size_t len)
84 struct gb_svc *svc = to_gb_svc(dev);
85 int retval;
86 bool user_request;
88 retval = strtobool(buf, &user_request);
89 if (retval)
90 return retval;
92 if (user_request)
93 retval = gb_svc_watchdog_enable(svc);
94 else
95 retval = gb_svc_watchdog_disable(svc);
96 if (retval)
97 return retval;
98 return len;
100 static DEVICE_ATTR_RW(watchdog);
102 static ssize_t watchdog_action_show(struct device *dev,
103 struct device_attribute *attr, char *buf)
105 struct gb_svc *svc = to_gb_svc(dev);
107 if (svc->action == GB_SVC_WATCHDOG_BITE_PANIC_KERNEL)
108 return sprintf(buf, "panic\n");
109 else if (svc->action == GB_SVC_WATCHDOG_BITE_RESET_UNIPRO)
110 return sprintf(buf, "reset\n");
112 return -EINVAL;
115 static ssize_t watchdog_action_store(struct device *dev,
116 struct device_attribute *attr,
117 const char *buf, size_t len)
119 struct gb_svc *svc = to_gb_svc(dev);
121 if (sysfs_streq(buf, "panic"))
122 svc->action = GB_SVC_WATCHDOG_BITE_PANIC_KERNEL;
123 else if (sysfs_streq(buf, "reset"))
124 svc->action = GB_SVC_WATCHDOG_BITE_RESET_UNIPRO;
125 else
126 return -EINVAL;
128 return len;
130 static DEVICE_ATTR_RW(watchdog_action);
132 static int gb_svc_pwrmon_rail_count_get(struct gb_svc *svc, u8 *value)
134 struct gb_svc_pwrmon_rail_count_get_response response;
135 int ret;
137 ret = gb_operation_sync(svc->connection,
138 GB_SVC_TYPE_PWRMON_RAIL_COUNT_GET, NULL, 0,
139 &response, sizeof(response));
140 if (ret) {
141 dev_err(&svc->dev, "failed to get rail count: %d\n", ret);
142 return ret;
145 *value = response.rail_count;
147 return 0;
150 static int gb_svc_pwrmon_rail_names_get(struct gb_svc *svc,
151 struct gb_svc_pwrmon_rail_names_get_response *response,
152 size_t bufsize)
154 int ret;
156 ret = gb_operation_sync(svc->connection,
157 GB_SVC_TYPE_PWRMON_RAIL_NAMES_GET, NULL, 0,
158 response, bufsize);
159 if (ret) {
160 dev_err(&svc->dev, "failed to get rail names: %d\n", ret);
161 return ret;
164 if (response->status != GB_SVC_OP_SUCCESS) {
165 dev_err(&svc->dev,
166 "SVC error while getting rail names: %u\n",
167 response->status);
168 return -EREMOTEIO;
171 return 0;
174 static int gb_svc_pwrmon_sample_get(struct gb_svc *svc, u8 rail_id,
175 u8 measurement_type, u32 *value)
177 struct gb_svc_pwrmon_sample_get_request request;
178 struct gb_svc_pwrmon_sample_get_response response;
179 int ret;
181 request.rail_id = rail_id;
182 request.measurement_type = measurement_type;
184 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_PWRMON_SAMPLE_GET,
185 &request, sizeof(request),
186 &response, sizeof(response));
187 if (ret) {
188 dev_err(&svc->dev, "failed to get rail sample: %d\n", ret);
189 return ret;
192 if (response.result) {
193 dev_err(&svc->dev,
194 "UniPro error while getting rail power sample (%d %d): %d\n",
195 rail_id, measurement_type, response.result);
196 switch (response.result) {
197 case GB_SVC_PWRMON_GET_SAMPLE_INVAL:
198 return -EINVAL;
199 case GB_SVC_PWRMON_GET_SAMPLE_NOSUPP:
200 return -ENOMSG;
201 default:
202 return -EREMOTEIO;
206 *value = le32_to_cpu(response.measurement);
208 return 0;
211 int gb_svc_pwrmon_intf_sample_get(struct gb_svc *svc, u8 intf_id,
212 u8 measurement_type, u32 *value)
214 struct gb_svc_pwrmon_intf_sample_get_request request;
215 struct gb_svc_pwrmon_intf_sample_get_response response;
216 int ret;
218 request.intf_id = intf_id;
219 request.measurement_type = measurement_type;
221 ret = gb_operation_sync(svc->connection,
222 GB_SVC_TYPE_PWRMON_INTF_SAMPLE_GET,
223 &request, sizeof(request),
224 &response, sizeof(response));
225 if (ret) {
226 dev_err(&svc->dev, "failed to get intf sample: %d\n", ret);
227 return ret;
230 if (response.result) {
231 dev_err(&svc->dev,
232 "UniPro error while getting intf power sample (%d %d): %d\n",
233 intf_id, measurement_type, response.result);
234 switch (response.result) {
235 case GB_SVC_PWRMON_GET_SAMPLE_INVAL:
236 return -EINVAL;
237 case GB_SVC_PWRMON_GET_SAMPLE_NOSUPP:
238 return -ENOMSG;
239 default:
240 return -EREMOTEIO;
244 *value = le32_to_cpu(response.measurement);
246 return 0;
249 static struct attribute *svc_attrs[] = {
250 &dev_attr_endo_id.attr,
251 &dev_attr_ap_intf_id.attr,
252 &dev_attr_intf_eject.attr,
253 &dev_attr_watchdog.attr,
254 &dev_attr_watchdog_action.attr,
255 NULL,
257 ATTRIBUTE_GROUPS(svc);
259 int gb_svc_intf_device_id(struct gb_svc *svc, u8 intf_id, u8 device_id)
261 struct gb_svc_intf_device_id_request request;
263 request.intf_id = intf_id;
264 request.device_id = device_id;
266 return gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_DEVICE_ID,
267 &request, sizeof(request), NULL, 0);
270 int gb_svc_intf_eject(struct gb_svc *svc, u8 intf_id)
272 struct gb_svc_intf_eject_request request;
273 int ret;
275 request.intf_id = intf_id;
278 * The pulse width for module release in svc is long so we need to
279 * increase the timeout so the operation will not return to soon.
281 ret = gb_operation_sync_timeout(svc->connection,
282 GB_SVC_TYPE_INTF_EJECT, &request,
283 sizeof(request), NULL, 0,
284 SVC_INTF_EJECT_TIMEOUT);
285 if (ret) {
286 dev_err(&svc->dev, "failed to eject interface %u\n", intf_id);
287 return ret;
290 return 0;
293 int gb_svc_intf_vsys_set(struct gb_svc *svc, u8 intf_id, bool enable)
295 struct gb_svc_intf_vsys_request request;
296 struct gb_svc_intf_vsys_response response;
297 int type, ret;
299 request.intf_id = intf_id;
301 if (enable)
302 type = GB_SVC_TYPE_INTF_VSYS_ENABLE;
303 else
304 type = GB_SVC_TYPE_INTF_VSYS_DISABLE;
306 ret = gb_operation_sync(svc->connection, type,
307 &request, sizeof(request),
308 &response, sizeof(response));
309 if (ret < 0)
310 return ret;
311 if (response.result_code != GB_SVC_INTF_VSYS_OK)
312 return -EREMOTEIO;
313 return 0;
316 int gb_svc_intf_refclk_set(struct gb_svc *svc, u8 intf_id, bool enable)
318 struct gb_svc_intf_refclk_request request;
319 struct gb_svc_intf_refclk_response response;
320 int type, ret;
322 request.intf_id = intf_id;
324 if (enable)
325 type = GB_SVC_TYPE_INTF_REFCLK_ENABLE;
326 else
327 type = GB_SVC_TYPE_INTF_REFCLK_DISABLE;
329 ret = gb_operation_sync(svc->connection, type,
330 &request, sizeof(request),
331 &response, sizeof(response));
332 if (ret < 0)
333 return ret;
334 if (response.result_code != GB_SVC_INTF_REFCLK_OK)
335 return -EREMOTEIO;
336 return 0;
339 int gb_svc_intf_unipro_set(struct gb_svc *svc, u8 intf_id, bool enable)
341 struct gb_svc_intf_unipro_request request;
342 struct gb_svc_intf_unipro_response response;
343 int type, ret;
345 request.intf_id = intf_id;
347 if (enable)
348 type = GB_SVC_TYPE_INTF_UNIPRO_ENABLE;
349 else
350 type = GB_SVC_TYPE_INTF_UNIPRO_DISABLE;
352 ret = gb_operation_sync(svc->connection, type,
353 &request, sizeof(request),
354 &response, sizeof(response));
355 if (ret < 0)
356 return ret;
357 if (response.result_code != GB_SVC_INTF_UNIPRO_OK)
358 return -EREMOTEIO;
359 return 0;
362 int gb_svc_intf_activate(struct gb_svc *svc, u8 intf_id, u8 *intf_type)
364 struct gb_svc_intf_activate_request request;
365 struct gb_svc_intf_activate_response response;
366 int ret;
368 request.intf_id = intf_id;
370 ret = gb_operation_sync_timeout(svc->connection,
371 GB_SVC_TYPE_INTF_ACTIVATE,
372 &request, sizeof(request),
373 &response, sizeof(response),
374 SVC_INTF_ACTIVATE_TIMEOUT);
375 if (ret < 0)
376 return ret;
377 if (response.status != GB_SVC_OP_SUCCESS) {
378 dev_err(&svc->dev, "failed to activate interface %u: %u\n",
379 intf_id, response.status);
380 return -EREMOTEIO;
383 *intf_type = response.intf_type;
385 return 0;
388 int gb_svc_intf_resume(struct gb_svc *svc, u8 intf_id)
390 struct gb_svc_intf_resume_request request;
391 struct gb_svc_intf_resume_response response;
392 int ret;
394 request.intf_id = intf_id;
396 ret = gb_operation_sync_timeout(svc->connection,
397 GB_SVC_TYPE_INTF_RESUME,
398 &request, sizeof(request),
399 &response, sizeof(response),
400 SVC_INTF_RESUME_TIMEOUT);
401 if (ret < 0) {
402 dev_err(&svc->dev, "failed to send interface resume %u: %d\n",
403 intf_id, ret);
404 return ret;
407 if (response.status != GB_SVC_OP_SUCCESS) {
408 dev_err(&svc->dev, "failed to resume interface %u: %u\n",
409 intf_id, response.status);
410 return -EREMOTEIO;
413 return 0;
416 int gb_svc_dme_peer_get(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
417 u32 *value)
419 struct gb_svc_dme_peer_get_request request;
420 struct gb_svc_dme_peer_get_response response;
421 u16 result;
422 int ret;
424 request.intf_id = intf_id;
425 request.attr = cpu_to_le16(attr);
426 request.selector = cpu_to_le16(selector);
428 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_GET,
429 &request, sizeof(request),
430 &response, sizeof(response));
431 if (ret) {
432 dev_err(&svc->dev, "failed to get DME attribute (%u 0x%04x %u): %d\n",
433 intf_id, attr, selector, ret);
434 return ret;
437 result = le16_to_cpu(response.result_code);
438 if (result) {
439 dev_err(&svc->dev, "UniPro error while getting DME attribute (%u 0x%04x %u): %u\n",
440 intf_id, attr, selector, result);
441 return -EREMOTEIO;
444 if (value)
445 *value = le32_to_cpu(response.attr_value);
447 return 0;
450 int gb_svc_dme_peer_set(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
451 u32 value)
453 struct gb_svc_dme_peer_set_request request;
454 struct gb_svc_dme_peer_set_response response;
455 u16 result;
456 int ret;
458 request.intf_id = intf_id;
459 request.attr = cpu_to_le16(attr);
460 request.selector = cpu_to_le16(selector);
461 request.value = cpu_to_le32(value);
463 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_SET,
464 &request, sizeof(request),
465 &response, sizeof(response));
466 if (ret) {
467 dev_err(&svc->dev, "failed to set DME attribute (%u 0x%04x %u %u): %d\n",
468 intf_id, attr, selector, value, ret);
469 return ret;
472 result = le16_to_cpu(response.result_code);
473 if (result) {
474 dev_err(&svc->dev, "UniPro error while setting DME attribute (%u 0x%04x %u %u): %u\n",
475 intf_id, attr, selector, value, result);
476 return -EREMOTEIO;
479 return 0;
482 int gb_svc_connection_create(struct gb_svc *svc,
483 u8 intf1_id, u16 cport1_id,
484 u8 intf2_id, u16 cport2_id,
485 u8 cport_flags)
487 struct gb_svc_conn_create_request request;
489 request.intf1_id = intf1_id;
490 request.cport1_id = cpu_to_le16(cport1_id);
491 request.intf2_id = intf2_id;
492 request.cport2_id = cpu_to_le16(cport2_id);
493 request.tc = 0; /* TC0 */
494 request.flags = cport_flags;
496 return gb_operation_sync(svc->connection, GB_SVC_TYPE_CONN_CREATE,
497 &request, sizeof(request), NULL, 0);
500 void gb_svc_connection_destroy(struct gb_svc *svc, u8 intf1_id, u16 cport1_id,
501 u8 intf2_id, u16 cport2_id)
503 struct gb_svc_conn_destroy_request request;
504 struct gb_connection *connection = svc->connection;
505 int ret;
507 request.intf1_id = intf1_id;
508 request.cport1_id = cpu_to_le16(cport1_id);
509 request.intf2_id = intf2_id;
510 request.cport2_id = cpu_to_le16(cport2_id);
512 ret = gb_operation_sync(connection, GB_SVC_TYPE_CONN_DESTROY,
513 &request, sizeof(request), NULL, 0);
514 if (ret) {
515 dev_err(&svc->dev, "failed to destroy connection (%u:%u %u:%u): %d\n",
516 intf1_id, cport1_id, intf2_id, cport2_id, ret);
520 /* Creates bi-directional routes between the devices */
521 int gb_svc_route_create(struct gb_svc *svc, u8 intf1_id, u8 dev1_id,
522 u8 intf2_id, u8 dev2_id)
524 struct gb_svc_route_create_request request;
526 request.intf1_id = intf1_id;
527 request.dev1_id = dev1_id;
528 request.intf2_id = intf2_id;
529 request.dev2_id = dev2_id;
531 return gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_CREATE,
532 &request, sizeof(request), NULL, 0);
535 /* Destroys bi-directional routes between the devices */
536 void gb_svc_route_destroy(struct gb_svc *svc, u8 intf1_id, u8 intf2_id)
538 struct gb_svc_route_destroy_request request;
539 int ret;
541 request.intf1_id = intf1_id;
542 request.intf2_id = intf2_id;
544 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_DESTROY,
545 &request, sizeof(request), NULL, 0);
546 if (ret) {
547 dev_err(&svc->dev, "failed to destroy route (%u %u): %d\n",
548 intf1_id, intf2_id, ret);
552 int gb_svc_intf_set_power_mode(struct gb_svc *svc, u8 intf_id, u8 hs_series,
553 u8 tx_mode, u8 tx_gear, u8 tx_nlanes,
554 u8 tx_amplitude, u8 tx_hs_equalizer,
555 u8 rx_mode, u8 rx_gear, u8 rx_nlanes,
556 u8 flags, u32 quirks,
557 struct gb_svc_l2_timer_cfg *local,
558 struct gb_svc_l2_timer_cfg *remote)
560 struct gb_svc_intf_set_pwrm_request request;
561 struct gb_svc_intf_set_pwrm_response response;
562 int ret;
563 u16 result_code;
565 memset(&request, 0, sizeof(request));
567 request.intf_id = intf_id;
568 request.hs_series = hs_series;
569 request.tx_mode = tx_mode;
570 request.tx_gear = tx_gear;
571 request.tx_nlanes = tx_nlanes;
572 request.tx_amplitude = tx_amplitude;
573 request.tx_hs_equalizer = tx_hs_equalizer;
574 request.rx_mode = rx_mode;
575 request.rx_gear = rx_gear;
576 request.rx_nlanes = rx_nlanes;
577 request.flags = flags;
578 request.quirks = cpu_to_le32(quirks);
579 if (local)
580 request.local_l2timerdata = *local;
581 if (remote)
582 request.remote_l2timerdata = *remote;
584 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_SET_PWRM,
585 &request, sizeof(request),
586 &response, sizeof(response));
587 if (ret < 0)
588 return ret;
590 result_code = response.result_code;
591 if (result_code != GB_SVC_SETPWRM_PWR_LOCAL) {
592 dev_err(&svc->dev, "set power mode = %d\n", result_code);
593 return -EIO;
596 return 0;
598 EXPORT_SYMBOL_GPL(gb_svc_intf_set_power_mode);
600 int gb_svc_intf_set_power_mode_hibernate(struct gb_svc *svc, u8 intf_id)
602 struct gb_svc_intf_set_pwrm_request request;
603 struct gb_svc_intf_set_pwrm_response response;
604 int ret;
605 u16 result_code;
607 memset(&request, 0, sizeof(request));
609 request.intf_id = intf_id;
610 request.hs_series = GB_SVC_UNIPRO_HS_SERIES_A;
611 request.tx_mode = GB_SVC_UNIPRO_HIBERNATE_MODE;
612 request.rx_mode = GB_SVC_UNIPRO_HIBERNATE_MODE;
614 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_SET_PWRM,
615 &request, sizeof(request),
616 &response, sizeof(response));
617 if (ret < 0) {
618 dev_err(&svc->dev,
619 "failed to send set power mode operation to interface %u: %d\n",
620 intf_id, ret);
621 return ret;
624 result_code = response.result_code;
625 if (result_code != GB_SVC_SETPWRM_PWR_OK) {
626 dev_err(&svc->dev,
627 "failed to hibernate the link for interface %u: %u\n",
628 intf_id, result_code);
629 return -EIO;
632 return 0;
635 int gb_svc_ping(struct gb_svc *svc)
637 return gb_operation_sync_timeout(svc->connection, GB_SVC_TYPE_PING,
638 NULL, 0, NULL, 0,
639 GB_OPERATION_TIMEOUT_DEFAULT * 2);
642 static int gb_svc_version_request(struct gb_operation *op)
644 struct gb_connection *connection = op->connection;
645 struct gb_svc *svc = gb_connection_get_data(connection);
646 struct gb_svc_version_request *request;
647 struct gb_svc_version_response *response;
649 if (op->request->payload_size < sizeof(*request)) {
650 dev_err(&svc->dev, "short version request (%zu < %zu)\n",
651 op->request->payload_size,
652 sizeof(*request));
653 return -EINVAL;
656 request = op->request->payload;
658 if (request->major > GB_SVC_VERSION_MAJOR) {
659 dev_warn(&svc->dev, "unsupported major version (%u > %u)\n",
660 request->major, GB_SVC_VERSION_MAJOR);
661 return -ENOTSUPP;
664 svc->protocol_major = request->major;
665 svc->protocol_minor = request->minor;
667 if (!gb_operation_response_alloc(op, sizeof(*response), GFP_KERNEL))
668 return -ENOMEM;
670 response = op->response->payload;
671 response->major = svc->protocol_major;
672 response->minor = svc->protocol_minor;
674 return 0;
677 static ssize_t pwr_debugfs_voltage_read(struct file *file, char __user *buf,
678 size_t len, loff_t *offset)
680 struct svc_debugfs_pwrmon_rail *pwrmon_rails =
681 file_inode(file)->i_private;
682 struct gb_svc *svc = pwrmon_rails->svc;
683 int ret, desc;
684 u32 value;
685 char buff[16];
687 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
688 GB_SVC_PWRMON_TYPE_VOL, &value);
689 if (ret) {
690 dev_err(&svc->dev,
691 "failed to get voltage sample %u: %d\n",
692 pwrmon_rails->id, ret);
693 return ret;
696 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
698 return simple_read_from_buffer(buf, len, offset, buff, desc);
701 static ssize_t pwr_debugfs_current_read(struct file *file, char __user *buf,
702 size_t len, loff_t *offset)
704 struct svc_debugfs_pwrmon_rail *pwrmon_rails =
705 file_inode(file)->i_private;
706 struct gb_svc *svc = pwrmon_rails->svc;
707 int ret, desc;
708 u32 value;
709 char buff[16];
711 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
712 GB_SVC_PWRMON_TYPE_CURR, &value);
713 if (ret) {
714 dev_err(&svc->dev,
715 "failed to get current sample %u: %d\n",
716 pwrmon_rails->id, ret);
717 return ret;
720 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
722 return simple_read_from_buffer(buf, len, offset, buff, desc);
725 static ssize_t pwr_debugfs_power_read(struct file *file, char __user *buf,
726 size_t len, loff_t *offset)
728 struct svc_debugfs_pwrmon_rail *pwrmon_rails =
729 file_inode(file)->i_private;
730 struct gb_svc *svc = pwrmon_rails->svc;
731 int ret, desc;
732 u32 value;
733 char buff[16];
735 ret = gb_svc_pwrmon_sample_get(svc, pwrmon_rails->id,
736 GB_SVC_PWRMON_TYPE_PWR, &value);
737 if (ret) {
738 dev_err(&svc->dev, "failed to get power sample %u: %d\n",
739 pwrmon_rails->id, ret);
740 return ret;
743 desc = scnprintf(buff, sizeof(buff), "%u\n", value);
745 return simple_read_from_buffer(buf, len, offset, buff, desc);
748 static const struct file_operations pwrmon_debugfs_voltage_fops = {
749 .read = pwr_debugfs_voltage_read,
752 static const struct file_operations pwrmon_debugfs_current_fops = {
753 .read = pwr_debugfs_current_read,
756 static const struct file_operations pwrmon_debugfs_power_fops = {
757 .read = pwr_debugfs_power_read,
760 static void gb_svc_pwrmon_debugfs_init(struct gb_svc *svc)
762 int i;
763 size_t bufsize;
764 struct dentry *dent;
765 struct gb_svc_pwrmon_rail_names_get_response *rail_names;
766 u8 rail_count;
768 dent = debugfs_create_dir("pwrmon", svc->debugfs_dentry);
769 if (IS_ERR_OR_NULL(dent))
770 return;
772 if (gb_svc_pwrmon_rail_count_get(svc, &rail_count))
773 goto err_pwrmon_debugfs;
775 if (!rail_count || rail_count > GB_SVC_PWRMON_MAX_RAIL_COUNT)
776 goto err_pwrmon_debugfs;
778 bufsize = sizeof(*rail_names) +
779 GB_SVC_PWRMON_RAIL_NAME_BUFSIZE * rail_count;
781 rail_names = kzalloc(bufsize, GFP_KERNEL);
782 if (!rail_names)
783 goto err_pwrmon_debugfs;
785 svc->pwrmon_rails = kcalloc(rail_count, sizeof(*svc->pwrmon_rails),
786 GFP_KERNEL);
787 if (!svc->pwrmon_rails)
788 goto err_pwrmon_debugfs_free;
790 if (gb_svc_pwrmon_rail_names_get(svc, rail_names, bufsize))
791 goto err_pwrmon_debugfs_free;
793 for (i = 0; i < rail_count; i++) {
794 struct dentry *dir;
795 struct svc_debugfs_pwrmon_rail *rail = &svc->pwrmon_rails[i];
796 char fname[GB_SVC_PWRMON_RAIL_NAME_BUFSIZE];
798 snprintf(fname, sizeof(fname), "%s",
799 (char *)&rail_names->name[i]);
801 rail->id = i;
802 rail->svc = svc;
804 dir = debugfs_create_dir(fname, dent);
805 debugfs_create_file("voltage_now", 0444, dir, rail,
806 &pwrmon_debugfs_voltage_fops);
807 debugfs_create_file("current_now", 0444, dir, rail,
808 &pwrmon_debugfs_current_fops);
809 debugfs_create_file("power_now", 0444, dir, rail,
810 &pwrmon_debugfs_power_fops);
813 kfree(rail_names);
814 return;
816 err_pwrmon_debugfs_free:
817 kfree(rail_names);
818 kfree(svc->pwrmon_rails);
819 svc->pwrmon_rails = NULL;
821 err_pwrmon_debugfs:
822 debugfs_remove(dent);
825 static void gb_svc_debugfs_init(struct gb_svc *svc)
827 svc->debugfs_dentry = debugfs_create_dir(dev_name(&svc->dev),
828 gb_debugfs_get());
829 gb_svc_pwrmon_debugfs_init(svc);
832 static void gb_svc_debugfs_exit(struct gb_svc *svc)
834 debugfs_remove_recursive(svc->debugfs_dentry);
835 kfree(svc->pwrmon_rails);
836 svc->pwrmon_rails = NULL;
839 static int gb_svc_hello(struct gb_operation *op)
841 struct gb_connection *connection = op->connection;
842 struct gb_svc *svc = gb_connection_get_data(connection);
843 struct gb_svc_hello_request *hello_request;
844 int ret;
846 if (op->request->payload_size < sizeof(*hello_request)) {
847 dev_warn(&svc->dev, "short hello request (%zu < %zu)\n",
848 op->request->payload_size,
849 sizeof(*hello_request));
850 return -EINVAL;
853 hello_request = op->request->payload;
854 svc->endo_id = le16_to_cpu(hello_request->endo_id);
855 svc->ap_intf_id = hello_request->interface_id;
857 ret = device_add(&svc->dev);
858 if (ret) {
859 dev_err(&svc->dev, "failed to register svc device: %d\n", ret);
860 return ret;
863 ret = gb_svc_watchdog_create(svc);
864 if (ret) {
865 dev_err(&svc->dev, "failed to create watchdog: %d\n", ret);
866 goto err_unregister_device;
869 gb_svc_debugfs_init(svc);
871 return gb_svc_queue_deferred_request(op);
873 err_unregister_device:
874 gb_svc_watchdog_destroy(svc);
875 device_del(&svc->dev);
876 return ret;
879 static struct gb_interface *gb_svc_interface_lookup(struct gb_svc *svc,
880 u8 intf_id)
882 struct gb_host_device *hd = svc->hd;
883 struct gb_module *module;
884 size_t num_interfaces;
885 u8 module_id;
887 list_for_each_entry(module, &hd->modules, hd_node) {
888 module_id = module->module_id;
889 num_interfaces = module->num_interfaces;
891 if (intf_id >= module_id &&
892 intf_id < module_id + num_interfaces) {
893 return module->interfaces[intf_id - module_id];
897 return NULL;
900 static struct gb_module *gb_svc_module_lookup(struct gb_svc *svc, u8 module_id)
902 struct gb_host_device *hd = svc->hd;
903 struct gb_module *module;
905 list_for_each_entry(module, &hd->modules, hd_node) {
906 if (module->module_id == module_id)
907 return module;
910 return NULL;
913 static void gb_svc_process_hello_deferred(struct gb_operation *operation)
915 struct gb_connection *connection = operation->connection;
916 struct gb_svc *svc = gb_connection_get_data(connection);
917 int ret;
920 * XXX This is a hack/work-around to reconfigure the APBridgeA-Switch
921 * link to PWM G2, 1 Lane, Slow Auto, so that it has sufficient
922 * bandwidth for 3 audio streams plus boot-over-UniPro of a hot-plugged
923 * module.
925 * The code should be removed once SW-2217, Heuristic for UniPro
926 * Power Mode Changes is resolved.
928 ret = gb_svc_intf_set_power_mode(svc, svc->ap_intf_id,
929 GB_SVC_UNIPRO_HS_SERIES_A,
930 GB_SVC_UNIPRO_SLOW_AUTO_MODE,
931 2, 1,
932 GB_SVC_SMALL_AMPLITUDE,
933 GB_SVC_NO_DE_EMPHASIS,
934 GB_SVC_UNIPRO_SLOW_AUTO_MODE,
935 2, 1,
936 0, 0,
937 NULL, NULL);
939 if (ret)
940 dev_warn(&svc->dev,
941 "power mode change failed on AP to switch link: %d\n",
942 ret);
945 static void gb_svc_process_module_inserted(struct gb_operation *operation)
947 struct gb_svc_module_inserted_request *request;
948 struct gb_connection *connection = operation->connection;
949 struct gb_svc *svc = gb_connection_get_data(connection);
950 struct gb_host_device *hd = svc->hd;
951 struct gb_module *module;
952 size_t num_interfaces;
953 u8 module_id;
954 u16 flags;
955 int ret;
957 /* The request message size has already been verified. */
958 request = operation->request->payload;
959 module_id = request->primary_intf_id;
960 num_interfaces = request->intf_count;
961 flags = le16_to_cpu(request->flags);
963 dev_dbg(&svc->dev, "%s - id = %u, num_interfaces = %zu, flags = 0x%04x\n",
964 __func__, module_id, num_interfaces, flags);
966 if (flags & GB_SVC_MODULE_INSERTED_FLAG_NO_PRIMARY) {
967 dev_warn(&svc->dev, "no primary interface detected on module %u\n",
968 module_id);
971 module = gb_svc_module_lookup(svc, module_id);
972 if (module) {
973 dev_warn(&svc->dev, "unexpected module-inserted event %u\n",
974 module_id);
975 return;
978 module = gb_module_create(hd, module_id, num_interfaces);
979 if (!module) {
980 dev_err(&svc->dev, "failed to create module\n");
981 return;
984 ret = gb_module_add(module);
985 if (ret) {
986 gb_module_put(module);
987 return;
990 list_add(&module->hd_node, &hd->modules);
993 static void gb_svc_process_module_removed(struct gb_operation *operation)
995 struct gb_svc_module_removed_request *request;
996 struct gb_connection *connection = operation->connection;
997 struct gb_svc *svc = gb_connection_get_data(connection);
998 struct gb_module *module;
999 u8 module_id;
1001 /* The request message size has already been verified. */
1002 request = operation->request->payload;
1003 module_id = request->primary_intf_id;
1005 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, module_id);
1007 module = gb_svc_module_lookup(svc, module_id);
1008 if (!module) {
1009 dev_warn(&svc->dev, "unexpected module-removed event %u\n",
1010 module_id);
1011 return;
1014 module->disconnected = true;
1016 gb_module_del(module);
1017 list_del(&module->hd_node);
1018 gb_module_put(module);
1021 static void gb_svc_process_intf_oops(struct gb_operation *operation)
1023 struct gb_svc_intf_oops_request *request;
1024 struct gb_connection *connection = operation->connection;
1025 struct gb_svc *svc = gb_connection_get_data(connection);
1026 struct gb_interface *intf;
1027 u8 intf_id;
1028 u8 reason;
1030 /* The request message size has already been verified. */
1031 request = operation->request->payload;
1032 intf_id = request->intf_id;
1033 reason = request->reason;
1035 intf = gb_svc_interface_lookup(svc, intf_id);
1036 if (!intf) {
1037 dev_warn(&svc->dev, "unexpected interface-oops event %u\n",
1038 intf_id);
1039 return;
1042 dev_info(&svc->dev, "Deactivating interface %u, interface oops reason = %u\n",
1043 intf_id, reason);
1045 mutex_lock(&intf->mutex);
1046 intf->disconnected = true;
1047 gb_interface_disable(intf);
1048 gb_interface_deactivate(intf);
1049 mutex_unlock(&intf->mutex);
1052 static void gb_svc_process_intf_mailbox_event(struct gb_operation *operation)
1054 struct gb_svc_intf_mailbox_event_request *request;
1055 struct gb_connection *connection = operation->connection;
1056 struct gb_svc *svc = gb_connection_get_data(connection);
1057 struct gb_interface *intf;
1058 u8 intf_id;
1059 u16 result_code;
1060 u32 mailbox;
1062 /* The request message size has already been verified. */
1063 request = operation->request->payload;
1064 intf_id = request->intf_id;
1065 result_code = le16_to_cpu(request->result_code);
1066 mailbox = le32_to_cpu(request->mailbox);
1068 dev_dbg(&svc->dev, "%s - id = %u, result = 0x%04x, mailbox = 0x%08x\n",
1069 __func__, intf_id, result_code, mailbox);
1071 intf = gb_svc_interface_lookup(svc, intf_id);
1072 if (!intf) {
1073 dev_warn(&svc->dev, "unexpected mailbox event %u\n", intf_id);
1074 return;
1077 gb_interface_mailbox_event(intf, result_code, mailbox);
1080 static void gb_svc_process_deferred_request(struct work_struct *work)
1082 struct gb_svc_deferred_request *dr;
1083 struct gb_operation *operation;
1084 struct gb_svc *svc;
1085 u8 type;
1087 dr = container_of(work, struct gb_svc_deferred_request, work);
1088 operation = dr->operation;
1089 svc = gb_connection_get_data(operation->connection);
1090 type = operation->request->header->type;
1092 switch (type) {
1093 case GB_SVC_TYPE_SVC_HELLO:
1094 gb_svc_process_hello_deferred(operation);
1095 break;
1096 case GB_SVC_TYPE_MODULE_INSERTED:
1097 gb_svc_process_module_inserted(operation);
1098 break;
1099 case GB_SVC_TYPE_MODULE_REMOVED:
1100 gb_svc_process_module_removed(operation);
1101 break;
1102 case GB_SVC_TYPE_INTF_MAILBOX_EVENT:
1103 gb_svc_process_intf_mailbox_event(operation);
1104 break;
1105 case GB_SVC_TYPE_INTF_OOPS:
1106 gb_svc_process_intf_oops(operation);
1107 break;
1108 default:
1109 dev_err(&svc->dev, "bad deferred request type: 0x%02x\n", type);
1112 gb_operation_put(operation);
1113 kfree(dr);
1116 static int gb_svc_queue_deferred_request(struct gb_operation *operation)
1118 struct gb_svc *svc = gb_connection_get_data(operation->connection);
1119 struct gb_svc_deferred_request *dr;
1121 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
1122 if (!dr)
1123 return -ENOMEM;
1125 gb_operation_get(operation);
1127 dr->operation = operation;
1128 INIT_WORK(&dr->work, gb_svc_process_deferred_request);
1130 queue_work(svc->wq, &dr->work);
1132 return 0;
1135 static int gb_svc_intf_reset_recv(struct gb_operation *op)
1137 struct gb_svc *svc = gb_connection_get_data(op->connection);
1138 struct gb_message *request = op->request;
1139 struct gb_svc_intf_reset_request *reset;
1140 u8 intf_id;
1142 if (request->payload_size < sizeof(*reset)) {
1143 dev_warn(&svc->dev, "short reset request received (%zu < %zu)\n",
1144 request->payload_size, sizeof(*reset));
1145 return -EINVAL;
1147 reset = request->payload;
1149 intf_id = reset->intf_id;
1151 /* FIXME Reset the interface here */
1153 return 0;
1156 static int gb_svc_module_inserted_recv(struct gb_operation *op)
1158 struct gb_svc *svc = gb_connection_get_data(op->connection);
1159 struct gb_svc_module_inserted_request *request;
1161 if (op->request->payload_size < sizeof(*request)) {
1162 dev_warn(&svc->dev, "short module-inserted request received (%zu < %zu)\n",
1163 op->request->payload_size, sizeof(*request));
1164 return -EINVAL;
1167 request = op->request->payload;
1169 dev_dbg(&svc->dev, "%s - id = %u\n", __func__,
1170 request->primary_intf_id);
1172 return gb_svc_queue_deferred_request(op);
1175 static int gb_svc_module_removed_recv(struct gb_operation *op)
1177 struct gb_svc *svc = gb_connection_get_data(op->connection);
1178 struct gb_svc_module_removed_request *request;
1180 if (op->request->payload_size < sizeof(*request)) {
1181 dev_warn(&svc->dev, "short module-removed request received (%zu < %zu)\n",
1182 op->request->payload_size, sizeof(*request));
1183 return -EINVAL;
1186 request = op->request->payload;
1188 dev_dbg(&svc->dev, "%s - id = %u\n", __func__,
1189 request->primary_intf_id);
1191 return gb_svc_queue_deferred_request(op);
1194 static int gb_svc_intf_oops_recv(struct gb_operation *op)
1196 struct gb_svc *svc = gb_connection_get_data(op->connection);
1197 struct gb_svc_intf_oops_request *request;
1199 if (op->request->payload_size < sizeof(*request)) {
1200 dev_warn(&svc->dev, "short intf-oops request received (%zu < %zu)\n",
1201 op->request->payload_size, sizeof(*request));
1202 return -EINVAL;
1205 return gb_svc_queue_deferred_request(op);
1208 static int gb_svc_intf_mailbox_event_recv(struct gb_operation *op)
1210 struct gb_svc *svc = gb_connection_get_data(op->connection);
1211 struct gb_svc_intf_mailbox_event_request *request;
1213 if (op->request->payload_size < sizeof(*request)) {
1214 dev_warn(&svc->dev, "short mailbox request received (%zu < %zu)\n",
1215 op->request->payload_size, sizeof(*request));
1216 return -EINVAL;
1219 request = op->request->payload;
1221 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, request->intf_id);
1223 return gb_svc_queue_deferred_request(op);
1226 static int gb_svc_request_handler(struct gb_operation *op)
1228 struct gb_connection *connection = op->connection;
1229 struct gb_svc *svc = gb_connection_get_data(connection);
1230 u8 type = op->type;
1231 int ret = 0;
1234 * SVC requests need to follow a specific order (at least initially) and
1235 * below code takes care of enforcing that. The expected order is:
1236 * - PROTOCOL_VERSION
1237 * - SVC_HELLO
1238 * - Any other request, but the earlier two.
1240 * Incoming requests are guaranteed to be serialized and so we don't
1241 * need to protect 'state' for any races.
1243 switch (type) {
1244 case GB_SVC_TYPE_PROTOCOL_VERSION:
1245 if (svc->state != GB_SVC_STATE_RESET)
1246 ret = -EINVAL;
1247 break;
1248 case GB_SVC_TYPE_SVC_HELLO:
1249 if (svc->state != GB_SVC_STATE_PROTOCOL_VERSION)
1250 ret = -EINVAL;
1251 break;
1252 default:
1253 if (svc->state != GB_SVC_STATE_SVC_HELLO)
1254 ret = -EINVAL;
1255 break;
1258 if (ret) {
1259 dev_warn(&svc->dev, "unexpected request 0x%02x received (state %u)\n",
1260 type, svc->state);
1261 return ret;
1264 switch (type) {
1265 case GB_SVC_TYPE_PROTOCOL_VERSION:
1266 ret = gb_svc_version_request(op);
1267 if (!ret)
1268 svc->state = GB_SVC_STATE_PROTOCOL_VERSION;
1269 return ret;
1270 case GB_SVC_TYPE_SVC_HELLO:
1271 ret = gb_svc_hello(op);
1272 if (!ret)
1273 svc->state = GB_SVC_STATE_SVC_HELLO;
1274 return ret;
1275 case GB_SVC_TYPE_INTF_RESET:
1276 return gb_svc_intf_reset_recv(op);
1277 case GB_SVC_TYPE_MODULE_INSERTED:
1278 return gb_svc_module_inserted_recv(op);
1279 case GB_SVC_TYPE_MODULE_REMOVED:
1280 return gb_svc_module_removed_recv(op);
1281 case GB_SVC_TYPE_INTF_MAILBOX_EVENT:
1282 return gb_svc_intf_mailbox_event_recv(op);
1283 case GB_SVC_TYPE_INTF_OOPS:
1284 return gb_svc_intf_oops_recv(op);
1285 default:
1286 dev_warn(&svc->dev, "unsupported request 0x%02x\n", type);
1287 return -EINVAL;
1291 static void gb_svc_release(struct device *dev)
1293 struct gb_svc *svc = to_gb_svc(dev);
1295 if (svc->connection)
1296 gb_connection_destroy(svc->connection);
1297 ida_destroy(&svc->device_id_map);
1298 destroy_workqueue(svc->wq);
1299 kfree(svc);
1302 struct device_type greybus_svc_type = {
1303 .name = "greybus_svc",
1304 .release = gb_svc_release,
1307 struct gb_svc *gb_svc_create(struct gb_host_device *hd)
1309 struct gb_svc *svc;
1311 svc = kzalloc(sizeof(*svc), GFP_KERNEL);
1312 if (!svc)
1313 return NULL;
1315 svc->wq = alloc_workqueue("%s:svc", WQ_UNBOUND, 1, dev_name(&hd->dev));
1316 if (!svc->wq) {
1317 kfree(svc);
1318 return NULL;
1321 svc->dev.parent = &hd->dev;
1322 svc->dev.bus = &greybus_bus_type;
1323 svc->dev.type = &greybus_svc_type;
1324 svc->dev.groups = svc_groups;
1325 svc->dev.dma_mask = svc->dev.parent->dma_mask;
1326 device_initialize(&svc->dev);
1328 dev_set_name(&svc->dev, "%d-svc", hd->bus_id);
1330 ida_init(&svc->device_id_map);
1331 svc->state = GB_SVC_STATE_RESET;
1332 svc->hd = hd;
1334 svc->connection = gb_connection_create_static(hd, GB_SVC_CPORT_ID,
1335 gb_svc_request_handler);
1336 if (IS_ERR(svc->connection)) {
1337 dev_err(&svc->dev, "failed to create connection: %ld\n",
1338 PTR_ERR(svc->connection));
1339 goto err_put_device;
1342 gb_connection_set_data(svc->connection, svc);
1344 return svc;
1346 err_put_device:
1347 put_device(&svc->dev);
1348 return NULL;
1351 int gb_svc_add(struct gb_svc *svc)
1353 int ret;
1356 * The SVC protocol is currently driven by the SVC, so the SVC device
1357 * is added from the connection request handler when enough
1358 * information has been received.
1360 ret = gb_connection_enable(svc->connection);
1361 if (ret)
1362 return ret;
1364 return 0;
1367 static void gb_svc_remove_modules(struct gb_svc *svc)
1369 struct gb_host_device *hd = svc->hd;
1370 struct gb_module *module, *tmp;
1372 list_for_each_entry_safe(module, tmp, &hd->modules, hd_node) {
1373 gb_module_del(module);
1374 list_del(&module->hd_node);
1375 gb_module_put(module);
1379 void gb_svc_del(struct gb_svc *svc)
1381 gb_connection_disable_rx(svc->connection);
1384 * The SVC device may have been registered from the request handler.
1386 if (device_is_registered(&svc->dev)) {
1387 gb_svc_debugfs_exit(svc);
1388 gb_svc_watchdog_destroy(svc);
1389 device_del(&svc->dev);
1392 flush_workqueue(svc->wq);
1394 gb_svc_remove_modules(svc);
1396 gb_connection_disable(svc->connection);
1399 void gb_svc_put(struct gb_svc *svc)
1401 put_device(&svc->dev);