1 // SPDX-License-Identifier: GPL-2.0+
3 * f_thor.c -- USB TIZEN THOR Downloader gadget function
5 * Copyright (C) 2013 Samsung Electronics
9 * git://review.tizen.org/kernel/u-boot
12 * Copyright (C) 2009 Samsung Electronics
24 #include <linux/usb/ch9.h>
25 #include <linux/usb/gadget.h>
26 #include <linux/usb/composite.h>
27 #include <linux/usb/cdc.h>
33 static void thor_tx_data(unsigned char *data, int len);
34 static void thor_set_dma(void *addr, int len);
35 static int thor_rx_data(void);
37 static struct f_thor *thor_func;
38 static inline struct f_thor *func_to_thor(struct usb_function *f)
40 return container_of(f, struct f_thor, usb_function);
43 DEFINE_CACHE_ALIGN_BUFFER(unsigned char, thor_tx_data_buf,
44 sizeof(struct rsp_box));
45 DEFINE_CACHE_ALIGN_BUFFER(unsigned char, thor_rx_data_buf,
46 sizeof(struct rqt_box));
48 /* ********************************************************** */
49 /* THOR protocol - transmission handling */
50 /* ********************************************************** */
51 DEFINE_CACHE_ALIGN_BUFFER(char, f_name, F_NAME_BUF_SIZE + 1);
52 static unsigned long long int thor_file_size;
53 static int alt_setting_num;
55 static void send_rsp(const struct rsp_box *rsp)
57 memcpy(thor_tx_data_buf, rsp, sizeof(struct rsp_box));
58 thor_tx_data(thor_tx_data_buf, sizeof(struct rsp_box));
60 debug("-RSP: %d, %d\n", rsp->rsp, rsp->rsp_data);
63 static void send_data_rsp(s32 ack, s32 count)
65 ALLOC_CACHE_ALIGN_BUFFER(struct data_rsp_box, rsp,
66 sizeof(struct data_rsp_box));
71 memcpy(thor_tx_data_buf, rsp, sizeof(struct data_rsp_box));
72 thor_tx_data(thor_tx_data_buf, sizeof(struct data_rsp_box));
74 debug("-DATA RSP: %d, %d\n", ack, count);
77 static int process_rqt_info(const struct rqt_box *rqt)
79 ALLOC_CACHE_ALIGN_BUFFER(struct rsp_box, rsp, sizeof(struct rsp_box));
80 memset(rsp, 0, sizeof(struct rsp_box));
83 rsp->rsp_data = rqt->rqt_data;
85 switch (rqt->rqt_data) {
86 case RQT_INFO_VER_PROTOCOL:
87 rsp->int_data[0] = VER_PROTOCOL_MAJOR;
88 rsp->int_data[1] = VER_PROTOCOL_MINOR;
91 snprintf(rsp->str_data[0], sizeof(rsp->str_data[0]),
94 case RQT_INIT_VER_BOOT:
95 sprintf(rsp->str_data[0], "%s", U_BOOT_VERSION);
97 case RQT_INIT_VER_KERNEL:
98 sprintf(rsp->str_data[0], "%s", "k unknown");
100 case RQT_INIT_VER_PLATFORM:
101 sprintf(rsp->str_data[0], "%s", "p unknown");
103 case RQT_INIT_VER_CSC:
104 sprintf(rsp->str_data[0], "%s", "c unknown");
114 static int process_rqt_cmd(const struct rqt_box *rqt)
116 ALLOC_CACHE_ALIGN_BUFFER(struct rsp_box, rsp, sizeof(struct rsp_box));
117 memset(rsp, 0, sizeof(struct rsp_box));
120 rsp->rsp_data = rqt->rqt_data;
122 switch (rqt->rqt_data) {
124 debug("TARGET RESET\n");
128 #ifdef CONFIG_THOR_RESET_OFF
131 run_command("reset", 0);
133 case RQT_CMD_POWEROFF:
134 case RQT_CMD_EFSCLEAR:
137 printf("Command not supported -> cmd: %d\n", rqt->rqt_data);
144 static long long int download_head(unsigned long long total,
145 unsigned int packet_size,
149 long long int rcv_cnt = 0, left_to_rcv, ret_rcv;
150 struct dfu_entity *dfu_entity = dfu_get_entity(alt_setting_num);
151 void *transfer_buffer = dfu_get_buf(dfu_entity);
152 void *buf = transfer_buffer;
153 int usb_pkt_cnt = 0, ret;
156 * Files smaller than THOR_STORE_UNIT_SIZE (now 32 MiB) are stored on
158 * The packet response is sent on the purpose after successful data
159 * chunk write. There is a room for improvement when asynchronous write
162 while (total - rcv_cnt >= packet_size) {
163 thor_set_dma(buf, packet_size);
165 ret_rcv = thor_rx_data();
169 debug("%d: RCV data count: %llu cnt: %d\n", usb_pkt_cnt,
172 if ((rcv_cnt % THOR_STORE_UNIT_SIZE) == 0) {
173 ret = dfu_write(dfu_get_entity(alt_setting_num),
174 transfer_buffer, THOR_STORE_UNIT_SIZE,
177 pr_err("DFU write failed [%d] cnt: %d\n",
181 buf = transfer_buffer;
183 send_data_rsp(0, ++usb_pkt_cnt);
186 /* Calculate the amount of data to arrive from PC (in bytes) */
187 left_to_rcv = total - rcv_cnt;
190 * Calculate number of data already received. but not yet stored
191 * on the medium (they are smaller than THOR_STORE_UNIT_SIZE)
193 *left = left_to_rcv + buf - transfer_buffer;
194 debug("%s: left: %llu left_to_rcv: %llu buf: 0x%p\n", __func__,
195 *left, left_to_rcv, buf);
198 thor_set_dma(buf, packet_size);
199 ret_rcv = thor_rx_data();
203 send_data_rsp(0, ++usb_pkt_cnt);
206 debug("%s: %llu total: %llu cnt: %d\n", __func__, rcv_cnt, total, *cnt);
211 static int download_tail(long long int left, int cnt)
213 struct dfu_entity *dfu_entity;
214 void *transfer_buffer;
217 debug("%s: left: %llu cnt: %d\n", __func__, left, cnt);
219 dfu_entity = dfu_get_entity(alt_setting_num);
221 pr_err("Alt setting: %d entity not found!\n", alt_setting_num);
225 transfer_buffer = dfu_get_buf(dfu_entity);
226 if (!transfer_buffer) {
227 pr_err("Transfer buffer not allocated!\n");
232 ret = dfu_write(dfu_entity, transfer_buffer, left, cnt++);
234 pr_err("DFU write failed[%d]: left: %llu\n", ret, left);
240 * To store last "packet" or write file from buffer to filesystem
241 * DFU storage backend requires dfu_flush
243 * This also frees memory malloc'ed by dfu_get_buf(), so no explicit
244 * need fo call dfu_free_buf() is needed.
246 ret = dfu_flush(dfu_entity, transfer_buffer, 0, cnt);
248 pr_err("DFU flush failed!\n");
253 static long long int process_rqt_download(const struct rqt_box *rqt)
255 ALLOC_CACHE_ALIGN_BUFFER(struct rsp_box, rsp, sizeof(struct rsp_box));
256 static long long int left, ret_head;
257 int file_type, ret = 0;
260 memset(rsp, 0, sizeof(struct rsp_box));
262 rsp->rsp_data = rqt->rqt_data;
264 switch (rqt->rqt_data) {
266 thor_file_size = (unsigned long long int)rqt->int_data[0] +
267 (((unsigned long long int)rqt->int_data[1])
269 debug("INIT: total %llu bytes\n", thor_file_size);
271 case RQT_DL_FILE_INFO:
272 file_type = rqt->int_data[0];
273 if (file_type == FILE_TYPE_PIT) {
274 puts("PIT table file - not supported\n");
275 rsp->ack = -ENOTSUPP;
280 thor_file_size = (unsigned long long int)rqt->int_data[1] +
281 (((unsigned long long int)rqt->int_data[2])
283 memcpy(f_name, rqt->str_data[0], F_NAME_BUF_SIZE);
284 f_name[F_NAME_BUF_SIZE] = '\0';
286 debug("INFO: name(%s, %d), size(%llu), type(%d)\n",
287 f_name, 0, thor_file_size, file_type);
289 rsp->int_data[0] = THOR_PACKET_SIZE;
291 alt_setting_num = dfu_get_alt(f_name);
292 if (alt_setting_num < 0) {
293 pr_err("Alt setting [%d] to write not found!\n",
299 case RQT_DL_FILE_START:
301 ret_head = download_head(thor_file_size, THOR_PACKET_SIZE,
308 case RQT_DL_FILE_END:
309 debug("DL FILE_END\n");
310 rsp->ack = download_tail(left, cnt);
319 pr_err("Operation not supported: %d\n", rqt->rqt_data);
327 static int process_data(void)
329 ALLOC_CACHE_ALIGN_BUFFER(struct rqt_box, rqt, sizeof(struct rqt_box));
332 memcpy(rqt, thor_rx_data_buf, sizeof(struct rqt_box));
334 debug("+RQT: %d, %d\n", rqt->rqt, rqt->rqt_data);
338 ret = process_rqt_info(rqt);
341 ret = process_rqt_cmd(rqt);
344 ret = (int) process_rqt_download(rqt);
347 puts("RQT: UPLOAD not supported!\n");
350 pr_err("unknown request (%d)\n", rqt->rqt);
356 /* ********************************************************** */
357 /* THOR USB Function */
358 /* ********************************************************** */
360 static inline struct usb_endpoint_descriptor *
361 ep_desc(struct usb_gadget *g, struct usb_endpoint_descriptor *hs,
362 struct usb_endpoint_descriptor *fs)
364 if (gadget_is_dualspeed(g) && g->speed == USB_SPEED_HIGH)
369 static struct usb_interface_descriptor thor_downloader_intf_data = {
370 .bLength = sizeof(thor_downloader_intf_data),
371 .bDescriptorType = USB_DT_INTERFACE,
374 .bInterfaceClass = USB_CLASS_CDC_DATA,
377 static struct usb_endpoint_descriptor fs_in_desc = {
378 .bLength = USB_DT_ENDPOINT_SIZE,
379 .bDescriptorType = USB_DT_ENDPOINT,
381 .bEndpointAddress = USB_DIR_IN,
382 .bmAttributes = USB_ENDPOINT_XFER_BULK,
385 static struct usb_endpoint_descriptor fs_out_desc = {
386 .bLength = USB_DT_ENDPOINT_SIZE,
387 .bDescriptorType = USB_DT_ENDPOINT,
389 .bEndpointAddress = USB_DIR_OUT,
390 .bmAttributes = USB_ENDPOINT_XFER_BULK,
393 /* CDC configuration */
394 static struct usb_interface_descriptor thor_downloader_intf_int = {
395 .bLength = sizeof(thor_downloader_intf_int),
396 .bDescriptorType = USB_DT_INTERFACE,
399 .bInterfaceClass = USB_CLASS_COMM,
400 /* 0x02 Abstract Line Control Model */
401 .bInterfaceSubClass = USB_CDC_SUBCLASS_ACM,
402 /* 0x01 Common AT commands */
403 .bInterfaceProtocol = USB_CDC_ACM_PROTO_AT_V25TER,
406 static struct usb_cdc_header_desc thor_downloader_cdc_header = {
407 .bLength = sizeof(thor_downloader_cdc_header),
408 .bDescriptorType = 0x24, /* CS_INTERFACE */
409 .bDescriptorSubType = 0x00,
413 static struct usb_cdc_call_mgmt_descriptor thor_downloader_cdc_call = {
414 .bLength = sizeof(thor_downloader_cdc_call),
415 .bDescriptorType = 0x24, /* CS_INTERFACE */
416 .bDescriptorSubType = 0x01,
417 .bmCapabilities = 0x00,
418 .bDataInterface = 0x01,
421 static struct usb_cdc_acm_descriptor thor_downloader_cdc_abstract = {
422 .bLength = sizeof(thor_downloader_cdc_abstract),
423 .bDescriptorType = 0x24, /* CS_INTERFACE */
424 .bDescriptorSubType = 0x02,
425 .bmCapabilities = 0x00,
428 static struct usb_cdc_union_desc thor_downloader_cdc_union = {
429 .bLength = sizeof(thor_downloader_cdc_union),
430 .bDescriptorType = 0x24, /* CS_INTERFACE */
431 .bDescriptorSubType = USB_CDC_UNION_TYPE,
434 static struct usb_endpoint_descriptor fs_int_desc = {
435 .bLength = USB_DT_ENDPOINT_SIZE,
436 .bDescriptorType = USB_DT_ENDPOINT,
438 .bEndpointAddress = 3 | USB_DIR_IN,
439 .bmAttributes = USB_ENDPOINT_XFER_INT,
440 .wMaxPacketSize = __constant_cpu_to_le16(16),
445 static struct usb_interface_assoc_descriptor
446 thor_iad_descriptor = {
447 .bLength = sizeof(thor_iad_descriptor),
448 .bDescriptorType = USB_DT_INTERFACE_ASSOCIATION,
450 .bFirstInterface = 0,
451 .bInterfaceCount = 2, /* control + data */
452 .bFunctionClass = USB_CLASS_COMM,
453 .bFunctionSubClass = USB_CDC_SUBCLASS_ACM,
454 .bFunctionProtocol = USB_CDC_PROTO_NONE,
457 static struct usb_endpoint_descriptor hs_in_desc = {
458 .bLength = USB_DT_ENDPOINT_SIZE,
459 .bDescriptorType = USB_DT_ENDPOINT,
461 .bmAttributes = USB_ENDPOINT_XFER_BULK,
462 .wMaxPacketSize = __constant_cpu_to_le16(512),
465 static struct usb_endpoint_descriptor hs_out_desc = {
466 .bLength = USB_DT_ENDPOINT_SIZE,
467 .bDescriptorType = USB_DT_ENDPOINT,
469 .bmAttributes = USB_ENDPOINT_XFER_BULK,
470 .wMaxPacketSize = __constant_cpu_to_le16(512),
473 static struct usb_endpoint_descriptor hs_int_desc = {
474 .bLength = USB_DT_ENDPOINT_SIZE,
475 .bDescriptorType = USB_DT_ENDPOINT,
477 .bmAttributes = USB_ENDPOINT_XFER_INT,
478 .wMaxPacketSize = __constant_cpu_to_le16(16),
484 * This attribute vendor descriptor is necessary for correct operation with
485 * Windows version of THOR download program
487 * It prevents windows driver from sending zero lenght packet (ZLP) after
488 * each THOR_PACKET_SIZE. This assures consistent behaviour with libusb
490 static struct usb_cdc_attribute_vendor_descriptor thor_downloader_cdc_av = {
491 .bLength = sizeof(thor_downloader_cdc_av),
492 .bDescriptorType = 0x24,
493 .bDescriptorSubType = 0x80,
499 static const struct usb_descriptor_header *hs_thor_downloader_function[] = {
500 (struct usb_descriptor_header *)&thor_iad_descriptor,
502 (struct usb_descriptor_header *)&thor_downloader_intf_int,
503 (struct usb_descriptor_header *)&thor_downloader_cdc_header,
504 (struct usb_descriptor_header *)&thor_downloader_cdc_call,
505 (struct usb_descriptor_header *)&thor_downloader_cdc_abstract,
506 (struct usb_descriptor_header *)&thor_downloader_cdc_union,
507 (struct usb_descriptor_header *)&hs_int_desc,
509 (struct usb_descriptor_header *)&thor_downloader_intf_data,
510 (struct usb_descriptor_header *)&thor_downloader_cdc_av,
511 (struct usb_descriptor_header *)&hs_in_desc,
512 (struct usb_descriptor_header *)&hs_out_desc,
516 /*-------------------------------------------------------------------------*/
517 static struct usb_request *alloc_ep_req(struct usb_ep *ep, unsigned length)
519 struct usb_request *req;
521 req = usb_ep_alloc_request(ep, 0);
525 req->length = length;
526 req->buf = memalign(CONFIG_SYS_CACHELINE_SIZE, length);
528 usb_ep_free_request(ep, req);
535 static int thor_rx_data(void)
537 struct thor_dev *dev = thor_func->dev;
538 int data_to_rx, tmp, status;
540 data_to_rx = dev->out_req->length;
543 dev->out_req->length = data_to_rx;
544 debug("dev->out_req->length:%d dev->rxdata:%d\n",
545 dev->out_req->length, dev->rxdata);
547 status = usb_ep_queue(dev->out_ep, dev->out_req, 0);
549 pr_err("kill %s: resubmit %d bytes --> %d\n",
550 dev->out_ep->name, dev->out_req->length, status);
551 usb_ep_set_halt(dev->out_ep);
555 while (!dev->rxdata) {
556 usb_gadget_handle_interrupts(0);
561 data_to_rx -= dev->out_req->actual;
562 } while (data_to_rx);
567 static void thor_tx_data(unsigned char *data, int len)
569 struct thor_dev *dev = thor_func->dev;
570 unsigned char *ptr = dev->in_req->buf;
574 memcpy(ptr, data, len);
576 dev->in_req->length = len;
578 debug("%s: dev->in_req->length:%d to_cpy:%zd\n", __func__,
579 dev->in_req->length, sizeof(data));
581 status = usb_ep_queue(dev->in_ep, dev->in_req, 0);
583 pr_err("kill %s: resubmit %d bytes --> %d\n",
584 dev->in_ep->name, dev->in_req->length, status);
585 usb_ep_set_halt(dev->in_ep);
588 /* Wait until tx interrupt received */
590 usb_gadget_handle_interrupts(0);
595 static void thor_rx_tx_complete(struct usb_ep *ep, struct usb_request *req)
597 struct thor_dev *dev = thor_func->dev;
598 int status = req->status;
600 debug("%s: ep_ptr:%p, req_ptr:%p\n", __func__, ep, req);
603 if (ep == dev->out_ep)
610 /* this endpoint is normally active while we're configured */
611 case -ECONNABORTED: /* hardware forced ep reset */
612 case -ECONNRESET: /* request dequeued */
613 case -ESHUTDOWN: /* disconnect from host */
614 case -EREMOTEIO: /* short read */
616 pr_err("ERROR:%d\n", status);
620 debug("%s complete --> %d, %d/%d\n", ep->name,
621 status, req->actual, req->length);
624 static void thor_setup_complete(struct usb_ep *ep, struct usb_request *req)
626 if (req->status || req->actual != req->length)
627 debug("setup complete --> %d, %d/%d\n",
628 req->status, req->actual, req->length);
632 thor_func_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl)
634 struct thor_dev *dev = thor_func->dev;
635 struct usb_request *req = dev->req;
636 struct usb_gadget *gadget = dev->gadget;
639 u16 len = le16_to_cpu(ctrl->wLength);
641 debug("Req_Type: 0x%x Req: 0x%x wValue: 0x%x wIndex: 0x%x wLen: 0x%x\n",
642 ctrl->bRequestType, ctrl->bRequest, ctrl->wValue, ctrl->wIndex,
645 switch (ctrl->bRequest) {
646 case USB_CDC_REQ_SET_CONTROL_LINE_STATE:
649 case USB_CDC_REQ_SET_LINE_CODING:
651 /* Line Coding set done = configuration done */
652 thor_func->dev->configuration_done = 1;
656 pr_err("thor_setup: unknown request: %d\n", ctrl->bRequest);
661 req->zero = value < len;
662 value = usb_ep_queue(gadget->ep0, req, 0);
664 debug("%s: ep_queue: %d\n", __func__, value);
672 /* Specific to the THOR protocol */
673 static void thor_set_dma(void *addr, int len)
675 struct thor_dev *dev = thor_func->dev;
677 debug("in_req:%p, out_req:%p\n", dev->in_req, dev->out_req);
678 debug("addr:%p, len:%d\n", addr, len);
680 dev->out_req->buf = addr;
681 dev->out_req->length = len;
686 struct thor_dev *dev = thor_func->dev;
688 /* Wait for a device enumeration and configuration settings */
689 debug("THOR enumeration/configuration setting....\n");
690 while (!dev->configuration_done)
691 usb_gadget_handle_interrupts(0);
693 thor_set_dma(thor_rx_data_buf, strlen("THOR"));
694 /* detect the download request from Host PC */
695 if (thor_rx_data() < 0) {
696 printf("%s: Data not received!\n", __func__);
700 if (!strncmp((char *)thor_rx_data_buf, "THOR", strlen("THOR"))) {
701 puts("Download request from the Host PC\n");
702 udelay(30 * 1000); /* 30 ms */
704 strcpy((char *)thor_tx_data_buf, "ROHT");
705 thor_tx_data(thor_tx_data_buf, strlen("ROHT"));
707 puts("Wrong reply information\n");
714 int thor_handle(void)
718 /* receive the data from Host PC */
720 thor_set_dma(thor_rx_data_buf, sizeof(struct rqt_box));
721 ret = thor_rx_data();
724 ret = process_data();
725 #ifdef CONFIG_THOR_RESET_OFF
726 if (ret == RESET_DONE)
732 printf("%s: No data received!\n", __func__);
740 static void free_ep_req(struct usb_ep *ep, struct usb_request *req)
744 usb_ep_free_request(ep, req);
747 static int thor_func_bind(struct usb_configuration *c, struct usb_function *f)
749 struct usb_gadget *gadget = c->cdev->gadget;
750 struct f_thor *f_thor = func_to_thor(f);
751 struct thor_dev *dev;
756 dev = memalign(CONFIG_SYS_CACHELINE_SIZE, sizeof(*dev));
760 memset(dev, 0, sizeof(*dev));
761 dev->gadget = gadget;
764 debug("%s: usb_configuration: 0x%p usb_function: 0x%p\n",
766 debug("f_thor: 0x%p thor: 0x%p\n", f_thor, dev);
769 /* preallocate control response and buffer */
770 dev->req = usb_ep_alloc_request(gadget->ep0, 0);
775 dev->req->buf = memalign(CONFIG_SYS_CACHELINE_SIZE,
777 if (!dev->req->buf) {
782 dev->req->complete = thor_setup_complete;
784 /* DYNAMIC interface numbers assignments */
785 status = usb_interface_id(c, f);
790 thor_downloader_intf_int.bInterfaceNumber = status;
791 thor_downloader_cdc_union.bMasterInterface0 = status;
793 status = usb_interface_id(c, f);
798 thor_downloader_intf_data.bInterfaceNumber = status;
799 thor_downloader_cdc_union.bSlaveInterface0 = status;
801 /* allocate instance-specific endpoints */
802 ep = usb_ep_autoconfig(gadget, &fs_in_desc);
808 if (gadget_is_dualspeed(gadget)) {
809 hs_in_desc.bEndpointAddress =
810 fs_in_desc.bEndpointAddress;
813 dev->in_ep = ep; /* Store IN EP for enabling @ setup */
814 ep->driver_data = dev;
816 ep = usb_ep_autoconfig(gadget, &fs_out_desc);
822 if (gadget_is_dualspeed(gadget))
823 hs_out_desc.bEndpointAddress =
824 fs_out_desc.bEndpointAddress;
826 dev->out_ep = ep; /* Store OUT EP for enabling @ setup */
827 ep->driver_data = dev;
829 ep = usb_ep_autoconfig(gadget, &fs_int_desc);
836 ep->driver_data = dev;
838 if (gadget_is_dualspeed(gadget)) {
839 hs_int_desc.bEndpointAddress =
840 fs_int_desc.bEndpointAddress;
842 f->hs_descriptors = (struct usb_descriptor_header **)
843 &hs_thor_downloader_function;
845 if (!f->hs_descriptors)
849 debug("%s: out_ep:%p out_req:%p\n", __func__,
850 dev->out_ep, dev->out_req);
856 free_ep_req(gadget->ep0, dev->req);
861 static void thor_unbind(struct usb_configuration *c, struct usb_function *f)
863 struct f_thor *f_thor = func_to_thor(f);
864 struct thor_dev *dev = f_thor->dev;
866 free_ep_req(dev->gadget->ep0, dev->req);
868 memset(thor_func, 0, sizeof(*thor_func));
872 static void thor_func_disable(struct usb_function *f)
874 struct f_thor *f_thor = func_to_thor(f);
875 struct thor_dev *dev = f_thor->dev;
877 debug("%s:\n", __func__);
879 /* Avoid freeing memory when ep is still claimed */
880 if (dev->in_ep->driver_data) {
881 usb_ep_disable(dev->in_ep);
882 free_ep_req(dev->in_ep, dev->in_req);
883 dev->in_ep->driver_data = NULL;
886 if (dev->out_ep->driver_data) {
887 usb_ep_disable(dev->out_ep);
888 usb_ep_free_request(dev->out_ep, dev->out_req);
889 dev->out_ep->driver_data = NULL;
892 if (dev->int_ep->driver_data) {
893 usb_ep_disable(dev->int_ep);
894 dev->int_ep->driver_data = NULL;
898 static int thor_eps_setup(struct usb_function *f)
900 struct usb_composite_dev *cdev = f->config->cdev;
901 struct usb_gadget *gadget = cdev->gadget;
902 struct thor_dev *dev = thor_func->dev;
903 struct usb_endpoint_descriptor *d;
904 struct usb_request *req;
909 d = ep_desc(gadget, &hs_in_desc, &fs_in_desc);
910 debug("(d)bEndpointAddress: 0x%x\n", d->bEndpointAddress);
912 result = usb_ep_enable(ep, d);
916 ep->driver_data = cdev; /* claim */
917 req = alloc_ep_req(ep, THOR_PACKET_SIZE);
920 goto err_disable_in_ep;
923 memset(req->buf, 0, req->length);
924 req->complete = thor_rx_tx_complete;
927 d = ep_desc(gadget, &hs_out_desc, &fs_out_desc);
928 debug("(d)bEndpointAddress: 0x%x\n", d->bEndpointAddress);
930 result = usb_ep_enable(ep, d);
932 goto err_free_in_req;
934 ep->driver_data = cdev; /* claim */
935 req = usb_ep_alloc_request(ep, 0);
938 goto err_disable_out_ep;
941 req->complete = thor_rx_tx_complete;
945 d = ep_desc(gadget, &hs_int_desc, &fs_int_desc);
946 debug("(d)bEndpointAddress: 0x%x\n", d->bEndpointAddress);
948 result = usb_ep_enable(ep, d);
952 ep->driver_data = cdev; /* claim */
957 usb_ep_disable(dev->out_ep);
960 free_ep_req(dev->in_ep, dev->in_req);
964 usb_ep_disable(dev->in_ep);
970 static int thor_func_set_alt(struct usb_function *f,
971 unsigned intf, unsigned alt)
973 struct thor_dev *dev = thor_func->dev;
976 debug("%s: func: %s intf: %d alt: %d\n",
977 __func__, f->name, intf, alt);
981 debug("ACM INTR interface\n");
984 debug("Communication Data interface\n");
985 result = thor_eps_setup(f);
987 pr_err("%s: EPs setup failed!\n", __func__);
988 dev->configuration_done = 1;
995 static int thor_func_init(struct usb_configuration *c)
997 struct f_thor *f_thor;
1000 debug("%s: cdev: 0x%p\n", __func__, c->cdev);
1002 f_thor = memalign(CONFIG_SYS_CACHELINE_SIZE, sizeof(*f_thor));
1006 memset(f_thor, 0, sizeof(*f_thor));
1008 f_thor->usb_function.name = "f_thor";
1009 f_thor->usb_function.bind = thor_func_bind;
1010 f_thor->usb_function.unbind = thor_unbind;
1011 f_thor->usb_function.setup = thor_func_setup;
1012 f_thor->usb_function.set_alt = thor_func_set_alt;
1013 f_thor->usb_function.disable = thor_func_disable;
1015 status = usb_add_function(c, &f_thor->usb_function);
1022 int thor_add(struct usb_configuration *c)
1024 debug("%s:\n", __func__);
1025 return thor_func_init(c);
1028 DECLARE_GADGET_BIND_CALLBACK(usb_dnl_thor, thor_add);