summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
authorDongwoo Lee <dwoo08.lee@samsung.com>2016-08-05 16:02:46 +0900
committerSeung-Woo Kim <sw0312.kim@samsung.com>2016-12-14 13:52:15 +0900
commitfcc8a27e5383c7c97284c1ba17db63c4b990b87b (patch)
treeb9e12395635be28eef3fc8c2bd852ae21ccbe85d /drivers/usb
parent071a8c1ff7f7440f4cf784c818e56f532a8740c6 (diff)
usb: gadget: Add MTP functions to legacy composite
MTP functions are added to legacy SLP composite gadget. Change-Id: If2b7e8466ed7f8e5ccb5a6a1f4a7c6a11ee32e4e Signed-off-by: Dongwoo Lee <dwoo08.lee@samsung.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/gadget/function/f_mtp.c1721
-rw-r--r--drivers/usb/gadget/function/f_mtp.h77
-rw-r--r--drivers/usb/gadget/legacy/slp.c38
3 files changed, 1836 insertions, 0 deletions
diff --git a/drivers/usb/gadget/function/f_mtp.c b/drivers/usb/gadget/function/f_mtp.c
new file mode 100644
index 000000000000..ac1b8cbc131e
--- /dev/null
+++ b/drivers/usb/gadget/function/f_mtp.c
@@ -0,0 +1,1721 @@
+/*
+ * drivers/usb/gadget/function/f_mtp.c
+ *
+ * Function Driver for USB MTP,
+ * f_mtp.c -- MTP Driver, for MTP development,
+ *
+ * Copyright (C) 2009 by Samsung Electronics,
+ * Author:Deepak M.G. <deepak.guru@samsung.com>,
+ * Author:Madhukar.J <madhukar.j@samsung.com>,
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+/*
+ * f_mtp_slp.c file is the driver for MTP device. Totally three
+ * EndPoints will be configured in which 2 Bulk End Points
+ * and 1 Interrupt End point. This driver will also register as
+ * misc driver and exposes file operation functions to user space.
+ */
+
+
+/* Includes */
+#include <linux/module.h>
+#include <linux/init.h>
+#include <linux/poll.h>
+#include <linux/delay.h>
+#include <linux/wait.h>
+#include <linux/err.h>
+#include <linux/interrupt.h>
+#include <linux/types.h>
+#include <linux/device.h>
+#include <linux/miscdevice.h>
+#include <linux/kernel.h>
+#include <linux/kref.h>
+#include <linux/spinlock.h>
+#include <linux/string.h>
+#include <linux/usb.h>
+#include <linux/usb_usual.h>
+#include <linux/usb/ch9.h>
+#include <linux/usb/composite.h>
+#include <linux/usb/gadget.h>
+#include <linux/hardirq.h>
+#include <linux/sched.h>
+#include <linux/file.h>
+#include <asm-generic/siginfo.h>
+#include <linux/kernel.h>
+#include "f_mtp.h"
+#include "gadget_chips.h"
+
+/*-------------------------------------------------------------------------*/
+/*Only for Debug*/
+#define DEBUG_MTP 0
+
+#if DEBUG_MTP
+#define DEBUG_MTP_SETUP
+#define DEBUG_MTP_READ
+#define DEBUG_MTP_WRITE
+
+#else
+#undef DEBUG_MTP_SETUP
+#undef DEBUG_MTP_READ
+#undef DEBUG_MTP_WRITE
+#endif
+
+/*#define DEBUG_MTP_SETUP*/
+/*#define DEBUG_MTP_READ*/
+/*#define DEBUG_MTP_WRITE*/
+
+#ifdef DEBUG_MTP_SETUP
+#define DEBUG_MTPB(fmt, args...) printk(fmt, ##args)
+#else
+#define DEBUG_MTPB(fmt, args...) do {} while (0)
+#endif
+
+#ifdef DEBUG_MTP_READ
+#define DEBUG_MTPR(fmt, args...) printk(fmt, ##args)
+#else
+#define DEBUG_MTPR(fmt, args...) do {} while (0)
+#endif
+#ifdef DEBUG_MTP_WRITE
+#define DEBUG_MTPW(fmt, args...) printk(fmt, ##args)
+#else
+#define DEBUG_MTPW(fmt, args...) do {} while (0)
+#endif
+/*-------------------------------------------------------------------------*/
+
+#define MTPG_BULK_BUFFER_SIZE 32768
+#define MTPG_INTR_BUFFER_SIZE 28
+
+/* number of rx and tx requests to allocate */
+#define MTPG_RX_REQ_MAX 8
+#define MTPG_MTPG_TX_REQ_MAX 10
+#define MTPG_INTR_REQ_MAX 2
+
+/* ID for Microsoft MTP OS String */
+#define MTPG_OS_STRING_ID 0xEE
+
+#define INTR_BUFFER_SIZE 28
+
+#define DRIVER_NAME "usb_mtp_gadget"
+
+#define MAX_GUID_SIZE 0x28
+static const char mtpg_longname[] = "mtp";
+static const char shortname[] = DRIVER_NAME;
+static int mtp_pid;
+
+char guid_info[MAX_GUID_SIZE+1];
+/* MTP Device Structure*/
+struct mtpg_dev {
+ struct usb_function function;
+ struct usb_composite_dev *cdev;
+ struct usb_gadget *gadget;
+
+ spinlock_t lock;
+
+ u8 config;
+ int online;
+ int error;
+ int read_ready;
+ struct list_head tx_idle;
+ struct list_head rx_idle;
+ struct list_head rx_done;
+ struct list_head intr_idle;
+ wait_queue_head_t read_wq;
+ wait_queue_head_t write_wq;
+ wait_queue_head_t intr_wq;
+
+ struct usb_request *read_req;
+ unsigned char *read_buf;
+ unsigned read_count;
+
+ struct usb_ep *bulk_in;
+ struct usb_ep *bulk_out;
+ struct usb_ep *int_in;
+ struct usb_request *notify_req;
+
+ struct workqueue_struct *wq;
+ struct work_struct read_send_work;
+ struct file *read_send_file;
+
+ int64_t read_send_length;
+
+ uint16_t read_send_cmd;
+ uint32_t read_send_id;
+ int read_send_result;
+ atomic_t read_excl;
+ atomic_t write_excl;
+ atomic_t ioctl_excl;
+ atomic_t open_excl;
+ atomic_t wintfd_excl;
+ char cancel_io_buf[USB_PTPREQUEST_CANCELIO_SIZE+1];
+ int cancel_io;
+
+ struct max_pkt_size udc_max;
+
+ unsigned int bulkBufSize;
+ unsigned int intrBufSize;
+};
+
+/* Global mtpg_dev Structure
+* the_mtpg variable be used between mtpg_open() and mtpg_function_bind() */
+static struct mtpg_dev *the_mtpg;
+
+/* Three full-speed and high-speed endpoint descriptors: bulk-in, bulk-out,
+ * and interrupt-in. */
+
+struct usb_interface_descriptor mtpg_interface_desc = {
+ .bLength = USB_DT_INTERFACE_SIZE,
+ .bDescriptorType = USB_DT_INTERFACE,
+ .bInterfaceNumber = 0,
+ .bNumEndpoints = 3,
+ .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
+ .bInterfaceSubClass = USB_SUBCLASS_VENDOR_SPEC,
+ .bInterfaceProtocol = 0,
+};
+
+static struct usb_interface_descriptor ptp_interface_desc = {
+ .bLength = USB_DT_INTERFACE_SIZE,
+ .bDescriptorType = USB_DT_INTERFACE,
+ .bInterfaceNumber = 0,
+ .bNumEndpoints = 3,
+ .bInterfaceClass = USB_CLASS_STILL_IMAGE,
+ .bInterfaceSubClass = 1,
+ .bInterfaceProtocol = 1,
+};
+
+static struct usb_endpoint_descriptor mtpg_superspeed_in_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ .bEndpointAddress = USB_DIR_IN,
+ .bmAttributes = USB_ENDPOINT_XFER_BULK,
+ .wMaxPacketSize = cpu_to_le16(1024),
+};
+
+static struct usb_endpoint_descriptor mtpg_superspeed_out_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ .bEndpointAddress = USB_DIR_OUT,
+ .bmAttributes = USB_ENDPOINT_XFER_BULK,
+ .wMaxPacketSize = cpu_to_le16(1024),
+};
+
+static struct usb_ss_ep_comp_descriptor mtpg_superspeed_bulk_comp_desc = {
+ .bLength = sizeof(mtpg_superspeed_bulk_comp_desc),
+ .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
+};
+
+static struct usb_endpoint_descriptor fs_mtpg_in_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ .bEndpointAddress = USB_DIR_IN,
+ .bmAttributes = USB_ENDPOINT_XFER_BULK,
+ /* wMaxPacketSize set by autoconfiguration */
+};
+
+static struct usb_endpoint_descriptor fs_mtpg_out_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ .bEndpointAddress = USB_DIR_OUT,
+ .bmAttributes = USB_ENDPOINT_XFER_BULK,
+ /* wMaxPacketSize set by autoconfiguration */
+};
+
+static struct usb_endpoint_descriptor int_fs_notify_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ .bEndpointAddress = USB_DIR_IN,
+ .bmAttributes = USB_ENDPOINT_XFER_INT,
+ .wMaxPacketSize = cpu_to_le16(MTPG_INTR_BUFFER_SIZE),
+ .bInterval = 6,
+};
+
+static struct usb_descriptor_header *fs_mtpg_desc[] = {
+ (struct usb_descriptor_header *) &mtpg_interface_desc,
+ (struct usb_descriptor_header *) &fs_mtpg_in_desc,
+ (struct usb_descriptor_header *) &fs_mtpg_out_desc,
+ (struct usb_descriptor_header *) &int_fs_notify_desc,
+ NULL,
+};
+
+static struct usb_endpoint_descriptor hs_mtpg_in_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ /*bEndpointAddress copied from fs_mtpg_in_desc
+ during mtpg_function_bind()*/
+ .bmAttributes = USB_ENDPOINT_XFER_BULK,
+ .wMaxPacketSize = cpu_to_le16(512),
+};
+
+static struct usb_endpoint_descriptor hs_mtpg_out_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ /*bEndpointAddress copied from fs_mtpg_out_desc
+ during mtpg_function_bind()*/
+ .bmAttributes = USB_ENDPOINT_XFER_BULK,
+ .wMaxPacketSize = cpu_to_le16(512),
+ .bInterval = 1, /* NAK every 1 uframe */
+};
+
+static struct usb_endpoint_descriptor int_hs_notify_desc = {
+ .bLength = USB_DT_ENDPOINT_SIZE,
+ .bDescriptorType = USB_DT_ENDPOINT,
+ .bEndpointAddress = USB_DIR_IN,
+ .bmAttributes = USB_ENDPOINT_XFER_INT,
+ .wMaxPacketSize = cpu_to_le16(MTPG_INTR_BUFFER_SIZE),
+ .bInterval = 6,
+};
+
+static struct usb_ss_ep_comp_descriptor ss_intr_notify_desc = {
+ .bLength = sizeof(ss_intr_notify_desc),
+ .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
+ .wBytesPerInterval = cpu_to_le16(MTPG_INTR_BUFFER_SIZE),
+};
+
+/* In VZW Models size of MTU is fixed using Devguru AVD Descriptor */
+
+struct usb_mtp_avd_descriptor {
+ __u8 bLength;
+ __u8 bDescriptorType;
+ __u8 bDescriptorSubType;
+
+ __u16 bDAU1_Type;
+ __u16 bDAU1_Length;
+ __u8 bDAU1_Value;
+} __packed;
+
+static struct usb_mtp_avd_descriptor mtp_avd_descriptor = {
+ .bLength = 0x08,
+ .bDescriptorType = 0x24,
+ .bDescriptorSubType = 0x80,
+
+ /* First DAU = MTU Size */
+ .bDAU1_Type = 0x000C,
+ .bDAU1_Length = 0x0001,
+ .bDAU1_Value = 0x01,
+};
+
+static struct usb_descriptor_header *ss_mtpg_descs[] = {
+ (struct usb_descriptor_header *) &mtpg_interface_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_in_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_bulk_comp_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_out_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_bulk_comp_desc,
+ (struct usb_descriptor_header *) &int_hs_notify_desc,
+ (struct usb_descriptor_header *) &ss_intr_notify_desc,
+ (struct usb_descriptor_header *) &mtp_avd_descriptor,
+ NULL,
+};
+
+static struct usb_descriptor_header *hs_mtpg_desc[] = {
+ (struct usb_descriptor_header *) &mtpg_interface_desc,
+ (struct usb_descriptor_header *) &hs_mtpg_in_desc,
+ (struct usb_descriptor_header *) &hs_mtpg_out_desc,
+ (struct usb_descriptor_header *) &int_hs_notify_desc,
+ (struct usb_descriptor_header *) &mtp_avd_descriptor,
+ NULL
+};
+
+
+static struct usb_descriptor_header *ss_ptpg_descs[] = {
+ (struct usb_descriptor_header *) &ptp_interface_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_in_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_bulk_comp_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_out_desc,
+ (struct usb_descriptor_header *) &mtpg_superspeed_bulk_comp_desc,
+ (struct usb_descriptor_header *) &int_hs_notify_desc,
+ (struct usb_descriptor_header *) &ss_intr_notify_desc,
+ (struct usb_descriptor_header *) &mtp_avd_descriptor,
+ NULL,
+};
+
+
+static struct usb_descriptor_header *fs_ptp_descs[] = {
+ (struct usb_descriptor_header *) &ptp_interface_desc,
+ (struct usb_descriptor_header *) &fs_mtpg_in_desc,
+ (struct usb_descriptor_header *) &fs_mtpg_out_desc,
+ (struct usb_descriptor_header *) &int_fs_notify_desc,
+ (struct usb_descriptor_header *) &mtp_avd_descriptor,
+ NULL,
+};
+
+static struct usb_descriptor_header *hs_ptp_descs[] = {
+ (struct usb_descriptor_header *) &ptp_interface_desc,
+ (struct usb_descriptor_header *) &hs_mtpg_in_desc,
+ (struct usb_descriptor_header *) &hs_mtpg_out_desc,
+ (struct usb_descriptor_header *) &int_hs_notify_desc,
+ (struct usb_descriptor_header *) &mtp_avd_descriptor,
+ NULL,
+};
+
+
+/* string IDs are assigned dynamically */
+#define F_MTP_IDX 0
+#define STRING_PRODUCT_IDX 1
+#define STRING_SERIAL_IDX 2
+
+/* default serial number takes at least two packets */
+static const char serial[] = "0123456789.0123456789.0123456789";
+
+static struct usb_string strings_dev_mtp[] = {
+ [F_MTP_IDX].s = "MTP",
+ [STRING_PRODUCT_IDX].s = mtpg_longname,
+ [STRING_SERIAL_IDX].s = serial,
+ { }, /* end of list */
+};
+
+static struct usb_gadget_strings stringtab_mtp = {
+ .language = 0x0409, /* en-us */
+ .strings = strings_dev_mtp,
+};
+
+static struct usb_gadget_strings *mtpg_dev_strings[] = {
+ &stringtab_mtp,
+ NULL,
+};
+
+/* Microsoft MTP OS String */
+static u8 mtpg_os_string[] = {
+ 18, /* sizeof(mtpg_os_string) */
+ USB_DT_STRING,
+ /* Signature field: "MSFT100" */
+ 'M', 0, 'S', 0, 'F', 0, 'T', 0, '1', 0, '0', 0, '0', 0,
+ /* vendor code */
+ 1,
+ /* padding */
+ 0
+};
+
+/* Microsoft Extended Configuration Descriptor Header Section */
+struct mtpg_ext_config_desc_header {
+ __le32 dwLength;
+ __u16 bcdVersion;
+ __le16 wIndex;
+ __u8 bCount;
+ __u8 reserved[7];
+};
+
+/* Microsoft Extended Configuration Descriptor Function Section */
+struct mtpg_ext_config_desc_function {
+ __u8 bFirstInterfaceNumber;
+ __u8 bInterfaceCount;
+ __u8 compatibleID[8];
+ __u8 subCompatibleID[8];
+ __u8 reserved[6];
+};
+
+/* MTP Extended Configuration Descriptor */
+struct {
+ struct mtpg_ext_config_desc_header header;
+ struct mtpg_ext_config_desc_function function;
+} mtpg_ext_config_desc = {
+ .header = {
+ .dwLength = cpu_to_le32(sizeof(mtpg_ext_config_desc)),
+ .bcdVersion = cpu_to_le16(0x0100),
+ .wIndex = cpu_to_le16(4),
+ .bCount = cpu_to_le16(1),
+ },
+ .function = {
+ .bFirstInterfaceNumber = 0,
+ .bInterfaceCount = 1,
+ .compatibleID = { 'M', 'T', 'P' },
+ },
+};
+
+/* -------------------------------------------------------------------------
+ * Main Functionalities Start!
+ * ------------------------------------------------------------------------- */
+static inline struct mtpg_dev *mtpg_func_to_dev(struct usb_function *f)
+{
+ return container_of(f, struct mtpg_dev, function);
+}
+
+static inline int _lock(atomic_t *excl)
+{
+ DEBUG_MTPB("[%s] \tline = [%d]\n", __func__, __LINE__);
+
+ if (atomic_inc_return(excl) == 1)
+ return 0;
+
+ atomic_dec(excl);
+ return -EAGAIN;
+}
+
+static inline void _unlock(atomic_t *excl)
+{
+ atomic_dec(excl);
+}
+
+/* add a request to the tail of a list */
+static void mtpg_req_put(struct mtpg_dev *dev, struct list_head *head,
+ struct usb_request *req)
+{
+ unsigned long flags;
+
+ DEBUG_MTPB("[%s] \tline = [%d]\n", __func__, __LINE__);
+
+ spin_lock_irqsave(&dev->lock, flags);
+ list_add_tail(&req->list, head);
+ spin_unlock_irqrestore(&dev->lock, flags);
+}
+
+static ssize_t guid_show(struct device *dev,
+ struct device_attribute *attr, char *buf)
+{
+ DEBUG_MTPB("mtp: [%s]\tline = [%d]\n", __func__, __LINE__);
+ memcpy(buf, guid_info, MAX_GUID_SIZE);
+ return MAX_GUID_SIZE;
+}
+
+static ssize_t guid_store(struct device *dev,
+ struct device_attribute *attr, const char *buf, size_t size)
+{
+ int value;
+
+ DEBUG_MTPB("mtp: [%s]\tline = [%d]\n", __func__, __LINE__);
+ if (size > MAX_GUID_SIZE)
+ return -EINVAL;
+
+ value = strlcpy(guid_info, buf, size);
+ return value;
+}
+
+/* remove a request from the head of a list */
+static struct usb_request *mtpg_req_get(struct mtpg_dev *dev,
+ struct list_head *head)
+{
+ unsigned long flags;
+ struct usb_request *req;
+
+ DEBUG_MTPB("[%s] \tline = [%d]\n", __func__, __LINE__);
+
+ spin_lock_irqsave(&dev->lock, flags);
+ if (list_empty(head)) {
+ req = 0;
+ } else {
+ req = list_first_entry(head, struct usb_request, list);
+ list_del(&req->list);
+ }
+ spin_unlock_irqrestore(&dev->lock, flags);
+
+ return req;
+}
+
+static int mtp_send_signal(int value)
+{
+ int ret;
+ struct siginfo info;
+ struct task_struct *t;
+
+ memset(&info, 0, sizeof(struct siginfo));
+ info.si_signo = SIG_SETUP;
+ info.si_code = SI_QUEUE;
+ info.si_int = value;
+ rcu_read_lock();
+
+ if (!current->nsproxy) {
+ DEBUG_MTPB("process has gone\n");
+ rcu_read_unlock();
+ return -ENODEV;
+ }
+
+ t = pid_task(find_vpid(mtp_pid), PIDTYPE_PID);
+
+ if (t == NULL) {
+ DEBUG_MTPB("no such pid\n");
+ rcu_read_unlock();
+ return -ENODEV;
+ }
+
+ rcu_read_unlock();
+ /*send the signal*/
+ ret = send_sig_info(SIG_SETUP, &info, t);
+ if (ret < 0) {
+ DEBUG_MTPB("[%s]error sending signal\n", __func__);
+ return ret;
+ }
+ return 0;
+
+}
+
+static int mtpg_open(struct inode *ip, struct file *fp)
+{
+ if (_lock(&the_mtpg->open_excl)) {
+ DEBUG_MTPB("mtpg_open fn mtpg device busy\n");
+ return -EBUSY;
+ }
+
+ fp->private_data = the_mtpg;
+
+ /* clear the error latch */
+
+ DEBUG_MTPB("[%s] mtpg_open and clearing the error = 0\n", __func__);
+
+ the_mtpg->error = 0;
+
+ return 0;
+}
+
+static ssize_t mtpg_read(struct file *fp, char __user *buf,
+ size_t count, loff_t *pos)
+{
+ struct mtpg_dev *dev = fp->private_data;
+ struct usb_request *req;
+ int r = count, xfer;
+ int ret;
+
+ DEBUG_MTPR("[%s] and count = (%d)\n", __func__, count);
+
+ if (_lock(&dev->read_excl))
+ return -EBUSY;
+
+ while (!((dev->online || dev->error) && dev->read_ready)) {
+ DEBUG_MTPR("[%s] and line is = %d\n", __func__, __LINE__);
+ ret = wait_event_interruptible(dev->read_wq,
+ ((dev->online || dev->error) && dev->read_ready));
+ if (ret < 0) {
+ _unlock(&dev->read_excl);
+ DEBUG_MTPR("[%s]line is = %d,mtp_read ret<0\n",
+ __func__, __LINE__);
+ return ret;
+ }
+ }
+
+ while (count > 0) {
+ DEBUG_MTPR("[%s] and line is = %d\n", __func__, __LINE__);
+
+ if (dev->error) {
+ r = -EIO;
+ DEBUG_MTPB("[%s]\t%d:dev->error so break r=%d\n",
+ __func__, __LINE__, r);
+ break;
+ }
+
+ /* if we have idle read requests, get them queued */
+ DEBUG_MTPR("[%s]\t%d: get request\n", __func__, __LINE__);
+ while ((req = mtpg_req_get(dev, &dev->rx_idle))) {
+requeue_req:
+ req->length = MTPG_BULK_BUFFER_SIZE;
+ DEBUG_MTPR("[%s]\t%d:usb-ep-queue\n",
+ __func__, __LINE__);
+ ret = usb_ep_queue(dev->bulk_out, req, GFP_ATOMIC);
+
+ DEBUG_MTPR("[%s]\t%d:Endpoint: %s\n",
+ __func__, __LINE__, dev->bulk_out->name);
+
+ if (ret < 0) {
+ r = -EIO;
+ dev->error = 1;
+ mtpg_req_put(dev, &dev->rx_idle, req);
+ DEBUG_MTPR("[%s]line[%d]FAIL r=%d\n",
+ __func__, __LINE__, r);
+ goto fail;
+ } else {
+ DEBUG_MTPR("[%s]rx req queue%p\n",
+ __func__, req);
+ }
+ }
+
+ DEBUG_MTPR("[%s]\t%d:read_count = %d\n",
+ __func__, __LINE__, dev->read_count);
+
+ /* if we have data pending, give it to userspace */
+ if (dev->read_count > 0) {
+ DEBUG_MTPR("[%s]\t%d: read_count = %d\n",
+ __func__, __LINE__, dev->read_count);
+ if (dev->read_count < count)
+ xfer = dev->read_count;
+ else
+ xfer = count;
+
+ DEBUG_MTPR("[%s]copy_to_user 0x%x bytes on EP %p\n",
+ __func__, dev->read_count, dev->bulk_out);
+
+ if (copy_to_user(buf, dev->read_buf, xfer)) {
+ r = -EFAULT;
+ DEBUG_MTPR("[%s]%d:cpytouer fail r=%d\n",
+ __func__, __LINE__, r);
+ break;
+ }
+
+ dev->read_buf += xfer;
+ dev->read_count -= xfer;
+ buf += xfer;
+ count -= xfer;
+
+ /* if we've emptied the buffer, release the request */
+ if (dev->read_count == 0) {
+ DEBUG_MTPR("[%s] and line is = %d\n",
+ __func__, __LINE__);
+ mtpg_req_put(dev, &dev->rx_idle, dev->read_req);
+ dev->read_req = 0;
+ }
+
+ /*Updating the buffer size and returnung
+ from mtpg_read */
+ r = xfer;
+ DEBUG_MTPR("[%s] \t %d: returning length %d\n",
+ __func__, __LINE__, r);
+ goto fail;
+ }
+
+ /* wait for a request to complete */
+ req = 0;
+ DEBUG_MTPR("[%s] and line is = %d\n", __func__, __LINE__);
+ ret = wait_event_interruptible(dev->read_wq,
+ ((req = mtpg_req_get(dev, &dev->rx_done))
+ || dev->error));
+ DEBUG_MTPR("[%s]\t%d: dev->error %d and req = %p\n",
+ __func__, __LINE__, dev->error, req);
+
+ if (req != 0) {
+ /* if we got a 0-len one we need to put it back into
+ ** service. if we made it the current read req we'd
+ ** be stuck forever
+ */
+ if (req->actual == 0)
+ goto requeue_req;
+
+ dev->read_req = req;
+ dev->read_count = req->actual;
+ dev->read_buf = req->buf;
+
+ DEBUG_MTPR("[%s]\t%d: rx_req=%p req->actual=%d\n",
+ __func__, __LINE__, req, req->actual);
+ }
+
+ if (ret < 0) {
+ r = ret;
+ DEBUG_MTPR("[%s]\t%d after ret=%d brk ret=%d\n",
+ __func__, __LINE__, ret, r);
+ break;
+ }
+ }
+
+fail:
+ _unlock(&dev->read_excl);
+ DEBUG_MTPR("[%s]\t%d: RETURNING Back to USpace r=%d\n",
+ __func__, __LINE__, r);
+ return r;
+}
+
+static ssize_t mtpg_write(struct file *fp, const char __user *buf,
+ size_t count, loff_t *pos)
+{
+ struct mtpg_dev *dev = fp->private_data;
+ struct usb_request *req = 0;
+ int r = count, xfer;
+ int ret;
+
+ DEBUG_MTPW("[%s] \t%d ep bulk_out name = %s\n",
+ __func__, __LINE__, dev->bulk_out->name);
+
+ if (_lock(&dev->write_excl))
+ return -EBUSY;
+
+ while (count > 0) {
+ if (dev->error) {
+ r = -EIO;
+ DEBUG_MTPW("[%s]%d count>0 dev->error so brk\n",
+ __func__, __LINE__);
+ break;
+ }
+
+ /* get an idle tx request to use */
+ req = 0;
+ ret = wait_event_interruptible(dev->write_wq,
+ ((req = mtpg_req_get(dev, &dev->tx_idle))
+ || dev->error));
+
+ if (ret < 0) {
+ r = ret;
+ DEBUG_MTPW("[%s]\t%d ret = %d\n",
+ __func__, __LINE__, r);
+ break;
+ }
+
+ if (req != 0) {
+ if (count > MTPG_BULK_BUFFER_SIZE)
+ xfer = MTPG_BULK_BUFFER_SIZE;
+ else
+ xfer = count;
+
+ DEBUG_MTPW("[%s]\t%d copy_from_user length %d\n",
+ __func__, __LINE__, xfer);
+
+ if (copy_from_user(req->buf, buf, xfer)) {
+ DEBUG_MTPW("mtpwrite cpyfrmusr error\n");
+ r = -EFAULT;
+ break;
+ }
+
+ req->length = xfer;
+ ret = usb_ep_queue(dev->bulk_in, req, GFP_ATOMIC);
+ if (ret < 0) {
+ dev->error = 1;
+ r = -EIO;
+ DEBUG_MTPW("[%s]\t%d ep_que ret=%d\n",
+ __func__, __LINE__, ret);
+ break;
+ }
+
+ buf += xfer;
+ count -= xfer;
+
+ /* zero this so we don't try to free it on error exit */
+ req = 0;
+ }
+ }
+
+ if (req) {
+ DEBUG_MTPW("[%s] \t%d mtpg_req_put\n", __func__, __LINE__);
+ mtpg_req_put(dev, &dev->tx_idle, req);
+ }
+
+ _unlock(&dev->write_excl);
+
+ DEBUG_MTPW("[%s]\t%d RETURN back to USpace r=%d\n",
+ __func__, __LINE__, r);
+ return r;
+}
+
+static ssize_t interrupt_write(struct file *fd,
+ struct mtp_event *event, size_t count)
+{
+ struct mtpg_dev *dev = fd->private_data;
+ struct usb_request *req = 0;
+ int ret;
+
+ if (count > MTPG_INTR_BUFFER_SIZE)
+ return -EINVAL;
+
+ ret = wait_event_interruptible_timeout(dev->intr_wq,
+ (req = mtpg_req_get(dev, &dev->intr_idle)),
+ msecs_to_jiffies(1000));
+
+ if (!req) {
+ DEBUG_MTPW("[%s]Alloc has failed\n", __func__);
+ return -ENOMEM;
+ }
+
+ if (copy_from_user(req->buf, (void __user *)event->data, count)) {
+ mtpg_req_put(dev, &dev->intr_idle, req);
+ DEBUG_MTPW("[%s]copy from user has failed\n", __func__);
+ return -EIO;
+ }
+
+ req->length = count;
+ ret = usb_ep_queue(dev->int_in, req, GFP_KERNEL);
+
+ if (ret) {
+ DEBUG_MTPW("[%s:%d]\n", __func__, __LINE__);
+ mtpg_req_put(dev, &dev->intr_idle, req);
+ }
+
+ DEBUG_MTPB("[%s] \tline = [%d] returning ret is %d\\n",
+ __func__, __LINE__, ret);
+ return ret;
+}
+
+static void read_send_work(struct work_struct *work)
+{
+ struct mtpg_dev *dev = container_of(work, struct mtpg_dev,
+ read_send_work);
+ struct usb_request *req = 0;
+ struct usb_container_header *hdr;
+ struct file *file;
+ loff_t file_pos = 0;
+ int64_t count = 0;
+ int xfer = 0;
+ int ret = -1;
+ int hdr_length = 0;
+ int r = 0;
+ int ZLP_flag = 0;
+
+ /* read our parameters */
+ smp_rmb();
+ file = dev->read_send_file;
+ count = dev->read_send_length;
+ hdr_length = sizeof(struct usb_container_header);
+ count += hdr_length;
+
+ DEBUG_MTPB("[%s:%d] offset=[%lld]\t leth+hder=[%lld]\n",
+ __func__, __LINE__, file_pos, count);
+
+ /* Zero Length Packet should be sent if the last trasfer
+ * size is equals to the max packet size.
+ */
+ if ((count & (dev->bulk_in->maxpacket - 1)) == 0)
+ ZLP_flag = 1;
+
+ while (count > 0 || ZLP_flag) {
+ /*Breaking the loop after sending Zero Length Packet*/
+ if (count == 0)
+ ZLP_flag = 0;
+
+ if (dev->cancel_io == 1) {
+ dev->cancel_io = 0; /*reported to user space*/
+ r = -EIO;
+ DEBUG_MTPB("[%s]\t%d ret = %d\n",
+ __func__, __LINE__, r);
+ break;
+ }
+ /* get an idle tx request to use */
+ req = 0;
+ ret = wait_event_interruptible(dev->write_wq,
+ ((req = mtpg_req_get(dev, &dev->tx_idle))
+ || dev->error));
+ if (ret < 0 || !req) {
+ r = ret;
+ DEBUG_MTPB("[%s]\t%d ret = %d\n",
+ __func__, __LINE__, r);
+ break;
+ }
+
+ if (count > MTPG_BULK_BUFFER_SIZE)
+ xfer = MTPG_BULK_BUFFER_SIZE;
+ else
+ xfer = count;
+
+ if (hdr_length) {
+ hdr = (struct usb_container_header *)req->buf;
+ hdr->Length = __cpu_to_le32(count);
+ hdr->Type = __cpu_to_le16(2);
+ hdr->Code = __cpu_to_le16(dev->read_send_cmd);
+ hdr->TransactionID = __cpu_to_le32(dev->read_send_id);
+ }
+
+ ret = vfs_read(file, req->buf + hdr_length,
+ xfer - hdr_length, &file_pos);
+ if (ret < 0 || !req) {
+ r = ret;
+ DEBUG_MTPB("[%s]\t%d ret = %d\n",
+ __func__, __LINE__, r);
+ break;
+ }
+ xfer = ret + hdr_length;
+ hdr_length = 0;
+
+ req->length = xfer;
+ ret = usb_ep_queue(dev->bulk_in, req, GFP_KERNEL);
+ if (ret < 0 || !req) {
+ dev->error = 1;
+ r = -EIO;
+ DEBUG_MTPB("[%s]\t%d ret = %d\n",
+ __func__, __LINE__, r);
+ break;
+ }
+
+ count -= xfer;
+
+ req = 0;
+ }
+
+ if (req)
+ mtpg_req_put(dev, &dev->tx_idle, req);
+
+ DEBUG_MTPB("[%s] \tline = [%d] \t r = [%d]\n", __func__, __LINE__, r);
+
+ dev->read_send_result = r;
+ /* Make sure the result is stored to memory */
+ smp_wmb();
+}
+
+/*Fixme for enabling and disabling the MTP*/
+static long mtpg_ioctl(struct file *fd, unsigned int code, unsigned long arg)
+{
+ struct mtp_event event;
+ struct mtpg_dev *dev = fd->private_data;
+ struct usb_composite_dev *cdev;
+ struct usb_request *req;
+ struct usb_ep *bulk_in;
+ struct usb_ep *bulk_out;
+ struct max_pkt_size size_info;
+ int status = 0;
+ int size = 0;
+ int ret_value = 0;
+ void __user *ubuf = (void __user *)arg;
+ char buf[USB_PTPREQUEST_GETSTATUS_SIZE + 1] = { 0 };
+
+ DEBUG_MTPB("[%s] with cmd:[%04x]\n", __func__, code);
+
+ if (!the_mtpg) {
+ pr_info("mtpg_ioctl fail, usb not yet enabled for MTP\n");
+ return -ENODEV;
+ }
+ cdev = the_mtpg->function.config->cdev;
+ req = cdev->req;
+ bulk_in = the_mtpg->bulk_in;
+ bulk_out = the_mtpg->bulk_out;
+
+ switch (code) {
+ case SET_MTP_USER_PID:
+ if (copy_from_user(&mtp_pid, ubuf, sizeof(mtp_pid)))
+ status = -EFAULT;
+ else
+ pr_info("[%s] SET_MTP_USER_PID; pid = %d \tline = [%d]\n",
+ __func__, mtp_pid, __LINE__);
+ break;
+
+ case GET_MAX_PKT_SIZE:
+ /* Now at tx-case, we use variable size in udc-max-tx-pkt-size
+ * limitation to increase transferring perfomance.
+ * tx_queue will be allocated dynamically when it need.
+ */
+ size_info.txPktSize = dev->udc_max.txPktSize;
+
+ /* But rx-case, we use small fixed size for memory & stability
+ * rx_queues are already pre-allocated with fixed size
+ */
+ size_info.rxPktSize = dev->bulkBufSize;
+
+ if (copy_to_user(ubuf, &size_info, sizeof(struct max_pkt_size)))
+ status = -EIO;
+ break;
+
+ case MTP_DISABLE:
+ if (cdev && cdev->gadget) {
+ pr_info("mtpg_ioctl for MTP_DISABLE, usb_gadget_dicon/connect!!\n");
+ usb_gadget_disconnect(cdev->gadget);
+ mdelay(5);
+ usb_gadget_connect(cdev->gadget);
+ }
+ break;
+
+ case MTP_CLEAR_HALT:
+ status = usb_ep_clear_halt(bulk_in);
+ if (!status)
+ status = usb_ep_clear_halt(bulk_out);
+ break;
+
+ case MTP_WRITE_INT_DATA:
+ DEBUG_MTPB("[%s]\t%d MTP intrpt_Write no slep\n",
+ __func__, __LINE__);
+ if (copy_from_user(&event, (void __user *)arg, sizeof(event))) {
+ status = -EFAULT;
+ DEBUG_MTPB("[%s]\t%d:copyfrmuser fail\n",
+ __func__, __LINE__);
+ break;
+ }
+ ret_value = interrupt_write(fd, &event,
+ MTP_MAX_PACKET_LEN_FROM_APP);
+ if (ret_value < 0) {
+ DEBUG_MTPB("[%s]\t%d interptFD failed\n",
+ __func__, __LINE__);
+ status = -EIO;
+ } else {
+ DEBUG_MTPB("[%s]\t%d intruptFD suces\n",
+ __func__, __LINE__);
+ status = MTP_MAX_PACKET_LEN_FROM_APP;
+ }
+ break;
+
+ case GET_SETUP_DATA:
+ if (copy_to_user(ubuf, dev->cancel_io_buf,
+ USB_PTPREQUEST_CANCELIO_SIZE))
+ status = -EIO;
+ break;
+
+ case SEND_RESET_ACK:
+ req->length = 0;
+ status = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC);
+ if (status < 0)
+ DEBUG_MTPB("[%s] Error at usb_ep_queue\tline = [%d]\n",
+ __func__, __LINE__);
+ break;
+
+ case SET_SETUP_DATA:
+ if (copy_from_user(buf, ubuf,
+ USB_PTPREQUEST_GETSTATUS_SIZE)) {
+ status = -EIO;
+ DEBUG_MTPR("*****[%s]\t%d: copy-from-user failed!!!!\n",
+ __func__, __LINE__);
+ break;
+ }
+ size = buf[0];
+ DEBUG_MTPB("[SET_SETUP_DATA]check data(%d):%x, %x, %x, %x\n",
+ size, buf[0], buf[1], buf[2], buf[3]);
+ memcpy(req->buf, buf, size);
+ req->zero = 0;
+ req->length = size;
+ status = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC);
+ if (status < 0)
+ DEBUG_MTPB("[%s] Error at usb_ep_queue\tline = [%d]\n",
+ __func__, __LINE__);
+ break;
+
+ case SET_ZLP_DATA:
+ /*req->zero = 1;*/
+ req = mtpg_req_get(dev, &dev->tx_idle);
+ if (!req) {
+ DEBUG_MTPB("[%s] Failed to get ZLP_DATA\n", __func__);
+ return -EAGAIN;
+ }
+ req->length = 0;
+ DEBUG_MTPB("[%s]ZLP_DATA data=%d\tline=[%d]\n",
+ __func__, size, __LINE__);
+ status = usb_ep_queue(dev->bulk_in, req, GFP_ATOMIC);
+ if (status < 0) {
+ DEBUG_MTPB("[%s]usbepqueue line=[%d]\n",
+ __func__, __LINE__);
+ } else {
+ DEBUG_MTPB("%sZLPstatus=%d\tline=%d\n",
+ __func__, __LINE__, status);
+ status = 20;
+ }
+ break;
+
+ case GET_HIGH_FULL_SPEED:
+ if (!bulk_in->driver_data) {
+ pr_info("USB speed does not negotiate with host\n");
+ status = -ENODEV;
+ } else {
+ int maxpacket = bulk_in->maxpacket;
+
+ if (copy_to_user(ubuf, &maxpacket, sizeof(int)))
+ status = -EIO;
+ }
+ break;
+
+ default:
+ status = -ENOTTY;
+ }
+
+ return status;
+}
+
+#ifdef CONFIG_COMPAT
+static long
+mtpg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
+{
+ return mtpg_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
+}
+#endif
+
+static int mtpg_release_device(struct inode *ip, struct file *fp)
+{
+ if (the_mtpg != NULL)
+ _unlock(&the_mtpg->open_excl);
+ return 0;
+}
+
+/* file operations for MTP device /dev/usb_mtp_gadget */
+static const struct file_operations mtpg_fops = {
+ .owner = THIS_MODULE,
+ .read = mtpg_read,
+ .write = mtpg_write,
+ .open = mtpg_open,
+ .unlocked_ioctl = mtpg_ioctl,
+ .release = mtpg_release_device,
+#ifdef CONFIG_COMPAT
+ .compat_ioctl = mtpg_compat_ioctl,
+#endif
+};
+
+static struct miscdevice mtpg_device = {
+ .minor = MISC_DYNAMIC_MINOR,
+ .name = shortname,
+ .fops = &mtpg_fops,
+};
+
+static void mtpg_request_free(struct usb_request *req, struct usb_ep *ep)
+{
+ if (req) {
+ kfree(req->buf);
+ usb_ep_free_request(ep, req);
+ }
+}
+
+static struct usb_request *mtpg_request_new(struct usb_ep *ep, int buffer_size)
+{
+ struct usb_request *req = usb_ep_alloc_request(ep, GFP_KERNEL);
+
+ if (!req) {
+ DEBUG_MTPB("[%s]\tline %d ERROR\n", __func__, __LINE__);
+ return NULL;
+ }
+
+ /* now allocate buffers for the requests */
+ req->buf = kmalloc(buffer_size, GFP_KERNEL);
+ if (!req->buf) {
+ usb_ep_free_request(ep, req);
+ return NULL;
+ }
+
+ return req;
+}
+
+static void mtpg_complete_in(struct usb_ep *ep, struct usb_request *req)
+{
+ struct mtpg_dev *dev = the_mtpg;
+
+ DEBUG_MTPB("[%s]\t %d req->status is = %d\n",
+ __func__, __LINE__, req->status);
+
+ if (req->status != 0)
+ dev->error = 1;
+
+ mtpg_req_put(dev, &dev->tx_idle, req);
+ wake_up(&dev->write_wq);
+}
+
+static void mtpg_complete_out(struct usb_ep *ep, struct usb_request *req)
+{
+ struct mtpg_dev *dev = the_mtpg;
+
+ DEBUG_MTPB("[%s]\tline = [%d]req->status is = %d\n",
+ __func__, __LINE__, req->status);
+ if (req->status != 0) {
+ dev->error = 1;
+
+ DEBUG_MTPB("[%s]\t%d dev->error is=%d for rx_idle\n",
+ __func__, __LINE__, dev->error);
+ mtpg_req_put(dev, &dev->rx_idle, req);
+ } else {
+ DEBUG_MTPB("[%s]\t%d for rx_done\n", __func__, __LINE__);
+ mtpg_req_put(dev, &dev->rx_done, req);
+ }
+ wake_up(&dev->read_wq);
+}
+
+static void mtpg_complete_intr(struct usb_ep *ep, struct usb_request *req)
+{
+ struct mtpg_dev *dev = the_mtpg;
+
+ if (req->status != 0)
+ dev->error = 1;
+
+ mtpg_req_put(dev, &dev->intr_idle, req);
+
+ wake_up(&dev->intr_wq);
+}
+
+static DEVICE_ATTR(guid, S_IRUGO | S_IWUSR, guid_show, guid_store);
+
+static void
+mtpg_function_unbind(struct usb_configuration *c, struct usb_function *f)
+{
+ struct mtpg_dev *dev = mtpg_func_to_dev(f);
+ struct usb_request *req;
+
+ while ((req = mtpg_req_get(dev, &dev->rx_idle)))
+ mtpg_request_free(req, dev->bulk_out);
+
+ while ((req = mtpg_req_get(dev, &dev->tx_idle)))
+ mtpg_request_free(req, dev->bulk_in);
+
+ while ((req = mtpg_req_get(dev, &dev->intr_idle)))
+ mtpg_request_free(req, dev->int_in);
+ memset(guid_info, 0, sizeof(guid_info));
+}
+
+static int
+mtpg_function_bind(struct usb_configuration *c, struct usb_function *f)
+{
+ struct usb_composite_dev *cdev = c->cdev;
+ struct mtpg_dev *mtpg = mtpg_func_to_dev(f);
+ struct usb_request *req;
+ struct usb_ep *ep;
+ int i, id;
+
+ /* Allocate string descriptor numbers ... note that string
+ * contents can be overridden by the composite_dev glue.
+ */
+
+ id = usb_interface_id(c, f);
+ if (id < 0) {
+ DEBUG_MTPB("[%s]Error in usb_interface_id\n", __func__);
+ return id;
+ }
+
+ mtpg_interface_desc.bInterfaceNumber = id;
+
+ ep = usb_ep_autoconfig(cdev->gadget, &fs_mtpg_in_desc);
+ if (!ep) {
+ DEBUG_MTPB("[%s]Error usb_ep_autoconfig IN\n", __func__);
+ goto autoconf_fail;
+ }
+ ep->driver_data = mtpg; /* claim the endpoint */
+ mtpg->bulk_in = ep;
+ the_mtpg->bulk_in = ep;
+
+ ep = usb_ep_autoconfig(cdev->gadget, &fs_mtpg_out_desc);
+ if (!ep) {
+ DEBUG_MTPB("[%s]Error usb_ep_autoconfig OUT\n", __func__);
+ goto autoconf_fail;
+ }
+ ep->driver_data = mtpg; /* claim the endpoint */
+ mtpg->bulk_out = ep;
+ the_mtpg->bulk_out = ep;
+
+ /* Interrupt Support for MTP */
+ ep = usb_ep_autoconfig(cdev->gadget, &int_fs_notify_desc);
+ if (!ep) {
+ DEBUG_MTPB("[%s]Error usb_ep_autoconfig INT\n", __func__);
+ goto autoconf_fail;
+ }
+ ep->driver_data = mtpg;
+ mtpg->int_in = ep;
+ the_mtpg->int_in = ep;
+
+ for (i = 0; i < MTPG_INTR_REQ_MAX; i++) {
+ req = mtpg_request_new(mtpg->int_in, MTPG_INTR_BUFFER_SIZE);
+ if (!req)
+ goto out;
+ req->complete = mtpg_complete_intr;
+ mtpg_req_put(mtpg, &mtpg->intr_idle, req);
+ }
+ for (i = 0; i < MTPG_RX_REQ_MAX; i++) {
+ req = mtpg_request_new(mtpg->bulk_out, MTPG_BULK_BUFFER_SIZE);
+ if (!req)
+ goto out;
+ req->complete = mtpg_complete_out;
+ mtpg_req_put(mtpg, &mtpg->rx_idle, req);
+ }
+
+ for (i = 0; i < MTPG_MTPG_TX_REQ_MAX; i++) {
+ req = mtpg_request_new(mtpg->bulk_in, MTPG_BULK_BUFFER_SIZE);
+ if (!req)
+ goto out;
+ req->complete = mtpg_complete_in;
+ mtpg_req_put(mtpg, &mtpg->tx_idle, req);
+ }
+
+ if (gadget_is_dualspeed(cdev->gadget)) {
+
+ DEBUG_MTPB("[%s]\tdual speed line = [%d]\n",
+ __func__, __LINE__);
+
+ /* Assume endpoint addresses are the same for both speeds */
+ hs_mtpg_in_desc.bEndpointAddress =
+ fs_mtpg_in_desc.bEndpointAddress;
+ hs_mtpg_out_desc.bEndpointAddress =
+ fs_mtpg_out_desc.bEndpointAddress;
+ int_hs_notify_desc.bEndpointAddress =
+ int_fs_notify_desc.bEndpointAddress;
+ }
+
+ if (gadget_is_superspeed(c->cdev->gadget)) {
+ DEBUG_MTPB("[%s]\tdual speed line = [%d]\n",
+ __func__, __LINE__);
+ mtpg_superspeed_in_desc.bEndpointAddress =
+ fs_mtpg_in_desc.bEndpointAddress;
+ mtpg_superspeed_out_desc.bEndpointAddress =
+ fs_mtpg_out_desc.bEndpointAddress;
+ }
+ DEBUG_MTPB("%s speed %s: IN/%s, OUT/%s\n",
+ gadget_is_superspeed(c->cdev->gadget) ? "super" :
+ gadget_is_dualspeed(c->cdev->gadget) ? "dual" : "full",
+ f->name, mtpg->bulk_in->name, mtpg->bulk_out->name);
+
+ mtpg->cdev = cdev;
+ the_mtpg->cdev = cdev;
+
+ return 0;
+
+autoconf_fail:
+ DEBUG_MTPB("mtpg unable to autoconfigure all endpoints\n");
+ return -ENOTSUPP;
+out:
+ mtpg_function_unbind(c, f);
+ return -1;
+}
+
+static int mtpg_function_set_alt(struct usb_function *f,
+ unsigned intf, unsigned alt)
+{
+ struct mtpg_dev *dev = mtpg_func_to_dev(f);
+ struct usb_composite_dev *cdev = f->config->cdev;
+ int ret;
+
+ if (dev->int_in->driver_data)
+ usb_ep_disable(dev->int_in);
+
+ ret = config_ep_by_speed(cdev->gadget, f, dev->int_in);
+ if (ret) {
+ dev->int_in->desc = NULL;
+ ERROR(cdev, "config_ep_by_speed failes for ep %s, result %d\n",
+ dev->int_in->name, ret);
+ return ret;
+ }
+ ret = usb_ep_enable(dev->int_in);
+ if (ret) {
+ ERROR(cdev, "failed to enable ep %s, result %d\n",
+ dev->int_in->name, ret);
+ return ret;
+ }
+ dev->int_in->driver_data = dev;
+
+ if (dev->bulk_in->driver_data)
+ usb_ep_disable(dev->bulk_in);
+
+ ret = config_ep_by_speed(cdev->gadget, f, dev->bulk_in);
+ if (ret) {
+ dev->bulk_in->desc = NULL;
+ ERROR(cdev, "config_ep_by_speed failes for ep %s, result %d\n",
+ dev->bulk_in->name, ret);
+ return ret;
+ }
+ ret = usb_ep_enable(dev->bulk_in);
+ if (ret) {
+ ERROR(cdev, "failed to enable ep %s, result %d\n",
+ dev->bulk_in->name, ret);
+ return ret;
+ }
+ dev->bulk_in->driver_data = dev;
+
+ if (dev->bulk_out->driver_data)
+ usb_ep_disable(dev->bulk_out);
+
+ ret = config_ep_by_speed(cdev->gadget, f, dev->bulk_out);
+ if (ret) {
+ dev->bulk_out->desc = NULL;
+ ERROR(cdev, "config_ep_by_speed failes for ep %s, result %d\n",
+ dev->bulk_out->name, ret);
+ return ret;
+ }
+ ret = usb_ep_enable(dev->bulk_out);
+ if (ret) {
+ ERROR(cdev, "failed to enable ep %s, result %d\n",
+ dev->bulk_out->name, ret);
+ return ret;
+ }
+ dev->bulk_out->driver_data = dev;
+
+ dev->online = 1;
+ dev->error = 0;
+ dev->read_ready = 1;
+ dev->cancel_io = 0;
+
+ /* readers may be blocked waiting for us to go online */
+ wake_up(&dev->read_wq);
+
+ return 0;
+}
+
+static void mtpg_function_disable(struct usb_function *f)
+{
+ struct mtpg_dev *dev = mtpg_func_to_dev(f);
+
+ memset(guid_info, 0, sizeof(guid_info));
+
+ dev->online = 0;
+ dev->error = 1;
+
+ usb_ep_disable(dev->int_in);
+ dev->int_in->driver_data = NULL;
+
+ usb_ep_disable(dev->bulk_in);
+ dev->bulk_in->driver_data = NULL;
+
+ usb_ep_disable(dev->bulk_out);
+ dev->bulk_out->driver_data = NULL;
+
+ wake_up(&dev->read_wq);
+}
+
+/*PIMA15740-2000 spec: Class specific setup request for MTP*/
+static void
+mtp_complete_cancel_io(struct usb_ep *ep, struct usb_request *req)
+{
+ int i;
+ struct mtpg_dev *dev = ep->driver_data;
+
+ if (req->status != 0) {
+ DEBUG_MTPB("[%s]req->status !=0\tline = [%d]\n",
+ __func__, __LINE__);
+ return;
+ }
+
+ if (req->actual != USB_PTPREQUEST_CANCELIO_SIZE) {
+ DEBUG_MTPB("[%s]USB_PTPREQUEST_CANCELIO_SIZE line = [%d]\n",
+ __func__, __LINE__);
+ usb_ep_set_halt(ep);
+ } else {
+ memset(dev->cancel_io_buf, 0, USB_PTPREQUEST_CANCELIO_SIZE+1);
+ memcpy(dev->cancel_io_buf, req->buf,
+ USB_PTPREQUEST_CANCELIO_SIZE);
+ dev->cancel_io = 1;
+ /*Debugging*/
+ for (i = 0; i < USB_PTPREQUEST_CANCELIO_SIZE; i++)
+ DEBUG_MTPB("[%s]cancel_io_buf[%d]=%x\tline = [%d]\n",
+ __func__, i, dev->cancel_io_buf[i], __LINE__);
+ mtp_send_signal(USB_PTPREQUEST_CANCELIO);
+ }
+}
+
+static void
+mtp_complete_get_guid(struct usb_ep *ep, struct usb_request *req)
+{
+ int size;
+
+ if (req->status != 0) {
+ DEBUG_MTPB("[%s]req->status !=0\tline = [%d]\n",
+ __func__, __LINE__);
+ return;
+ }
+
+ size = (req->actual >= sizeof(guid_info))
+ ? sizeof(guid_info)-1:req->actual;
+
+ memset(guid_info, 0, sizeof(guid_info));
+ memcpy(guid_info, req->buf, size);
+}
+
+static int mtp_ctrlrequest(struct usb_composite_dev *cdev,
+ const struct usb_ctrlrequest *ctrl)
+{
+ struct mtpg_dev *dev = the_mtpg;
+ struct usb_request *req = cdev->req;
+ int signal_request = 0;
+ int value = -EOPNOTSUPP;
+ u16 w_index = le16_to_cpu(ctrl->wIndex);
+ u16 w_value = le16_to_cpu(ctrl->wValue);
+ u16 w_length = le16_to_cpu(ctrl->wLength);
+
+ if (ctrl->bRequestType ==
+ (USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_DEVICE)
+ && ctrl->bRequest == USB_REQ_GET_DESCRIPTOR
+ && (w_value >> 8) == USB_DT_STRING
+ && (w_value & 0xFF) == MTPG_OS_STRING_ID) {
+ value = (w_length < sizeof(mtpg_os_string)
+ ? w_length : sizeof(mtpg_os_string));
+ memcpy(cdev->req->buf, mtpg_os_string, value);
+ if (value >= 0) {
+ cdev->req->zero = value < w_length;
+ cdev->req->length = value;
+
+ if (usb_ep_queue(cdev->gadget->ep0,
+ cdev->req, GFP_ATOMIC) < 0)
+ DEBUG_MTPB("[%s:%d] setup queue error\n",
+ __func__, __LINE__);
+ }
+
+ return value;
+ } else if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_VENDOR) {
+ if ((ctrl->bRequest == 1 || ctrl->bRequest == 0x54 ||
+ ctrl->bRequest == 0x6F || ctrl->bRequest == 0xFE)
+ && (ctrl->bRequestType & USB_DIR_IN)
+ && (w_index == 4 || w_index == 5)) {
+
+ value = (w_length < sizeof(mtpg_ext_config_desc))
+ ? w_length : sizeof(mtpg_ext_config_desc);
+ memcpy(cdev->req->buf, &mtpg_ext_config_desc, value);
+
+ if (value >= 0) {
+ cdev->req->zero = value < w_length;
+ cdev->req->length = value;
+ if (usb_ep_queue(cdev->gadget->ep0,
+ cdev->req, GFP_ATOMIC) < 0)
+ DEBUG_MTPB(
+ "[%s:%d] setup queue error\n",
+ __func__, __LINE__);
+ }
+ return value;
+ } else if ((ctrl->bRequest == 0xA3)
+ && (!(ctrl->bRequestType & USB_DIR_IN))) {
+
+ DEBUG_MTPB("mtp: [%s] RECEIVE PC GUID / line[%d]\n",
+ __func__, __LINE__);
+ cdev->gadget->ep0->driver_data = dev;
+ req->complete = mtp_complete_get_guid;
+ req->zero = 0;
+ req->length = w_length;
+ value = usb_ep_queue(cdev->gadget->ep0,
+ req, GFP_ATOMIC);
+ if (value < 0)
+ DEBUG_MTPB("[%s:%d]Error usb_ep_queue\n",
+ __func__, __LINE__);
+ else
+ DEBUG_MTPB("[%s] ep-queue-sucecc line[%d]\n",
+ __func__, __LINE__);
+ }
+ DEBUG_MTPB("mtp: mtp_ctrlrequest %02x.%02x v%04x i%04x l%u\n",
+ ctrl->bRequestType, ctrl->bRequest,
+ w_value, w_index, w_length);
+ }
+
+ switch ((ctrl->bRequestType << 8) | ctrl->bRequest) {
+ case ((USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
+ | USB_PTPREQUEST_CANCELIO:
+ DEBUG_MTPB("[%s]\tline=[%d]w_v=%x, w_i=%x, w_l=%x\n",
+ __func__, __LINE__, w_value, w_index, w_length);
+ if (w_value == 0x00 && w_length == 0x06) {
+ DEBUG_MTPB("[%s]PTPREQUESTCANCLIO line[%d]\n",
+ __func__, __LINE__);
+ value = w_length;
+ cdev->gadget->ep0->driver_data = dev;
+ req->complete = mtp_complete_cancel_io;
+ req->zero = 0;
+ req->length = value;
+ value = usb_ep_queue(cdev->gadget->ep0,
+ req, GFP_ATOMIC);
+ }
+ return value;
+
+ case ((USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
+ | USB_PTPREQUEST_RESET:
+ DEBUG_MTPB("[%s] USB_PTPREQUEST_RESET\tline = [%d]\n",
+ __func__, __LINE__);
+ signal_request = USB_PTPREQUEST_RESET;
+ break;
+
+ case ((USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
+ | USB_PTPREQUEST_GETSTATUS:
+ signal_request = USB_PTPREQUEST_GETSTATUS;
+ break;
+
+ case ((USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE) << 8)
+ | USB_PTPREQUEST_GETEVENT:
+ signal_request = USB_PTPREQUEST_GETEVENT;
+ break;
+
+ default:
+ DEBUG_MTPB("[%s] INVALID REQUEST \tline = [%d]\n",
+ __func__, __LINE__);
+ return value;
+ }
+
+ value = mtp_send_signal(signal_request);
+ return value;
+}
+
+static int mtp_bind_config(struct usb_configuration *c, bool ptp_config)
+{
+ struct mtpg_dev *mtpg = the_mtpg;
+ int status = 0;
+
+ if (strings_dev_mtp[F_MTP_IDX].id == 0) {
+ status = usb_string_id(c->cdev);
+
+ if (status < 0)
+ return status;
+
+ strings_dev_mtp[F_MTP_IDX].id = status;
+ mtpg_interface_desc.iInterface = status;
+ }
+
+ mtpg->cdev = c->cdev;
+ mtpg->function.name = mtpg_longname;
+ mtpg->function.strings = mtpg_dev_strings;
+
+ if (ptp_config) {
+ mtpg->function.fs_descriptors = fs_ptp_descs;
+ mtpg->function.hs_descriptors = hs_ptp_descs;
+ if (gadget_is_superspeed(c->cdev->gadget))
+ mtpg->function.ss_descriptors = ss_ptpg_descs;
+ } else {
+ mtpg->function.fs_descriptors = fs_mtpg_desc;
+ mtpg->function.hs_descriptors = hs_mtpg_desc;
+ if (gadget_is_superspeed(c->cdev->gadget))
+ mtpg->function.ss_descriptors = ss_mtpg_descs;
+ }
+
+ mtpg->function.bind = mtpg_function_bind;
+ mtpg->function.unbind = mtpg_function_unbind;
+ mtpg->function.set_alt = mtpg_function_set_alt;
+ mtpg->function.disable = mtpg_function_disable;
+
+ return usb_add_function(c, &mtpg->function);
+}
+
+static int mtp_setup(void)
+{
+ struct mtpg_dev *mtpg;
+ int rc;
+ int err;
+
+ memset(guid_info, '0', 1);
+ mtpg = kzalloc(sizeof(*mtpg), GFP_KERNEL);
+ if (!mtpg) {
+ DEBUG_MTPB("mtpg_dev_alloc memory failed\n");
+ return -ENOMEM;
+ }
+
+ /*
+ * Fix or, add me for UDC specific transferable size
+ * Each UDC has different transferable size at once
+ */
+ /* S.LSI udc's max transferable size is 512K-1 */
+ mtpg->udc_max.txPktSize = mtpg->udc_max.rxPktSize =
+ round_down(0x7FFFF, 512);
+
+ /* bulkBufSize & intrBufSize have to smaller
+ * than udc's max transferable size or same
+ * and will be considering memory usage
+ */
+ mtpg->bulkBufSize = round_down(0x8000, 512);
+ mtpg->intrBufSize = 22;
+
+ pr_info("[MTP SizeInfo] %s(%d), %s(%d), %s(%d), %s(%d)\n",
+ "udc_txPktMaxSize", mtpg->udc_max.txPktSize,
+ "udc_rxPktMaxSize", mtpg->udc_max.rxPktSize,
+ "BulkBufSize", mtpg->bulkBufSize,
+ "IntrBufSize", mtpg->intrBufSize);
+
+
+ spin_lock_init(&mtpg->lock);
+ init_waitqueue_head(&mtpg->intr_wq);
+ init_waitqueue_head(&mtpg->read_wq);
+ init_waitqueue_head(&mtpg->write_wq);
+
+ atomic_set(&mtpg->open_excl, 0);
+ atomic_set(&mtpg->read_excl, 0);
+ atomic_set(&mtpg->write_excl, 0);
+ atomic_set(&mtpg->wintfd_excl, 0);
+
+ INIT_LIST_HEAD(&mtpg->rx_idle);
+ INIT_LIST_HEAD(&mtpg->rx_done);
+ INIT_LIST_HEAD(&mtpg->tx_idle);
+ INIT_LIST_HEAD(&mtpg->intr_idle);
+ mtpg->wq = create_singlethread_workqueue("mtp_read_send");
+ if (!mtpg->wq) {
+ DEBUG_MTPB("mtpg_dev_alloc work queue creation failed\n");
+ rc = -ENOMEM;
+ goto err_out;
+ }
+
+ INIT_WORK(&mtpg->read_send_work, read_send_work);
+
+ /* the_mtpg must be set before calling usb_gadget_register_driver */
+ the_mtpg = mtpg;
+
+ rc = misc_register(&mtpg_device);
+ if (rc != 0) {
+ DEBUG_MTPB(" misc_register of mtpg Failed\n");
+ goto err_out;
+ }
+ err = device_create_file(mtpg_device.this_device, &dev_attr_guid);
+ DEBUG_MTPB("mtp: %s %s to create guid attr\n",
+ __func__, (ret?"failed":"success"));
+ return err;
+
+err_out:
+ the_mtpg = NULL;
+ kfree(mtpg);
+ DEBUG_MTPB("mtp gadget driver failed to initialize\n");
+ return rc;
+}
+
+static void mtp_cleanup(void)
+{
+ struct mtpg_dev *mtpg = the_mtpg;
+
+ if (!mtpg)
+ return;
+
+ misc_deregister(&mtpg_device);
+ the_mtpg = NULL;
+ kfree(mtpg);
+}
+
+MODULE_AUTHOR("Deepak And Madhukar");
+MODULE_LICENSE("GPL");
diff --git a/drivers/usb/gadget/function/f_mtp.h b/drivers/usb/gadget/function/f_mtp.h
new file mode 100644
index 000000000000..b68d5168252c
--- /dev/null
+++ b/drivers/usb/gadget/function/f_mtp.h
@@ -0,0 +1,77 @@
+/*
+ * Gadget Driver for MTP
+ *
+ * Copyright (C) 2009 Samsung Electronics.
+ *
+ * This software is licensed under the terms of the GNU General Public
+ * License version 2, as published by the Free Software Foundation, and
+ * may be copied, distributed, and modified under those terms.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#ifndef __F_MTP_H
+#define __F_MTP_H
+
+#define MTP_MAX_PACKET_LEN_FROM_APP 16
+
+#define MTP_IOCTL_LETTER 'Z'
+#define GET_HIGH_FULL_SPEED _IOR(MTP_IOCTL_LETTER, 1, int)
+#define MTP_DISABLE _IO(MTP_IOCTL_LETTER, 2)
+#define MTP_CLEAR_HALT _IO(MTP_IOCTL_LETTER, 3)
+#define MTP_WRITE_INT_DATA _IOW(MTP_IOCTL_LETTER, 4, char *)
+#define SET_MTP_USER_PID _IOW(MTP_IOCTL_LETTER, 5, int)
+#define GET_SETUP_DATA _IOR(MTP_IOCTL_LETTER, 6, char *)
+#define SET_SETUP_DATA _IOW(MTP_IOCTL_LETTER, 7, char *)
+#define SEND_RESET_ACK _IO(MTP_IOCTL_LETTER, 8)
+#define SET_ZLP_DATA _IO(MTP_IOCTL_LETTER, 9)
+#define GET_MAX_PKT_SIZE _IOR(MTP_IOCTL_LETTER, 10, void *)
+#define SIG_SETUP 44
+
+/*PIMA15740-2000 spec*/
+#define USB_PTPREQUEST_CANCELIO 0x64 /* Cancel request */
+#define USB_PTPREQUEST_GETEVENT 0x65 /* Get extended event data */
+#define USB_PTPREQUEST_RESET 0x66 /* Reset Device */
+#define USB_PTPREQUEST_GETSTATUS 0x67 /* Get Device Status */
+#define USB_PTPREQUEST_CANCELIO_SIZE 6
+#define USB_PTPREQUEST_GETSTATUS_SIZE 12
+
+struct mtp_event {
+ size_t length;
+ void *data;
+};
+
+int mtp_function_add(struct usb_configuration *c);
+int mtp_function_config_changed(struct usb_composite_dev *cdev,
+ struct usb_configuration *c);
+int mtp_enable(void);
+void mtp_function_enable(int enable);
+
+struct max_pkt_size {
+ unsigned int txPktSize;
+ unsigned int rxPktSize;
+};
+
+struct usb_mtp_ctrlrequest {
+ struct usb_ctrlrequest setup;
+};
+
+struct usb_container_header {
+ uint32_t Length;/* the valid size, in BYTES, of the container */
+ uint16_t Type;/* Container type */
+ uint16_t Code;/* Operation code, response code, or Event code */
+ uint32_t TransactionID;/* host generated number */
+};
+
+struct read_send_info {
+ int Fd;/* Media File fd */
+ uint64_t Length;/* the valid size, in BYTES, of the container */
+ uint16_t Code;/* Operation code, response code, or Event code */
+ uint32_t TransactionID;/* host generated number */
+};
+
+#endif /* __F_MTP_H */
diff --git a/drivers/usb/gadget/legacy/slp.c b/drivers/usb/gadget/legacy/slp.c
index 9d6b5dea4ce7..71246ef48fe8 100644
--- a/drivers/usb/gadget/legacy/slp.c
+++ b/drivers/usb/gadget/legacy/slp.c
@@ -34,6 +34,7 @@
#include "gadget_chips.h"
#include "../function/f_sdb.c"
+#include "../function/f_mtp.c"
#include "../function/f_acm.c"
#define USB_ETH_RNDIS y
#define USB_FRNDIS_INCLUDED y
@@ -425,6 +426,41 @@ static struct slp_multi_usb_function acm_function = {
.attributes = acm_function_attributes,
};
+static int
+mtp_function_init(struct slp_multi_usb_function *f,
+ struct usb_composite_dev *cdev)
+{
+ return mtp_setup();
+}
+
+static void mtp_function_cleanup(struct slp_multi_usb_function *f)
+{
+ mtp_cleanup();
+}
+
+static int
+mtp_function_bind_config(struct slp_multi_usb_function *f,
+ struct usb_configuration *c)
+{
+ return mtp_bind_config(c, false);
+}
+
+static int
+mtp_function_ctrlrequest(struct slp_multi_usb_function *f,
+ struct usb_composite_dev *cdev,
+ const struct usb_ctrlrequest *c)
+{
+ return mtp_ctrlrequest(cdev, c);
+}
+
+static struct slp_multi_usb_function mtp_function = {
+ .name = "mtp",
+ .init = mtp_function_init,
+ .cleanup = mtp_function_cleanup,
+ .bind_config = mtp_function_bind_config,
+ .ctrlrequest = mtp_function_ctrlrequest,
+};
+
struct rndis_function_config {
u8 ethaddr[ETH_ALEN];
u32 vendorID;
@@ -434,6 +470,7 @@ struct rndis_function_config {
struct usb_function *f_rndis;
struct usb_function_instance *fi_rndis;
};
+
static char host_addr_string[18];
static int
@@ -691,6 +728,7 @@ static struct slp_multi_usb_function rndis_function = {
static struct slp_multi_usb_function *supported_functions[] = {
&sdb_function,
+ &mtp_function,
&acm_function,
&rndis_function,
NULL