| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220 |
- /*
- * Gadget Function Driver for Android USB accessories
- *
- * Copyright (C) 2011 Google, Inc.
- * Author: Mike Lockwood <lockwood@android.com>
- *
- * 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.
- *
- */
- /* #define DEBUG */
- /* #define VERBOSE_DEBUG */
- #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/kthread.h>
- #include <linux/freezer.h>
- #include <linux/types.h>
- #include <linux/file.h>
- #include <linux/device.h>
- #include <linux/miscdevice.h>
- #include <linux/hid.h>
- #include <linux/hiddev.h>
- #include <linux/usb.h>
- #include <linux/usb/ch9.h>
- #include <linux/usb/f_accessory.h>
- #define BULK_BUFFER_SIZE 16384
- #define ACC_STRING_SIZE 256
- #define PROTOCOL_VERSION 2
- /* String IDs */
- #define INTERFACE_STRING_INDEX 0
- /* number of tx and rx requests to allocate */
- #define TX_REQ_MAX 4
- #define RX_REQ_MAX 2
- struct acc_hid_dev {
- struct list_head list;
- struct hid_device *hid;
- struct acc_dev *dev;
- /* accessory defined ID */
- int id;
- /* HID report descriptor */
- u8 *report_desc;
- /* length of HID report descriptor */
- int report_desc_len;
- /* number of bytes of report_desc we have received so far */
- int report_desc_offset;
- };
- struct acc_dev {
- struct usb_function function;
- struct usb_composite_dev *cdev;
- spinlock_t lock;
- struct usb_ep *ep_in;
- struct usb_ep *ep_out;
- /* set to 1 when we connect */
- int online:1;
- /* Set to 1 when we disconnect.
- * Not cleared until our file is closed.
- */
- int disconnected:1;
- /* strings sent by the host */
- char manufacturer[ACC_STRING_SIZE];
- char model[ACC_STRING_SIZE];
- char description[ACC_STRING_SIZE];
- char version[ACC_STRING_SIZE];
- char uri[ACC_STRING_SIZE];
- char serial[ACC_STRING_SIZE];
- /* for acc_complete_set_string */
- int string_index;
- /* set to 1 if we have a pending start request */
- int start_requested;
- int audio_mode;
- /* synchronize access to our device file */
- atomic_t open_excl;
- struct list_head tx_idle;
- wait_queue_head_t read_wq;
- wait_queue_head_t write_wq;
- struct usb_request *rx_req[RX_REQ_MAX];
- int rx_done;
- /* delayed work for handling ACCESSORY_START */
- struct delayed_work start_work;
- /* worker for registering and unregistering hid devices */
- struct work_struct hid_work;
- /* list of active HID devices */
- struct list_head hid_list;
- /* list of new HID devices to register */
- struct list_head new_hid_list;
- /* list of dead HID devices to unregister */
- struct list_head dead_hid_list;
- };
- static struct usb_interface_descriptor acc_interface_desc = {
- .bLength = USB_DT_INTERFACE_SIZE,
- .bDescriptorType = USB_DT_INTERFACE,
- .bInterfaceNumber = 0,
- .bNumEndpoints = 2,
- .bInterfaceClass = USB_CLASS_VENDOR_SPEC,
- .bInterfaceSubClass = USB_SUBCLASS_VENDOR_SPEC,
- .bInterfaceProtocol = 0,
- };
- static struct usb_endpoint_descriptor acc_highspeed_in_desc = {
- .bLength = USB_DT_ENDPOINT_SIZE,
- .bDescriptorType = USB_DT_ENDPOINT,
- .bEndpointAddress = USB_DIR_IN,
- .bmAttributes = USB_ENDPOINT_XFER_BULK,
- .wMaxPacketSize = __constant_cpu_to_le16(512),
- };
- static struct usb_endpoint_descriptor acc_highspeed_out_desc = {
- .bLength = USB_DT_ENDPOINT_SIZE,
- .bDescriptorType = USB_DT_ENDPOINT,
- .bEndpointAddress = USB_DIR_OUT,
- .bmAttributes = USB_ENDPOINT_XFER_BULK,
- .wMaxPacketSize = __constant_cpu_to_le16(512),
- };
- static struct usb_endpoint_descriptor acc_fullspeed_in_desc = {
- .bLength = USB_DT_ENDPOINT_SIZE,
- .bDescriptorType = USB_DT_ENDPOINT,
- .bEndpointAddress = USB_DIR_IN,
- .bmAttributes = USB_ENDPOINT_XFER_BULK,
- };
- static struct usb_endpoint_descriptor acc_fullspeed_out_desc = {
- .bLength = USB_DT_ENDPOINT_SIZE,
- .bDescriptorType = USB_DT_ENDPOINT,
- .bEndpointAddress = USB_DIR_OUT,
- .bmAttributes = USB_ENDPOINT_XFER_BULK,
- };
- static struct usb_descriptor_header *fs_acc_descs[] = {
- (struct usb_descriptor_header *) &acc_interface_desc,
- (struct usb_descriptor_header *) &acc_fullspeed_in_desc,
- (struct usb_descriptor_header *) &acc_fullspeed_out_desc,
- NULL,
- };
- static struct usb_descriptor_header *hs_acc_descs[] = {
- (struct usb_descriptor_header *) &acc_interface_desc,
- (struct usb_descriptor_header *) &acc_highspeed_in_desc,
- (struct usb_descriptor_header *) &acc_highspeed_out_desc,
- NULL,
- };
- static struct usb_string acc_string_defs[] = {
- [INTERFACE_STRING_INDEX].s = "Android Accessory Interface",
- { }, /* end of list */
- };
- static struct usb_gadget_strings acc_string_table = {
- .language = 0x0409, /* en-US */
- .strings = acc_string_defs,
- };
- static struct usb_gadget_strings *acc_strings[] = {
- &acc_string_table,
- NULL,
- };
- /* temporary variable used between acc_open() and acc_gadget_bind() */
- static struct acc_dev *_acc_dev;
- static inline struct acc_dev *func_to_dev(struct usb_function *f)
- {
- return container_of(f, struct acc_dev, function);
- }
- static struct usb_request *acc_request_new(struct usb_ep *ep, int buffer_size)
- {
- struct usb_request *req = usb_ep_alloc_request(ep, GFP_KERNEL);
- if (!req)
- return NULL;
- /* now allocate buffers for the requests */
- #if defined(CONFIG_64BIT) && defined(CONFIG_MTK_LM_MODE)
- req->buf = kmalloc(buffer_size, GFP_KERNEL | GFP_DMA);
- #else
- req->buf = kmalloc(buffer_size, GFP_KERNEL);
- #endif
- if (!req->buf) {
- usb_ep_free_request(ep, req);
- return NULL;
- }
- return req;
- }
- static void acc_request_free(struct usb_request *req, struct usb_ep *ep)
- {
- if (req) {
- kfree(req->buf);
- usb_ep_free_request(ep, req);
- }
- }
- /* add a request to the tail of a list */
- static void req_put(struct acc_dev *dev, struct list_head *head,
- struct usb_request *req)
- {
- unsigned long flags;
- spin_lock_irqsave(&dev->lock, flags);
- list_add_tail(&req->list, head);
- spin_unlock_irqrestore(&dev->lock, flags);
- }
- /* remove a request from the head of a list */
- static struct usb_request *req_get(struct acc_dev *dev, struct list_head *head)
- {
- unsigned long flags;
- struct usb_request *req;
- 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 void acc_set_disconnected(struct acc_dev *dev)
- {
- dev->online = 0;
- dev->disconnected = 1;
- }
- static void acc_complete_in(struct usb_ep *ep, struct usb_request *req)
- {
- struct acc_dev *dev = _acc_dev;
- if (req->status == -ESHUTDOWN) {
- pr_debug("acc_complete_in set disconnected");
- acc_set_disconnected(dev);
- }
- req_put(dev, &dev->tx_idle, req);
- wake_up(&dev->write_wq);
- }
- static void acc_complete_out(struct usb_ep *ep, struct usb_request *req)
- {
- struct acc_dev *dev = _acc_dev;
- dev->rx_done = 1;
- if (req->status == -ESHUTDOWN) {
- pr_debug("acc_complete_out set disconnected");
- acc_set_disconnected(dev);
- }
- wake_up(&dev->read_wq);
- }
- static void acc_complete_set_string(struct usb_ep *ep, struct usb_request *req)
- {
- struct acc_dev *dev = ep->driver_data;
- char *string_dest = NULL;
- int length = req->actual;
- if (req->status != 0) {
- pr_err("acc_complete_set_string, err %d\n", req->status);
- return;
- }
- switch (dev->string_index) {
- case ACCESSORY_STRING_MANUFACTURER:
- string_dest = dev->manufacturer;
- break;
- case ACCESSORY_STRING_MODEL:
- string_dest = dev->model;
- break;
- case ACCESSORY_STRING_DESCRIPTION:
- string_dest = dev->description;
- break;
- case ACCESSORY_STRING_VERSION:
- string_dest = dev->version;
- break;
- case ACCESSORY_STRING_URI:
- string_dest = dev->uri;
- break;
- case ACCESSORY_STRING_SERIAL:
- string_dest = dev->serial;
- break;
- }
- if (string_dest) {
- unsigned long flags;
- if (length >= ACC_STRING_SIZE)
- length = ACC_STRING_SIZE - 1;
- spin_lock_irqsave(&dev->lock, flags);
- memcpy(string_dest, req->buf, length);
- /* ensure zero termination */
- string_dest[length] = 0;
- spin_unlock_irqrestore(&dev->lock, flags);
- } else {
- pr_err("unknown accessory string index %d\n",
- dev->string_index);
- }
- }
- static void acc_complete_set_hid_report_desc(struct usb_ep *ep,
- struct usb_request *req)
- {
- struct acc_hid_dev *hid = req->context;
- struct acc_dev *dev = hid->dev;
- int length = req->actual;
- if (req->status != 0) {
- pr_err("acc_complete_set_hid_report_desc, err %d\n",
- req->status);
- return;
- }
- memcpy(hid->report_desc + hid->report_desc_offset, req->buf, length);
- hid->report_desc_offset += length;
- if (hid->report_desc_offset == hid->report_desc_len) {
- /* After we have received the entire report descriptor
- * we schedule work to initialize the HID device
- */
- schedule_work(&dev->hid_work);
- }
- }
- static void acc_complete_send_hid_event(struct usb_ep *ep,
- struct usb_request *req)
- {
- struct acc_hid_dev *hid = req->context;
- int length = req->actual;
- if (req->status != 0) {
- pr_err("acc_complete_send_hid_event, err %d\n", req->status);
- return;
- }
- hid_report_raw_event(hid->hid, HID_INPUT_REPORT, req->buf, length, 1);
- }
- static int acc_hid_parse(struct hid_device *hid)
- {
- struct acc_hid_dev *hdev = hid->driver_data;
- hid_parse_report(hid, hdev->report_desc, hdev->report_desc_len);
- return 0;
- }
- static int acc_hid_start(struct hid_device *hid)
- {
- return 0;
- }
- static void acc_hid_stop(struct hid_device *hid)
- {
- }
- static int acc_hid_open(struct hid_device *hid)
- {
- return 0;
- }
- static void acc_hid_close(struct hid_device *hid)
- {
- }
- static struct hid_ll_driver acc_hid_ll_driver = {
- .parse = acc_hid_parse,
- .start = acc_hid_start,
- .stop = acc_hid_stop,
- .open = acc_hid_open,
- .close = acc_hid_close,
- };
- static struct acc_hid_dev *acc_hid_new(struct acc_dev *dev,
- int id, int desc_len)
- {
- struct acc_hid_dev *hdev;
- hdev = kzalloc(sizeof(*hdev), GFP_ATOMIC);
- if (!hdev)
- return NULL;
- hdev->report_desc = kzalloc(desc_len, GFP_ATOMIC);
- if (!hdev->report_desc) {
- kfree(hdev);
- return NULL;
- }
- hdev->dev = dev;
- hdev->id = id;
- hdev->report_desc_len = desc_len;
- return hdev;
- }
- static struct acc_hid_dev *acc_hid_get(struct list_head *list, int id)
- {
- struct acc_hid_dev *hid;
- list_for_each_entry(hid, list, list) {
- if (hid->id == id)
- return hid;
- }
- return NULL;
- }
- static int acc_register_hid(struct acc_dev *dev, int id, int desc_length)
- {
- struct acc_hid_dev *hid;
- unsigned long flags;
- /* report descriptor length must be > 0 */
- if (desc_length <= 0)
- return -EINVAL;
- spin_lock_irqsave(&dev->lock, flags);
- /* replace HID if one already exists with this ID */
- hid = acc_hid_get(&dev->hid_list, id);
- if (!hid)
- hid = acc_hid_get(&dev->new_hid_list, id);
- if (hid)
- list_move(&hid->list, &dev->dead_hid_list);
- hid = acc_hid_new(dev, id, desc_length);
- if (!hid) {
- spin_unlock_irqrestore(&dev->lock, flags);
- return -ENOMEM;
- }
- list_add(&hid->list, &dev->new_hid_list);
- spin_unlock_irqrestore(&dev->lock, flags);
- /* schedule work to register the HID device */
- schedule_work(&dev->hid_work);
- return 0;
- }
- static int acc_unregister_hid(struct acc_dev *dev, int id)
- {
- struct acc_hid_dev *hid;
- unsigned long flags;
- spin_lock_irqsave(&dev->lock, flags);
- hid = acc_hid_get(&dev->hid_list, id);
- if (!hid)
- hid = acc_hid_get(&dev->new_hid_list, id);
- if (!hid) {
- spin_unlock_irqrestore(&dev->lock, flags);
- return -EINVAL;
- }
- list_move(&hid->list, &dev->dead_hid_list);
- spin_unlock_irqrestore(&dev->lock, flags);
- schedule_work(&dev->hid_work);
- return 0;
- }
- static int create_bulk_endpoints(struct acc_dev *dev,
- struct usb_endpoint_descriptor *in_desc,
- struct usb_endpoint_descriptor *out_desc)
- {
- struct usb_composite_dev *cdev = dev->cdev;
- struct usb_request *req;
- struct usb_ep *ep;
- int i;
- DBG(cdev, "create_bulk_endpoints dev: %p\n", dev);
- ep = usb_ep_autoconfig(cdev->gadget, in_desc);
- if (!ep) {
- DBG(cdev, "usb_ep_autoconfig for ep_in failed\n");
- return -ENODEV;
- }
- DBG(cdev, "usb_ep_autoconfig for ep_in got %s\n", ep->name);
- ep->driver_data = dev; /* claim the endpoint */
- dev->ep_in = ep;
- ep = usb_ep_autoconfig(cdev->gadget, out_desc);
- if (!ep) {
- DBG(cdev, "usb_ep_autoconfig for ep_out failed\n");
- return -ENODEV;
- }
- DBG(cdev, "usb_ep_autoconfig for ep_out got %s\n", ep->name);
- ep->driver_data = dev; /* claim the endpoint */
- dev->ep_out = ep;
- ep = usb_ep_autoconfig(cdev->gadget, out_desc);
- if (!ep) {
- DBG(cdev, "usb_ep_autoconfig for ep_out failed\n");
- return -ENODEV;
- }
- DBG(cdev, "usb_ep_autoconfig for ep_out got %s\n", ep->name);
- ep->driver_data = dev; /* claim the endpoint */
- dev->ep_out = ep;
- /* now allocate requests for our endpoints */
- for (i = 0; i < TX_REQ_MAX; i++) {
- req = acc_request_new(dev->ep_in, BULK_BUFFER_SIZE);
- if (!req)
- goto fail;
- req->complete = acc_complete_in;
- req_put(dev, &dev->tx_idle, req);
- }
- for (i = 0; i < RX_REQ_MAX; i++) {
- req = acc_request_new(dev->ep_out, BULK_BUFFER_SIZE);
- if (!req)
- goto fail;
- req->complete = acc_complete_out;
- dev->rx_req[i] = req;
- }
- return 0;
- fail:
- pr_err("acc_bind() could not allocate requests\n");
- while ((req = req_get(dev, &dev->tx_idle)))
- acc_request_free(req, dev->ep_in);
- for (i = 0; i < RX_REQ_MAX; i++)
- acc_request_free(dev->rx_req[i], dev->ep_out);
- return -1;
- }
- static ssize_t acc_read(struct file *fp, char __user *buf,
- size_t count, loff_t *pos)
- {
- struct acc_dev *dev = fp->private_data;
- struct usb_request *req;
- ssize_t r = count;
- unsigned xfer;
- int ret = 0;
- pr_debug("acc_read(%zu)\n", count);
- if (dev->disconnected) {
- pr_debug("acc_read disconnected");
- return -ENODEV;
- }
- if (count > BULK_BUFFER_SIZE)
- count = BULK_BUFFER_SIZE;
- /* we will block until we're online */
- pr_debug("acc_read: waiting for online\n");
- ret = wait_event_interruptible(dev->read_wq, dev->online);
- if (ret < 0) {
- r = ret;
- goto done;
- }
- if (dev->rx_done) {
- // last req cancelled. try to get it.
- req = dev->rx_req[0];
- goto copy_data;
- }
- requeue_req:
- /* queue a request */
- req = dev->rx_req[0];
- req->length = count;
- dev->rx_done = 0;
- ret = usb_ep_queue(dev->ep_out, req, GFP_KERNEL);
- if (ret < 0) {
- r = -EIO;
- goto done;
- } else {
- pr_debug("rx %p queue\n", req);
- }
- /* wait for a request to complete */
- ret = wait_event_interruptible(dev->read_wq, dev->rx_done);
- if (ret < 0) {
- r = ret;
- ret = usb_ep_dequeue(dev->ep_out, req);
- if (ret != 0) {
- // cancel failed. There can be a data already received.
- // it will be retrieved in the next read.
- pr_debug("acc_read: cancelling failed %d", ret);
- }
- goto done;
- }
- copy_data:
- dev->rx_done = 0;
- if (dev->online) {
- /* If we got a 0-len packet, throw it back and try again. */
- if (req->actual == 0)
- goto requeue_req;
- pr_debug("rx %p %u\n", req, req->actual);
- xfer = (req->actual < count) ? req->actual : count;
- r = xfer;
- if (copy_to_user(buf, req->buf, xfer))
- r = -EFAULT;
- } else
- r = -EIO;
- done:
- pr_debug("acc_read returning %zd\n", r);
- return r;
- }
- static ssize_t acc_write(struct file *fp, const char __user *buf,
- size_t count, loff_t *pos)
- {
- struct acc_dev *dev = fp->private_data;
- struct usb_request *req = 0;
- ssize_t r = count;
- unsigned xfer;
- int ret;
- pr_debug("acc_write(%zu)\n", count);
- if (!dev->online || dev->disconnected) {
- pr_debug("acc_write disconnected or not online");
- return -ENODEV;
- }
- while (count > 0) {
- if (!dev->online) {
- pr_debug("acc_write dev->error\n");
- r = -EIO;
- break;
- }
- /* get an idle tx request to use */
- req = 0;
- ret = wait_event_interruptible(dev->write_wq,
- ((req = req_get(dev, &dev->tx_idle)) || !dev->online));
- if (!req) {
- r = ret;
- break;
- }
- if (count > BULK_BUFFER_SIZE) {
- xfer = BULK_BUFFER_SIZE;
- /* ZLP, They will be more TX requests so not yet. */
- req->zero = 0;
- } else {
- xfer = count;
- /* If the data length is a multple of the
- * maxpacket size then send a zero length packet(ZLP).
- */
- req->zero = ((xfer % dev->ep_in->maxpacket) == 0);
- }
- if (copy_from_user(req->buf, buf, xfer)) {
- r = -EFAULT;
- break;
- }
- req->length = xfer;
- ret = usb_ep_queue(dev->ep_in, req, GFP_KERNEL);
- if (ret < 0) {
- pr_debug("acc_write: xfer error %d\n", ret);
- r = -EIO;
- break;
- }
- buf += xfer;
- count -= xfer;
- /* zero this so we don't try to free it on error exit */
- req = 0;
- }
- if (req)
- req_put(dev, &dev->tx_idle, req);
- pr_debug("acc_write returning %zd\n", r);
- return r;
- }
- static long acc_ioctl(struct file *fp, unsigned code, unsigned long value)
- {
- struct acc_dev *dev = fp->private_data;
- char *src = NULL;
- int ret;
- switch (code) {
- case ACCESSORY_GET_STRING_MANUFACTURER:
- src = dev->manufacturer;
- break;
- case ACCESSORY_GET_STRING_MODEL:
- src = dev->model;
- break;
- case ACCESSORY_GET_STRING_DESCRIPTION:
- src = dev->description;
- break;
- case ACCESSORY_GET_STRING_VERSION:
- src = dev->version;
- break;
- case ACCESSORY_GET_STRING_URI:
- src = dev->uri;
- break;
- case ACCESSORY_GET_STRING_SERIAL:
- src = dev->serial;
- break;
- case ACCESSORY_IS_START_REQUESTED:
- return dev->start_requested;
- case ACCESSORY_GET_AUDIO_MODE:
- return dev->audio_mode;
- }
- if (!src)
- return -EINVAL;
- ret = strlen(src) + 1;
- if (copy_to_user((void __user *)value, src, ret))
- ret = -EFAULT;
- return ret;
- }
- static int acc_open(struct inode *ip, struct file *fp)
- {
- printk(KERN_INFO "acc_open\n");
- if (atomic_xchg(&_acc_dev->open_excl, 1))
- return -EBUSY;
- _acc_dev->disconnected = 0;
- fp->private_data = _acc_dev;
- return 0;
- }
- static int acc_release(struct inode *ip, struct file *fp)
- {
- printk(KERN_INFO "acc_release\n");
- WARN_ON(!atomic_xchg(&_acc_dev->open_excl, 0));
- _acc_dev->disconnected = 0;
- return 0;
- }
- /* file operations for /dev/usb_accessory */
- static const struct file_operations acc_fops = {
- .owner = THIS_MODULE,
- .read = acc_read,
- .write = acc_write,
- .unlocked_ioctl = acc_ioctl,
- .compat_ioctl = acc_ioctl,
- .open = acc_open,
- .release = acc_release,
- };
- static int acc_hid_probe(struct hid_device *hdev,
- const struct hid_device_id *id)
- {
- int ret;
- ret = hid_parse(hdev);
- if (ret)
- return ret;
- return hid_hw_start(hdev, HID_CONNECT_DEFAULT);
- }
- static struct miscdevice acc_device = {
- .minor = MISC_DYNAMIC_MINOR,
- .name = "usb_accessory",
- .fops = &acc_fops,
- };
- static const struct hid_device_id acc_hid_table[] = {
- { HID_USB_DEVICE(HID_ANY_ID, HID_ANY_ID) },
- { }
- };
- static struct hid_driver acc_hid_driver = {
- .name = "USB accessory",
- .id_table = acc_hid_table,
- .probe = acc_hid_probe,
- };
- static int acc_ctrlrequest(struct usb_composite_dev *cdev,
- const struct usb_ctrlrequest *ctrl)
- {
- struct acc_dev *dev = _acc_dev;
- int value = -EOPNOTSUPP;
- struct acc_hid_dev *hid;
- int offset;
- u8 b_requestType = ctrl->bRequestType;
- u8 b_request = ctrl->bRequest;
- u16 w_index = le16_to_cpu(ctrl->wIndex);
- u16 w_value = le16_to_cpu(ctrl->wValue);
- u16 w_length = le16_to_cpu(ctrl->wLength);
- unsigned long flags;
- /*
- printk(KERN_INFO "acc_ctrlrequest "
- "%02x.%02x v%04x i%04x l%u\n",
- b_requestType, b_request,
- w_value, w_index, w_length);
- */
- if (b_requestType == (USB_DIR_OUT | USB_TYPE_VENDOR)) {
- if (b_request == ACCESSORY_START) {
- dev->start_requested = 1;
- schedule_delayed_work(
- &dev->start_work, msecs_to_jiffies(10));
- value = 0;
- } else if (b_request == ACCESSORY_SEND_STRING) {
- dev->string_index = w_index;
- cdev->gadget->ep0->driver_data = dev;
- cdev->req->complete = acc_complete_set_string;
- value = w_length;
- } else if (b_request == ACCESSORY_SET_AUDIO_MODE &&
- w_index == 0 && w_length == 0) {
- dev->audio_mode = w_value;
- value = 0;
- } else if (b_request == ACCESSORY_REGISTER_HID) {
- value = acc_register_hid(dev, w_value, w_index);
- } else if (b_request == ACCESSORY_UNREGISTER_HID) {
- value = acc_unregister_hid(dev, w_value);
- } else if (b_request == ACCESSORY_SET_HID_REPORT_DESC) {
- spin_lock_irqsave(&dev->lock, flags);
- hid = acc_hid_get(&dev->new_hid_list, w_value);
- spin_unlock_irqrestore(&dev->lock, flags);
- if (!hid) {
- value = -EINVAL;
- goto err;
- }
- offset = w_index;
- if (offset != hid->report_desc_offset
- || offset + w_length > hid->report_desc_len) {
- value = -EINVAL;
- goto err;
- }
- cdev->req->context = hid;
- cdev->req->complete = acc_complete_set_hid_report_desc;
- value = w_length;
- } else if (b_request == ACCESSORY_SEND_HID_EVENT) {
- spin_lock_irqsave(&dev->lock, flags);
- hid = acc_hid_get(&dev->hid_list, w_value);
- spin_unlock_irqrestore(&dev->lock, flags);
- if (!hid) {
- value = -EINVAL;
- goto err;
- }
- cdev->req->context = hid;
- cdev->req->complete = acc_complete_send_hid_event;
- value = w_length;
- }
- } else if (b_requestType == (USB_DIR_IN | USB_TYPE_VENDOR)) {
- if (b_request == ACCESSORY_GET_PROTOCOL) {
- *((u16 *)cdev->req->buf) = PROTOCOL_VERSION;
- value = sizeof(u16);
- /* clear any string left over from a previous session */
- memset(dev->manufacturer, 0, sizeof(dev->manufacturer));
- memset(dev->model, 0, sizeof(dev->model));
- memset(dev->description, 0, sizeof(dev->description));
- memset(dev->version, 0, sizeof(dev->version));
- memset(dev->uri, 0, sizeof(dev->uri));
- memset(dev->serial, 0, sizeof(dev->serial));
- dev->start_requested = 0;
- dev->audio_mode = 0;
- }
- }
- if (value >= 0) {
- cdev->req->zero = 0;
- cdev->req->length = value;
- value = usb_ep_queue(cdev->gadget->ep0, cdev->req, GFP_ATOMIC);
- if (value < 0)
- ERROR(cdev, "%s setup response queue error\n",
- __func__);
- }
- err:
- if (value == -EOPNOTSUPP)
- VDBG(cdev,
- "unknown class-specific control req "
- "%02x.%02x v%04x i%04x l%u\n",
- ctrl->bRequestType, ctrl->bRequest,
- w_value, w_index, w_length);
- return value;
- }
- static int
- acc_function_bind(struct usb_configuration *c, struct usb_function *f)
- {
- struct usb_composite_dev *cdev = c->cdev;
- struct acc_dev *dev = func_to_dev(f);
- int id;
- int ret;
- DBG(cdev, "acc_function_bind dev: %p\n", dev);
- ret = hid_register_driver(&acc_hid_driver);
- if (ret)
- return ret;
- dev->start_requested = 0;
- /* allocate interface ID(s) */
- id = usb_interface_id(c, f);
- if (id < 0)
- return id;
- acc_interface_desc.bInterfaceNumber = id;
- /* allocate endpoints */
- ret = create_bulk_endpoints(dev, &acc_fullspeed_in_desc,
- &acc_fullspeed_out_desc);
- if (ret)
- return ret;
- /* support high speed hardware */
- if (gadget_is_dualspeed(c->cdev->gadget)) {
- acc_highspeed_in_desc.bEndpointAddress =
- acc_fullspeed_in_desc.bEndpointAddress;
- acc_highspeed_out_desc.bEndpointAddress =
- acc_fullspeed_out_desc.bEndpointAddress;
- }
- DBG(cdev, "%s speed %s: IN/%s, OUT/%s\n",
- gadget_is_dualspeed(c->cdev->gadget) ? "dual" : "full",
- f->name, dev->ep_in->name, dev->ep_out->name);
- return 0;
- }
- static void
- kill_all_hid_devices(struct acc_dev *dev)
- {
- struct acc_hid_dev *hid;
- struct list_head *entry, *temp;
- unsigned long flags;
- /* do nothing if usb accessory device doesn't exist */
- if (!dev)
- return;
- spin_lock_irqsave(&dev->lock, flags);
- list_for_each_safe(entry, temp, &dev->hid_list) {
- hid = list_entry(entry, struct acc_hid_dev, list);
- list_del(&hid->list);
- list_add(&hid->list, &dev->dead_hid_list);
- }
- list_for_each_safe(entry, temp, &dev->new_hid_list) {
- hid = list_entry(entry, struct acc_hid_dev, list);
- list_del(&hid->list);
- list_add(&hid->list, &dev->dead_hid_list);
- }
- spin_unlock_irqrestore(&dev->lock, flags);
- schedule_work(&dev->hid_work);
- }
- static void
- acc_hid_unbind(struct acc_dev *dev)
- {
- hid_unregister_driver(&acc_hid_driver);
- kill_all_hid_devices(dev);
- }
- static void
- acc_function_unbind(struct usb_configuration *c, struct usb_function *f)
- {
- struct acc_dev *dev = func_to_dev(f);
- struct usb_request *req;
- int i;
- while ((req = req_get(dev, &dev->tx_idle)))
- acc_request_free(req, dev->ep_in);
- for (i = 0; i < RX_REQ_MAX; i++)
- acc_request_free(dev->rx_req[i], dev->ep_out);
- acc_hid_unbind(dev);
- }
- static void acc_start_work(struct work_struct *data)
- {
- char *envp[2] = { "ACCESSORY=START", NULL };
- kobject_uevent_env(&acc_device.this_device->kobj, KOBJ_CHANGE, envp);
- }
- static int acc_hid_init(struct acc_hid_dev *hdev)
- {
- struct hid_device *hid;
- int ret;
- hid = hid_allocate_device();
- if (IS_ERR(hid))
- return PTR_ERR(hid);
- hid->ll_driver = &acc_hid_ll_driver;
- hid->dev.parent = acc_device.this_device;
- hid->bus = BUS_USB;
- hid->vendor = HID_ANY_ID;
- hid->product = HID_ANY_ID;
- hid->driver_data = hdev;
- ret = hid_add_device(hid);
- if (ret) {
- pr_err("can't add hid device: %d\n", ret);
- hid_destroy_device(hid);
- return ret;
- }
- hdev->hid = hid;
- return 0;
- }
- static void acc_hid_delete(struct acc_hid_dev *hid)
- {
- kfree(hid->report_desc);
- kfree(hid);
- }
- static void acc_hid_work(struct work_struct *data)
- {
- struct acc_dev *dev = _acc_dev;
- struct list_head *entry, *temp;
- struct acc_hid_dev *hid;
- struct list_head new_list, dead_list;
- unsigned long flags;
- INIT_LIST_HEAD(&new_list);
- spin_lock_irqsave(&dev->lock, flags);
- /* copy hids that are ready for initialization to new_list */
- list_for_each_safe(entry, temp, &dev->new_hid_list) {
- hid = list_entry(entry, struct acc_hid_dev, list);
- if (hid->report_desc_offset == hid->report_desc_len)
- list_move(&hid->list, &new_list);
- }
- if (list_empty(&dev->dead_hid_list)) {
- INIT_LIST_HEAD(&dead_list);
- } else {
- /* move all of dev->dead_hid_list to dead_list */
- dead_list.prev = dev->dead_hid_list.prev;
- dead_list.next = dev->dead_hid_list.next;
- dead_list.next->prev = &dead_list;
- dead_list.prev->next = &dead_list;
- INIT_LIST_HEAD(&dev->dead_hid_list);
- }
- spin_unlock_irqrestore(&dev->lock, flags);
- /* register new HID devices */
- list_for_each_safe(entry, temp, &new_list) {
- hid = list_entry(entry, struct acc_hid_dev, list);
- if (acc_hid_init(hid)) {
- pr_err("can't add HID device %p\n", hid);
- acc_hid_delete(hid);
- } else {
- spin_lock_irqsave(&dev->lock, flags);
- list_move(&hid->list, &dev->hid_list);
- spin_unlock_irqrestore(&dev->lock, flags);
- }
- }
- /* remove dead HID devices */
- list_for_each_safe(entry, temp, &dead_list) {
- hid = list_entry(entry, struct acc_hid_dev, list);
- list_del(&hid->list);
- if (hid->hid)
- hid_destroy_device(hid->hid);
- acc_hid_delete(hid);
- }
- }
- static int acc_function_set_alt(struct usb_function *f,
- unsigned intf, unsigned alt)
- {
- struct acc_dev *dev = func_to_dev(f);
- struct usb_composite_dev *cdev = f->config->cdev;
- int ret;
- DBG(cdev, "acc_function_set_alt intf: %d alt: %d\n", intf, alt);
- ret = config_ep_by_speed(cdev->gadget, f, dev->ep_in);
- if (ret)
- return ret;
- ret = usb_ep_enable(dev->ep_in);
- if (ret)
- return ret;
- ret = config_ep_by_speed(cdev->gadget, f, dev->ep_out);
- if (ret)
- return ret;
- ret = usb_ep_enable(dev->ep_out);
- if (ret) {
- usb_ep_disable(dev->ep_in);
- return ret;
- }
- dev->online = 1;
- /* readers may be blocked waiting for us to go online */
- wake_up(&dev->read_wq);
- return 0;
- }
- static void acc_function_disable(struct usb_function *f)
- {
- struct acc_dev *dev = func_to_dev(f);
- struct usb_composite_dev *cdev = dev->cdev;
- DBG(cdev, "acc_function_disable\n");
- acc_set_disconnected(dev);
- usb_ep_disable(dev->ep_in);
- usb_ep_disable(dev->ep_out);
- /* readers may be blocked waiting for us to go online */
- wake_up(&dev->read_wq);
- VDBG(cdev, "%s disabled\n", dev->function.name);
- }
- static int acc_bind_config(struct usb_configuration *c)
- {
- struct acc_dev *dev = _acc_dev;
- int ret;
- printk(KERN_INFO "acc_bind_config\n");
- /* allocate a string ID for our interface */
- if (acc_string_defs[INTERFACE_STRING_INDEX].id == 0) {
- ret = usb_string_id(c->cdev);
- if (ret < 0)
- return ret;
- acc_string_defs[INTERFACE_STRING_INDEX].id = ret;
- acc_interface_desc.iInterface = ret;
- }
- dev->cdev = c->cdev;
- dev->function.name = "accessory";
- dev->function.strings = acc_strings,
- dev->function.fs_descriptors = fs_acc_descs;
- dev->function.hs_descriptors = hs_acc_descs;
- dev->function.bind = acc_function_bind;
- dev->function.unbind = acc_function_unbind;
- dev->function.set_alt = acc_function_set_alt;
- dev->function.disable = acc_function_disable;
- return usb_add_function(c, &dev->function);
- }
- static int acc_setup(void)
- {
- struct acc_dev *dev;
- int ret;
- dev = kzalloc(sizeof(*dev), GFP_KERNEL);
- if (!dev)
- return -ENOMEM;
- spin_lock_init(&dev->lock);
- init_waitqueue_head(&dev->read_wq);
- init_waitqueue_head(&dev->write_wq);
- atomic_set(&dev->open_excl, 0);
- INIT_LIST_HEAD(&dev->tx_idle);
- INIT_LIST_HEAD(&dev->hid_list);
- INIT_LIST_HEAD(&dev->new_hid_list);
- INIT_LIST_HEAD(&dev->dead_hid_list);
- INIT_DELAYED_WORK(&dev->start_work, acc_start_work);
- INIT_WORK(&dev->hid_work, acc_hid_work);
- /* _acc_dev must be set before calling usb_gadget_register_driver */
- _acc_dev = dev;
- ret = misc_register(&acc_device);
- if (ret)
- goto err;
- return 0;
- err:
- kfree(dev);
- pr_err("USB accessory gadget driver failed to initialize\n");
- return ret;
- }
- static void acc_disconnect(void)
- {
- /* unregister all HID devices if USB is disconnected */
- kill_all_hid_devices(_acc_dev);
- }
- static void acc_cleanup(void)
- {
- misc_deregister(&acc_device);
- kfree(_acc_dev);
- _acc_dev = NULL;
- }
|