greybus: hd/es2: add cport_connected callback and ARPC
[cascardo/linux.git] / drivers / staging / greybus / es2.c
1 /*
2  * Greybus "AP" USB driver for "ES2" controller chips
3  *
4  * Copyright 2014-2015 Google Inc.
5  * Copyright 2014-2015 Linaro Ltd.
6  *
7  * Released under the GPLv2 only.
8  */
9 #include <linux/kthread.h>
10 #include <linux/sizes.h>
11 #include <linux/usb.h>
12 #include <linux/kfifo.h>
13 #include <linux/debugfs.h>
14 #include <linux/list.h>
15 #include <asm/unaligned.h>
16
17 #include "arpc.h"
18 #include "greybus.h"
19 #include "greybus_trace.h"
20 #include "kernel_ver.h"
21 #include "connection.h"
22
23
24 /* Default timeout for USB vendor requests. */
25 #define ES2_USB_CTRL_TIMEOUT    500
26
27 /* Default timeout for ARPC CPort requests */
28 #define ES2_ARPC_CPORT_TIMEOUT  500
29
30 /* Fixed CPort numbers */
31 #define ES2_CPORT_CDSI0         16
32 #define ES2_CPORT_CDSI1         17
33
34 /* Memory sizes for the buffers sent to/from the ES2 controller */
35 #define ES2_GBUF_MSG_SIZE_MAX   2048
36
37 /* Memory sizes for the ARPC buffers */
38 #define ARPC_OUT_SIZE_MAX       U16_MAX
39 #define ARPC_IN_SIZE_MAX        128
40
41 static const struct usb_device_id id_table[] = {
42         { USB_DEVICE(0x18d1, 0x1eaf) },
43         { },
44 };
45 MODULE_DEVICE_TABLE(usb, id_table);
46
47 #define APB1_LOG_SIZE           SZ_16K
48
49 /* Number of bulk in and bulk out couple */
50 #define NUM_BULKS               7
51
52 /* Expected number of bulk out endpoints */
53 #define NUM_BULKS_OUT           NUM_BULKS
54
55 /* Expected number of bulk in endpoints (including ARPC endpoint) */
56 #define NUM_BULKS_IN            (NUM_BULKS + 1)
57
58 /*
59  * Number of CPort IN urbs in flight at any point in time.
60  * Adjust if we are having stalls in the USB buffer due to not enough urbs in
61  * flight.
62  */
63 #define NUM_CPORT_IN_URB        4
64
65 /* Number of CPort OUT urbs in flight at any point in time.
66  * Adjust if we get messages saying we are out of urbs in the system log.
67  */
68 #define NUM_CPORT_OUT_URB       (8 * NUM_BULKS)
69
70 /*
71  * Number of ARPC in urbs in flight at any point in time.
72  */
73 #define NUM_ARPC_IN_URB         2
74
75 /*
76  * @endpoint: bulk in endpoint for CPort data
77  * @urb: array of urbs for the CPort in messages
78  * @buffer: array of buffers for the @cport_in_urb urbs
79  */
80 struct es2_cport_in {
81         __u8 endpoint;
82         struct urb *urb[NUM_CPORT_IN_URB];
83         u8 *buffer[NUM_CPORT_IN_URB];
84 };
85
86 /*
87  * @endpoint: bulk out endpoint for CPort data
88  */
89 struct es2_cport_out {
90         __u8 endpoint;
91 };
92
93 /**
94  * es2_ap_dev - ES2 USB Bridge to AP structure
95  * @usb_dev: pointer to the USB device we are.
96  * @usb_intf: pointer to the USB interface we are bound to.
97  * @hd: pointer to our gb_host_device structure
98
99  * @cport_in: endpoint, urbs and buffer for cport in messages
100  * @cport_out: endpoint for for cport out messages
101  * @cport_out_urb: array of urbs for the CPort out messages
102  * @cport_out_urb_busy: array of flags to see if the @cport_out_urb is busy or
103  *                      not.
104  * @cport_out_urb_cancelled: array of flags indicating whether the
105  *                      corresponding @cport_out_urb is being cancelled
106  * @cport_out_urb_lock: locks the @cport_out_urb_busy "list"
107  *
108  * @apb_log_task: task pointer for logging thread
109  * @apb_log_dentry: file system entry for the log file interface
110  * @apb_log_enable_dentry: file system entry for enabling logging
111  * @apb_log_fifo: kernel FIFO to carry logged data
112  * @arpc_urb: array of urbs for the ARPC in messages
113  * @arpc_buffer: array of buffers for the @arpc_urb urbs
114  * @arpc_endpoint_in: bulk in endpoint for APBridgeA RPC
115  * @arpc_id_cycle: gives an unique id to ARPC
116  * @arpc_lock: locks ARPC list
117  * @arpcs: list of in progress ARPCs
118  */
119 struct es2_ap_dev {
120         struct usb_device *usb_dev;
121         struct usb_interface *usb_intf;
122         struct gb_host_device *hd;
123
124         struct es2_cport_in cport_in[NUM_BULKS];
125         struct es2_cport_out cport_out[NUM_BULKS];
126         struct urb *cport_out_urb[NUM_CPORT_OUT_URB];
127         bool cport_out_urb_busy[NUM_CPORT_OUT_URB];
128         bool cport_out_urb_cancelled[NUM_CPORT_OUT_URB];
129         spinlock_t cport_out_urb_lock;
130
131         bool cdsi1_in_use;
132
133         int *cport_to_ep;
134
135         struct task_struct *apb_log_task;
136         struct dentry *apb_log_dentry;
137         struct dentry *apb_log_enable_dentry;
138         DECLARE_KFIFO(apb_log_fifo, char, APB1_LOG_SIZE);
139
140         __u8 arpc_endpoint_in;
141         struct urb *arpc_urb[NUM_ARPC_IN_URB];
142         u8 *arpc_buffer[NUM_ARPC_IN_URB];
143
144         int arpc_id_cycle;
145         spinlock_t arpc_lock;
146         struct list_head arpcs;
147 };
148
149 /**
150  * cport_to_ep - information about cport to endpoints mapping
151  * @cport_id: the id of cport to map to endpoints
152  * @endpoint_in: the endpoint number to use for in transfer
153  * @endpoint_out: he endpoint number to use for out transfer
154  */
155 struct cport_to_ep {
156         __le16 cport_id;
157         __u8 endpoint_in;
158         __u8 endpoint_out;
159 };
160
161 /**
162  * timesync_enable_request - Enable timesync in an APBridge
163  * @count: number of TimeSync Pulses to expect
164  * @frame_time: the initial FrameTime at the first TimeSync Pulse
165  * @strobe_delay: the expected delay in microseconds between each TimeSync Pulse
166  * @refclk: The AP mandated reference clock to run FrameTime at
167  */
168 struct timesync_enable_request {
169         __u8    count;
170         __le64  frame_time;
171         __le32  strobe_delay;
172         __le32  refclk;
173 } __packed;
174
175 /**
176  * timesync_authoritative_request - Transmit authoritative FrameTime to APBridge
177  * @frame_time: An array of authoritative FrameTimes provided by the SVC
178  *              and relayed to the APBridge by the AP
179  */
180 struct timesync_authoritative_request {
181         __le64  frame_time[GB_TIMESYNC_MAX_STROBES];
182 } __packed;
183
184 struct arpc {
185         struct list_head list;
186         struct arpc_request_message *req;
187         struct arpc_response_message *resp;
188         struct completion response_received;
189         bool active;
190 };
191
192 static inline struct es2_ap_dev *hd_to_es2(struct gb_host_device *hd)
193 {
194         return (struct es2_ap_dev *)&hd->hd_priv;
195 }
196
197 static void cport_out_callback(struct urb *urb);
198 static void usb_log_enable(struct es2_ap_dev *es2);
199 static void usb_log_disable(struct es2_ap_dev *es2);
200 static int arpc_sync(struct es2_ap_dev *es2, u8 type, void *payload,
201                      size_t size, int *result, unsigned int timeout);
202
203 /* Get the endpoints pair mapped to the cport */
204 static int cport_to_ep_pair(struct es2_ap_dev *es2, u16 cport_id)
205 {
206         if (cport_id >= es2->hd->num_cports)
207                 return 0;
208         return es2->cport_to_ep[cport_id];
209 }
210
211 /* Disable for now until we work all of this out to keep a warning-free build */
212 #if 0
213 /* Test if the endpoints pair is already mapped to a cport */
214 static int ep_pair_in_use(struct es2_ap_dev *es2, int ep_pair)
215 {
216         int i;
217
218         for (i = 0; i < es2->hd->num_cports; i++) {
219                 if (es2->cport_to_ep[i] == ep_pair)
220                         return 1;
221         }
222         return 0;
223 }
224
225 /* Configure the endpoint mapping and send the request to APBridge */
226 static int map_cport_to_ep(struct es2_ap_dev *es2,
227                                 u16 cport_id, int ep_pair)
228 {
229         int retval;
230         struct cport_to_ep *cport_to_ep;
231
232         if (ep_pair < 0 || ep_pair >= NUM_BULKS)
233                 return -EINVAL;
234         if (cport_id >= es2->hd->num_cports)
235                 return -EINVAL;
236         if (ep_pair && ep_pair_in_use(es2, ep_pair))
237                 return -EINVAL;
238
239         cport_to_ep = kmalloc(sizeof(*cport_to_ep), GFP_KERNEL);
240         if (!cport_to_ep)
241                 return -ENOMEM;
242
243         es2->cport_to_ep[cport_id] = ep_pair;
244         cport_to_ep->cport_id = cpu_to_le16(cport_id);
245         cport_to_ep->endpoint_in = es2->cport_in[ep_pair].endpoint;
246         cport_to_ep->endpoint_out = es2->cport_out[ep_pair].endpoint;
247
248         retval = usb_control_msg(es2->usb_dev,
249                                  usb_sndctrlpipe(es2->usb_dev, 0),
250                                  GB_APB_REQUEST_EP_MAPPING,
251                                  USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
252                                  0x00, 0x00,
253                                  (char *)cport_to_ep,
254                                  sizeof(*cport_to_ep),
255                                  ES2_USB_CTRL_TIMEOUT);
256         if (retval == sizeof(*cport_to_ep))
257                 retval = 0;
258         kfree(cport_to_ep);
259
260         return retval;
261 }
262
263 /* Unmap a cport: use the muxed endpoints pair */
264 static int unmap_cport(struct es2_ap_dev *es2, u16 cport_id)
265 {
266         return map_cport_to_ep(es2, cport_id, 0);
267 }
268 #endif
269
270 static int output_sync(struct es2_ap_dev *es2, void *req, u16 size, u8 cmd)
271 {
272         struct usb_device *udev = es2->usb_dev;
273         u8 *data;
274         int retval;
275
276         data = kmalloc(size, GFP_KERNEL);
277         if (!data)
278                 return -ENOMEM;
279         memcpy(data, req, size);
280
281         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
282                                  cmd,
283                                  USB_DIR_OUT | USB_TYPE_VENDOR |
284                                  USB_RECIP_INTERFACE,
285                                  0, 0, data, size, ES2_USB_CTRL_TIMEOUT);
286         if (retval < 0)
287                 dev_err(&udev->dev, "%s: return error %d\n", __func__, retval);
288         else
289                 retval = 0;
290
291         kfree(data);
292         return retval;
293 }
294
295 static void ap_urb_complete(struct urb *urb)
296 {
297         struct usb_ctrlrequest *dr = urb->context;
298
299         kfree(dr);
300         usb_free_urb(urb);
301 }
302
303 static int output_async(struct es2_ap_dev *es2, void *req, u16 size, u8 cmd)
304 {
305         struct usb_device *udev = es2->usb_dev;
306         struct urb *urb;
307         struct usb_ctrlrequest *dr;
308         u8 *buf;
309         int retval;
310
311         urb = usb_alloc_urb(0, GFP_ATOMIC);
312         if (!urb)
313                 return -ENOMEM;
314
315         dr = kmalloc(sizeof(*dr) + size, GFP_ATOMIC);
316         if (!dr) {
317                 usb_free_urb(urb);
318                 return -ENOMEM;
319         }
320
321         buf = (u8 *)dr + sizeof(*dr);
322         memcpy(buf, req, size);
323
324         dr->bRequest = cmd;
325         dr->bRequestType = USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE;
326         dr->wValue = 0;
327         dr->wIndex = 0;
328         dr->wLength = cpu_to_le16(size);
329
330         usb_fill_control_urb(urb, udev, usb_sndctrlpipe(udev, 0),
331                              (unsigned char *)dr, buf, size,
332                              ap_urb_complete, dr);
333         retval = usb_submit_urb(urb, GFP_ATOMIC);
334         if (retval) {
335                 usb_free_urb(urb);
336                 kfree(dr);
337         }
338         return retval;
339 }
340
341 static int output(struct gb_host_device *hd, void *req, u16 size, u8 cmd,
342                      bool async)
343 {
344         struct es2_ap_dev *es2 = hd_to_es2(hd);
345
346         if (async)
347                 return output_async(es2, req, size, cmd);
348
349         return output_sync(es2, req, size, cmd);
350 }
351
352 static int es2_cport_in_enable(struct es2_ap_dev *es2,
353                                 struct es2_cport_in *cport_in)
354 {
355         struct urb *urb;
356         int ret;
357         int i;
358
359         for (i = 0; i < NUM_CPORT_IN_URB; ++i) {
360                 urb = cport_in->urb[i];
361
362                 ret = usb_submit_urb(urb, GFP_KERNEL);
363                 if (ret) {
364                         dev_err(&es2->usb_dev->dev,
365                                         "failed to submit in-urb: %d\n", ret);
366                         goto err_kill_urbs;
367                 }
368         }
369
370         return 0;
371
372 err_kill_urbs:
373         for (--i; i >= 0; --i) {
374                 urb = cport_in->urb[i];
375                 usb_kill_urb(urb);
376         }
377
378         return ret;
379 }
380
381 static void es2_cport_in_disable(struct es2_ap_dev *es2,
382                                 struct es2_cport_in *cport_in)
383 {
384         struct urb *urb;
385         int i;
386
387         for (i = 0; i < NUM_CPORT_IN_URB; ++i) {
388                 urb = cport_in->urb[i];
389                 usb_kill_urb(urb);
390         }
391 }
392
393 static int es2_arpc_in_enable(struct es2_ap_dev *es2)
394 {
395         struct urb *urb;
396         int ret;
397         int i;
398
399         for (i = 0; i < NUM_ARPC_IN_URB; ++i) {
400                 urb = es2->arpc_urb[i];
401
402                 ret = usb_submit_urb(urb, GFP_KERNEL);
403                 if (ret) {
404                         dev_err(&es2->usb_dev->dev,
405                                 "failed to submit arpc in-urb: %d\n", ret);
406                         goto err_kill_urbs;
407                 }
408         }
409
410         return 0;
411
412 err_kill_urbs:
413         for (--i; i >= 0; --i) {
414                 urb = es2->arpc_urb[i];
415                 usb_kill_urb(urb);
416         }
417
418         return ret;
419 }
420
421 static void es2_arpc_in_disable(struct es2_ap_dev *es2)
422 {
423         struct urb *urb;
424         int i;
425
426         for (i = 0; i < NUM_ARPC_IN_URB; ++i) {
427                 urb = es2->arpc_urb[i];
428                 usb_kill_urb(urb);
429         }
430 }
431
432 static struct urb *next_free_urb(struct es2_ap_dev *es2, gfp_t gfp_mask)
433 {
434         struct urb *urb = NULL;
435         unsigned long flags;
436         int i;
437
438         spin_lock_irqsave(&es2->cport_out_urb_lock, flags);
439
440         /* Look in our pool of allocated urbs first, as that's the "fastest" */
441         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
442                 if (es2->cport_out_urb_busy[i] == false &&
443                                 es2->cport_out_urb_cancelled[i] == false) {
444                         es2->cport_out_urb_busy[i] = true;
445                         urb = es2->cport_out_urb[i];
446                         break;
447                 }
448         }
449         spin_unlock_irqrestore(&es2->cport_out_urb_lock, flags);
450         if (urb)
451                 return urb;
452
453         /*
454          * Crap, pool is empty, complain to the syslog and go allocate one
455          * dynamically as we have to succeed.
456          */
457         dev_dbg(&es2->usb_dev->dev,
458                 "No free CPort OUT urbs, having to dynamically allocate one!\n");
459         return usb_alloc_urb(0, gfp_mask);
460 }
461
462 static void free_urb(struct es2_ap_dev *es2, struct urb *urb)
463 {
464         unsigned long flags;
465         int i;
466         /*
467          * See if this was an urb in our pool, if so mark it "free", otherwise
468          * we need to free it ourselves.
469          */
470         spin_lock_irqsave(&es2->cport_out_urb_lock, flags);
471         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
472                 if (urb == es2->cport_out_urb[i]) {
473                         es2->cport_out_urb_busy[i] = false;
474                         urb = NULL;
475                         break;
476                 }
477         }
478         spin_unlock_irqrestore(&es2->cport_out_urb_lock, flags);
479
480         /* If urb is not NULL, then we need to free this urb */
481         usb_free_urb(urb);
482 }
483
484 /*
485  * We (ab)use the operation-message header pad bytes to transfer the
486  * cport id in order to minimise overhead.
487  */
488 static void
489 gb_message_cport_pack(struct gb_operation_msg_hdr *header, u16 cport_id)
490 {
491         header->pad[0] = cport_id;
492 }
493
494 /* Clear the pad bytes used for the CPort id */
495 static void gb_message_cport_clear(struct gb_operation_msg_hdr *header)
496 {
497         header->pad[0] = 0;
498 }
499
500 /* Extract the CPort id packed into the header, and clear it */
501 static u16 gb_message_cport_unpack(struct gb_operation_msg_hdr *header)
502 {
503         u16 cport_id = header->pad[0];
504
505         gb_message_cport_clear(header);
506
507         return cport_id;
508 }
509
510 /*
511  * Returns zero if the message was successfully queued, or a negative errno
512  * otherwise.
513  */
514 static int message_send(struct gb_host_device *hd, u16 cport_id,
515                         struct gb_message *message, gfp_t gfp_mask)
516 {
517         struct es2_ap_dev *es2 = hd_to_es2(hd);
518         struct usb_device *udev = es2->usb_dev;
519         size_t buffer_size;
520         int retval;
521         struct urb *urb;
522         int ep_pair;
523         unsigned long flags;
524
525         /*
526          * The data actually transferred will include an indication
527          * of where the data should be sent.  Do one last check of
528          * the target CPort id before filling it in.
529          */
530         if (!cport_id_valid(hd, cport_id)) {
531                 dev_err(&udev->dev, "invalid cport %u\n", cport_id);
532                 return -EINVAL;
533         }
534
535         /* Find a free urb */
536         urb = next_free_urb(es2, gfp_mask);
537         if (!urb)
538                 return -ENOMEM;
539
540         spin_lock_irqsave(&es2->cport_out_urb_lock, flags);
541         message->hcpriv = urb;
542         spin_unlock_irqrestore(&es2->cport_out_urb_lock, flags);
543
544         /* Pack the cport id into the message header */
545         gb_message_cport_pack(message->header, cport_id);
546
547         buffer_size = sizeof(*message->header) + message->payload_size;
548
549         ep_pair = cport_to_ep_pair(es2, cport_id);
550         usb_fill_bulk_urb(urb, udev,
551                           usb_sndbulkpipe(udev,
552                                           es2->cport_out[ep_pair].endpoint),
553                           message->buffer, buffer_size,
554                           cport_out_callback, message);
555         urb->transfer_flags |= URB_ZERO_PACKET;
556
557         trace_gb_message_submit(message);
558
559         retval = usb_submit_urb(urb, gfp_mask);
560         if (retval) {
561                 dev_err(&udev->dev, "failed to submit out-urb: %d\n", retval);
562
563                 spin_lock_irqsave(&es2->cport_out_urb_lock, flags);
564                 message->hcpriv = NULL;
565                 spin_unlock_irqrestore(&es2->cport_out_urb_lock, flags);
566
567                 free_urb(es2, urb);
568                 gb_message_cport_clear(message->header);
569
570                 return retval;
571         }
572
573         return 0;
574 }
575
576 /*
577  * Can not be called in atomic context.
578  */
579 static void message_cancel(struct gb_message *message)
580 {
581         struct gb_host_device *hd = message->operation->connection->hd;
582         struct es2_ap_dev *es2 = hd_to_es2(hd);
583         struct urb *urb;
584         int i;
585
586         might_sleep();
587
588         spin_lock_irq(&es2->cport_out_urb_lock);
589         urb = message->hcpriv;
590
591         /* Prevent dynamically allocated urb from being deallocated. */
592         usb_get_urb(urb);
593
594         /* Prevent pre-allocated urb from being reused. */
595         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
596                 if (urb == es2->cport_out_urb[i]) {
597                         es2->cport_out_urb_cancelled[i] = true;
598                         break;
599                 }
600         }
601         spin_unlock_irq(&es2->cport_out_urb_lock);
602
603         usb_kill_urb(urb);
604
605         if (i < NUM_CPORT_OUT_URB) {
606                 spin_lock_irq(&es2->cport_out_urb_lock);
607                 es2->cport_out_urb_cancelled[i] = false;
608                 spin_unlock_irq(&es2->cport_out_urb_lock);
609         }
610
611         usb_free_urb(urb);
612 }
613
614 static int cport_reset(struct gb_host_device *hd, u16 cport_id)
615 {
616         struct es2_ap_dev *es2 = hd_to_es2(hd);
617         struct usb_device *udev = es2->usb_dev;
618         struct arpc_cport_reset_req req;
619         int retval;
620         int result;
621
622         switch (cport_id) {
623         case GB_SVC_CPORT_ID:
624         case ES2_CPORT_CDSI0:
625         case ES2_CPORT_CDSI1:
626                 return 0;
627         }
628
629         req.cport_id = cpu_to_le16(cport_id);
630         retval = arpc_sync(es2, ARPC_TYPE_CPORT_RESET, &req, sizeof(req),
631                            &result, ES2_ARPC_CPORT_TIMEOUT);
632         if (retval == -EREMOTEIO) {
633                 dev_err(&udev->dev, "failed to reset cport %u: %d\n", cport_id,
634                         result);
635         }
636
637         return retval;
638 }
639
640 static int es2_cport_allocate(struct gb_host_device *hd, int cport_id,
641                                 unsigned long flags)
642 {
643         struct es2_ap_dev *es2 = hd_to_es2(hd);
644         struct ida *id_map = &hd->cport_id_map;
645         int ida_start, ida_end;
646
647         switch (cport_id) {
648         case ES2_CPORT_CDSI0:
649         case ES2_CPORT_CDSI1:
650                 dev_err(&hd->dev, "cport %d not available\n", cport_id);
651                 return -EBUSY;
652         }
653
654         if (flags & GB_CONNECTION_FLAG_OFFLOADED &&
655                         flags & GB_CONNECTION_FLAG_CDSI1) {
656                 if (es2->cdsi1_in_use) {
657                         dev_err(&hd->dev, "CDSI1 already in use\n");
658                         return -EBUSY;
659                 }
660
661                 es2->cdsi1_in_use = true;
662
663                 return ES2_CPORT_CDSI1;
664         }
665
666         if (cport_id < 0) {
667                 ida_start = 0;
668                 ida_end = hd->num_cports;
669         } else if (cport_id < hd->num_cports) {
670                 ida_start = cport_id;
671                 ida_end = cport_id + 1;
672         } else {
673                 dev_err(&hd->dev, "cport %d not available\n", cport_id);
674                 return -EINVAL;
675         }
676
677         return ida_simple_get(id_map, ida_start, ida_end, GFP_KERNEL);
678 }
679
680 static void es2_cport_release(struct gb_host_device *hd, u16 cport_id)
681 {
682         struct es2_ap_dev *es2 = hd_to_es2(hd);
683
684         switch (cport_id) {
685         case ES2_CPORT_CDSI1:
686                 es2->cdsi1_in_use = false;
687                 return;
688         }
689
690         ida_simple_remove(&hd->cport_id_map, cport_id);
691 }
692
693 static int cport_enable(struct gb_host_device *hd, u16 cport_id,
694                         unsigned long flags)
695 {
696         struct es2_ap_dev *es2 = hd_to_es2(hd);
697         struct usb_device *udev = es2->usb_dev;
698         struct gb_apb_request_cport_flags *req;
699         u32 connection_flags;
700         int ret;
701
702         req = kzalloc(sizeof(*req), GFP_KERNEL);
703         if (!req)
704                 return -ENOMEM;
705
706         connection_flags = 0;
707         if (flags & GB_CONNECTION_FLAG_CONTROL)
708                 connection_flags |= GB_APB_CPORT_FLAG_CONTROL;
709         if (flags & GB_CONNECTION_FLAG_HIGH_PRIO)
710                 connection_flags |= GB_APB_CPORT_FLAG_HIGH_PRIO;
711
712         req->flags = cpu_to_le32(connection_flags);
713
714         dev_dbg(&hd->dev, "%s - cport = %u, flags = %02x\n", __func__,
715                         cport_id, connection_flags);
716
717         ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
718                                 GB_APB_REQUEST_CPORT_FLAGS,
719                                 USB_DIR_OUT | USB_TYPE_VENDOR |
720                                 USB_RECIP_INTERFACE, cport_id, 0,
721                                 req, sizeof(*req), ES2_USB_CTRL_TIMEOUT);
722         if (ret != sizeof(*req)) {
723                 dev_err(&udev->dev, "failed to set cport flags for port %d\n",
724                                 cport_id);
725                 if (ret >= 0)
726                         ret = -EIO;
727
728                 goto out;
729         }
730
731         ret = 0;
732 out:
733         kfree(req);
734
735         return ret;
736 }
737
738 static int cport_disable(struct gb_host_device *hd, u16 cport_id)
739 {
740         int retval;
741
742         retval = cport_reset(hd, cport_id);
743         if (retval)
744                 return retval;
745
746         return 0;
747 }
748
749 static int es2_cport_connected(struct gb_host_device *hd, u16 cport_id)
750 {
751         struct es2_ap_dev *es2 = hd_to_es2(hd);
752         struct device *dev = &es2->usb_dev->dev;
753         struct arpc_cport_connected_req req;
754         int ret;
755
756         req.cport_id = cpu_to_le16(cport_id);
757         ret = arpc_sync(es2, ARPC_TYPE_CPORT_CONNECTED, &req, sizeof(req),
758                         NULL, ES2_ARPC_CPORT_TIMEOUT);
759         if (ret) {
760                 dev_err(dev, "failed to set connected state for cport %u: %d\n",
761                                 cport_id, ret);
762                 return ret;
763         }
764
765         return 0;
766 }
767
768 static int latency_tag_enable(struct gb_host_device *hd, u16 cport_id)
769 {
770         int retval;
771         struct es2_ap_dev *es2 = hd_to_es2(hd);
772         struct usb_device *udev = es2->usb_dev;
773
774         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
775                                  GB_APB_REQUEST_LATENCY_TAG_EN,
776                                  USB_DIR_OUT | USB_TYPE_VENDOR |
777                                  USB_RECIP_INTERFACE, cport_id, 0, NULL,
778                                  0, ES2_USB_CTRL_TIMEOUT);
779
780         if (retval < 0)
781                 dev_err(&udev->dev, "Cannot enable latency tag for cport %d\n",
782                         cport_id);
783         return retval;
784 }
785
786 static int latency_tag_disable(struct gb_host_device *hd, u16 cport_id)
787 {
788         int retval;
789         struct es2_ap_dev *es2 = hd_to_es2(hd);
790         struct usb_device *udev = es2->usb_dev;
791
792         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
793                                  GB_APB_REQUEST_LATENCY_TAG_DIS,
794                                  USB_DIR_OUT | USB_TYPE_VENDOR |
795                                  USB_RECIP_INTERFACE, cport_id, 0, NULL,
796                                  0, ES2_USB_CTRL_TIMEOUT);
797
798         if (retval < 0)
799                 dev_err(&udev->dev, "Cannot disable latency tag for cport %d\n",
800                         cport_id);
801         return retval;
802 }
803
804 static int cport_features_enable(struct gb_host_device *hd, u16 cport_id)
805 {
806         int retval;
807         struct es2_ap_dev *es2 = hd_to_es2(hd);
808         struct usb_device *udev = es2->usb_dev;
809
810         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
811                                  GB_APB_REQUEST_CPORT_FEAT_EN,
812                                  USB_DIR_OUT | USB_TYPE_VENDOR |
813                                  USB_RECIP_INTERFACE, cport_id, 0, NULL,
814                                  0, ES2_USB_CTRL_TIMEOUT);
815         if (retval < 0)
816                 dev_err(&udev->dev, "Cannot enable CPort features for cport %u: %d\n",
817                         cport_id, retval);
818         return retval;
819 }
820
821 static int cport_features_disable(struct gb_host_device *hd, u16 cport_id)
822 {
823         int retval;
824         struct es2_ap_dev *es2 = hd_to_es2(hd);
825         struct usb_device *udev = es2->usb_dev;
826
827         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
828                                  GB_APB_REQUEST_CPORT_FEAT_DIS,
829                                  USB_DIR_OUT | USB_TYPE_VENDOR |
830                                  USB_RECIP_INTERFACE, cport_id, 0, NULL,
831                                  0, ES2_USB_CTRL_TIMEOUT);
832         if (retval < 0)
833                 dev_err(&udev->dev,
834                         "Cannot disable CPort features for cport %u: %d\n",
835                         cport_id, retval);
836         return retval;
837 }
838
839 static int timesync_enable(struct gb_host_device *hd, u8 count,
840                            u64 frame_time, u32 strobe_delay, u32 refclk)
841 {
842         int retval;
843         struct es2_ap_dev *es2 = hd_to_es2(hd);
844         struct usb_device *udev = es2->usb_dev;
845         struct gb_control_timesync_enable_request *request;
846
847         request = kzalloc(sizeof(*request), GFP_KERNEL);
848         if (!request)
849                 return -ENOMEM;
850
851         request->count = count;
852         request->frame_time = cpu_to_le64(frame_time);
853         request->strobe_delay = cpu_to_le32(strobe_delay);
854         request->refclk = cpu_to_le32(refclk);
855         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
856                                  GB_APB_REQUEST_TIMESYNC_ENABLE,
857                                  USB_DIR_OUT | USB_TYPE_VENDOR |
858                                  USB_RECIP_INTERFACE, 0, 0, request,
859                                  sizeof(*request), ES2_USB_CTRL_TIMEOUT);
860         if (retval < 0)
861                 dev_err(&udev->dev, "Cannot enable timesync %d\n", retval);
862
863         kfree(request);
864         return retval;
865 }
866
867 static int timesync_disable(struct gb_host_device *hd)
868 {
869         int retval;
870         struct es2_ap_dev *es2 = hd_to_es2(hd);
871         struct usb_device *udev = es2->usb_dev;
872
873         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
874                                  GB_APB_REQUEST_TIMESYNC_DISABLE,
875                                  USB_DIR_OUT | USB_TYPE_VENDOR |
876                                  USB_RECIP_INTERFACE, 0, 0, NULL,
877                                  0, ES2_USB_CTRL_TIMEOUT);
878         if (retval < 0)
879                 dev_err(&udev->dev, "Cannot disable timesync %d\n", retval);
880
881         return retval;
882 }
883
884 static int timesync_authoritative(struct gb_host_device *hd, u64 *frame_time)
885 {
886         int retval, i;
887         struct es2_ap_dev *es2 = hd_to_es2(hd);
888         struct usb_device *udev = es2->usb_dev;
889         struct timesync_authoritative_request *request;
890
891         request = kzalloc(sizeof(*request), GFP_KERNEL);
892         if (!request)
893                 return -ENOMEM;
894
895         for (i = 0; i < GB_TIMESYNC_MAX_STROBES; i++)
896                 request->frame_time[i] = cpu_to_le64(frame_time[i]);
897
898         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
899                                  GB_APB_REQUEST_TIMESYNC_AUTHORITATIVE,
900                                  USB_DIR_OUT | USB_TYPE_VENDOR |
901                                  USB_RECIP_INTERFACE, 0, 0, request,
902                                  sizeof(*request), ES2_USB_CTRL_TIMEOUT);
903         if (retval < 0)
904                 dev_err(&udev->dev, "Cannot timesync authoritative out %d\n", retval);
905
906         kfree(request);
907         return retval;
908 }
909
910 static int timesync_get_last_event(struct gb_host_device *hd, u64 *frame_time)
911 {
912         int retval;
913         struct es2_ap_dev *es2 = hd_to_es2(hd);
914         struct usb_device *udev = es2->usb_dev;
915         __le64 *response_frame_time;
916
917         response_frame_time = kzalloc(sizeof(*response_frame_time), GFP_KERNEL);
918         if (!response_frame_time)
919                 return -ENOMEM;
920
921         retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
922                                  GB_APB_REQUEST_TIMESYNC_GET_LAST_EVENT,
923                                  USB_DIR_IN | USB_TYPE_VENDOR |
924                                  USB_RECIP_INTERFACE, 0, 0, response_frame_time,
925                                  sizeof(*response_frame_time),
926                                  ES2_USB_CTRL_TIMEOUT);
927
928         if (retval != sizeof(*response_frame_time)) {
929                 dev_err(&udev->dev, "Cannot get last TimeSync event: %d\n",
930                         retval);
931
932                 if (retval >= 0)
933                         retval = -EIO;
934
935                 goto out;
936         }
937         *frame_time = le64_to_cpu(*response_frame_time);
938         retval = 0;
939 out:
940         kfree(response_frame_time);
941         return retval;
942 }
943
944 static struct gb_hd_driver es2_driver = {
945         .hd_priv_size                   = sizeof(struct es2_ap_dev),
946         .message_send                   = message_send,
947         .message_cancel                 = message_cancel,
948         .cport_allocate                 = es2_cport_allocate,
949         .cport_release                  = es2_cport_release,
950         .cport_enable                   = cport_enable,
951         .cport_disable                  = cport_disable,
952         .cport_connected                = es2_cport_connected,
953         .latency_tag_enable             = latency_tag_enable,
954         .latency_tag_disable            = latency_tag_disable,
955         .output                         = output,
956         .cport_features_enable          = cport_features_enable,
957         .cport_features_disable         = cport_features_disable,
958         .timesync_enable                = timesync_enable,
959         .timesync_disable               = timesync_disable,
960         .timesync_authoritative         = timesync_authoritative,
961         .timesync_get_last_event        = timesync_get_last_event,
962 };
963
964 /* Common function to report consistent warnings based on URB status */
965 static int check_urb_status(struct urb *urb)
966 {
967         struct device *dev = &urb->dev->dev;
968         int status = urb->status;
969
970         switch (status) {
971         case 0:
972                 return 0;
973
974         case -EOVERFLOW:
975                 dev_err(dev, "%s: overflow actual length is %d\n",
976                         __func__, urb->actual_length);
977         case -ECONNRESET:
978         case -ENOENT:
979         case -ESHUTDOWN:
980         case -EILSEQ:
981         case -EPROTO:
982                 /* device is gone, stop sending */
983                 return status;
984         }
985         dev_err(dev, "%s: unknown status %d\n", __func__, status);
986
987         return -EAGAIN;
988 }
989
990 static void es2_destroy(struct es2_ap_dev *es2)
991 {
992         struct usb_device *udev;
993         int bulk_in;
994         int i;
995
996         debugfs_remove(es2->apb_log_enable_dentry);
997         usb_log_disable(es2);
998
999         /* Tear down everything! */
1000         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
1001                 struct urb *urb = es2->cport_out_urb[i];
1002
1003                 if (!urb)
1004                         break;
1005                 usb_kill_urb(urb);
1006                 usb_free_urb(urb);
1007                 es2->cport_out_urb[i] = NULL;
1008                 es2->cport_out_urb_busy[i] = false;     /* just to be anal */
1009         }
1010
1011         for (i = 0; i < NUM_ARPC_IN_URB; ++i) {
1012                 struct urb *urb = es2->arpc_urb[i];
1013
1014                 if (!urb)
1015                         break;
1016                 usb_free_urb(urb);
1017                 kfree(es2->arpc_buffer[i]);
1018                 es2->arpc_buffer[i] = NULL;
1019         }
1020
1021         for (bulk_in = 0; bulk_in < NUM_BULKS; bulk_in++) {
1022                 struct es2_cport_in *cport_in = &es2->cport_in[bulk_in];
1023
1024                 for (i = 0; i < NUM_CPORT_IN_URB; ++i) {
1025                         struct urb *urb = cport_in->urb[i];
1026
1027                         if (!urb)
1028                                 break;
1029                         usb_free_urb(urb);
1030                         kfree(cport_in->buffer[i]);
1031                         cport_in->buffer[i] = NULL;
1032                 }
1033         }
1034
1035         kfree(es2->cport_to_ep);
1036
1037         /* release reserved CDSI0 and CDSI1 cports */
1038         gb_hd_cport_release_reserved(es2->hd, ES2_CPORT_CDSI1);
1039         gb_hd_cport_release_reserved(es2->hd, ES2_CPORT_CDSI0);
1040
1041         udev = es2->usb_dev;
1042         gb_hd_put(es2->hd);
1043
1044         usb_put_dev(udev);
1045 }
1046
1047 static void cport_in_callback(struct urb *urb)
1048 {
1049         struct gb_host_device *hd = urb->context;
1050         struct device *dev = &urb->dev->dev;
1051         struct gb_operation_msg_hdr *header;
1052         int status = check_urb_status(urb);
1053         int retval;
1054         u16 cport_id;
1055
1056         if (status) {
1057                 if ((status == -EAGAIN) || (status == -EPROTO))
1058                         goto exit;
1059
1060                 /* The urb is being unlinked */
1061                 if (status == -ENOENT || status == -ESHUTDOWN)
1062                         return;
1063
1064                 dev_err(dev, "urb cport in error %d (dropped)\n", status);
1065                 return;
1066         }
1067
1068         if (urb->actual_length < sizeof(*header)) {
1069                 dev_err(dev, "short message received\n");
1070                 goto exit;
1071         }
1072
1073         /* Extract the CPort id, which is packed in the message header */
1074         header = urb->transfer_buffer;
1075         cport_id = gb_message_cport_unpack(header);
1076
1077         if (cport_id_valid(hd, cport_id)) {
1078                 greybus_data_rcvd(hd, cport_id, urb->transfer_buffer,
1079                                                         urb->actual_length);
1080         } else {
1081                 dev_err(dev, "invalid cport id %u received\n", cport_id);
1082         }
1083 exit:
1084         /* put our urb back in the request pool */
1085         retval = usb_submit_urb(urb, GFP_ATOMIC);
1086         if (retval)
1087                 dev_err(dev, "failed to resubmit in-urb: %d\n", retval);
1088 }
1089
1090 static void cport_out_callback(struct urb *urb)
1091 {
1092         struct gb_message *message = urb->context;
1093         struct gb_host_device *hd = message->operation->connection->hd;
1094         struct es2_ap_dev *es2 = hd_to_es2(hd);
1095         int status = check_urb_status(urb);
1096         unsigned long flags;
1097
1098         gb_message_cport_clear(message->header);
1099
1100         spin_lock_irqsave(&es2->cport_out_urb_lock, flags);
1101         message->hcpriv = NULL;
1102         spin_unlock_irqrestore(&es2->cport_out_urb_lock, flags);
1103
1104         /*
1105          * Tell the submitter that the message send (attempt) is
1106          * complete, and report the status.
1107          */
1108         greybus_message_sent(hd, message, status);
1109
1110         free_urb(es2, urb);
1111 }
1112
1113 static struct arpc *arpc_alloc(void *payload, u16 size, u8 type)
1114 {
1115         struct arpc *rpc;
1116
1117         if (size + sizeof(*rpc->req) > ARPC_OUT_SIZE_MAX)
1118                 return NULL;
1119
1120         rpc = kzalloc(sizeof(*rpc), GFP_KERNEL);
1121         if (!rpc)
1122                 return NULL;
1123
1124         INIT_LIST_HEAD(&rpc->list);
1125         rpc->req = kzalloc(sizeof(*rpc->req) + size, GFP_KERNEL);
1126         if (!rpc->req)
1127                 goto err_free_rpc;
1128
1129         rpc->resp = kzalloc(sizeof(*rpc->resp), GFP_KERNEL);
1130         if (!rpc->resp)
1131                 goto err_free_req;
1132
1133         rpc->req->type = type;
1134         rpc->req->size = cpu_to_le16(sizeof(rpc->req) + size);
1135         memcpy(rpc->req->data, payload, size);
1136
1137         init_completion(&rpc->response_received);
1138
1139         return rpc;
1140
1141 err_free_req:
1142         kfree(rpc->req);
1143 err_free_rpc:
1144         kfree(rpc);
1145
1146         return NULL;
1147 }
1148
1149 static void arpc_free(struct arpc *rpc)
1150 {
1151         kfree(rpc->req);
1152         kfree(rpc->resp);
1153         kfree(rpc);
1154 }
1155
1156 static struct arpc *arpc_find(struct es2_ap_dev *es2, __le16 id)
1157 {
1158         struct arpc *rpc;
1159
1160         list_for_each_entry(rpc, &es2->arpcs, list) {
1161                 if (rpc->req->id == id)
1162                         return rpc;
1163         }
1164
1165         return NULL;
1166 }
1167
1168 static void arpc_add(struct es2_ap_dev *es2, struct arpc *rpc)
1169 {
1170         rpc->active = true;
1171         rpc->req->id = cpu_to_le16(es2->arpc_id_cycle++);
1172         list_add_tail(&rpc->list, &es2->arpcs);
1173 }
1174
1175 static void arpc_del(struct es2_ap_dev *es2, struct arpc *rpc)
1176 {
1177         if (rpc->active) {
1178                 rpc->active = false;
1179                 list_del(&rpc->list);
1180         }
1181 }
1182
1183 static int arpc_send(struct es2_ap_dev *es2, struct arpc *rpc, int timeout)
1184 {
1185         struct usb_device *udev = es2->usb_dev;
1186         int retval;
1187
1188         retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
1189                                  GB_APB_REQUEST_ARPC_RUN,
1190                                  USB_DIR_OUT | USB_TYPE_VENDOR |
1191                                  USB_RECIP_INTERFACE,
1192                                  0, 0,
1193                                  rpc->req, le16_to_cpu(rpc->req->size),
1194                                  ES2_USB_CTRL_TIMEOUT);
1195         if (retval != le16_to_cpu(rpc->req->size)) {
1196                 dev_err(&udev->dev,
1197                         "failed to send ARPC request %d: %d\n",
1198                         rpc->req->type, retval);
1199                 if (retval > 0)
1200                         retval = -EIO;
1201                 return retval;
1202         }
1203
1204         return 0;
1205 }
1206
1207 static int arpc_sync(struct es2_ap_dev *es2, u8 type, void *payload,
1208                      size_t size, int *result, unsigned int timeout)
1209 {
1210         struct arpc *rpc;
1211         unsigned long flags;
1212         int retval;
1213
1214         if (result)
1215                 *result = 0;
1216
1217         rpc = arpc_alloc(payload, size, type);
1218         if (!rpc)
1219                 return -ENOMEM;
1220
1221         spin_lock_irqsave(&es2->arpc_lock, flags);
1222         arpc_add(es2, rpc);
1223         spin_unlock_irqrestore(&es2->arpc_lock, flags);
1224
1225         retval = arpc_send(es2, rpc, timeout);
1226         if (retval)
1227                 goto out_arpc_del;
1228
1229         retval = wait_for_completion_interruptible_timeout(
1230                                                 &rpc->response_received,
1231                                                 msecs_to_jiffies(timeout));
1232         if (retval <= 0) {
1233                 if (!retval)
1234                         retval = -ETIMEDOUT;
1235                 goto out_arpc_del;
1236         }
1237
1238         if (rpc->resp->result) {
1239                 retval = -EREMOTEIO;
1240                 if (result)
1241                         *result = rpc->resp->result;
1242         } else {
1243                 retval = 0;
1244         }
1245
1246 out_arpc_del:
1247         spin_lock_irqsave(&es2->arpc_lock, flags);
1248         arpc_del(es2, rpc);
1249         spin_unlock_irqrestore(&es2->arpc_lock, flags);
1250         arpc_free(rpc);
1251
1252         if (retval < 0 && retval != -EREMOTEIO) {
1253                 dev_err(&es2->usb_dev->dev,
1254                         "failed to execute ARPC: %d\n", retval);
1255         }
1256
1257         return retval;
1258 }
1259
1260 static void arpc_in_callback(struct urb *urb)
1261 {
1262         struct es2_ap_dev *es2 = urb->context;
1263         struct device *dev = &urb->dev->dev;
1264         int status = check_urb_status(urb);
1265         struct arpc *rpc;
1266         struct arpc_response_message *resp;
1267         unsigned long flags;
1268         int retval;
1269
1270         if (status) {
1271                 if ((status == -EAGAIN) || (status == -EPROTO))
1272                         goto exit;
1273
1274                 /* The urb is being unlinked */
1275                 if (status == -ENOENT || status == -ESHUTDOWN)
1276                         return;
1277
1278                 dev_err(dev, "arpc in-urb error %d (dropped)\n", status);
1279                 return;
1280         }
1281
1282         if (urb->actual_length < sizeof(*resp)) {
1283                 dev_err(dev, "short aprc response received\n");
1284                 goto exit;
1285         }
1286
1287         resp = urb->transfer_buffer;
1288         spin_lock_irqsave(&es2->arpc_lock, flags);
1289         rpc = arpc_find(es2, resp->id);
1290         if (!rpc) {
1291                 dev_err(dev, "invalid arpc response id received: %u\n",
1292                         le16_to_cpu(resp->id));
1293                 spin_unlock_irqrestore(&es2->arpc_lock, flags);
1294                 goto exit;
1295         }
1296
1297         arpc_del(es2, rpc);
1298         memcpy(rpc->resp, resp, sizeof(*resp));
1299         complete(&rpc->response_received);
1300         spin_unlock_irqrestore(&es2->arpc_lock, flags);
1301
1302 exit:
1303         /* put our urb back in the request pool */
1304         retval = usb_submit_urb(urb, GFP_ATOMIC);
1305         if (retval)
1306                 dev_err(dev, "failed to resubmit arpc in-urb: %d\n", retval);
1307 }
1308
1309 #define APB1_LOG_MSG_SIZE       64
1310 static void apb_log_get(struct es2_ap_dev *es2, char *buf)
1311 {
1312         int retval;
1313
1314         do {
1315                 retval = usb_control_msg(es2->usb_dev,
1316                                         usb_rcvctrlpipe(es2->usb_dev, 0),
1317                                         GB_APB_REQUEST_LOG,
1318                                         USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
1319                                         0x00, 0x00,
1320                                         buf,
1321                                         APB1_LOG_MSG_SIZE,
1322                                         ES2_USB_CTRL_TIMEOUT);
1323                 if (retval > 0)
1324                         kfifo_in(&es2->apb_log_fifo, buf, retval);
1325         } while (retval > 0);
1326 }
1327
1328 static int apb_log_poll(void *data)
1329 {
1330         struct es2_ap_dev *es2 = data;
1331         char *buf;
1332
1333         buf = kmalloc(APB1_LOG_MSG_SIZE, GFP_KERNEL);
1334         if (!buf)
1335                 return -ENOMEM;
1336
1337         while (!kthread_should_stop()) {
1338                 msleep(1000);
1339                 apb_log_get(es2, buf);
1340         }
1341
1342         kfree(buf);
1343
1344         return 0;
1345 }
1346
1347 static ssize_t apb_log_read(struct file *f, char __user *buf,
1348                                 size_t count, loff_t *ppos)
1349 {
1350         struct es2_ap_dev *es2 = f->f_inode->i_private;
1351         ssize_t ret;
1352         size_t copied;
1353         char *tmp_buf;
1354
1355         if (count > APB1_LOG_SIZE)
1356                 count = APB1_LOG_SIZE;
1357
1358         tmp_buf = kmalloc(count, GFP_KERNEL);
1359         if (!tmp_buf)
1360                 return -ENOMEM;
1361
1362         copied = kfifo_out(&es2->apb_log_fifo, tmp_buf, count);
1363         ret = simple_read_from_buffer(buf, count, ppos, tmp_buf, copied);
1364
1365         kfree(tmp_buf);
1366
1367         return ret;
1368 }
1369
1370 static const struct file_operations apb_log_fops = {
1371         .read   = apb_log_read,
1372 };
1373
1374 static void usb_log_enable(struct es2_ap_dev *es2)
1375 {
1376         if (!IS_ERR_OR_NULL(es2->apb_log_task))
1377                 return;
1378
1379         /* get log from APB1 */
1380         es2->apb_log_task = kthread_run(apb_log_poll, es2, "apb_log");
1381         if (IS_ERR(es2->apb_log_task))
1382                 return;
1383         /* XXX We will need to rename this per APB */
1384         es2->apb_log_dentry = debugfs_create_file("apb_log", S_IRUGO,
1385                                                 gb_debugfs_get(), es2,
1386                                                 &apb_log_fops);
1387 }
1388
1389 static void usb_log_disable(struct es2_ap_dev *es2)
1390 {
1391         if (IS_ERR_OR_NULL(es2->apb_log_task))
1392                 return;
1393
1394         debugfs_remove(es2->apb_log_dentry);
1395         es2->apb_log_dentry = NULL;
1396
1397         kthread_stop(es2->apb_log_task);
1398         es2->apb_log_task = NULL;
1399 }
1400
1401 static ssize_t apb_log_enable_read(struct file *f, char __user *buf,
1402                                 size_t count, loff_t *ppos)
1403 {
1404         struct es2_ap_dev *es2 = f->f_inode->i_private;
1405         int enable = !IS_ERR_OR_NULL(es2->apb_log_task);
1406         char tmp_buf[3];
1407
1408         sprintf(tmp_buf, "%d\n", enable);
1409         return simple_read_from_buffer(buf, count, ppos, tmp_buf, 3);
1410 }
1411
1412 static ssize_t apb_log_enable_write(struct file *f, const char __user *buf,
1413                                 size_t count, loff_t *ppos)
1414 {
1415         int enable;
1416         ssize_t retval;
1417         struct es2_ap_dev *es2 = f->f_inode->i_private;
1418
1419         retval = kstrtoint_from_user(buf, count, 10, &enable);
1420         if (retval)
1421                 return retval;
1422
1423         if (enable)
1424                 usb_log_enable(es2);
1425         else
1426                 usb_log_disable(es2);
1427
1428         return count;
1429 }
1430
1431 static const struct file_operations apb_log_enable_fops = {
1432         .read   = apb_log_enable_read,
1433         .write  = apb_log_enable_write,
1434 };
1435
1436 static int apb_get_cport_count(struct usb_device *udev)
1437 {
1438         int retval;
1439         __le16 *cport_count;
1440
1441         cport_count = kzalloc(sizeof(*cport_count), GFP_KERNEL);
1442         if (!cport_count)
1443                 return -ENOMEM;
1444
1445         retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
1446                                  GB_APB_REQUEST_CPORT_COUNT,
1447                                  USB_DIR_IN | USB_TYPE_VENDOR |
1448                                  USB_RECIP_INTERFACE, 0, 0, cport_count,
1449                                  sizeof(*cport_count), ES2_USB_CTRL_TIMEOUT);
1450         if (retval != sizeof(*cport_count)) {
1451                 dev_err(&udev->dev, "Cannot retrieve CPort count: %d\n",
1452                         retval);
1453
1454                 if (retval >= 0)
1455                         retval = -EIO;
1456
1457                 goto out;
1458         }
1459
1460         retval = le16_to_cpu(*cport_count);
1461
1462         /* We need to fit a CPort ID in one byte of a message header */
1463         if (retval > U8_MAX) {
1464                 retval = U8_MAX;
1465                 dev_warn(&udev->dev, "Limiting number of CPorts to U8_MAX\n");
1466         }
1467
1468 out:
1469         kfree(cport_count);
1470         return retval;
1471 }
1472
1473 /*
1474  * The ES2 USB Bridge device has 15 endpoints
1475  * 1 Control - usual USB stuff + AP -> APBridgeA messages
1476  * 7 Bulk IN - CPort data in
1477  * 7 Bulk OUT - CPort data out
1478  */
1479 static int ap_probe(struct usb_interface *interface,
1480                     const struct usb_device_id *id)
1481 {
1482         struct es2_ap_dev *es2;
1483         struct gb_host_device *hd;
1484         struct usb_device *udev;
1485         struct usb_host_interface *iface_desc;
1486         struct usb_endpoint_descriptor *endpoint;
1487         int bulk_in = 0;
1488         int bulk_out = 0;
1489         int retval;
1490         int i;
1491         int num_cports;
1492
1493         udev = usb_get_dev(interface_to_usbdev(interface));
1494
1495         num_cports = apb_get_cport_count(udev);
1496         if (num_cports < 0) {
1497                 usb_put_dev(udev);
1498                 dev_err(&udev->dev, "Cannot retrieve CPort count: %d\n",
1499                         num_cports);
1500                 return num_cports;
1501         }
1502
1503         hd = gb_hd_create(&es2_driver, &udev->dev, ES2_GBUF_MSG_SIZE_MAX,
1504                                 num_cports);
1505         if (IS_ERR(hd)) {
1506                 usb_put_dev(udev);
1507                 return PTR_ERR(hd);
1508         }
1509
1510         es2 = hd_to_es2(hd);
1511         es2->hd = hd;
1512         es2->usb_intf = interface;
1513         es2->usb_dev = udev;
1514         spin_lock_init(&es2->cport_out_urb_lock);
1515         INIT_KFIFO(es2->apb_log_fifo);
1516         usb_set_intfdata(interface, es2);
1517
1518         /*
1519          * Reserve the CDSI0 and CDSI1 CPorts so they won't be allocated
1520          * dynamically.
1521          */
1522         retval = gb_hd_cport_reserve(hd, ES2_CPORT_CDSI0);
1523         if (retval)
1524                 goto error;
1525         retval = gb_hd_cport_reserve(hd, ES2_CPORT_CDSI1);
1526         if (retval)
1527                 goto error;
1528
1529         es2->cport_to_ep = kcalloc(hd->num_cports, sizeof(*es2->cport_to_ep),
1530                                    GFP_KERNEL);
1531         if (!es2->cport_to_ep) {
1532                 retval = -ENOMEM;
1533                 goto error;
1534         }
1535
1536         /* find all bulk endpoints */
1537         iface_desc = interface->cur_altsetting;
1538         for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
1539                 endpoint = &iface_desc->endpoint[i].desc;
1540
1541                 if (usb_endpoint_is_bulk_in(endpoint)) {
1542                         if (bulk_in < NUM_BULKS)
1543                                 es2->cport_in[bulk_in].endpoint =
1544                                         endpoint->bEndpointAddress;
1545                         else
1546                                 es2->arpc_endpoint_in =
1547                                         endpoint->bEndpointAddress;
1548                         bulk_in++;
1549                 } else if (usb_endpoint_is_bulk_out(endpoint)) {
1550                         es2->cport_out[bulk_out++].endpoint =
1551                                 endpoint->bEndpointAddress;
1552                 } else {
1553                         dev_err(&udev->dev,
1554                                 "Unknown endpoint type found, address 0x%02x\n",
1555                                 endpoint->bEndpointAddress);
1556                 }
1557         }
1558         if (bulk_in != NUM_BULKS_IN || bulk_out != NUM_BULKS_OUT) {
1559                 dev_err(&udev->dev, "Not enough endpoints found in device, aborting!\n");
1560                 retval = -ENODEV;
1561                 goto error;
1562         }
1563
1564         /* Allocate buffers for our cport in messages */
1565         for (bulk_in = 0; bulk_in < NUM_BULKS; bulk_in++) {
1566                 struct es2_cport_in *cport_in = &es2->cport_in[bulk_in];
1567
1568                 for (i = 0; i < NUM_CPORT_IN_URB; ++i) {
1569                         struct urb *urb;
1570                         u8 *buffer;
1571
1572                         urb = usb_alloc_urb(0, GFP_KERNEL);
1573                         if (!urb) {
1574                                 retval = -ENOMEM;
1575                                 goto error;
1576                         }
1577                         buffer = kmalloc(ES2_GBUF_MSG_SIZE_MAX, GFP_KERNEL);
1578                         if (!buffer) {
1579                                 retval = -ENOMEM;
1580                                 goto error;
1581                         }
1582
1583                         usb_fill_bulk_urb(urb, udev,
1584                                           usb_rcvbulkpipe(udev,
1585                                                           cport_in->endpoint),
1586                                           buffer, ES2_GBUF_MSG_SIZE_MAX,
1587                                           cport_in_callback, hd);
1588                         cport_in->urb[i] = urb;
1589                         cport_in->buffer[i] = buffer;
1590                 }
1591         }
1592
1593         /* Allocate buffers for ARPC in messages */
1594         for (i = 0; i < NUM_ARPC_IN_URB; ++i) {
1595                 struct urb *urb;
1596                 u8 *buffer;
1597
1598                 urb = usb_alloc_urb(0, GFP_KERNEL);
1599                 if (!urb) {
1600                         retval = -ENOMEM;
1601                         goto error;
1602                 }
1603                 buffer = kmalloc(ARPC_IN_SIZE_MAX, GFP_KERNEL);
1604                 if (!buffer) {
1605                         retval = -ENOMEM;
1606                         goto error;
1607                 }
1608
1609                 usb_fill_bulk_urb(urb, udev,
1610                                   usb_rcvbulkpipe(udev,
1611                                                   es2->arpc_endpoint_in),
1612                                   buffer, ARPC_IN_SIZE_MAX,
1613                                   arpc_in_callback, es2);
1614
1615                 es2->arpc_urb[i] = urb;
1616                 es2->arpc_buffer[i] = buffer;
1617         }
1618
1619         /* Allocate urbs for our CPort OUT messages */
1620         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
1621                 struct urb *urb;
1622
1623                 urb = usb_alloc_urb(0, GFP_KERNEL);
1624                 if (!urb) {
1625                         retval = -ENOMEM;
1626                         goto error;
1627                 }
1628
1629                 es2->cport_out_urb[i] = urb;
1630                 es2->cport_out_urb_busy[i] = false;     /* just to be anal */
1631         }
1632
1633         /* XXX We will need to rename this per APB */
1634         es2->apb_log_enable_dentry = debugfs_create_file("apb_log_enable",
1635                                                         (S_IWUSR | S_IRUGO),
1636                                                         gb_debugfs_get(), es2,
1637                                                         &apb_log_enable_fops);
1638
1639         INIT_LIST_HEAD(&es2->arpcs);
1640         spin_lock_init(&es2->arpc_lock);
1641
1642         if (es2_arpc_in_enable(es2))
1643                 goto error;
1644
1645         retval = gb_hd_add(hd);
1646         if (retval)
1647                 goto err_disable_arpc_in;
1648
1649         for (i = 0; i < NUM_BULKS; ++i) {
1650                 retval = es2_cport_in_enable(es2, &es2->cport_in[i]);
1651                 if (retval)
1652                         goto err_disable_cport_in;
1653         }
1654
1655         return 0;
1656
1657 err_disable_cport_in:
1658         for (--i; i >= 0; --i)
1659                 es2_cport_in_disable(es2, &es2->cport_in[i]);
1660         gb_hd_del(hd);
1661 err_disable_arpc_in:
1662         es2_arpc_in_disable(es2);
1663 error:
1664         es2_destroy(es2);
1665
1666         return retval;
1667 }
1668
1669 static void ap_disconnect(struct usb_interface *interface)
1670 {
1671         struct es2_ap_dev *es2 = usb_get_intfdata(interface);
1672         int i;
1673
1674         gb_hd_del(es2->hd);
1675
1676         for (i = 0; i < NUM_BULKS; ++i)
1677                 es2_cport_in_disable(es2, &es2->cport_in[i]);
1678         es2_arpc_in_disable(es2);
1679
1680         es2_destroy(es2);
1681 }
1682
1683 static struct usb_driver es2_ap_driver = {
1684         .name =         "es2_ap_driver",
1685         .probe =        ap_probe,
1686         .disconnect =   ap_disconnect,
1687         .id_table =     id_table,
1688         .soft_unbind =  1,
1689 };
1690
1691 module_usb_driver(es2_ap_driver);
1692
1693 MODULE_LICENSE("GPL v2");
1694 MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@linuxfoundation.org>");