blob: 62b67cc6f8d9250d3d72eab888ba0a71c0d31744 [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
Viresh Kumar067906f2015-08-06 12:44:55 +053010#include <linux/workqueue.h>
Alex Elder30c6d9d2015-05-22 13:02:08 -050011
Viresh Kumarf66427a2015-09-02 21:27:13 +053012#include "greybus.h"
13
Johan Hovoldf6c6c132015-11-11 10:07:08 +010014#define CPORT_FLAGS_E2EFC BIT(0)
15#define CPORT_FLAGS_CSD_N BIT(1)
16#define CPORT_FLAGS_CSV_N BIT(2)
Perry Hung0b226492015-07-24 19:02:34 -040017
Viresh Kumarb45864d2015-07-24 15:32:21 +053018
Viresh Kumar067906f2015-08-06 12:44:55 +053019struct svc_hotplug {
20 struct work_struct work;
21 struct gb_connection *connection;
22 struct gb_svc_intf_hotplug_request data;
23};
24
Viresh Kumaread35462015-07-21 17:44:19 +053025
Johan Hovold66069fb2015-11-25 15:59:09 +010026static ssize_t endo_id_show(struct device *dev,
27 struct device_attribute *attr, char *buf)
28{
29 struct gb_svc *svc = to_gb_svc(dev);
30
31 return sprintf(buf, "0x%04x\n", svc->endo_id);
32}
33static DEVICE_ATTR_RO(endo_id);
34
35static ssize_t ap_intf_id_show(struct device *dev,
36 struct device_attribute *attr, char *buf)
37{
38 struct gb_svc *svc = to_gb_svc(dev);
39
40 return sprintf(buf, "%u\n", svc->ap_intf_id);
41}
42static DEVICE_ATTR_RO(ap_intf_id);
43
44static struct attribute *svc_attrs[] = {
45 &dev_attr_endo_id.attr,
46 &dev_attr_ap_intf_id.attr,
47 NULL,
48};
49ATTRIBUTE_GROUPS(svc);
50
Viresh Kumar505f16c2015-08-31 17:21:07 +053051static int gb_svc_intf_device_id(struct gb_svc *svc, u8 intf_id, u8 device_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -050052{
53 struct gb_svc_intf_device_id_request request;
54
55 request.intf_id = intf_id;
56 request.device_id = device_id;
57
58 return gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_DEVICE_ID,
59 &request, sizeof(request), NULL, 0);
60}
61
Viresh Kumar3f0e9182015-08-31 17:21:06 +053062int gb_svc_intf_reset(struct gb_svc *svc, u8 intf_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -050063{
64 struct gb_svc_intf_reset_request request;
65
66 request.intf_id = intf_id;
67
68 return gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_RESET,
69 &request, sizeof(request), NULL, 0);
70}
Viresh Kumar3f0e9182015-08-31 17:21:06 +053071EXPORT_SYMBOL_GPL(gb_svc_intf_reset);
Alex Elder30c6d9d2015-05-22 13:02:08 -050072
Viresh Kumar19151c32015-09-09 21:08:29 +053073int gb_svc_dme_peer_get(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
74 u32 *value)
75{
76 struct gb_svc_dme_peer_get_request request;
77 struct gb_svc_dme_peer_get_response response;
78 u16 result;
79 int ret;
80
81 request.intf_id = intf_id;
82 request.attr = cpu_to_le16(attr);
83 request.selector = cpu_to_le16(selector);
84
85 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_GET,
86 &request, sizeof(request),
87 &response, sizeof(response));
88 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +010089 dev_err(&svc->dev, "failed to get DME attribute (%hhu %hx %hu): %d\n",
90 intf_id, attr, selector, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +053091 return ret;
92 }
93
94 result = le16_to_cpu(response.result_code);
95 if (result) {
Johan Hovold684156a2015-11-25 15:59:19 +010096 dev_err(&svc->dev, "UniPro error while getting DME attribute (%hhu %hx %hu): %hu\n",
97 intf_id, attr, selector, result);
Viresh Kumar19151c32015-09-09 21:08:29 +053098 return -EINVAL;
99 }
100
101 if (value)
102 *value = le32_to_cpu(response.attr_value);
103
104 return 0;
105}
106EXPORT_SYMBOL_GPL(gb_svc_dme_peer_get);
107
108int gb_svc_dme_peer_set(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
109 u32 value)
110{
111 struct gb_svc_dme_peer_set_request request;
112 struct gb_svc_dme_peer_set_response response;
113 u16 result;
114 int ret;
115
116 request.intf_id = intf_id;
117 request.attr = cpu_to_le16(attr);
118 request.selector = cpu_to_le16(selector);
119 request.value = cpu_to_le32(value);
120
121 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_SET,
122 &request, sizeof(request),
123 &response, sizeof(response));
124 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +0100125 dev_err(&svc->dev, "failed to set DME attribute (%hhu %hx %hu %u): %d\n",
126 intf_id, attr, selector, value, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +0530127 return ret;
128 }
129
130 result = le16_to_cpu(response.result_code);
131 if (result) {
Johan Hovold684156a2015-11-25 15:59:19 +0100132 dev_err(&svc->dev, "UniPro error while setting DME attribute (%hhu %hx %hu %u): %hu\n",
133 intf_id, attr, selector, value, result);
Viresh Kumar19151c32015-09-09 21:08:29 +0530134 return -EINVAL;
135 }
136
137 return 0;
138}
139EXPORT_SYMBOL_GPL(gb_svc_dme_peer_set);
140
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700141/*
142 * T_TstSrcIncrement is written by the module on ES2 as a stand-in for boot
143 * status attribute. AP needs to read and clear it, after reading a non-zero
144 * value from it.
145 *
146 * FIXME: This is module-hardware dependent and needs to be extended for every
147 * type of module we want to support.
148 */
149static int gb_svc_read_and_clear_module_boot_status(struct gb_interface *intf)
150{
Johan Hovold25376362015-11-03 18:03:23 +0100151 struct gb_host_device *hd = intf->hd;
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700152 int ret;
153 u32 value;
154
155 /* Read and clear boot status in T_TstSrcIncrement */
156 ret = gb_svc_dme_peer_get(hd->svc, intf->interface_id,
157 DME_ATTR_T_TST_SRC_INCREMENT,
158 DME_ATTR_SELECTOR_INDEX, &value);
159
160 if (ret)
161 return ret;
162
163 /*
164 * A nonzero boot status indicates the module has finished
165 * booting. Clear it.
166 */
167 if (!value) {
168 dev_err(&intf->dev, "Module not ready yet\n");
169 return -ENODEV;
170 }
171
Viresh Kumar1575ef12015-10-07 15:40:24 -0400172 /*
173 * Check if the module needs to boot from unipro.
174 * For ES2: We need to check lowest 8 bits of 'value'.
175 * For ES3: We need to check highest 8 bits out of 32 of 'value'.
176 *
177 * FIXME: Add code to find if we are on ES2 or ES3 to have separate
178 * checks.
179 */
180 if (value == DME_TSI_UNIPRO_BOOT_STARTED ||
181 value == DME_TSI_FALLBACK_UNIPRO_BOOT_STARTED)
182 intf->boot_over_unipro = true;
183
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700184 return gb_svc_dme_peer_set(hd->svc, intf->interface_id,
185 DME_ATTR_T_TST_SRC_INCREMENT,
186 DME_ATTR_SELECTOR_INDEX, 0);
187}
188
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530189int gb_svc_connection_create(struct gb_svc *svc,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500190 u8 intf1_id, u16 cport1_id,
Viresh Kumar1575ef12015-10-07 15:40:24 -0400191 u8 intf2_id, u16 cport2_id,
192 bool boot_over_unipro)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500193{
194 struct gb_svc_conn_create_request request;
195
196 request.intf1_id = intf1_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100197 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500198 request.intf2_id = intf2_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100199 request.cport2_id = cpu_to_le16(cport2_id);
Perry Hung0b226492015-07-24 19:02:34 -0400200 /*
201 * XXX: fix connections paramaters to TC0 and all CPort flags
202 * for now.
203 */
204 request.tc = 0;
Viresh Kumar1575ef12015-10-07 15:40:24 -0400205
206 /*
207 * We need to skip setting E2EFC and other flags to the connection
208 * create request, for all cports, on an interface that need to boot
209 * over unipro, i.e. interfaces required to download firmware.
210 */
211 if (boot_over_unipro)
212 request.flags = CPORT_FLAGS_CSV_N | CPORT_FLAGS_CSD_N;
213 else
214 request.flags = CPORT_FLAGS_CSV_N | CPORT_FLAGS_E2EFC;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500215
216 return gb_operation_sync(svc->connection, GB_SVC_TYPE_CONN_CREATE,
217 &request, sizeof(request), NULL, 0);
218}
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530219EXPORT_SYMBOL_GPL(gb_svc_connection_create);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500220
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530221void gb_svc_connection_destroy(struct gb_svc *svc, u8 intf1_id, u16 cport1_id,
222 u8 intf2_id, u16 cport2_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500223{
224 struct gb_svc_conn_destroy_request request;
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530225 struct gb_connection *connection = svc->connection;
226 int ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500227
228 request.intf1_id = intf1_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100229 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500230 request.intf2_id = intf2_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100231 request.cport2_id = cpu_to_le16(cport2_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500232
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530233 ret = gb_operation_sync(connection, GB_SVC_TYPE_CONN_DESTROY,
234 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100235 if (ret) {
236 dev_err(&svc->dev, "failed to destroy connection (%hhu:%hu %hhu:%hu): %d\n",
237 intf1_id, cport1_id, intf2_id, cport2_id, ret);
238 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500239}
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530240EXPORT_SYMBOL_GPL(gb_svc_connection_destroy);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500241
Viresh Kumarbb106852015-09-07 16:01:25 +0530242/* Creates bi-directional routes between the devices */
Viresh Kumar505f16c2015-08-31 17:21:07 +0530243static int gb_svc_route_create(struct gb_svc *svc, u8 intf1_id, u8 dev1_id,
244 u8 intf2_id, u8 dev2_id)
Perry Hunge08aaa42015-07-24 19:02:31 -0400245{
246 struct gb_svc_route_create_request request;
247
248 request.intf1_id = intf1_id;
249 request.dev1_id = dev1_id;
250 request.intf2_id = intf2_id;
251 request.dev2_id = dev2_id;
252
253 return gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_CREATE,
254 &request, sizeof(request), NULL, 0);
255}
Perry Hunge08aaa42015-07-24 19:02:31 -0400256
Viresh Kumar0a020572015-09-07 18:05:26 +0530257/* Destroys bi-directional routes between the devices */
258static void gb_svc_route_destroy(struct gb_svc *svc, u8 intf1_id, u8 intf2_id)
259{
260 struct gb_svc_route_destroy_request request;
261 int ret;
262
263 request.intf1_id = intf1_id;
264 request.intf2_id = intf2_id;
265
266 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_DESTROY,
267 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100268 if (ret) {
269 dev_err(&svc->dev, "failed to destroy route (%hhu %hhu): %d\n",
270 intf1_id, intf2_id, ret);
271 }
Viresh Kumar0a020572015-09-07 18:05:26 +0530272}
273
Viresh Kumaread35462015-07-21 17:44:19 +0530274static int gb_svc_version_request(struct gb_operation *op)
275{
276 struct gb_connection *connection = op->connection;
Johan Hovold684156a2015-11-25 15:59:19 +0100277 struct gb_svc *svc = connection->private;
Johan Hovoldcfb16902015-09-15 10:48:01 +0200278 struct gb_protocol_version_request *request;
279 struct gb_protocol_version_response *response;
Viresh Kumaread35462015-07-21 17:44:19 +0530280
Johan Hovold55510842015-11-19 18:28:01 +0100281 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100282 dev_err(&svc->dev, "short version request (%zu < %zu)\n",
Johan Hovold55510842015-11-19 18:28:01 +0100283 op->request->payload_size,
284 sizeof(*request));
285 return -EINVAL;
286 }
287
Johan Hovoldcfb16902015-09-15 10:48:01 +0200288 request = op->request->payload;
Viresh Kumaread35462015-07-21 17:44:19 +0530289
Johan Hovoldcfb16902015-09-15 10:48:01 +0200290 if (request->major > GB_SVC_VERSION_MAJOR) {
Johan Hovold684156a2015-11-25 15:59:19 +0100291 dev_warn(&svc->dev, "unsupported major version (%hhu > %hhu)\n",
292 request->major, GB_SVC_VERSION_MAJOR);
Viresh Kumaread35462015-07-21 17:44:19 +0530293 return -ENOTSUPP;
294 }
295
Johan Hovoldcfb16902015-09-15 10:48:01 +0200296 connection->module_major = request->major;
297 connection->module_minor = request->minor;
Viresh Kumar3ea959e32015-08-11 07:36:14 +0530298
Johan Hovold684156a2015-11-25 15:59:19 +0100299 if (!gb_operation_response_alloc(op, sizeof(*response), GFP_KERNEL))
Viresh Kumaread35462015-07-21 17:44:19 +0530300 return -ENOMEM;
Viresh Kumaread35462015-07-21 17:44:19 +0530301
Johan Hovoldcfb16902015-09-15 10:48:01 +0200302 response = op->response->payload;
303 response->major = connection->module_major;
304 response->minor = connection->module_minor;
Johan Hovold59832932015-09-15 10:48:00 +0200305
Viresh Kumaread35462015-07-21 17:44:19 +0530306 return 0;
307}
308
309static int gb_svc_hello(struct gb_operation *op)
310{
311 struct gb_connection *connection = op->connection;
Johan Hovold88f7b962015-11-25 15:59:08 +0100312 struct gb_svc *svc = connection->private;
Johan Hovold25376362015-11-03 18:03:23 +0100313 struct gb_host_device *hd = connection->hd;
Viresh Kumaread35462015-07-21 17:44:19 +0530314 struct gb_svc_hello_request *hello_request;
Viresh Kumaread35462015-07-21 17:44:19 +0530315 int ret;
316
Viresh Kumaread35462015-07-21 17:44:19 +0530317 /*
318 * SVC sends information about the endo and interface-id on the hello
319 * request, use that to create an endo.
320 */
Viresh Kumar0c32d2a2015-08-11 07:29:19 +0530321 if (op->request->payload_size < sizeof(*hello_request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100322 dev_warn(&svc->dev, "short hello request (%zu < %zu)\n",
323 op->request->payload_size,
324 sizeof(*hello_request));
Viresh Kumaread35462015-07-21 17:44:19 +0530325 return -EINVAL;
326 }
327
328 hello_request = op->request->payload;
Johan Hovold66069fb2015-11-25 15:59:09 +0100329 svc->endo_id = le16_to_cpu(hello_request->endo_id);
330 svc->ap_intf_id = hello_request->interface_id;
Viresh Kumaread35462015-07-21 17:44:19 +0530331
Johan Hovold88f7b962015-11-25 15:59:08 +0100332 ret = device_add(&svc->dev);
333 if (ret) {
334 dev_err(&svc->dev, "failed to register svc device: %d\n", ret);
335 return ret;
336 }
337
Viresh Kumaread35462015-07-21 17:44:19 +0530338 /* Setup Endo */
Johan Hovold66069fb2015-11-25 15:59:09 +0100339 ret = greybus_endo_setup(hd, svc->endo_id, svc->ap_intf_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530340 if (ret)
341 return ret;
342
Viresh Kumaread35462015-07-21 17:44:19 +0530343 return 0;
344}
345
Viresh Kumarbbaca712015-09-23 16:48:08 -0700346static void svc_intf_remove(struct gb_connection *connection,
347 struct gb_interface *intf)
348{
Viresh Kumarbbaca712015-09-23 16:48:08 -0700349 struct gb_svc *svc = connection->private;
350 u8 intf_id = intf->interface_id;
351 u8 device_id;
352
353 device_id = intf->device_id;
Viresh Kumar80d1ede2015-09-23 16:48:10 -0700354 gb_interface_remove(intf);
Viresh Kumarbbaca712015-09-23 16:48:08 -0700355
356 /*
357 * Destroy the two-way route between the AP and the interface.
358 */
Johan Hovold66069fb2015-11-25 15:59:09 +0100359 gb_svc_route_destroy(svc, svc->ap_intf_id, intf_id);
Viresh Kumarbbaca712015-09-23 16:48:08 -0700360
361 ida_simple_remove(&svc->device_id_map, device_id);
362}
363
Viresh Kumar067906f2015-08-06 12:44:55 +0530364/*
365 * 'struct svc_hotplug' should be freed by svc_process_hotplug() before it
366 * returns, irrespective of success or Failure in bringing up the module.
367 */
368static void svc_process_hotplug(struct work_struct *work)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500369{
Viresh Kumar067906f2015-08-06 12:44:55 +0530370 struct svc_hotplug *svc_hotplug = container_of(work, struct svc_hotplug,
371 work);
372 struct gb_svc_intf_hotplug_request *hotplug = &svc_hotplug->data;
373 struct gb_connection *connection = svc_hotplug->connection;
374 struct gb_svc *svc = connection->private;
Johan Hovold25376362015-11-03 18:03:23 +0100375 struct gb_host_device *hd = connection->hd;
Viresh Kumaread35462015-07-21 17:44:19 +0530376 struct gb_interface *intf;
377 u8 intf_id, device_id;
Viresh Kumaread35462015-07-21 17:44:19 +0530378 int ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500379
Alex Elder30c6d9d2015-05-22 13:02:08 -0500380 /*
381 * Grab the information we need.
Viresh Kumar7eb89192015-07-01 12:13:50 +0530382 */
Alex Elder30c6d9d2015-05-22 13:02:08 -0500383 intf_id = hotplug->intf_id;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500384
Viresh Kumarbbaca712015-09-23 16:48:08 -0700385 intf = gb_interface_find(hd, intf_id);
386 if (intf) {
387 /*
388 * We have received a hotplug request for an interface that
389 * already exists.
390 *
391 * This can happen in cases like:
392 * - bootrom loading the firmware image and booting into that,
393 * which only generates a hotplug event. i.e. no hot-unplug
394 * event.
395 * - Or the firmware on the module crashed and sent hotplug
396 * request again to the SVC, which got propagated to AP.
397 *
398 * Remove the interface and add it again, and let user know
399 * about this with a print message.
400 */
Johan Hovold684156a2015-11-25 15:59:19 +0100401 dev_info(&svc->dev, "removing interface %hhu to add it again\n",
402 intf_id);
Viresh Kumarbbaca712015-09-23 16:48:08 -0700403 svc_intf_remove(connection, intf);
404 }
405
Viresh Kumaread35462015-07-21 17:44:19 +0530406 intf = gb_interface_create(hd, intf_id);
407 if (!intf) {
Johan Hovold684156a2015-11-25 15:59:19 +0100408 dev_err(&svc->dev, "failed to create interface %hhu\n",
409 intf_id);
Viresh Kumar067906f2015-08-06 12:44:55 +0530410 goto free_svc_hotplug;
Viresh Kumaread35462015-07-21 17:44:19 +0530411 }
412
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700413 ret = gb_svc_read_and_clear_module_boot_status(intf);
414 if (ret)
415 goto destroy_interface;
416
Viresh Kumar3944a452015-08-12 09:19:31 +0530417 intf->unipro_mfg_id = le32_to_cpu(hotplug->data.unipro_mfg_id);
418 intf->unipro_prod_id = le32_to_cpu(hotplug->data.unipro_prod_id);
Johan Hovold9f592632015-11-25 15:58:56 +0100419 intf->vendor_id = le32_to_cpu(hotplug->data.ara_vend_id);
420 intf->product_id = le32_to_cpu(hotplug->data.ara_prod_id);
Viresh Kumar3944a452015-08-12 09:19:31 +0530421
Viresh Kumaread35462015-07-21 17:44:19 +0530422 /*
423 * Create a device id for the interface:
424 * - device id 0 (GB_DEVICE_ID_SVC) belongs to the SVC
425 * - device id 1 (GB_DEVICE_ID_AP) belongs to the AP
426 *
427 * XXX Do we need to allocate device ID for SVC or the AP here? And what
428 * XXX about an AP with multiple interface blocks?
429 */
Johan Hovoldc09db182015-09-15 09:18:08 +0200430 device_id = ida_simple_get(&svc->device_id_map,
Johan Hovold89f637f2015-09-01 12:25:25 +0200431 GB_DEVICE_ID_MODULES_START, 0, GFP_KERNEL);
Viresh Kumaread35462015-07-21 17:44:19 +0530432 if (device_id < 0) {
433 ret = device_id;
Johan Hovold684156a2015-11-25 15:59:19 +0100434 dev_err(&svc->dev, "failed to allocate device id for interface %hhu: %d\n",
435 intf_id, ret);
Viresh Kumaread35462015-07-21 17:44:19 +0530436 goto destroy_interface;
437 }
438
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530439 ret = gb_svc_intf_device_id(svc, intf_id, device_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530440 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +0100441 dev_err(&svc->dev, "failed to set device id %hhu for interface %hhu: %d\n",
442 device_id, intf_id, ret);
Viresh Kumaread35462015-07-21 17:44:19 +0530443 goto ida_put;
444 }
445
Perry Hung7e275462015-07-24 19:02:32 -0400446 /*
447 * Create a two-way route between the AP and the new interface
448 */
Johan Hovold66069fb2015-11-25 15:59:09 +0100449 ret = gb_svc_route_create(svc, svc->ap_intf_id, GB_DEVICE_ID_AP,
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530450 intf_id, device_id);
Perry Hung7e275462015-07-24 19:02:32 -0400451 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +0100452 dev_err(&svc->dev, "failed to create route to interface %hhu (device id %hhu): %d\n",
453 intf_id, device_id, ret);
Viresh Kumar0a020572015-09-07 18:05:26 +0530454 goto svc_id_free;
Perry Hung7e275462015-07-24 19:02:32 -0400455 }
456
Viresh Kumaread35462015-07-21 17:44:19 +0530457 ret = gb_interface_init(intf, device_id);
458 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +0100459 dev_err(&svc->dev, "failed to initialize interface %hhu (device id %hhu): %d\n",
460 intf_id, device_id, ret);
Viresh Kumar0a020572015-09-07 18:05:26 +0530461 goto destroy_route;
Viresh Kumaread35462015-07-21 17:44:19 +0530462 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500463
Viresh Kumar067906f2015-08-06 12:44:55 +0530464 goto free_svc_hotplug;
Viresh Kumaread35462015-07-21 17:44:19 +0530465
Viresh Kumar0a020572015-09-07 18:05:26 +0530466destroy_route:
Johan Hovold66069fb2015-11-25 15:59:09 +0100467 gb_svc_route_destroy(svc, svc->ap_intf_id, intf_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530468svc_id_free:
469 /*
470 * XXX Should we tell SVC that this id doesn't belong to interface
471 * XXX anymore.
472 */
473ida_put:
Johan Hovoldc09db182015-09-15 09:18:08 +0200474 ida_simple_remove(&svc->device_id_map, device_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530475destroy_interface:
Viresh Kumar80d1ede2015-09-23 16:48:10 -0700476 gb_interface_remove(intf);
Viresh Kumar067906f2015-08-06 12:44:55 +0530477free_svc_hotplug:
478 kfree(svc_hotplug);
479}
Viresh Kumaread35462015-07-21 17:44:19 +0530480
Viresh Kumar067906f2015-08-06 12:44:55 +0530481/*
482 * Bringing up a module can be time consuming, as that may require lots of
483 * initialization on the module side. Over that, we may also need to download
484 * the firmware first and flash that on the module.
485 *
486 * In order to make other hotplug events to not wait for all this to finish,
487 * handle most of module hotplug stuff outside of the hotplug callback, with
488 * help of a workqueue.
489 */
490static int gb_svc_intf_hotplug_recv(struct gb_operation *op)
491{
Johan Hovold684156a2015-11-25 15:59:19 +0100492 struct gb_svc *svc = op->connection->private;
Viresh Kumar067906f2015-08-06 12:44:55 +0530493 struct gb_message *request = op->request;
494 struct svc_hotplug *svc_hotplug;
495
496 if (request->payload_size < sizeof(svc_hotplug->data)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100497 dev_warn(&svc->dev, "short hotplug request received (%zu < %zu)\n",
498 request->payload_size,
499 sizeof(svc_hotplug->data));
Viresh Kumar067906f2015-08-06 12:44:55 +0530500 return -EINVAL;
501 }
502
Johan Hovold287bba82015-09-01 12:25:26 +0200503 svc_hotplug = kmalloc(sizeof(*svc_hotplug), GFP_KERNEL);
Viresh Kumar067906f2015-08-06 12:44:55 +0530504 if (!svc_hotplug)
505 return -ENOMEM;
506
507 svc_hotplug->connection = op->connection;
508 memcpy(&svc_hotplug->data, op->request->payload, sizeof(svc_hotplug->data));
509
510 INIT_WORK(&svc_hotplug->work, svc_process_hotplug);
511 queue_work(system_unbound_wq, &svc_hotplug->work);
512
513 return 0;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500514}
515
516static int gb_svc_intf_hot_unplug_recv(struct gb_operation *op)
517{
Johan Hovold684156a2015-11-25 15:59:19 +0100518 struct gb_svc *svc = op->connection->private;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500519 struct gb_message *request = op->request;
Viresh Kumaread35462015-07-21 17:44:19 +0530520 struct gb_svc_intf_hot_unplug_request *hot_unplug = request->payload;
Johan Hovold25376362015-11-03 18:03:23 +0100521 struct gb_host_device *hd = op->connection->hd;
Viresh Kumaread35462015-07-21 17:44:19 +0530522 struct gb_interface *intf;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500523 u8 intf_id;
524
525 if (request->payload_size < sizeof(*hot_unplug)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100526 dev_warn(&svc->dev, "short hot unplug request received (%zu < %zu)\n",
527 request->payload_size,
528 sizeof(*hot_unplug));
Alex Elder30c6d9d2015-05-22 13:02:08 -0500529 return -EINVAL;
530 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500531
532 intf_id = hot_unplug->intf_id;
533
Viresh Kumaread35462015-07-21 17:44:19 +0530534 intf = gb_interface_find(hd, intf_id);
535 if (!intf) {
Johan Hovold684156a2015-11-25 15:59:19 +0100536 dev_warn(&svc->dev, "could not find hot-unplug interface %hhu\n",
537 intf_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530538 return -EINVAL;
539 }
540
Viresh Kumarbbaca712015-09-23 16:48:08 -0700541 svc_intf_remove(op->connection, intf);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500542
543 return 0;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500544}
545
546static int gb_svc_intf_reset_recv(struct gb_operation *op)
547{
Johan Hovold684156a2015-11-25 15:59:19 +0100548 struct gb_svc *svc = op->connection->private;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500549 struct gb_message *request = op->request;
550 struct gb_svc_intf_reset_request *reset;
551 u8 intf_id;
552
553 if (request->payload_size < sizeof(*reset)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100554 dev_warn(&svc->dev, "short reset request received (%zu < %zu)\n",
555 request->payload_size, sizeof(*reset));
Alex Elder30c6d9d2015-05-22 13:02:08 -0500556 return -EINVAL;
557 }
558 reset = request->payload;
559
560 intf_id = reset->intf_id;
561
562 /* FIXME Reset the interface here */
563
564 return 0;
565}
566
567static int gb_svc_request_recv(u8 type, struct gb_operation *op)
568{
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530569 struct gb_connection *connection = op->connection;
570 struct gb_svc *svc = connection->private;
571 int ret = 0;
572
573 /*
574 * SVC requests need to follow a specific order (at least initially) and
575 * below code takes care of enforcing that. The expected order is:
576 * - PROTOCOL_VERSION
577 * - SVC_HELLO
578 * - Any other request, but the earlier two.
579 *
580 * Incoming requests are guaranteed to be serialized and so we don't
581 * need to protect 'state' for any races.
582 */
Alex Elder30c6d9d2015-05-22 13:02:08 -0500583 switch (type) {
Viresh Kumar0e2462d2015-08-14 07:57:38 +0530584 case GB_REQUEST_TYPE_PROTOCOL_VERSION:
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530585 if (svc->state != GB_SVC_STATE_RESET)
586 ret = -EINVAL;
587 break;
Viresh Kumaread35462015-07-21 17:44:19 +0530588 case GB_SVC_TYPE_SVC_HELLO:
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530589 if (svc->state != GB_SVC_STATE_PROTOCOL_VERSION)
590 ret = -EINVAL;
591 break;
592 default:
593 if (svc->state != GB_SVC_STATE_SVC_HELLO)
594 ret = -EINVAL;
595 break;
596 }
597
598 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +0100599 dev_warn(&svc->dev, "unexpected request 0x%02x received (state %u)\n",
600 type, svc->state);
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530601 return ret;
602 }
603
604 switch (type) {
605 case GB_REQUEST_TYPE_PROTOCOL_VERSION:
606 ret = gb_svc_version_request(op);
607 if (!ret)
608 svc->state = GB_SVC_STATE_PROTOCOL_VERSION;
609 return ret;
610 case GB_SVC_TYPE_SVC_HELLO:
611 ret = gb_svc_hello(op);
612 if (!ret)
613 svc->state = GB_SVC_STATE_SVC_HELLO;
614 return ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500615 case GB_SVC_TYPE_INTF_HOTPLUG:
616 return gb_svc_intf_hotplug_recv(op);
617 case GB_SVC_TYPE_INTF_HOT_UNPLUG:
618 return gb_svc_intf_hot_unplug_recv(op);
619 case GB_SVC_TYPE_INTF_RESET:
620 return gb_svc_intf_reset_recv(op);
621 default:
Johan Hovold684156a2015-11-25 15:59:19 +0100622 dev_warn(&svc->dev, "unsupported request 0x%02x\n", type);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500623 return -EINVAL;
624 }
625}
626
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100627static void gb_svc_release(struct device *dev)
628{
Johan Hovold88f7b962015-11-25 15:59:08 +0100629 struct gb_svc *svc = to_gb_svc(dev);
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100630
631 ida_destroy(&svc->device_id_map);
632 kfree(svc);
633}
634
635struct device_type greybus_svc_type = {
636 .name = "greybus_svc",
637 .release = gb_svc_release,
638};
639
Alex Elder30c6d9d2015-05-22 13:02:08 -0500640static int gb_svc_connection_init(struct gb_connection *connection)
641{
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100642 struct gb_host_device *hd = connection->hd;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500643 struct gb_svc *svc;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500644
645 svc = kzalloc(sizeof(*svc), GFP_KERNEL);
646 if (!svc)
647 return -ENOMEM;
648
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100649 svc->dev.parent = &hd->dev;
650 svc->dev.bus = &greybus_bus_type;
651 svc->dev.type = &greybus_svc_type;
Johan Hovold66069fb2015-11-25 15:59:09 +0100652 svc->dev.groups = svc_groups;
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100653 svc->dev.dma_mask = svc->dev.parent->dma_mask;
654 device_initialize(&svc->dev);
655
656 dev_set_name(&svc->dev, "%d-svc", hd->bus_id);
657
Johan Hovold6106e512015-11-25 15:59:07 +0100658 ida_init(&svc->device_id_map);
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530659 svc->state = GB_SVC_STATE_RESET;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500660 svc->connection = connection;
661 connection->private = svc;
Viresh Kumard3d44842015-07-21 17:44:18 +0530662
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100663 hd->svc = svc;
664
Viresh Kumar18d777c2015-07-21 17:44:20 +0530665 return 0;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500666}
667
668static void gb_svc_connection_exit(struct gb_connection *connection)
669{
670 struct gb_svc *svc = connection->private;
671
Johan Hovold88f7b962015-11-25 15:59:08 +0100672 if (device_is_registered(&svc->dev))
673 device_del(&svc->dev);
674
Perry Hung75a60ed2015-07-24 19:02:33 -0400675 connection->hd->svc = NULL;
Viresh Kumard3d44842015-07-21 17:44:18 +0530676 connection->private = NULL;
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100677
678 put_device(&svc->dev);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500679}
680
681static struct gb_protocol svc_protocol = {
682 .name = "svc",
683 .id = GREYBUS_PROTOCOL_SVC,
Viresh Kumar06e305f2015-07-01 12:13:51 +0530684 .major = GB_SVC_VERSION_MAJOR,
685 .minor = GB_SVC_VERSION_MINOR,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500686 .connection_init = gb_svc_connection_init,
687 .connection_exit = gb_svc_connection_exit,
688 .request_recv = gb_svc_request_recv,
Viresh Kumar5a5296b2015-09-07 16:01:24 +0530689 .flags = GB_PROTOCOL_SKIP_CONTROL_CONNECTED |
690 GB_PROTOCOL_SKIP_CONTROL_DISCONNECTED |
691 GB_PROTOCOL_NO_BUNDLE |
Johan Hovold4ec15742015-11-25 15:59:13 +0100692 GB_PROTOCOL_SKIP_VERSION,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500693};
Viresh Kumarab69c4c2015-07-03 17:00:29 +0530694gb_builtin_protocol_driver(svc_protocol);