blob: c013083d79f6623ca30fd963c1da8153cadfd7a7 [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
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
Johan Hovold66069fb2015-11-25 15:59:09 +010025static ssize_t endo_id_show(struct device *dev,
26 struct device_attribute *attr, char *buf)
27{
28 struct gb_svc *svc = to_gb_svc(dev);
29
30 return sprintf(buf, "0x%04x\n", svc->endo_id);
31}
32static DEVICE_ATTR_RO(endo_id);
33
34static ssize_t ap_intf_id_show(struct device *dev,
35 struct device_attribute *attr, char *buf)
36{
37 struct gb_svc *svc = to_gb_svc(dev);
38
39 return sprintf(buf, "%u\n", svc->ap_intf_id);
40}
41static DEVICE_ATTR_RO(ap_intf_id);
42
43static struct attribute *svc_attrs[] = {
44 &dev_attr_endo_id.attr,
45 &dev_attr_ap_intf_id.attr,
46 NULL,
47};
48ATTRIBUTE_GROUPS(svc);
49
Viresh Kumar505f16c2015-08-31 17:21:07 +053050static int gb_svc_intf_device_id(struct gb_svc *svc, u8 intf_id, u8 device_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -050051{
52 struct gb_svc_intf_device_id_request request;
53
54 request.intf_id = intf_id;
55 request.device_id = device_id;
56
57 return gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_DEVICE_ID,
58 &request, sizeof(request), NULL, 0);
59}
60
Viresh Kumar3f0e9182015-08-31 17:21:06 +053061int gb_svc_intf_reset(struct gb_svc *svc, u8 intf_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -050062{
63 struct gb_svc_intf_reset_request request;
64
65 request.intf_id = intf_id;
66
67 return gb_operation_sync(svc->connection, GB_SVC_TYPE_INTF_RESET,
68 &request, sizeof(request), NULL, 0);
69}
Viresh Kumar3f0e9182015-08-31 17:21:06 +053070EXPORT_SYMBOL_GPL(gb_svc_intf_reset);
Alex Elder30c6d9d2015-05-22 13:02:08 -050071
Viresh Kumar19151c32015-09-09 21:08:29 +053072int gb_svc_dme_peer_get(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
73 u32 *value)
74{
75 struct gb_svc_dme_peer_get_request request;
76 struct gb_svc_dme_peer_get_response response;
77 u16 result;
78 int ret;
79
80 request.intf_id = intf_id;
81 request.attr = cpu_to_le16(attr);
82 request.selector = cpu_to_le16(selector);
83
84 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_GET,
85 &request, sizeof(request),
86 &response, sizeof(response));
87 if (ret) {
Viresh Kumarb933fa42015-12-04 21:30:10 +053088 dev_err(&svc->dev, "failed to get DME attribute (%u 0x%04x %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +010089 intf_id, attr, selector, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +053090 return ret;
91 }
92
93 result = le16_to_cpu(response.result_code);
94 if (result) {
Viresh Kumarb933fa42015-12-04 21:30:10 +053095 dev_err(&svc->dev, "UniPro error while getting DME attribute (%u 0x%04x %u): %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +010096 intf_id, attr, selector, result);
Viresh Kumar4aac6c52015-12-04 21:30:08 +053097 return -EIO;
Viresh Kumar19151c32015-09-09 21:08:29 +053098 }
99
100 if (value)
101 *value = le32_to_cpu(response.attr_value);
102
103 return 0;
104}
105EXPORT_SYMBOL_GPL(gb_svc_dme_peer_get);
106
107int gb_svc_dme_peer_set(struct gb_svc *svc, u8 intf_id, u16 attr, u16 selector,
108 u32 value)
109{
110 struct gb_svc_dme_peer_set_request request;
111 struct gb_svc_dme_peer_set_response response;
112 u16 result;
113 int ret;
114
115 request.intf_id = intf_id;
116 request.attr = cpu_to_le16(attr);
117 request.selector = cpu_to_le16(selector);
118 request.value = cpu_to_le32(value);
119
120 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_DME_PEER_SET,
121 &request, sizeof(request),
122 &response, sizeof(response));
123 if (ret) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530124 dev_err(&svc->dev, "failed to set DME attribute (%u 0x%04x %u %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100125 intf_id, attr, selector, value, ret);
Viresh Kumar19151c32015-09-09 21:08:29 +0530126 return ret;
127 }
128
129 result = le16_to_cpu(response.result_code);
130 if (result) {
Viresh Kumarb933fa42015-12-04 21:30:10 +0530131 dev_err(&svc->dev, "UniPro error while setting DME attribute (%u 0x%04x %u %u): %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100132 intf_id, attr, selector, value, result);
Viresh Kumar4aac6c52015-12-04 21:30:08 +0530133 return -EIO;
Viresh Kumar19151c32015-09-09 21:08:29 +0530134 }
135
136 return 0;
137}
138EXPORT_SYMBOL_GPL(gb_svc_dme_peer_set);
139
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700140/*
141 * T_TstSrcIncrement is written by the module on ES2 as a stand-in for boot
142 * status attribute. AP needs to read and clear it, after reading a non-zero
143 * value from it.
144 *
145 * FIXME: This is module-hardware dependent and needs to be extended for every
146 * type of module we want to support.
147 */
148static int gb_svc_read_and_clear_module_boot_status(struct gb_interface *intf)
149{
Johan Hovold25376362015-11-03 18:03:23 +0100150 struct gb_host_device *hd = intf->hd;
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700151 int ret;
152 u32 value;
153
154 /* Read and clear boot status in T_TstSrcIncrement */
155 ret = gb_svc_dme_peer_get(hd->svc, intf->interface_id,
156 DME_ATTR_T_TST_SRC_INCREMENT,
157 DME_ATTR_SELECTOR_INDEX, &value);
158
159 if (ret)
160 return ret;
161
162 /*
163 * A nonzero boot status indicates the module has finished
164 * booting. Clear it.
165 */
166 if (!value) {
167 dev_err(&intf->dev, "Module not ready yet\n");
168 return -ENODEV;
169 }
170
Viresh Kumar1575ef12015-10-07 15:40:24 -0400171 /*
172 * Check if the module needs to boot from unipro.
173 * For ES2: We need to check lowest 8 bits of 'value'.
174 * For ES3: We need to check highest 8 bits out of 32 of 'value'.
175 *
176 * FIXME: Add code to find if we are on ES2 or ES3 to have separate
177 * checks.
178 */
179 if (value == DME_TSI_UNIPRO_BOOT_STARTED ||
180 value == DME_TSI_FALLBACK_UNIPRO_BOOT_STARTED)
181 intf->boot_over_unipro = true;
182
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700183 return gb_svc_dme_peer_set(hd->svc, intf->interface_id,
184 DME_ATTR_T_TST_SRC_INCREMENT,
185 DME_ATTR_SELECTOR_INDEX, 0);
186}
187
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530188int gb_svc_connection_create(struct gb_svc *svc,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500189 u8 intf1_id, u16 cport1_id,
Viresh Kumar1575ef12015-10-07 15:40:24 -0400190 u8 intf2_id, u16 cport2_id,
191 bool boot_over_unipro)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500192{
193 struct gb_svc_conn_create_request request;
194
195 request.intf1_id = intf1_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100196 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500197 request.intf2_id = intf2_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100198 request.cport2_id = cpu_to_le16(cport2_id);
Perry Hung0b226492015-07-24 19:02:34 -0400199 /*
200 * XXX: fix connections paramaters to TC0 and all CPort flags
201 * for now.
202 */
203 request.tc = 0;
Viresh Kumar1575ef12015-10-07 15:40:24 -0400204
205 /*
206 * We need to skip setting E2EFC and other flags to the connection
207 * create request, for all cports, on an interface that need to boot
208 * over unipro, i.e. interfaces required to download firmware.
209 */
210 if (boot_over_unipro)
211 request.flags = CPORT_FLAGS_CSV_N | CPORT_FLAGS_CSD_N;
212 else
213 request.flags = CPORT_FLAGS_CSV_N | CPORT_FLAGS_E2EFC;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500214
215 return gb_operation_sync(svc->connection, GB_SVC_TYPE_CONN_CREATE,
216 &request, sizeof(request), NULL, 0);
217}
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530218EXPORT_SYMBOL_GPL(gb_svc_connection_create);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500219
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530220void gb_svc_connection_destroy(struct gb_svc *svc, u8 intf1_id, u16 cport1_id,
221 u8 intf2_id, u16 cport2_id)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500222{
223 struct gb_svc_conn_destroy_request request;
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530224 struct gb_connection *connection = svc->connection;
225 int ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500226
227 request.intf1_id = intf1_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100228 request.cport1_id = cpu_to_le16(cport1_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500229 request.intf2_id = intf2_id;
Rui Miguel Silva24980502015-09-15 15:33:51 +0100230 request.cport2_id = cpu_to_le16(cport2_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500231
Viresh Kumard9fcfff2015-08-31 17:21:05 +0530232 ret = gb_operation_sync(connection, GB_SVC_TYPE_CONN_DESTROY,
233 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100234 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530235 dev_err(&svc->dev, "failed to destroy connection (%u:%u %u:%u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100236 intf1_id, cport1_id, intf2_id, cport2_id, ret);
237 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500238}
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530239EXPORT_SYMBOL_GPL(gb_svc_connection_destroy);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500240
Viresh Kumarbb106852015-09-07 16:01:25 +0530241/* Creates bi-directional routes between the devices */
Viresh Kumar505f16c2015-08-31 17:21:07 +0530242static int gb_svc_route_create(struct gb_svc *svc, u8 intf1_id, u8 dev1_id,
243 u8 intf2_id, u8 dev2_id)
Perry Hunge08aaa42015-07-24 19:02:31 -0400244{
245 struct gb_svc_route_create_request request;
246
247 request.intf1_id = intf1_id;
248 request.dev1_id = dev1_id;
249 request.intf2_id = intf2_id;
250 request.dev2_id = dev2_id;
251
252 return gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_CREATE,
253 &request, sizeof(request), NULL, 0);
254}
Perry Hunge08aaa42015-07-24 19:02:31 -0400255
Viresh Kumar0a020572015-09-07 18:05:26 +0530256/* Destroys bi-directional routes between the devices */
257static void gb_svc_route_destroy(struct gb_svc *svc, u8 intf1_id, u8 intf2_id)
258{
259 struct gb_svc_route_destroy_request request;
260 int ret;
261
262 request.intf1_id = intf1_id;
263 request.intf2_id = intf2_id;
264
265 ret = gb_operation_sync(svc->connection, GB_SVC_TYPE_ROUTE_DESTROY,
266 &request, sizeof(request), NULL, 0);
Johan Hovold684156a2015-11-25 15:59:19 +0100267 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530268 dev_err(&svc->dev, "failed to destroy route (%u %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100269 intf1_id, intf2_id, ret);
270 }
Viresh Kumar0a020572015-09-07 18:05:26 +0530271}
272
Viresh Kumaread35462015-07-21 17:44:19 +0530273static int gb_svc_version_request(struct gb_operation *op)
274{
275 struct gb_connection *connection = op->connection;
Johan Hovold684156a2015-11-25 15:59:19 +0100276 struct gb_svc *svc = connection->private;
Johan Hovoldcfb16902015-09-15 10:48:01 +0200277 struct gb_protocol_version_request *request;
278 struct gb_protocol_version_response *response;
Viresh Kumaread35462015-07-21 17:44:19 +0530279
Johan Hovold55510842015-11-19 18:28:01 +0100280 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100281 dev_err(&svc->dev, "short version request (%zu < %zu)\n",
Johan Hovold55510842015-11-19 18:28:01 +0100282 op->request->payload_size,
283 sizeof(*request));
284 return -EINVAL;
285 }
286
Johan Hovoldcfb16902015-09-15 10:48:01 +0200287 request = op->request->payload;
Viresh Kumaread35462015-07-21 17:44:19 +0530288
Johan Hovoldcfb16902015-09-15 10:48:01 +0200289 if (request->major > GB_SVC_VERSION_MAJOR) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530290 dev_warn(&svc->dev, "unsupported major version (%u > %u)\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100291 request->major, GB_SVC_VERSION_MAJOR);
Viresh Kumaread35462015-07-21 17:44:19 +0530292 return -ENOTSUPP;
293 }
294
Johan Hovoldcfb16902015-09-15 10:48:01 +0200295 connection->module_major = request->major;
296 connection->module_minor = request->minor;
Viresh Kumar3ea959e32015-08-11 07:36:14 +0530297
Johan Hovold684156a2015-11-25 15:59:19 +0100298 if (!gb_operation_response_alloc(op, sizeof(*response), GFP_KERNEL))
Viresh Kumaread35462015-07-21 17:44:19 +0530299 return -ENOMEM;
Viresh Kumaread35462015-07-21 17:44:19 +0530300
Johan Hovoldcfb16902015-09-15 10:48:01 +0200301 response = op->response->payload;
302 response->major = connection->module_major;
303 response->minor = connection->module_minor;
Johan Hovold59832932015-09-15 10:48:00 +0200304
Viresh Kumaread35462015-07-21 17:44:19 +0530305 return 0;
306}
307
308static int gb_svc_hello(struct gb_operation *op)
309{
310 struct gb_connection *connection = op->connection;
Johan Hovold88f7b962015-11-25 15:59:08 +0100311 struct gb_svc *svc = connection->private;
Viresh Kumaread35462015-07-21 17:44:19 +0530312 struct gb_svc_hello_request *hello_request;
Viresh Kumaread35462015-07-21 17:44:19 +0530313 int ret;
314
Viresh Kumar0c32d2a2015-08-11 07:29:19 +0530315 if (op->request->payload_size < sizeof(*hello_request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100316 dev_warn(&svc->dev, "short hello request (%zu < %zu)\n",
317 op->request->payload_size,
318 sizeof(*hello_request));
Viresh Kumaread35462015-07-21 17:44:19 +0530319 return -EINVAL;
320 }
321
322 hello_request = op->request->payload;
Johan Hovold66069fb2015-11-25 15:59:09 +0100323 svc->endo_id = le16_to_cpu(hello_request->endo_id);
324 svc->ap_intf_id = hello_request->interface_id;
Viresh Kumaread35462015-07-21 17:44:19 +0530325
Johan Hovold88f7b962015-11-25 15:59:08 +0100326 ret = device_add(&svc->dev);
327 if (ret) {
328 dev_err(&svc->dev, "failed to register svc device: %d\n", ret);
329 return ret;
330 }
331
Viresh Kumaread35462015-07-21 17:44:19 +0530332 return 0;
333}
334
Johan Hovoldb4ee82e2015-12-02 18:23:28 +0100335static void gb_svc_intf_remove(struct gb_svc *svc, struct gb_interface *intf)
Viresh Kumarbbaca712015-09-23 16:48:08 -0700336{
Viresh Kumarbbaca712015-09-23 16:48:08 -0700337 u8 intf_id = intf->interface_id;
338 u8 device_id;
339
340 device_id = intf->device_id;
Viresh Kumar80d1ede2015-09-23 16:48:10 -0700341 gb_interface_remove(intf);
Viresh Kumarbbaca712015-09-23 16:48:08 -0700342
343 /*
344 * Destroy the two-way route between the AP and the interface.
345 */
Johan Hovold66069fb2015-11-25 15:59:09 +0100346 gb_svc_route_destroy(svc, svc->ap_intf_id, intf_id);
Viresh Kumarbbaca712015-09-23 16:48:08 -0700347
348 ida_simple_remove(&svc->device_id_map, device_id);
349}
350
Johan Hovold9ae41092015-12-02 18:23:29 +0100351static void gb_svc_process_intf_hotplug(struct gb_operation *operation)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500352{
Johan Hovold24456a092015-12-02 18:23:27 +0100353 struct gb_svc_intf_hotplug_request *request;
Johan Hovold9ae41092015-12-02 18:23:29 +0100354 struct gb_connection *connection = operation->connection;
Viresh Kumar067906f2015-08-06 12:44:55 +0530355 struct gb_svc *svc = connection->private;
Johan Hovold25376362015-11-03 18:03:23 +0100356 struct gb_host_device *hd = connection->hd;
Viresh Kumaread35462015-07-21 17:44:19 +0530357 struct gb_interface *intf;
358 u8 intf_id, device_id;
Viresh Kumaread35462015-07-21 17:44:19 +0530359 int ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500360
Johan Hovold24456a092015-12-02 18:23:27 +0100361 /* The request message size has already been verified. */
Johan Hovold9ae41092015-12-02 18:23:29 +0100362 request = operation->request->payload;
Johan Hovold24456a092015-12-02 18:23:27 +0100363 intf_id = request->intf_id;
364
365 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, intf_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500366
Viresh Kumarbbaca712015-09-23 16:48:08 -0700367 intf = gb_interface_find(hd, intf_id);
368 if (intf) {
369 /*
370 * We have received a hotplug request for an interface that
371 * already exists.
372 *
373 * This can happen in cases like:
374 * - bootrom loading the firmware image and booting into that,
375 * which only generates a hotplug event. i.e. no hot-unplug
376 * event.
377 * - Or the firmware on the module crashed and sent hotplug
378 * request again to the SVC, which got propagated to AP.
379 *
380 * Remove the interface and add it again, and let user know
381 * about this with a print message.
382 */
Viresh Kumar2f3db922015-12-04 21:30:09 +0530383 dev_info(&svc->dev, "removing interface %u to add it again\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100384 intf_id);
Johan Hovoldb4ee82e2015-12-02 18:23:28 +0100385 gb_svc_intf_remove(svc, intf);
Viresh Kumarbbaca712015-09-23 16:48:08 -0700386 }
387
Viresh Kumaread35462015-07-21 17:44:19 +0530388 intf = gb_interface_create(hd, intf_id);
389 if (!intf) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530390 dev_err(&svc->dev, "failed to create interface %u\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100391 intf_id);
Johan Hovold9ae41092015-12-02 18:23:29 +0100392 return;
Viresh Kumaread35462015-07-21 17:44:19 +0530393 }
394
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700395 ret = gb_svc_read_and_clear_module_boot_status(intf);
Johan Hovoldb395754a2015-12-07 15:05:28 +0100396 if (ret) {
397 dev_err(&svc->dev, "failed to clear boot status of interface %u: %d\n",
398 intf_id, ret);
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700399 goto destroy_interface;
Johan Hovoldb395754a2015-12-07 15:05:28 +0100400 }
Viresh Kumar6bec5c72015-09-24 14:40:29 -0700401
Johan Hovold24456a092015-12-02 18:23:27 +0100402 intf->unipro_mfg_id = le32_to_cpu(request->data.unipro_mfg_id);
403 intf->unipro_prod_id = le32_to_cpu(request->data.unipro_prod_id);
404 intf->vendor_id = le32_to_cpu(request->data.ara_vend_id);
405 intf->product_id = le32_to_cpu(request->data.ara_prod_id);
Viresh Kumar3944a452015-08-12 09:19:31 +0530406
Viresh Kumaread35462015-07-21 17:44:19 +0530407 /*
408 * Create a device id for the interface:
409 * - device id 0 (GB_DEVICE_ID_SVC) belongs to the SVC
410 * - device id 1 (GB_DEVICE_ID_AP) belongs to the AP
411 *
412 * XXX Do we need to allocate device ID for SVC or the AP here? And what
413 * XXX about an AP with multiple interface blocks?
414 */
Johan Hovoldc09db182015-09-15 09:18:08 +0200415 device_id = ida_simple_get(&svc->device_id_map,
Johan Hovold89f637f2015-09-01 12:25:25 +0200416 GB_DEVICE_ID_MODULES_START, 0, GFP_KERNEL);
Viresh Kumaread35462015-07-21 17:44:19 +0530417 if (device_id < 0) {
418 ret = device_id;
Viresh Kumar2f3db922015-12-04 21:30:09 +0530419 dev_err(&svc->dev, "failed to allocate device id for interface %u: %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100420 intf_id, ret);
Viresh Kumaread35462015-07-21 17:44:19 +0530421 goto destroy_interface;
422 }
423
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530424 ret = gb_svc_intf_device_id(svc, intf_id, device_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530425 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530426 dev_err(&svc->dev, "failed to set device id %u for interface %u: %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100427 device_id, intf_id, ret);
Viresh Kumaread35462015-07-21 17:44:19 +0530428 goto ida_put;
429 }
430
Perry Hung7e275462015-07-24 19:02:32 -0400431 /*
432 * Create a two-way route between the AP and the new interface
433 */
Johan Hovold66069fb2015-11-25 15:59:09 +0100434 ret = gb_svc_route_create(svc, svc->ap_intf_id, GB_DEVICE_ID_AP,
Viresh Kumar3f0e9182015-08-31 17:21:06 +0530435 intf_id, device_id);
Perry Hung7e275462015-07-24 19:02:32 -0400436 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530437 dev_err(&svc->dev, "failed to create route to interface %u (device id %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100438 intf_id, device_id, ret);
Viresh Kumar0a020572015-09-07 18:05:26 +0530439 goto svc_id_free;
Perry Hung7e275462015-07-24 19:02:32 -0400440 }
441
Viresh Kumaread35462015-07-21 17:44:19 +0530442 ret = gb_interface_init(intf, device_id);
443 if (ret) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530444 dev_err(&svc->dev, "failed to initialize interface %u (device id %u): %d\n",
Johan Hovold684156a2015-11-25 15:59:19 +0100445 intf_id, device_id, ret);
Viresh Kumar0a020572015-09-07 18:05:26 +0530446 goto destroy_route;
Viresh Kumaread35462015-07-21 17:44:19 +0530447 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500448
Johan Hovold9ae41092015-12-02 18:23:29 +0100449 return;
Viresh Kumaread35462015-07-21 17:44:19 +0530450
Viresh Kumar0a020572015-09-07 18:05:26 +0530451destroy_route:
Johan Hovold66069fb2015-11-25 15:59:09 +0100452 gb_svc_route_destroy(svc, svc->ap_intf_id, intf_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530453svc_id_free:
454 /*
455 * XXX Should we tell SVC that this id doesn't belong to interface
456 * XXX anymore.
457 */
458ida_put:
Johan Hovoldc09db182015-09-15 09:18:08 +0200459 ida_simple_remove(&svc->device_id_map, device_id);
Viresh Kumaread35462015-07-21 17:44:19 +0530460destroy_interface:
Viresh Kumar80d1ede2015-09-23 16:48:10 -0700461 gb_interface_remove(intf);
Johan Hovold9ae41092015-12-02 18:23:29 +0100462}
463
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100464static void gb_svc_process_intf_hot_unplug(struct gb_operation *operation)
465{
466 struct gb_svc *svc = operation->connection->private;
467 struct gb_svc_intf_hot_unplug_request *request;
468 struct gb_host_device *hd = operation->connection->hd;
469 struct gb_interface *intf;
470 u8 intf_id;
471
472 /* The request message size has already been verified. */
473 request = operation->request->payload;
474 intf_id = request->intf_id;
475
476 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, intf_id);
477
478 intf = gb_interface_find(hd, intf_id);
479 if (!intf) {
Viresh Kumar2f3db922015-12-04 21:30:09 +0530480 dev_warn(&svc->dev, "could not find hot-unplug interface %u\n",
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100481 intf_id);
482 return;
483 }
484
485 gb_svc_intf_remove(svc, intf);
486}
487
Johan Hovold9ae41092015-12-02 18:23:29 +0100488static void gb_svc_process_deferred_request(struct work_struct *work)
489{
490 struct gb_svc_deferred_request *dr;
491 struct gb_operation *operation;
492 struct gb_svc *svc;
493 u8 type;
494
495 dr = container_of(work, struct gb_svc_deferred_request, work);
496 operation = dr->operation;
497 svc = operation->connection->private;
498 type = operation->request->header->type;
499
500 switch (type) {
501 case GB_SVC_TYPE_INTF_HOTPLUG:
502 gb_svc_process_intf_hotplug(operation);
503 break;
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100504 case GB_SVC_TYPE_INTF_HOT_UNPLUG:
505 gb_svc_process_intf_hot_unplug(operation);
506 break;
Johan Hovold9ae41092015-12-02 18:23:29 +0100507 default:
Viresh Kumarb933fa42015-12-04 21:30:10 +0530508 dev_err(&svc->dev, "bad deferred request type: 0x%02x\n", type);
Johan Hovold9ae41092015-12-02 18:23:29 +0100509 }
510
511 gb_operation_put(operation);
512 kfree(dr);
513}
514
515static int gb_svc_queue_deferred_request(struct gb_operation *operation)
516{
Johan Hovold3e48aca2015-12-02 18:23:31 +0100517 struct gb_svc *svc = operation->connection->private;
Johan Hovold9ae41092015-12-02 18:23:29 +0100518 struct gb_svc_deferred_request *dr;
519
520 dr = kmalloc(sizeof(*dr), GFP_KERNEL);
521 if (!dr)
522 return -ENOMEM;
523
524 gb_operation_get(operation);
525
526 dr->operation = operation;
527 INIT_WORK(&dr->work, gb_svc_process_deferred_request);
528
Johan Hovold3e48aca2015-12-02 18:23:31 +0100529 queue_work(svc->wq, &dr->work);
Johan Hovold9ae41092015-12-02 18:23:29 +0100530
531 return 0;
Viresh Kumar067906f2015-08-06 12:44:55 +0530532}
Viresh Kumaread35462015-07-21 17:44:19 +0530533
Viresh Kumar067906f2015-08-06 12:44:55 +0530534/*
535 * Bringing up a module can be time consuming, as that may require lots of
536 * initialization on the module side. Over that, we may also need to download
537 * the firmware first and flash that on the module.
538 *
Johan Hovold3e48aca2015-12-02 18:23:31 +0100539 * In order not to make other svc events wait for all this to finish,
Viresh Kumar067906f2015-08-06 12:44:55 +0530540 * handle most of module hotplug stuff outside of the hotplug callback, with
541 * help of a workqueue.
542 */
543static int gb_svc_intf_hotplug_recv(struct gb_operation *op)
544{
Johan Hovold684156a2015-11-25 15:59:19 +0100545 struct gb_svc *svc = op->connection->private;
Johan Hovoldd34a3642015-12-02 18:23:26 +0100546 struct gb_svc_intf_hotplug_request *request;
Viresh Kumar067906f2015-08-06 12:44:55 +0530547
Johan Hovoldd34a3642015-12-02 18:23:26 +0100548 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100549 dev_warn(&svc->dev, "short hotplug request received (%zu < %zu)\n",
Johan Hovoldd34a3642015-12-02 18:23:26 +0100550 op->request->payload_size, sizeof(*request));
Viresh Kumar067906f2015-08-06 12:44:55 +0530551 return -EINVAL;
552 }
553
Johan Hovoldd34a3642015-12-02 18:23:26 +0100554 request = op->request->payload;
555
556 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, request->intf_id);
557
Johan Hovold9ae41092015-12-02 18:23:29 +0100558 return gb_svc_queue_deferred_request(op);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500559}
560
561static int gb_svc_intf_hot_unplug_recv(struct gb_operation *op)
562{
Johan Hovold684156a2015-11-25 15:59:19 +0100563 struct gb_svc *svc = op->connection->private;
Johan Hovoldd34a3642015-12-02 18:23:26 +0100564 struct gb_svc_intf_hot_unplug_request *request;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500565
Johan Hovoldd34a3642015-12-02 18:23:26 +0100566 if (op->request->payload_size < sizeof(*request)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100567 dev_warn(&svc->dev, "short hot unplug request received (%zu < %zu)\n",
Johan Hovoldd34a3642015-12-02 18:23:26 +0100568 op->request->payload_size, sizeof(*request));
Alex Elder30c6d9d2015-05-22 13:02:08 -0500569 return -EINVAL;
570 }
Alex Elder30c6d9d2015-05-22 13:02:08 -0500571
Johan Hovoldd34a3642015-12-02 18:23:26 +0100572 request = op->request->payload;
Johan Hovoldd34a3642015-12-02 18:23:26 +0100573
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100574 dev_dbg(&svc->dev, "%s - id = %u\n", __func__, request->intf_id);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500575
Johan Hovold57ccd4b2015-12-02 18:23:30 +0100576 return gb_svc_queue_deferred_request(op);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500577}
578
579static int gb_svc_intf_reset_recv(struct gb_operation *op)
580{
Johan Hovold684156a2015-11-25 15:59:19 +0100581 struct gb_svc *svc = op->connection->private;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500582 struct gb_message *request = op->request;
583 struct gb_svc_intf_reset_request *reset;
584 u8 intf_id;
585
586 if (request->payload_size < sizeof(*reset)) {
Johan Hovold684156a2015-11-25 15:59:19 +0100587 dev_warn(&svc->dev, "short reset request received (%zu < %zu)\n",
588 request->payload_size, sizeof(*reset));
Alex Elder30c6d9d2015-05-22 13:02:08 -0500589 return -EINVAL;
590 }
591 reset = request->payload;
592
593 intf_id = reset->intf_id;
594
595 /* FIXME Reset the interface here */
596
597 return 0;
598}
599
600static int gb_svc_request_recv(u8 type, struct gb_operation *op)
601{
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530602 struct gb_connection *connection = op->connection;
603 struct gb_svc *svc = connection->private;
604 int ret = 0;
605
606 /*
607 * SVC requests need to follow a specific order (at least initially) and
608 * below code takes care of enforcing that. The expected order is:
609 * - PROTOCOL_VERSION
610 * - SVC_HELLO
611 * - Any other request, but the earlier two.
612 *
613 * Incoming requests are guaranteed to be serialized and so we don't
614 * need to protect 'state' for any races.
615 */
Alex Elder30c6d9d2015-05-22 13:02:08 -0500616 switch (type) {
Viresh Kumar0e2462d2015-08-14 07:57:38 +0530617 case GB_REQUEST_TYPE_PROTOCOL_VERSION:
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530618 if (svc->state != GB_SVC_STATE_RESET)
619 ret = -EINVAL;
620 break;
Viresh Kumaread35462015-07-21 17:44:19 +0530621 case GB_SVC_TYPE_SVC_HELLO:
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530622 if (svc->state != GB_SVC_STATE_PROTOCOL_VERSION)
623 ret = -EINVAL;
624 break;
625 default:
626 if (svc->state != GB_SVC_STATE_SVC_HELLO)
627 ret = -EINVAL;
628 break;
629 }
630
631 if (ret) {
Johan Hovold684156a2015-11-25 15:59:19 +0100632 dev_warn(&svc->dev, "unexpected request 0x%02x received (state %u)\n",
633 type, svc->state);
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530634 return ret;
635 }
636
637 switch (type) {
638 case GB_REQUEST_TYPE_PROTOCOL_VERSION:
639 ret = gb_svc_version_request(op);
640 if (!ret)
641 svc->state = GB_SVC_STATE_PROTOCOL_VERSION;
642 return ret;
643 case GB_SVC_TYPE_SVC_HELLO:
644 ret = gb_svc_hello(op);
645 if (!ret)
646 svc->state = GB_SVC_STATE_SVC_HELLO;
647 return ret;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500648 case GB_SVC_TYPE_INTF_HOTPLUG:
649 return gb_svc_intf_hotplug_recv(op);
650 case GB_SVC_TYPE_INTF_HOT_UNPLUG:
651 return gb_svc_intf_hot_unplug_recv(op);
652 case GB_SVC_TYPE_INTF_RESET:
653 return gb_svc_intf_reset_recv(op);
654 default:
Johan Hovold684156a2015-11-25 15:59:19 +0100655 dev_warn(&svc->dev, "unsupported request 0x%02x\n", type);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500656 return -EINVAL;
657 }
658}
659
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100660static void gb_svc_release(struct device *dev)
661{
Johan Hovold88f7b962015-11-25 15:59:08 +0100662 struct gb_svc *svc = to_gb_svc(dev);
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100663
Johan Hovold7adeaae72015-12-07 15:05:37 +0100664 if (svc->connection)
665 gb_connection_destroy(svc->connection);
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100666 ida_destroy(&svc->device_id_map);
Johan Hovold3e48aca2015-12-02 18:23:31 +0100667 destroy_workqueue(svc->wq);
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100668 kfree(svc);
669}
670
671struct device_type greybus_svc_type = {
672 .name = "greybus_svc",
673 .release = gb_svc_release,
674};
675
Johan Hovold7adeaae72015-12-07 15:05:37 +0100676struct gb_svc *gb_svc_create(struct gb_host_device *hd)
Alex Elder30c6d9d2015-05-22 13:02:08 -0500677{
678 struct gb_svc *svc;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500679
680 svc = kzalloc(sizeof(*svc), GFP_KERNEL);
681 if (!svc)
Johan Hovold7adeaae72015-12-07 15:05:37 +0100682 return NULL;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500683
Johan Hovold3e48aca2015-12-02 18:23:31 +0100684 svc->wq = alloc_workqueue("%s:svc", WQ_UNBOUND, 1, dev_name(&hd->dev));
685 if (!svc->wq) {
686 kfree(svc);
Johan Hovold7adeaae72015-12-07 15:05:37 +0100687 return NULL;
Johan Hovold3e48aca2015-12-02 18:23:31 +0100688 }
689
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100690 svc->dev.parent = &hd->dev;
691 svc->dev.bus = &greybus_bus_type;
692 svc->dev.type = &greybus_svc_type;
Johan Hovold66069fb2015-11-25 15:59:09 +0100693 svc->dev.groups = svc_groups;
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100694 svc->dev.dma_mask = svc->dev.parent->dma_mask;
695 device_initialize(&svc->dev);
696
697 dev_set_name(&svc->dev, "%d-svc", hd->bus_id);
698
Johan Hovold6106e512015-11-25 15:59:07 +0100699 ida_init(&svc->device_id_map);
Viresh Kumar3ccb1602015-09-03 15:42:22 +0530700 svc->state = GB_SVC_STATE_RESET;
Johan Hovoldf0960d02015-12-03 19:18:02 +0100701 svc->hd = hd;
Viresh Kumard3d44842015-07-21 17:44:18 +0530702
Johan Hovold7adeaae72015-12-07 15:05:37 +0100703 svc->connection = gb_connection_create_static(hd, GB_SVC_CPORT_ID,
704 GREYBUS_PROTOCOL_SVC);
705 if (!svc->connection) {
706 dev_err(&svc->dev, "failed to create connection\n");
707 put_device(&svc->dev);
708 return NULL;
709 }
710
711 svc->connection->private = svc;
712
713 return svc;
714}
715
716int gb_svc_add(struct gb_svc *svc)
717{
718 int ret;
719
720 /*
721 * The SVC protocol is currently driven by the SVC, so the SVC device
722 * is added from the connection request handler when enough
723 * information has been received.
724 */
725 ret = gb_connection_init(svc->connection);
726 if (ret)
727 return ret;
728
729 return 0;
730}
731
732void gb_svc_del(struct gb_svc *svc)
733{
734 /*
735 * The SVC device may have been registered from the request handler.
736 */
737 if (device_is_registered(&svc->dev))
738 device_del(&svc->dev);
739
740 gb_connection_exit(svc->connection);
741
742 flush_workqueue(svc->wq);
743}
744
745void gb_svc_put(struct gb_svc *svc)
746{
747 put_device(&svc->dev);
748}
749
750static int gb_svc_connection_init(struct gb_connection *connection)
751{
752 struct gb_svc *svc = connection->private;
753
754 dev_dbg(&svc->dev, "%s\n", __func__);
Johan Hovoldefe6ef72015-11-25 15:59:06 +0100755
Viresh Kumar18d777c2015-07-21 17:44:20 +0530756 return 0;
Alex Elder30c6d9d2015-05-22 13:02:08 -0500757}
758
759static void gb_svc_connection_exit(struct gb_connection *connection)
760{
761 struct gb_svc *svc = connection->private;
762
Johan Hovold7adeaae72015-12-07 15:05:37 +0100763 dev_dbg(&svc->dev, "%s\n", __func__);
Alex Elder30c6d9d2015-05-22 13:02:08 -0500764}
765
766static struct gb_protocol svc_protocol = {
767 .name = "svc",
768 .id = GREYBUS_PROTOCOL_SVC,
Viresh Kumar06e305f2015-07-01 12:13:51 +0530769 .major = GB_SVC_VERSION_MAJOR,
770 .minor = GB_SVC_VERSION_MINOR,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500771 .connection_init = gb_svc_connection_init,
772 .connection_exit = gb_svc_connection_exit,
773 .request_recv = gb_svc_request_recv,
Viresh Kumar5a5296b2015-09-07 16:01:24 +0530774 .flags = GB_PROTOCOL_SKIP_CONTROL_CONNECTED |
775 GB_PROTOCOL_SKIP_CONTROL_DISCONNECTED |
Johan Hovold4ec15742015-11-25 15:59:13 +0100776 GB_PROTOCOL_SKIP_VERSION,
Alex Elder30c6d9d2015-05-22 13:02:08 -0500777};
Viresh Kumarab69c4c2015-07-03 17:00:29 +0530778gb_builtin_protocol_driver(svc_protocol);