blob: 78e9e4a1db2e341d574615873f2eb112e804e163 [file] [log] [blame]
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -07001/*
2 * Greybus "AP" message loop handling
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * Released under the GPLv2 only.
7 */
8
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
11#include <linux/types.h>
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/kernel.h>
15#include <linux/slab.h>
16#include <linux/uaccess.h>
Greg Kroah-Hartman45f36782014-09-14 11:40:35 -070017#include <linux/workqueue.h>
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -070018#include <linux/device.h>
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070019#include "svc_msg.h"
Alex Elder05ad1892014-09-09 13:55:03 -050020#include "greybus_manifest.h"
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -070021#include "greybus.h"
22
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -070023struct ap_msg {
24 u8 *data;
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -070025 size_t size;
26 struct greybus_host_device *hd;
Greg Kroah-Hartman88929c52014-09-13 11:35:02 -070027 struct work_struct event;
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -070028};
29
Greg Kroah-Hartman88929c52014-09-13 11:35:02 -070030static struct workqueue_struct *ap_workqueue;
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -070031
Matt Porter710ecb02014-09-18 15:25:41 -040032static struct svc_msg *svc_msg_alloc(enum svc_function_id id)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -070033{
34 struct svc_msg *svc_msg;
35
36 svc_msg = kzalloc((sizeof *svc_msg), GFP_KERNEL);
37 if (!svc_msg)
38 return NULL;
39
Matt Porter710ecb02014-09-18 15:25:41 -040040 // FIXME - verify we are only sending function IDs we should be
41 svc_msg->header.function_id = id;
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -070042 return svc_msg;
43}
44
45static void svc_msg_free(struct svc_msg *svc_msg)
46{
47 kfree(svc_msg);
48}
49
50static int svc_msg_send(struct svc_msg *svc_msg, struct greybus_host_device *hd)
51{
52 int retval;
53
54 // FIXME - Do we need to do more than just pass it to the hd and then
55 // free it?
56 retval = hd->driver->send_svc_msg(svc_msg, hd);
57
58 svc_msg_free(svc_msg);
59 return retval;
60}
61
62
63static void svc_handshake(struct svc_function_handshake *handshake,
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -070064 int payload_length, struct greybus_host_device *hd)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -070065{
66 struct svc_msg *svc_msg;
67
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -070068 if (payload_length != sizeof(struct svc_function_handshake)) {
69 dev_err(hd->parent,
70 "Illegal size of svc handshake message %d\n",
71 payload_length);
72 return;
73 }
74
Matt Portere94e1712014-09-18 15:25:42 -040075 /* A new SVC communication channel, let's verify a supported version */
76 if ((handshake->version_major != GREYBUS_VERSION_MAJOR) &&
77 (handshake->version_minor != GREYBUS_VERSION_MINOR)) {
78 dev_dbg(hd->parent, "received invalid greybus version %d:%d\n",
79 handshake->version_major, handshake->version_minor);
80 return;
81 }
82
83 /* Validate that the handshake came from the SVC */
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -070084 if (handshake->handshake_type != SVC_HANDSHAKE_SVC_HELLO) {
85 /* we don't know what to do with this, log it and return */
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -070086 dev_dbg(hd->parent, "received invalid handshake type %d\n",
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -070087 handshake->handshake_type);
88 return;
89 }
90
91 /* Send back a AP_HELLO message */
92 svc_msg = svc_msg_alloc(SVC_FUNCTION_HANDSHAKE);
93 if (!svc_msg)
94 return;
95
Matt Porterbe5064c2014-09-22 15:51:49 -040096 svc_msg->header.function_id = SVC_FUNCTION_HANDSHAKE;
97 svc_msg->header.message_type = SVC_MSG_DATA;
98 svc_msg->header.payload_length =
99 cpu_to_le16(sizeof(struct svc_function_handshake));
100 svc_msg->handshake.version_major = GREYBUS_VERSION_MAJOR;
101 svc_msg->handshake.version_minor = GREYBUS_VERSION_MINOR;
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700102 svc_msg->handshake.handshake_type = SVC_HANDSHAKE_AP_HELLO;
103 svc_msg_send(svc_msg, hd);
104}
105
106static void svc_management(struct svc_function_unipro_management *management,
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700107 int payload_length, struct greybus_host_device *hd)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700108{
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700109 if (payload_length != sizeof(struct svc_function_unipro_management)) {
110 dev_err(hd->parent,
111 "Illegal size of svc management message %d\n",
112 payload_length);
113 return;
114 }
115
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700116 /* What? An AP should not get this message */
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700117 dev_err(hd->parent, "Got an svc management message???\n");
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700118}
119
120static void svc_hotplug(struct svc_function_hotplug *hotplug,
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700121 int payload_length, struct greybus_host_device *hd)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700122{
123 u8 module_id = hotplug->module_id;
124
125 switch (hotplug->hotplug_event) {
126 case SVC_HOTPLUG_EVENT:
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700127 /* Add a new module to the system */
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700128 if (payload_length < 0x03) {
129 /* Hotplug message is at lest 3 bytes big */
130 dev_err(hd->parent,
131 "Illegal size of svc hotplug message %d\n",
132 payload_length);
133 return;
134 }
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700135 dev_dbg(hd->parent, "module id %d added\n", module_id);
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700136 gb_add_module(hd, module_id, hotplug->data,
137 payload_length - 0x02);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700138 break;
139
140 case SVC_HOTUNPLUG_EVENT:
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700141 /* Remove a module from the system */
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700142 if (payload_length != 0x02) {
143 /* Hotunplug message is only 2 bytes big */
144 dev_err(hd->parent,
145 "Illegal size of svc hotunplug message %d\n",
146 payload_length);
147 return;
148 }
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700149 dev_dbg(hd->parent, "module id %d removed\n", module_id);
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700150 gb_remove_module(hd, module_id);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700151 break;
152
153 default:
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700154 dev_err(hd->parent,
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700155 "Received invalid hotplug message type %d\n",
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700156 hotplug->hotplug_event);
157 break;
158 }
159}
160
161static void svc_ddb(struct svc_function_ddb *ddb,
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700162 int payload_length, struct greybus_host_device *hd)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700163{
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700164 /*
165 * Need to properly validate payload_length once we start
166 * to handle ddb messages, but for now, we don't, so no need to check
167 * anything.
168 */
169
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700170 /* What? An AP should not get this message */
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700171 dev_err(hd->parent, "Got an svc DDB message???\n");
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700172}
173
174static void svc_power(struct svc_function_power *power,
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700175 int payload_length, struct greybus_host_device *hd)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700176{
177 u8 module_id = power->module_id;
178
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700179 /*
180 * The AP is only allowed to get a Battery Status message, not a Battery
181 * Status Request
182 */
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700183 if (power->power_type != SVC_POWER_BATTERY_STATUS) {
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700184 dev_err(hd->parent, "Received invalid power type %d\n",
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700185 power->power_type);
186 return;
187 }
188
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700189 /*
190 * As struct struct svc_function_power_battery_status_request is 0 bytes
191 * big, we can just check the union of the whole structure to validate
192 * the size of this message.
193 */
194 if (payload_length != sizeof(struct svc_function_power)) {
195 dev_err(hd->parent,
196 "Illegal size of svc power message %d\n",
197 payload_length);
198 return;
199 }
200
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700201 dev_dbg(hd->parent, "power status for module id %d is %d\n",
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700202 module_id, power->status.status);
203
204 // FIXME - do something with the power information, like update our
205 // battery information...
206}
207
208static void svc_epm(struct svc_function_epm *epm,
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700209 int payload_length, struct greybus_host_device *hd)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700210{
211 /* What? An AP should not get this message */
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700212 dev_err(hd->parent, "Got an EPM message???\n");
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700213}
214
215static void svc_suspend(struct svc_function_suspend *suspend,
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700216 int payload_length, struct greybus_host_device *hd)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700217{
218 /* What? An AP should not get this message */
Greg Kroah-Hartman772149b2014-09-14 12:27:28 -0700219 dev_err(hd->parent, "Got an suspend message???\n");
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700220}
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -0700221
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700222static struct svc_msg *convert_ap_message(struct ap_msg *ap_msg,
223 struct greybus_host_device *hd)
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -0700224{
225 struct svc_msg *svc_msg;
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700226 struct svc_msg_header *header;
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -0700227
228 svc_msg = (struct svc_msg *)ap_msg->data;
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700229 header = &svc_msg->header;
230
231 /* Validate the message type */
232 if (header->message_type != SVC_MSG_DATA) {
233 dev_err(hd->parent, "message type %d received?\n",
234 header->message_type);
235 return NULL;
236 }
237
238 /*
239 * The validation of the size of the message buffer happens in each
240 * svc_* function, due to the different types of messages, keeping the
241 * logic for each message only in one place.
242 */
Greg Kroah-Hartman43cc32a2014-09-07 13:51:12 -0700243
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -0700244 return svc_msg;
245}
246
Greg Kroah-Hartmanb57b0622014-09-13 12:18:09 -0700247static void ap_process_event(struct work_struct *work)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700248{
249 struct svc_msg *svc_msg;
250 struct greybus_host_device *hd;
Greg Kroah-Hartmanb57b0622014-09-13 12:18:09 -0700251 struct ap_msg *ap_msg;
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700252 int payload_length;
Greg Kroah-Hartmanb57b0622014-09-13 12:18:09 -0700253
254 ap_msg = container_of(work, struct ap_msg, event);
255 hd = ap_msg->hd;
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -0700256
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700257 /* Turn the "raw" data into a real message */
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700258 svc_msg = convert_ap_message(ap_msg, hd);
259 if (!svc_msg)
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700260 return;
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700261
262 payload_length = le16_to_cpu(svc_msg->header.payload_length);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700263
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700264 /* Look at the message to figure out what to do with it */
Matt Porter710ecb02014-09-18 15:25:41 -0400265 switch (svc_msg->header.function_id) {
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700266 case SVC_FUNCTION_HANDSHAKE:
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700267 svc_handshake(&svc_msg->handshake, payload_length, hd);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700268 break;
269 case SVC_FUNCTION_UNIPRO_NETWORK_MANAGEMENT:
Greg Kroah-Hartman00c52e42014-09-21 18:19:54 -0700270 svc_management(&svc_msg->management, payload_length, hd);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700271 break;
272 case SVC_FUNCTION_HOTPLUG:
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700273 svc_hotplug(&svc_msg->hotplug, payload_length, hd);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700274 break;
275 case SVC_FUNCTION_DDB:
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700276 svc_ddb(&svc_msg->ddb, payload_length, hd);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700277 break;
278 case SVC_FUNCTION_POWER:
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700279 svc_power(&svc_msg->power, payload_length, hd);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700280 break;
281 case SVC_FUNCTION_EPM:
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700282 svc_epm(&svc_msg->epm, payload_length, hd);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700283 break;
284 case SVC_FUNCTION_SUSPEND:
Greg Kroah-Hartmand0cfd102014-09-21 19:10:39 -0700285 svc_suspend(&svc_msg->suspend, payload_length, hd);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700286 break;
287 default:
Matt Porter710ecb02014-09-18 15:25:41 -0400288 dev_err(hd->parent, "received invalid SVC function ID %d\n",
289 svc_msg->header.function_id);
Greg Kroah-Hartman8c53e072014-09-12 20:47:11 -0700290 }
291
Greg Kroah-Hartman88929c52014-09-13 11:35:02 -0700292 /* clean the message up */
293 kfree(ap_msg->data);
294 kfree(ap_msg);
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700295}
296
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -0700297int gb_new_ap_msg(u8 *data, int size, struct greybus_host_device *hd)
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700298{
299 struct ap_msg *ap_msg;
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700300
301 /*
302 * Totally naive copy the message into a new structure that we slowly
303 * create and add it to the list. Let's get this working, the odds of
304 * this being any "slow path" for AP messages is really low at this
305 * point in time, but you never know, so this comment is here to point
306 * out that maybe we should use a slab allocator, or even just not copy
307 * the data, but use it directly and force the urbs to be "new" each
308 * time.
309 */
310
311 /* Note - this can, and will, be called in interrupt context. */
312 ap_msg = kmalloc(sizeof(*ap_msg), GFP_ATOMIC);
313 if (!ap_msg)
314 return -ENOMEM;
315 ap_msg->data = kmalloc(size, GFP_ATOMIC);
316 if (!ap_msg->data) {
317 kfree(ap_msg);
318 return -ENOMEM;
319 }
320 memcpy(ap_msg->data, data, size);
321 ap_msg->size = size;
Greg Kroah-Hartman68f1fc42014-09-07 13:12:11 -0700322 ap_msg->hd = hd;
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700323
Greg Kroah-Hartman88929c52014-09-13 11:35:02 -0700324 INIT_WORK(&ap_msg->event, ap_process_event);
325 queue_work(ap_workqueue, &ap_msg->event);
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700326
327 return 0;
328}
Greg Kroah-Hartmand94a44a2014-09-01 14:39:34 -0700329EXPORT_SYMBOL_GPL(gb_new_ap_msg);
330
Greg Kroah-Hartman45f36782014-09-14 11:40:35 -0700331int gb_ap_init(void)
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700332{
Greg Kroah-Hartman88929c52014-09-13 11:35:02 -0700333 ap_workqueue = alloc_workqueue("greybus_ap", 0, 1);
334 if (!ap_workqueue)
335 return -ENOMEM;
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700336
337 return 0;
338}
339
Greg Kroah-Hartman45f36782014-09-14 11:40:35 -0700340void gb_ap_exit(void)
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700341{
Greg Kroah-Hartman88929c52014-09-13 11:35:02 -0700342 destroy_workqueue(ap_workqueue);
Greg Kroah-Hartmande536e32014-08-31 16:17:04 -0700343}
344
345