008685b2b15bcc17cafa9c15c71adf6cc17cadbd
[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 <asm/unaligned.h>
15
16 #include "greybus.h"
17 #include "kernel_ver.h"
18 #include "connection.h"
19
20 /* Memory sizes for the buffers sent to/from the ES1 controller */
21 #define ES1_GBUF_MSG_SIZE_MAX   2048
22
23 static const struct usb_device_id id_table[] = {
24         /* Made up numbers for the SVC USB Bridge in ES2 */
25         { USB_DEVICE(0xffff, 0x0002) },
26         { },
27 };
28 MODULE_DEVICE_TABLE(usb, id_table);
29
30 #define APB1_LOG_SIZE           SZ_16K
31 static struct dentry *apb1_log_dentry;
32 static struct dentry *apb1_log_enable_dentry;
33 static struct task_struct *apb1_log_task;
34 static DEFINE_KFIFO(apb1_log_fifo, char, APB1_LOG_SIZE);
35
36 /* Number of cport present on USB bridge */
37 #define CPORT_MAX               44
38
39 /* Number of bulk in and bulk out couple */
40 #define NUM_BULKS               7
41
42 /*
43  * Number of CPort IN urbs in flight at any point in time.
44  * Adjust if we are having stalls in the USB buffer due to not enough urbs in
45  * flight.
46  */
47 #define NUM_CPORT_IN_URB        4
48
49 /* Number of CPort OUT urbs in flight at any point in time.
50  * Adjust if we get messages saying we are out of urbs in the system log.
51  */
52 #define NUM_CPORT_OUT_URB       (8 * NUM_BULKS)
53
54 /* vendor request AP message */
55 #define REQUEST_SVC             0x01
56
57 /* vendor request APB1 log */
58 #define REQUEST_LOG             0x02
59
60 /* vendor request to map a cport to bulk in and bulk out endpoints */
61 #define REQUEST_EP_MAPPING      0x03
62
63 /*
64  * @endpoint: bulk in endpoint for CPort data
65  * @urb: array of urbs for the CPort in messages
66  * @buffer: array of buffers for the @cport_in_urb urbs
67  */
68 struct es1_cport_in {
69         __u8 endpoint;
70         struct urb *urb[NUM_CPORT_IN_URB];
71         u8 *buffer[NUM_CPORT_IN_URB];
72 };
73
74 /*
75  * @endpoint: bulk out endpoint for CPort data
76  */
77 struct es1_cport_out {
78         __u8 endpoint;
79 };
80
81 /**
82  * es1_ap_dev - ES1 USB Bridge to AP structure
83  * @usb_dev: pointer to the USB device we are.
84  * @usb_intf: pointer to the USB interface we are bound to.
85  * @hd: pointer to our greybus_host_device structure
86  * @control_endpoint: endpoint to send data to SVC
87
88  * @cport_in: endpoint, urbs and buffer for cport in messages
89  * @cport_out: endpoint for for cport out messages
90  * @cport_out_urb: array of urbs for the CPort out messages
91  * @cport_out_urb_busy: array of flags to see if the @cport_out_urb is busy or
92  *                      not.
93  * @cport_out_urb_cancelled: array of flags indicating whether the
94  *                      corresponding @cport_out_urb is being cancelled
95  * @cport_out_urb_lock: locks the @cport_out_urb_busy "list"
96  */
97 struct es1_ap_dev {
98         struct usb_device *usb_dev;
99         struct usb_interface *usb_intf;
100         struct greybus_host_device *hd;
101
102         __u8 control_endpoint;
103
104         struct es1_cport_in cport_in[NUM_BULKS];
105         struct es1_cport_out cport_out[NUM_BULKS];
106         struct urb *cport_out_urb[NUM_CPORT_OUT_URB];
107         bool cport_out_urb_busy[NUM_CPORT_OUT_URB];
108         bool cport_out_urb_cancelled[NUM_CPORT_OUT_URB];
109         spinlock_t cport_out_urb_lock;
110
111         int cport_to_ep[CPORT_MAX];
112 };
113
114 struct cport_to_ep {
115         __le16 cport_id;
116         __u8 endpoint_in;
117         __u8 endpoint_out;
118 };
119
120 static inline struct es1_ap_dev *hd_to_es1(struct greybus_host_device *hd)
121 {
122         return (struct es1_ap_dev *)&hd->hd_priv;
123 }
124
125 static void cport_out_callback(struct urb *urb);
126 static void usb_log_enable(struct es1_ap_dev *es1);
127 static void usb_log_disable(struct es1_ap_dev *es1);
128
129 static int cport_to_ep(struct es1_ap_dev *es1, u16 cport_id)
130 {
131         if (cport_id >= CPORT_MAX)
132                 return 0;
133         return es1->cport_to_ep[cport_id];
134 }
135
136 #define ES1_TIMEOUT     500     /* 500 ms for the SVC to do something */
137
138 static int ep_in_use(struct es1_ap_dev *es1, int bulk_ep_set)
139 {
140         int i;
141
142         for (i = 0; i < CPORT_MAX; i++) {
143                 if (es1->cport_to_ep[i] == bulk_ep_set)
144                         return 1;
145         }
146         return 0;
147 }
148
149 int map_cport_to_ep(struct es1_ap_dev *es1,
150                                 u16 cport_id, int bulk_ep_set)
151 {
152         int retval;
153         struct cport_to_ep *cport_to_ep;
154
155         if (bulk_ep_set == 0 || bulk_ep_set >= NUM_BULKS)
156                 return -EINVAL;
157         if (cport_id >= CPORT_MAX)
158                 return -EINVAL;
159         if (bulk_ep_set && ep_in_use(es1, bulk_ep_set))
160                 return -EINVAL;
161
162         cport_to_ep = kmalloc(sizeof(*cport_to_ep), GFP_KERNEL);
163         if (!cport_to_ep)
164                 return -ENOMEM;
165
166         es1->cport_to_ep[cport_id] = bulk_ep_set;
167         cport_to_ep->cport_id = cpu_to_le16(cport_id);
168         cport_to_ep->endpoint_in = es1->cport_in[bulk_ep_set].endpoint;
169         cport_to_ep->endpoint_out = es1->cport_out[bulk_ep_set].endpoint;
170
171         retval = usb_control_msg(es1->usb_dev,
172                                  usb_sndctrlpipe(es1->usb_dev,
173                                                  es1->control_endpoint),
174                                  REQUEST_EP_MAPPING,
175                                  USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
176                                  0x00, 0x00,
177                                  (char *)cport_to_ep,
178                                  sizeof(*cport_to_ep),
179                                  ES1_TIMEOUT);
180         if (retval == sizeof(*cport_to_ep))
181                 retval = 0;
182         kfree(cport_to_ep);
183
184         return retval;
185 }
186
187 int unmap_cport(struct es1_ap_dev *es1, u16 cport_id)
188 {
189         return map_cport_to_ep(es1, cport_id, 0);
190 }
191
192 static struct urb *next_free_urb(struct es1_ap_dev *es1, gfp_t gfp_mask)
193 {
194         struct urb *urb = NULL;
195         unsigned long flags;
196         int i;
197
198         spin_lock_irqsave(&es1->cport_out_urb_lock, flags);
199
200         /* Look in our pool of allocated urbs first, as that's the "fastest" */
201         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
202                 if (es1->cport_out_urb_busy[i] == false &&
203                                 es1->cport_out_urb_cancelled[i] == false) {
204                         es1->cport_out_urb_busy[i] = true;
205                         urb = es1->cport_out_urb[i];
206                         break;
207                 }
208         }
209         spin_unlock_irqrestore(&es1->cport_out_urb_lock, flags);
210         if (urb)
211                 return urb;
212
213         /*
214          * Crap, pool is empty, complain to the syslog and go allocate one
215          * dynamically as we have to succeed.
216          */
217         dev_err(&es1->usb_dev->dev,
218                 "No free CPort OUT urbs, having to dynamically allocate one!\n");
219         return usb_alloc_urb(0, gfp_mask);
220 }
221
222 static void free_urb(struct es1_ap_dev *es1, struct urb *urb)
223 {
224         unsigned long flags;
225         int i;
226         /*
227          * See if this was an urb in our pool, if so mark it "free", otherwise
228          * we need to free it ourselves.
229          */
230         spin_lock_irqsave(&es1->cport_out_urb_lock, flags);
231         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
232                 if (urb == es1->cport_out_urb[i]) {
233                         es1->cport_out_urb_busy[i] = false;
234                         urb = NULL;
235                         break;
236                 }
237         }
238         spin_unlock_irqrestore(&es1->cport_out_urb_lock, flags);
239
240         /* If urb is not NULL, then we need to free this urb */
241         usb_free_urb(urb);
242 }
243
244 /*
245  * We (ab)use the operation-message header pad bytes to transfer the
246  * cport id in order to minimise overhead.
247  */
248 static void
249 gb_message_cport_pack(struct gb_operation_msg_hdr *header, u16 cport_id)
250 {
251         header->pad[0] = cport_id;
252 }
253
254 /* Clear the pad bytes used for the CPort id */
255 static void gb_message_cport_clear(struct gb_operation_msg_hdr *header)
256 {
257         header->pad[0] = 0;
258 }
259
260 /* Extract the CPort id packed into the header, and clear it */
261 static u16 gb_message_cport_unpack(struct gb_operation_msg_hdr *header)
262 {
263         u16 cport_id = header->pad[0];
264
265         gb_message_cport_clear(header);
266
267         return cport_id;
268 }
269
270 /*
271  * Returns zero if the message was successfully queued, or a negative errno
272  * otherwise.
273  */
274 static int message_send(struct greybus_host_device *hd, u16 cport_id,
275                         struct gb_message *message, gfp_t gfp_mask)
276 {
277         struct es1_ap_dev *es1 = hd_to_es1(hd);
278         struct usb_device *udev = es1->usb_dev;
279         size_t buffer_size;
280         int retval;
281         struct urb *urb;
282         int bulk_ep_set;
283         unsigned long flags;
284
285         /*
286          * The data actually transferred will include an indication
287          * of where the data should be sent.  Do one last check of
288          * the target CPort id before filling it in.
289          */
290         if (!cport_id_valid(cport_id)) {
291                 pr_err("invalid destination cport 0x%02x\n", cport_id);
292                 return -EINVAL;
293         }
294
295         /* Find a free urb */
296         urb = next_free_urb(es1, gfp_mask);
297         if (!urb)
298                 return -ENOMEM;
299
300         spin_lock_irqsave(&es1->cport_out_urb_lock, flags);
301         message->hcpriv = urb;
302         spin_unlock_irqrestore(&es1->cport_out_urb_lock, flags);
303
304         /* Pack the cport id into the message header */
305         gb_message_cport_pack(message->header, cport_id);
306
307         buffer_size = sizeof(*message->header) + message->payload_size;
308
309         bulk_ep_set = cport_to_ep(es1, cport_id);
310         usb_fill_bulk_urb(urb, udev,
311                           usb_sndbulkpipe(udev,
312                                           es1->cport_out[bulk_ep_set].endpoint),
313                           message->buffer, buffer_size,
314                           cport_out_callback, message);
315         gb_connection_push_timestamp(message->operation->connection);
316         retval = usb_submit_urb(urb, gfp_mask);
317         if (retval) {
318                 pr_err("error %d submitting URB\n", retval);
319
320                 spin_lock_irqsave(&es1->cport_out_urb_lock, flags);
321                 message->hcpriv = NULL;
322                 spin_unlock_irqrestore(&es1->cport_out_urb_lock, flags);
323
324                 free_urb(es1, urb);
325                 gb_message_cport_clear(message->header);
326
327                 return retval;
328         }
329
330         return 0;
331 }
332
333 /*
334  * Can not be called in atomic context.
335  */
336 static void message_cancel(struct gb_message *message)
337 {
338         struct greybus_host_device *hd = message->operation->connection->hd;
339         struct es1_ap_dev *es1 = hd_to_es1(hd);
340         struct urb *urb;
341         int i;
342
343         might_sleep();
344
345         spin_lock_irq(&es1->cport_out_urb_lock);
346         urb = message->hcpriv;
347
348         /* Prevent dynamically allocated urb from being deallocated. */
349         usb_get_urb(urb);
350
351         /* Prevent pre-allocated urb from being reused. */
352         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
353                 if (urb == es1->cport_out_urb[i]) {
354                         es1->cport_out_urb_cancelled[i] = true;
355                         break;
356                 }
357         }
358         spin_unlock_irq(&es1->cport_out_urb_lock);
359
360         usb_kill_urb(urb);
361
362         if (i < NUM_CPORT_OUT_URB) {
363                 spin_lock_irq(&es1->cport_out_urb_lock);
364                 es1->cport_out_urb_cancelled[i] = false;
365                 spin_unlock_irq(&es1->cport_out_urb_lock);
366         }
367
368         usb_free_urb(urb);
369 }
370
371 static struct greybus_host_driver es1_driver = {
372         .hd_priv_size           = sizeof(struct es1_ap_dev),
373         .message_send           = message_send,
374         .message_cancel         = message_cancel,
375 };
376
377 /* Common function to report consistent warnings based on URB status */
378 static int check_urb_status(struct urb *urb)
379 {
380         struct device *dev = &urb->dev->dev;
381         int status = urb->status;
382
383         switch (status) {
384         case 0:
385                 return 0;
386
387         case -EOVERFLOW:
388                 dev_err(dev, "%s: overflow actual length is %d\n",
389                         __func__, urb->actual_length);
390         case -ECONNRESET:
391         case -ENOENT:
392         case -ESHUTDOWN:
393         case -EILSEQ:
394         case -EPROTO:
395                 /* device is gone, stop sending */
396                 return status;
397         }
398         dev_err(dev, "%s: unknown status %d\n", __func__, status);
399
400         return -EAGAIN;
401 }
402
403 static void ap_disconnect(struct usb_interface *interface)
404 {
405         struct es1_ap_dev *es1;
406         struct usb_device *udev;
407         int bulk_in;
408         int i;
409
410         es1 = usb_get_intfdata(interface);
411         if (!es1)
412                 return;
413
414         usb_log_disable(es1);
415
416         /* Tear down everything! */
417         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
418                 struct urb *urb = es1->cport_out_urb[i];
419
420                 if (!urb)
421                         break;
422                 usb_kill_urb(urb);
423                 usb_free_urb(urb);
424                 es1->cport_out_urb[i] = NULL;
425                 es1->cport_out_urb_busy[i] = false;     /* just to be anal */
426         }
427
428         for (bulk_in = 0; bulk_in < NUM_BULKS; bulk_in++) {
429                 struct es1_cport_in *cport_in = &es1->cport_in[bulk_in];
430                 for (i = 0; i < NUM_CPORT_IN_URB; ++i) {
431                         struct urb *urb = cport_in->urb[i];
432
433                         if (!urb)
434                                 break;
435                         usb_kill_urb(urb);
436                         usb_free_urb(urb);
437                         kfree(cport_in->buffer[i]);
438                         cport_in->buffer[i] = NULL;
439                 }
440         }
441
442         usb_set_intfdata(interface, NULL);
443         udev = es1->usb_dev;
444         greybus_remove_hd(es1->hd);
445
446         usb_put_dev(udev);
447 }
448
449 static void cport_in_callback(struct urb *urb)
450 {
451         struct greybus_host_device *hd = urb->context;
452         struct device *dev = &urb->dev->dev;
453         struct gb_operation_msg_hdr *header;
454         int status = check_urb_status(urb);
455         int retval;
456         u16 cport_id;
457
458         if (status) {
459                 if ((status == -EAGAIN) || (status == -EPROTO))
460                         goto exit;
461                 dev_err(dev, "urb cport in error %d (dropped)\n", status);
462                 return;
463         }
464
465         if (urb->actual_length < sizeof(*header)) {
466                 dev_err(dev, "%s: short message received\n", __func__);
467                 goto exit;
468         }
469
470         /* Extract the CPort id, which is packed in the message header */
471         header = urb->transfer_buffer;
472         cport_id = gb_message_cport_unpack(header);
473
474         if (cport_id_valid(cport_id))
475                 greybus_data_rcvd(hd, cport_id, urb->transfer_buffer,
476                                                         urb->actual_length);
477         else
478                 dev_err(dev, "%s: invalid cport id 0x%02x received\n",
479                                 __func__, cport_id);
480 exit:
481         /* put our urb back in the request pool */
482         retval = usb_submit_urb(urb, GFP_ATOMIC);
483         if (retval)
484                 dev_err(dev, "%s: error %d in submitting urb.\n",
485                         __func__, retval);
486 }
487
488 static void cport_out_callback(struct urb *urb)
489 {
490         struct gb_message *message = urb->context;
491         struct greybus_host_device *hd = message->operation->connection->hd;
492         struct es1_ap_dev *es1 = hd_to_es1(hd);
493         int status = check_urb_status(urb);
494         unsigned long flags;
495
496         gb_message_cport_clear(message->header);
497
498         /*
499          * Tell the submitter that the message send (attempt) is
500          * complete, and report the status.
501          */
502         greybus_message_sent(hd, message, status);
503
504         spin_lock_irqsave(&es1->cport_out_urb_lock, flags);
505         message->hcpriv = NULL;
506         spin_unlock_irqrestore(&es1->cport_out_urb_lock, flags);
507
508         free_urb(es1, urb);
509 }
510
511 #define APB1_LOG_MSG_SIZE       64
512 static void apb1_log_get(struct es1_ap_dev *es1, char *buf)
513 {
514         int retval;
515
516         /* SVC messages go down our control pipe */
517         do {
518                 retval = usb_control_msg(es1->usb_dev,
519                                         usb_rcvctrlpipe(es1->usb_dev,
520                                                         es1->control_endpoint),
521                                         REQUEST_LOG,
522                                         USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_INTERFACE,
523                                         0x00, 0x00,
524                                         buf,
525                                         APB1_LOG_MSG_SIZE,
526                                         ES1_TIMEOUT);
527                 if (retval > 0)
528                         kfifo_in(&apb1_log_fifo, buf, retval);
529         } while (retval > 0);
530 }
531
532 static int apb1_log_poll(void *data)
533 {
534         struct es1_ap_dev *es1 = data;
535         char *buf;
536
537         buf = kmalloc(APB1_LOG_MSG_SIZE, GFP_KERNEL);
538         if (!buf)
539                 return -ENOMEM;
540
541         while (!kthread_should_stop()) {
542                 msleep(1000);
543                 apb1_log_get(es1, buf);
544         }
545
546         kfree(buf);
547
548         return 0;
549 }
550
551 static ssize_t apb1_log_read(struct file *f, char __user *buf,
552                                 size_t count, loff_t *ppos)
553 {
554         ssize_t ret;
555         size_t copied;
556         char *tmp_buf;
557
558         if (count > APB1_LOG_SIZE)
559                 count = APB1_LOG_SIZE;
560
561         tmp_buf = kmalloc(count, GFP_KERNEL);
562         if (!tmp_buf)
563                 return -ENOMEM;
564
565         copied = kfifo_out(&apb1_log_fifo, tmp_buf, count);
566         ret = simple_read_from_buffer(buf, count, ppos, tmp_buf, copied);
567
568         kfree(tmp_buf);
569
570         return ret;
571 }
572
573 static const struct file_operations apb1_log_fops = {
574         .read   = apb1_log_read,
575 };
576
577 static void usb_log_enable(struct es1_ap_dev *es1)
578 {
579         if (!IS_ERR_OR_NULL(apb1_log_task))
580                 return;
581
582         /* get log from APB1 */
583         apb1_log_task = kthread_run(apb1_log_poll, es1, "apb1_log");
584         if (IS_ERR(apb1_log_task))
585                 return;
586         apb1_log_dentry = debugfs_create_file("apb1_log", S_IRUGO,
587                                                 gb_debugfs_get(), NULL,
588                                                 &apb1_log_fops);
589 }
590
591 static void usb_log_disable(struct es1_ap_dev *es1)
592 {
593         if (IS_ERR_OR_NULL(apb1_log_task))
594                 return;
595
596         debugfs_remove(apb1_log_dentry);
597         apb1_log_dentry = NULL;
598
599         kthread_stop(apb1_log_task);
600         apb1_log_task = NULL;
601 }
602
603 static ssize_t apb1_log_enable_read(struct file *f, char __user *buf,
604                                 size_t count, loff_t *ppos)
605 {
606         char tmp_buf[3];
607         int enable = !IS_ERR_OR_NULL(apb1_log_task);
608
609         sprintf(tmp_buf, "%d\n", enable);
610         return simple_read_from_buffer(buf, count, ppos, tmp_buf, 3);
611 }
612
613 static ssize_t apb1_log_enable_write(struct file *f, const char __user *buf,
614                                 size_t count, loff_t *ppos)
615 {
616         int enable;
617         ssize_t retval;
618         struct es1_ap_dev *es1 = (struct es1_ap_dev *)f->f_inode->i_private;
619
620         retval = kstrtoint_from_user(buf, count, 10, &enable);
621         if (retval)
622                 return retval;
623
624         if (enable)
625                 usb_log_enable(es1);
626         else
627                 usb_log_disable(es1);
628
629         return count;
630 }
631
632 static const struct file_operations apb1_log_enable_fops = {
633         .read   = apb1_log_enable_read,
634         .write  = apb1_log_enable_write,
635 };
636
637 /*
638  * The ES1 USB Bridge device contains 4 endpoints
639  * 1 Control - usual USB stuff + AP -> SVC messages
640  * 1 Interrupt IN - SVC -> AP messages
641  * 1 Bulk IN - CPort data in
642  * 1 Bulk OUT - CPort data out
643  */
644 static int ap_probe(struct usb_interface *interface,
645                     const struct usb_device_id *id)
646 {
647         struct es1_ap_dev *es1;
648         struct greybus_host_device *hd;
649         struct usb_device *udev;
650         struct usb_host_interface *iface_desc;
651         struct usb_endpoint_descriptor *endpoint;
652         int bulk_in = 0;
653         int bulk_out = 0;
654         int retval = -ENOMEM;
655         int i;
656
657         /* We need to fit a CPort ID in one byte of a message header */
658         BUILD_BUG_ON(CPORT_ID_MAX > U8_MAX);
659
660         udev = usb_get_dev(interface_to_usbdev(interface));
661
662         hd = greybus_create_hd(&es1_driver, &udev->dev, ES1_GBUF_MSG_SIZE_MAX);
663         if (IS_ERR(hd)) {
664                 usb_put_dev(udev);
665                 return PTR_ERR(hd);
666         }
667
668         es1 = hd_to_es1(hd);
669         es1->hd = hd;
670         es1->usb_intf = interface;
671         es1->usb_dev = udev;
672         spin_lock_init(&es1->cport_out_urb_lock);
673         usb_set_intfdata(interface, es1);
674
675         /* Control endpoint is the pipe to talk to this AP, so save it off */
676         endpoint = &udev->ep0.desc;
677         es1->control_endpoint = endpoint->bEndpointAddress;
678
679         /* find all 3 of our endpoints */
680         iface_desc = interface->cur_altsetting;
681         for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
682                 endpoint = &iface_desc->endpoint[i].desc;
683
684                 if (usb_endpoint_is_bulk_in(endpoint)) {
685                         es1->cport_in[bulk_in++].endpoint =
686                                 endpoint->bEndpointAddress;
687                 } else if (usb_endpoint_is_bulk_out(endpoint)) {
688                         es1->cport_out[bulk_out++].endpoint =
689                                 endpoint->bEndpointAddress;
690                 } else {
691                         dev_err(&udev->dev,
692                                 "Unknown endpoint type found, address %x\n",
693                                 endpoint->bEndpointAddress);
694                 }
695         }
696         if ((bulk_in == 0) ||
697             (bulk_out == 0)) {
698                 dev_err(&udev->dev, "Not enough endpoints found in device, aborting!\n");
699                 goto error;
700         }
701
702         /* Allocate buffers for our cport in messages and start them up */
703         for (bulk_in = 0; bulk_in < NUM_BULKS; bulk_in++) {
704                 struct es1_cport_in *cport_in = &es1->cport_in[bulk_in];
705                 for (i = 0; i < NUM_CPORT_IN_URB; ++i) {
706                         struct urb *urb;
707                         u8 *buffer;
708
709                         urb = usb_alloc_urb(0, GFP_KERNEL);
710                         if (!urb)
711                                 goto error;
712                         buffer = kmalloc(ES1_GBUF_MSG_SIZE_MAX, GFP_KERNEL);
713                         if (!buffer)
714                                 goto error;
715
716                         usb_fill_bulk_urb(urb, udev,
717                                           usb_rcvbulkpipe(udev,
718                                                           cport_in->endpoint),
719                                           buffer, ES1_GBUF_MSG_SIZE_MAX,
720                                           cport_in_callback, hd);
721                         cport_in->urb[i] = urb;
722                         cport_in->buffer[i] = buffer;
723                         retval = usb_submit_urb(urb, GFP_KERNEL);
724                         if (retval)
725                                 goto error;
726                 }
727         }
728
729         /* Allocate urbs for our CPort OUT messages */
730         for (i = 0; i < NUM_CPORT_OUT_URB; ++i) {
731                 struct urb *urb;
732
733                 urb = usb_alloc_urb(0, GFP_KERNEL);
734                 if (!urb)
735                         goto error;
736
737                 es1->cport_out_urb[i] = urb;
738                 es1->cport_out_urb_busy[i] = false;     /* just to be anal */
739         }
740
741         apb1_log_enable_dentry = debugfs_create_file("apb1_log_enable",
742                                                         (S_IWUSR | S_IRUGO),
743                                                         gb_debugfs_get(), es1,
744                                                         &apb1_log_enable_fops);
745         return 0;
746 error:
747         ap_disconnect(interface);
748
749         return retval;
750 }
751
752 static struct usb_driver es1_ap_driver = {
753         .name =         "es2_ap_driver",
754         .probe =        ap_probe,
755         .disconnect =   ap_disconnect,
756         .id_table =     id_table,
757 };
758
759 module_usb_driver(es1_ap_driver);
760
761 MODULE_LICENSE("GPL v2");
762 MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@linuxfoundation.org>");