blob: 8e25780c349f51d3154865cf25054f51b2a42811 [file] [log] [blame]
Benoit Goby1e8ce152011-12-12 13:01:23 -08001/*
2 * Gadget Driver for Android
3 *
4 * Copyright (C) 2008 Google, Inc.
5 * Author: Mike Lockwood <lockwood@android.com>
6 * Benoit Goby <benoit@android.com>
7 *
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 */
18
19#include <linux/init.h>
20#include <linux/module.h>
21#include <linux/fs.h>
22#include <linux/delay.h>
23#include <linux/kernel.h>
24#include <linux/utsname.h>
25#include <linux/platform_device.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070026#include <linux/pm_qos.h>
Vijayavardhan Vennapusa8ceade82012-11-01 15:11:21 +053027#include <linux/of.h>
Benoit Goby1e8ce152011-12-12 13:01:23 -080028
29#include <linux/usb/ch9.h>
30#include <linux/usb/composite.h>
31#include <linux/usb/gadget.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070032#include <linux/usb/android.h>
Benoit Goby1e8ce152011-12-12 13:01:23 -080033
Manu Gautam43c61a12012-08-22 17:09:37 -070034#include <mach/diag_dload.h>
35
Benoit Goby1e8ce152011-12-12 13:01:23 -080036#include "gadget_chips.h"
37
38/*
39 * Kbuild is not very cooperative with respect to linking separately
40 * compiled library objects into one module. So for now we won't use
41 * separate compilation ... ensuring init/exit sections work to shrink
42 * the runtime footprint, and giving us at least some parts of what
43 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
44 */
45#include "usbstring.c"
46#include "config.c"
47#include "epautoconf.c"
48#include "composite.c"
49
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070050#include "f_diag.c"
Shimrit Malichia00d7322012-08-05 13:56:28 +030051#include "f_qdss.c"
Manu Gautam1c8ffd72011-09-02 16:00:49 +053052#include "f_rmnet_smd.c"
Manu Gautam8e0719b2011-09-26 14:47:55 +053053#include "f_rmnet_sdio.c"
54#include "f_rmnet_smd_sdio.c"
Manu Gautam2b0234a2011-09-07 16:47:52 +053055#include "f_rmnet.c"
Anna Perel3ee23dd2013-02-26 16:06:40 +020056#ifdef CONFIG_SND_PCM
Mike Lockwood11874822012-08-27 16:43:53 +053057#include "f_audio_source.c"
Anna Perel3ee23dd2013-02-26 16:06:40 +020058#endif
Benoit Goby1e8ce152011-12-12 13:01:23 -080059#include "f_mass_storage.c"
60#include "u_serial.c"
Manu Gautama4d993f2011-08-30 18:25:55 +053061#include "u_sdio.c"
62#include "u_smd.c"
63#include "u_bam.c"
Manu Gautam2b0234a2011-09-07 16:47:52 +053064#include "u_rmnet_ctrl_smd.c"
Bar Weiner0dae81b2013-02-14 13:53:54 +020065#include "u_rmnet_ctrl_qti.c"
Jack Pham427f6922011-11-23 19:42:00 -080066#include "u_ctrl_hsic.c"
67#include "u_data_hsic.c"
Vijayavardhan Vennapusaeb8d2392012-04-03 18:58:49 +053068#include "u_ctrl_hsuart.c"
69#include "u_data_hsuart.c"
Manu Gautama4d993f2011-08-30 18:25:55 +053070#include "f_serial.c"
Benoit Goby1e8ce152011-12-12 13:01:23 -080071#include "f_acm.c"
Benoit Goby2b6862d2011-12-19 14:38:41 -080072#include "f_adb.c"
Chiranjeevi Velempatie130fd02011-11-29 05:06:13 +053073#include "f_ccid.c"
Benoit Gobyf0fbc482011-12-19 14:37:50 -080074#include "f_mtp.c"
Benoit Gobycf3fc062011-12-19 14:39:37 -080075#include "f_accessory.c"
Benoit Goby1e8ce152011-12-12 13:01:23 -080076#define USB_ETH_RNDIS y
77#include "f_rndis.c"
78#include "rndis.c"
Anna Perela8c991d2012-04-09 16:44:46 +030079#include "u_bam_data.c"
80#include "f_mbim.c"
Anna Perelf9d01552012-11-20 15:56:32 +020081#include "f_ecm.c"
Ofir Cohen7b155422012-07-31 13:02:49 +030082#include "f_qc_ecm.c"
Ofir Cohenaef90b72012-07-31 12:37:04 +020083#include "f_qc_rndis.c"
Jack Pham0ad82e62012-09-27 17:31:08 -070084#include "u_ether.c"
Ofir Cohen7b155422012-07-31 13:02:49 +030085#include "u_qc_ether.c"
Pavankumar Kondeti8f6ca4f2012-06-26 09:44:36 +053086#ifdef CONFIG_TARGET_CORE
87#include "f_tcm.c"
88#endif
Jack Pham2ec5fdc2012-09-26 10:13:48 -070089#ifdef CONFIG_SND_PCM
Anna Perel432367a2012-09-20 10:55:32 +030090#include "u_uac1.c"
91#include "f_uac1.c"
Jack Pham2ec5fdc2012-09-26 10:13:48 -070092#endif
Benoit Goby1e8ce152011-12-12 13:01:23 -080093
94MODULE_AUTHOR("Mike Lockwood");
95MODULE_DESCRIPTION("Android Composite USB Driver");
96MODULE_LICENSE("GPL");
97MODULE_VERSION("1.0");
98
99static const char longname[] = "Gadget Android";
100
101/* Default vendor and product IDs, overridden by userspace */
102#define VENDOR_ID 0x18D1
103#define PRODUCT_ID 0x0001
104
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300105#define ANDROID_DEVICE_NODE_NAME_LENGTH 11
106
Benoit Goby1e8ce152011-12-12 13:01:23 -0800107struct android_usb_function {
108 char *name;
109 void *config;
110
111 struct device *dev;
112 char *dev_name;
113 struct device_attribute **attributes;
114
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300115 struct android_dev *android_dev;
116
Benoit Goby1e8ce152011-12-12 13:01:23 -0800117 /* Optional: initialization during gadget bind */
118 int (*init)(struct android_usb_function *, struct usb_composite_dev *);
119 /* Optional: cleanup during gadget unbind */
120 void (*cleanup)(struct android_usb_function *);
Benoit Goby80ba14d2012-03-19 18:56:52 -0700121 /* Optional: called when the function is added the list of
122 * enabled functions */
123 void (*enable)(struct android_usb_function *);
124 /* Optional: called when it is removed */
125 void (*disable)(struct android_usb_function *);
Benoit Goby1e8ce152011-12-12 13:01:23 -0800126
127 int (*bind_config)(struct android_usb_function *,
128 struct usb_configuration *);
129
130 /* Optional: called when the configuration is removed */
131 void (*unbind_config)(struct android_usb_function *,
132 struct usb_configuration *);
133 /* Optional: handle ctrl requests before the device is configured */
134 int (*ctrlrequest)(struct android_usb_function *,
135 struct usb_composite_dev *,
136 const struct usb_ctrlrequest *);
137};
138
Ido Shayevitz68557e32012-11-06 12:40:37 +0200139struct android_usb_function_holder {
140
141 struct android_usb_function *f;
142
143 /* for android_conf.enabled_functions */
144 struct list_head enabled_list;
145};
146
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +0200147/**
148* struct android_dev - represents android USB gadget device
149* @name: device name.
150* @functions: an array of all the supported USB function
151* drivers that this gadget support but not necessarily
152* added to one of the gadget configurations.
153* @cdev: The internal composite device. Android gadget device
154* is a composite device, such that it can support configurations
155* with more than one function driver.
156* @dev: The kernel device that represents this android device.
157* @enabled: True if the android gadget is enabled, means all
158* the configurations were set and all function drivers were
159* bind and ready for USB enumeration.
160* @disable_depth: Number of times the device was disabled, after
161* symmetrical number of enables the device willl be enabled.
162* Used for controlling ADB userspace disable/enable requests.
163* @mutex: Internal mutex for protecting device member fields.
164* @pdata: Platform data fetched from the kernel device platfrom data.
165* @connected: True if got connect notification from the gadget UDC.
166* False if got disconnect notification from the gadget UDC.
167* @sw_connected: Equal to 'connected' only after the connect
168* notification was handled by the android gadget work function.
169* @suspended: True if got suspend notification from the gadget UDC.
170* False if got resume notification from the gadget UDC.
171* @sw_suspended: Equal to 'suspended' only after the susped
172* notification was handled by the android gadget work function.
173* @pm_qos: An attribute string that can be set by user space in order to
174* determine pm_qos policy. Set to 'high' for always demand pm_qos
175* when USB bus is connected and resumed. Set to 'low' for disable
176* any setting of pm_qos by this driver. Default = 'high'.
177* @work: workqueue used for handling notifications from the gadget UDC.
178* @configs: List of configurations currently configured into the device.
179* The android gadget supports more than one configuration. The host
180* may choose one configuration from the suggested.
181* @configs_num: Number of configurations currently configured and existing
182* in the configs list.
183* @list_item: This driver supports more than one android gadget device (for
184* example in order to support multiple USB cores), therefore this is
185* a item in a linked list of android devices.
186*/
Benoit Goby1e8ce152011-12-12 13:01:23 -0800187struct android_dev {
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300188 const char *name;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800189 struct android_usb_function **functions;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800190 struct usb_composite_dev *cdev;
191 struct device *dev;
192
193 bool enabled;
Benoit Goby80ba14d2012-03-19 18:56:52 -0700194 int disable_depth;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800195 struct mutex mutex;
Steve Mucklef132c6c2012-06-06 18:30:57 -0700196 struct android_usb_platform_data *pdata;
197
Benoit Goby1e8ce152011-12-12 13:01:23 -0800198 bool connected;
199 bool sw_connected;
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +0200200 bool suspended;
201 bool sw_suspended;
Ofir Cohen94213a72012-05-03 14:26:32 +0300202 char pm_qos[5];
Steve Mucklef132c6c2012-06-06 18:30:57 -0700203 struct pm_qos_request pm_qos_req_dma;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800204 struct work_struct work;
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300205
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300206 /* A list of struct android_configuration */
207 struct list_head configs;
208 int configs_num;
209
210 /* A list node inside the android_dev_list */
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300211 struct list_head list_item;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300212};
213
214struct android_configuration {
215 struct usb_configuration usb_config;
216
217 /* A list of the functions supported by this config */
218 struct list_head enabled_functions;
219
220 /* A list node inside the struct android_dev.configs list */
221 struct list_head list_item;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800222};
223
Manu Gautam43c61a12012-08-22 17:09:37 -0700224struct dload_struct __iomem *diag_dload;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800225static struct class *android_class;
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300226static struct list_head android_dev_list;
227static int android_dev_count;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800228static int android_bind_config(struct usb_configuration *c);
229static void android_unbind_config(struct usb_configuration *c);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300230static struct android_dev *cdev_to_android_dev(struct usb_composite_dev *cdev);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300231static struct android_configuration *alloc_android_config
232 (struct android_dev *dev);
233static void free_android_config(struct android_dev *dev,
234 struct android_configuration *conf);
Manu Gautam43c61a12012-08-22 17:09:37 -0700235static int usb_diag_update_pid_and_serial_num(uint32_t pid, const char *snum);
Benoit Goby1e8ce152011-12-12 13:01:23 -0800236
237/* string IDs are assigned dynamically */
238#define STRING_MANUFACTURER_IDX 0
239#define STRING_PRODUCT_IDX 1
240#define STRING_SERIAL_IDX 2
241
242static char manufacturer_string[256];
243static char product_string[256];
244static char serial_string[256];
245
246/* String Table */
247static struct usb_string strings_dev[] = {
248 [STRING_MANUFACTURER_IDX].s = manufacturer_string,
249 [STRING_PRODUCT_IDX].s = product_string,
250 [STRING_SERIAL_IDX].s = serial_string,
251 { } /* end of list */
252};
253
254static struct usb_gadget_strings stringtab_dev = {
255 .language = 0x0409, /* en-us */
256 .strings = strings_dev,
257};
258
259static struct usb_gadget_strings *dev_strings[] = {
260 &stringtab_dev,
261 NULL,
262};
263
264static struct usb_device_descriptor device_desc = {
265 .bLength = sizeof(device_desc),
266 .bDescriptorType = USB_DT_DEVICE,
267 .bcdUSB = __constant_cpu_to_le16(0x0200),
268 .bDeviceClass = USB_CLASS_PER_INTERFACE,
269 .idVendor = __constant_cpu_to_le16(VENDOR_ID),
270 .idProduct = __constant_cpu_to_le16(PRODUCT_ID),
271 .bcdDevice = __constant_cpu_to_le16(0xffff),
272 .bNumConfigurations = 1,
273};
274
Vijayavardhan Vennapusa56e60522012-02-16 15:40:16 +0530275static struct usb_otg_descriptor otg_descriptor = {
276 .bLength = sizeof otg_descriptor,
277 .bDescriptorType = USB_DT_OTG,
278 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
279 .bcdOTG = __constant_cpu_to_le16(0x0200),
280};
281
282static const struct usb_descriptor_header *otg_desc[] = {
283 (struct usb_descriptor_header *) &otg_descriptor,
284 NULL,
285};
286
Manu Gautama2b54142012-04-03 14:34:32 +0530287enum android_device_state {
288 USB_DISCONNECTED,
289 USB_CONNECTED,
290 USB_CONFIGURED,
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +0200291 USB_SUSPENDED,
292 USB_RESUMED
Manu Gautama2b54142012-04-03 14:34:32 +0530293};
294
Ofir Cohen94213a72012-05-03 14:26:32 +0300295static void android_pm_qos_update_latency(struct android_dev *dev, int vote)
296{
297 struct android_usb_platform_data *pdata = dev->pdata;
298 u32 swfi_latency = 0;
299 static int last_vote = -1;
300
Ofir Cohen56eb7072012-05-20 11:41:39 +0300301 if (!pdata || vote == last_vote
302 || !pdata->swfi_latency)
Ofir Cohen94213a72012-05-03 14:26:32 +0300303 return;
304
305 swfi_latency = pdata->swfi_latency + 1;
306 if (vote)
307 pm_qos_update_request(&dev->pm_qos_req_dma,
308 swfi_latency);
309 else
310 pm_qos_update_request(&dev->pm_qos_req_dma,
311 PM_QOS_DEFAULT_VALUE);
312 last_vote = vote;
313}
314
Benoit Goby1e8ce152011-12-12 13:01:23 -0800315static void android_work(struct work_struct *data)
316{
317 struct android_dev *dev = container_of(data, struct android_dev, work);
318 struct usb_composite_dev *cdev = dev->cdev;
319 char *disconnected[2] = { "USB_STATE=DISCONNECTED", NULL };
320 char *connected[2] = { "USB_STATE=CONNECTED", NULL };
321 char *configured[2] = { "USB_STATE=CONFIGURED", NULL };
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +0200322 char *suspended[2] = { "USB_STATE=SUSPENDED", NULL };
323 char *resumed[2] = { "USB_STATE=RESUMED", NULL };
Benoit Goby1e8ce152011-12-12 13:01:23 -0800324 char **uevent_envp = NULL;
Manu Gautama2b54142012-04-03 14:34:32 +0530325 static enum android_device_state last_uevent, next_state;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800326 unsigned long flags;
Ofir Cohenbcbb1a72012-05-20 16:28:15 +0300327 int pm_qos_vote = -1;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800328
329 spin_lock_irqsave(&cdev->lock, flags);
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +0200330 if (dev->suspended != dev->sw_suspended && cdev->config) {
331 if (strncmp(dev->pm_qos, "low", 3))
332 pm_qos_vote = dev->suspended ? 0 : 1;
333 next_state = dev->suspended ? USB_SUSPENDED : USB_RESUMED;
334 uevent_envp = dev->suspended ? suspended : resumed;
335 } else if (cdev->config) {
Benoit Goby1e8ce152011-12-12 13:01:23 -0800336 uevent_envp = configured;
Manu Gautama2b54142012-04-03 14:34:32 +0530337 next_state = USB_CONFIGURED;
338 } else if (dev->connected != dev->sw_connected) {
Benoit Goby1e8ce152011-12-12 13:01:23 -0800339 uevent_envp = dev->connected ? connected : disconnected;
Manu Gautama2b54142012-04-03 14:34:32 +0530340 next_state = dev->connected ? USB_CONNECTED : USB_DISCONNECTED;
Ofir Cohen94213a72012-05-03 14:26:32 +0300341 if (dev->connected && strncmp(dev->pm_qos, "low", 3))
Ofir Cohenbcbb1a72012-05-20 16:28:15 +0300342 pm_qos_vote = 1;
Ofir Cohen94213a72012-05-03 14:26:32 +0300343 else if (!dev->connected || !strncmp(dev->pm_qos, "low", 3))
Ofir Cohenbcbb1a72012-05-20 16:28:15 +0300344 pm_qos_vote = 0;
Manu Gautama2b54142012-04-03 14:34:32 +0530345 }
Benoit Goby1e8ce152011-12-12 13:01:23 -0800346 dev->sw_connected = dev->connected;
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +0200347 dev->sw_suspended = dev->suspended;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800348 spin_unlock_irqrestore(&cdev->lock, flags);
349
Ofir Cohenbcbb1a72012-05-20 16:28:15 +0300350 if (pm_qos_vote != -1)
351 android_pm_qos_update_latency(dev, pm_qos_vote);
352
Benoit Goby1e8ce152011-12-12 13:01:23 -0800353 if (uevent_envp) {
Manu Gautama2b54142012-04-03 14:34:32 +0530354 /*
355 * Some userspace modules, e.g. MTP, work correctly only if
356 * CONFIGURED uevent is preceded by DISCONNECT uevent.
357 * Check if we missed sending out a DISCONNECT uevent. This can
358 * happen if host PC resets and configures device really quick.
359 */
360 if (((uevent_envp == connected) &&
361 (last_uevent != USB_DISCONNECTED)) ||
362 ((uevent_envp == configured) &&
363 (last_uevent == USB_CONFIGURED))) {
364 pr_info("%s: sent missed DISCONNECT event\n", __func__);
365 kobject_uevent_env(&dev->dev->kobj, KOBJ_CHANGE,
366 disconnected);
367 msleep(20);
368 }
369 /*
370 * Before sending out CONFIGURED uevent give function drivers
371 * a chance to wakeup userspace threads and notify disconnect
372 */
373 if (uevent_envp == configured)
374 msleep(50);
375
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +0200376 /* Do not notify on suspend / resume */
377 if (next_state != USB_SUSPENDED && next_state != USB_RESUMED) {
378 kobject_uevent_env(&dev->dev->kobj, KOBJ_CHANGE,
379 uevent_envp);
380 last_uevent = next_state;
381 }
Benoit Goby1e8ce152011-12-12 13:01:23 -0800382 pr_info("%s: sent uevent %s\n", __func__, uevent_envp[0]);
383 } else {
384 pr_info("%s: did not send uevent (%d %d %p)\n", __func__,
385 dev->connected, dev->sw_connected, cdev->config);
386 }
387}
388
Benoit Goby80ba14d2012-03-19 18:56:52 -0700389static void android_enable(struct android_dev *dev)
390{
391 struct usb_composite_dev *cdev = dev->cdev;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300392 struct android_configuration *conf;
Benoit Goby80ba14d2012-03-19 18:56:52 -0700393
394 if (WARN_ON(!dev->disable_depth))
395 return;
396
397 if (--dev->disable_depth == 0) {
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300398
399 list_for_each_entry(conf, &dev->configs, list_item)
400 usb_add_config(cdev, &conf->usb_config,
401 android_bind_config);
402
Benoit Goby80ba14d2012-03-19 18:56:52 -0700403 usb_gadget_connect(cdev->gadget);
404 }
405}
406
407static void android_disable(struct android_dev *dev)
408{
409 struct usb_composite_dev *cdev = dev->cdev;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300410 struct android_configuration *conf;
Benoit Goby80ba14d2012-03-19 18:56:52 -0700411
412 if (dev->disable_depth++ == 0) {
413 usb_gadget_disconnect(cdev->gadget);
414 /* Cancel pending control requests */
415 usb_ep_dequeue(cdev->gadget->ep0, cdev->req);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +0300416
417 list_for_each_entry(conf, &dev->configs, list_item)
418 usb_remove_config(cdev, &conf->usb_config);
Benoit Goby80ba14d2012-03-19 18:56:52 -0700419 }
420}
Benoit Goby1e8ce152011-12-12 13:01:23 -0800421
422/*-------------------------------------------------------------------------*/
423/* Supported functions initialization */
424
Benoit Goby80ba14d2012-03-19 18:56:52 -0700425struct adb_data {
426 bool opened;
427 bool enabled;
428};
429
Benoit Goby2b6862d2011-12-19 14:38:41 -0800430static int
431adb_function_init(struct android_usb_function *f,
432 struct usb_composite_dev *cdev)
433{
Benoit Goby80ba14d2012-03-19 18:56:52 -0700434 f->config = kzalloc(sizeof(struct adb_data), GFP_KERNEL);
435 if (!f->config)
436 return -ENOMEM;
437
Benoit Goby2b6862d2011-12-19 14:38:41 -0800438 return adb_setup();
439}
440
441static void adb_function_cleanup(struct android_usb_function *f)
442{
443 adb_cleanup();
Benoit Goby80ba14d2012-03-19 18:56:52 -0700444 kfree(f->config);
Benoit Goby2b6862d2011-12-19 14:38:41 -0800445}
446
447static int
448adb_function_bind_config(struct android_usb_function *f,
449 struct usb_configuration *c)
450{
451 return adb_bind_config(c);
452}
453
Benoit Goby80ba14d2012-03-19 18:56:52 -0700454static void adb_android_function_enable(struct android_usb_function *f)
455{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300456 struct android_dev *dev = f->android_dev;
Benoit Goby80ba14d2012-03-19 18:56:52 -0700457 struct adb_data *data = f->config;
458
459 data->enabled = true;
460
461 /* Disable the gadget until adbd is ready */
462 if (!data->opened)
463 android_disable(dev);
464}
465
466static void adb_android_function_disable(struct android_usb_function *f)
467{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300468 struct android_dev *dev = f->android_dev;
Benoit Goby80ba14d2012-03-19 18:56:52 -0700469 struct adb_data *data = f->config;
470
471 data->enabled = false;
472
473 /* Balance the disable that was called in closed_callback */
474 if (!data->opened)
475 android_enable(dev);
476}
477
Benoit Goby2b6862d2011-12-19 14:38:41 -0800478static struct android_usb_function adb_function = {
479 .name = "adb",
Benoit Goby80ba14d2012-03-19 18:56:52 -0700480 .enable = adb_android_function_enable,
481 .disable = adb_android_function_disable,
Benoit Goby2b6862d2011-12-19 14:38:41 -0800482 .init = adb_function_init,
483 .cleanup = adb_function_cleanup,
484 .bind_config = adb_function_bind_config,
485};
486
Benoit Goby80ba14d2012-03-19 18:56:52 -0700487static void adb_ready_callback(void)
488{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300489 struct android_dev *dev = adb_function.android_dev;
Benoit Goby80ba14d2012-03-19 18:56:52 -0700490 struct adb_data *data = adb_function.config;
491
Benoit Goby80ba14d2012-03-19 18:56:52 -0700492 data->opened = true;
493
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300494 if (data->enabled && dev) {
495 mutex_lock(&dev->mutex);
Benoit Goby80ba14d2012-03-19 18:56:52 -0700496 android_enable(dev);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300497 mutex_unlock(&dev->mutex);
498 }
Benoit Goby80ba14d2012-03-19 18:56:52 -0700499}
500
501static void adb_closed_callback(void)
502{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300503 struct android_dev *dev = adb_function.android_dev;
Benoit Goby80ba14d2012-03-19 18:56:52 -0700504 struct adb_data *data = adb_function.config;
505
Benoit Goby80ba14d2012-03-19 18:56:52 -0700506 data->opened = false;
507
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300508 if (data->enabled) {
509 mutex_lock(&dev->mutex);
Benoit Goby80ba14d2012-03-19 18:56:52 -0700510 android_disable(dev);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300511 mutex_unlock(&dev->mutex);
512 }
Benoit Goby80ba14d2012-03-19 18:56:52 -0700513}
514
Benoit Goby2b6862d2011-12-19 14:38:41 -0800515
Benoit Gobyaab96812011-04-19 20:37:33 -0700516/*-------------------------------------------------------------------------*/
517/* Supported functions initialization */
518
Manu Gautam8e0719b2011-09-26 14:47:55 +0530519/* RMNET_SMD */
Manu Gautam1c8ffd72011-09-02 16:00:49 +0530520static int rmnet_smd_function_bind_config(struct android_usb_function *f,
521 struct usb_configuration *c)
522{
523 return rmnet_smd_bind_config(c);
524}
525
526static struct android_usb_function rmnet_smd_function = {
527 .name = "rmnet_smd",
528 .bind_config = rmnet_smd_function_bind_config,
Benoit Goby1e8ce152011-12-12 13:01:23 -0800529};
530
Manu Gautam8e0719b2011-09-26 14:47:55 +0530531/* RMNET_SDIO */
532static int rmnet_sdio_function_bind_config(struct android_usb_function *f,
533 struct usb_configuration *c)
Benoit Goby1e8ce152011-12-12 13:01:23 -0800534{
Manu Gautam8e0719b2011-09-26 14:47:55 +0530535 return rmnet_sdio_function_add(c);
Benoit Goby1e8ce152011-12-12 13:01:23 -0800536}
537
Manu Gautam8e0719b2011-09-26 14:47:55 +0530538static struct android_usb_function rmnet_sdio_function = {
539 .name = "rmnet_sdio",
540 .bind_config = rmnet_sdio_function_bind_config,
541};
542
543/* RMNET_SMD_SDIO */
544static int rmnet_smd_sdio_function_init(struct android_usb_function *f,
545 struct usb_composite_dev *cdev)
546{
547 return rmnet_smd_sdio_init();
548}
549
550static void rmnet_smd_sdio_function_cleanup(struct android_usb_function *f)
551{
552 rmnet_smd_sdio_cleanup();
553}
554
555static int rmnet_smd_sdio_bind_config(struct android_usb_function *f,
556 struct usb_configuration *c)
557{
558 return rmnet_smd_sdio_function_add(c);
559}
560
561static struct device_attribute *rmnet_smd_sdio_attributes[] = {
562 &dev_attr_transport, NULL };
563
564static struct android_usb_function rmnet_smd_sdio_function = {
565 .name = "rmnet_smd_sdio",
566 .init = rmnet_smd_sdio_function_init,
567 .cleanup = rmnet_smd_sdio_function_cleanup,
568 .bind_config = rmnet_smd_sdio_bind_config,
569 .attributes = rmnet_smd_sdio_attributes,
570};
571
Hemant Kumar1b820d52011-11-03 15:08:28 -0700572/*rmnet transport string format(per port):"ctrl0,data0,ctrl1,data1..." */
573#define MAX_XPORT_STR_LEN 50
574static char rmnet_transports[MAX_XPORT_STR_LEN];
Manu Gautam1c8ffd72011-09-02 16:00:49 +0530575
Manu Gautame3e897c2011-09-12 17:18:46 +0530576static void rmnet_function_cleanup(struct android_usb_function *f)
577{
578 frmnet_cleanup();
579}
580
Manu Gautam2b0234a2011-09-07 16:47:52 +0530581static int rmnet_function_bind_config(struct android_usb_function *f,
582 struct usb_configuration *c)
583{
584 int i;
Hemant Kumar1b820d52011-11-03 15:08:28 -0700585 int err = 0;
586 char *ctrl_name;
587 char *data_name;
588 char buf[MAX_XPORT_STR_LEN], *b;
589 static int rmnet_initialized, ports;
Manu Gautam2b0234a2011-09-07 16:47:52 +0530590
Hemant Kumar1b820d52011-11-03 15:08:28 -0700591 if (!rmnet_initialized) {
592 rmnet_initialized = 1;
593 strlcpy(buf, rmnet_transports, sizeof(buf));
594 b = strim(buf);
595 while (b) {
596 ctrl_name = strsep(&b, ",");
597 data_name = strsep(&b, ",");
598 if (ctrl_name && data_name) {
599 err = frmnet_init_port(ctrl_name, data_name);
600 if (err) {
601 pr_err("rmnet: Cannot open ctrl port:"
602 "'%s' data port:'%s'\n",
603 ctrl_name, data_name);
604 goto out;
605 }
606 ports++;
607 }
608 }
609
610 err = rmnet_gport_setup();
611 if (err) {
612 pr_err("rmnet: Cannot setup transports");
613 goto out;
614 }
615 }
616
617 for (i = 0; i < ports; i++) {
618 err = frmnet_bind_config(c, i);
619 if (err) {
Manu Gautam2b0234a2011-09-07 16:47:52 +0530620 pr_err("Could not bind rmnet%u config\n", i);
621 break;
622 }
623 }
Hemant Kumar1b820d52011-11-03 15:08:28 -0700624out:
625 return err;
Manu Gautam2b0234a2011-09-07 16:47:52 +0530626}
627
Hemant Kumar1b820d52011-11-03 15:08:28 -0700628static ssize_t rmnet_transports_show(struct device *dev,
Manu Gautam2b0234a2011-09-07 16:47:52 +0530629 struct device_attribute *attr, char *buf)
630{
Hemant Kumar1b820d52011-11-03 15:08:28 -0700631 return snprintf(buf, PAGE_SIZE, "%s\n", rmnet_transports);
Manu Gautam2b0234a2011-09-07 16:47:52 +0530632}
633
Hemant Kumar1b820d52011-11-03 15:08:28 -0700634static ssize_t rmnet_transports_store(
635 struct device *device, struct device_attribute *attr,
636 const char *buff, size_t size)
Manu Gautam2b0234a2011-09-07 16:47:52 +0530637{
Hemant Kumar1b820d52011-11-03 15:08:28 -0700638 strlcpy(rmnet_transports, buff, sizeof(rmnet_transports));
Manu Gautam2b0234a2011-09-07 16:47:52 +0530639
Manu Gautam2b0234a2011-09-07 16:47:52 +0530640 return size;
641}
642
Hemant Kumar1b820d52011-11-03 15:08:28 -0700643static struct device_attribute dev_attr_rmnet_transports =
644 __ATTR(transports, S_IRUGO | S_IWUSR,
645 rmnet_transports_show,
646 rmnet_transports_store);
Manu Gautam2b0234a2011-09-07 16:47:52 +0530647static struct device_attribute *rmnet_function_attributes[] = {
Hemant Kumar1b820d52011-11-03 15:08:28 -0700648 &dev_attr_rmnet_transports,
649 NULL };
Manu Gautam2b0234a2011-09-07 16:47:52 +0530650
651static struct android_usb_function rmnet_function = {
652 .name = "rmnet",
Manu Gautame3e897c2011-09-12 17:18:46 +0530653 .cleanup = rmnet_function_cleanup,
Manu Gautam2b0234a2011-09-07 16:47:52 +0530654 .bind_config = rmnet_function_bind_config,
655 .attributes = rmnet_function_attributes,
656};
657
Ofir Cohen7b155422012-07-31 13:02:49 +0300658struct ecm_function_config {
659 u8 ethaddr[ETH_ALEN];
660};
661
662static int ecm_function_init(struct android_usb_function *f,
663 struct usb_composite_dev *cdev)
664{
665 f->config = kzalloc(sizeof(struct ecm_function_config), GFP_KERNEL);
666 if (!f->config)
667 return -ENOMEM;
668 return 0;
669}
670
671static void ecm_function_cleanup(struct android_usb_function *f)
672{
673 kfree(f->config);
674 f->config = NULL;
675}
676
677static int ecm_qc_function_bind_config(struct android_usb_function *f,
678 struct usb_configuration *c)
679{
680 int ret;
681 struct ecm_function_config *ecm = f->config;
682
683 if (!ecm) {
684 pr_err("%s: ecm_pdata\n", __func__);
685 return -EINVAL;
686 }
687
688 pr_info("%s MAC: %02X:%02X:%02X:%02X:%02X:%02X\n", __func__,
689 ecm->ethaddr[0], ecm->ethaddr[1], ecm->ethaddr[2],
690 ecm->ethaddr[3], ecm->ethaddr[4], ecm->ethaddr[5]);
691
692 ret = gether_qc_setup_name(c->cdev->gadget, ecm->ethaddr, "ecm");
693 if (ret) {
694 pr_err("%s: gether_setup failed\n", __func__);
695 return ret;
696 }
697
698 return ecm_qc_bind_config(c, ecm->ethaddr);
699}
700
701static void ecm_qc_function_unbind_config(struct android_usb_function *f,
702 struct usb_configuration *c)
703{
Amit Blayd6d690a2012-10-16 13:37:42 +0200704 gether_qc_cleanup_name("ecm0");
Ofir Cohen7b155422012-07-31 13:02:49 +0300705}
706
707static ssize_t ecm_ethaddr_show(struct device *dev,
708 struct device_attribute *attr, char *buf)
709{
710 struct android_usb_function *f = dev_get_drvdata(dev);
711 struct ecm_function_config *ecm = f->config;
712 return snprintf(buf, PAGE_SIZE, "%02x:%02x:%02x:%02x:%02x:%02x\n",
713 ecm->ethaddr[0], ecm->ethaddr[1], ecm->ethaddr[2],
714 ecm->ethaddr[3], ecm->ethaddr[4], ecm->ethaddr[5]);
715}
716
717static ssize_t ecm_ethaddr_store(struct device *dev,
718 struct device_attribute *attr, const char *buf, size_t size)
719{
720 struct android_usb_function *f = dev_get_drvdata(dev);
721 struct ecm_function_config *ecm = f->config;
722
723 if (sscanf(buf, "%02x:%02x:%02x:%02x:%02x:%02x\n",
724 (int *)&ecm->ethaddr[0], (int *)&ecm->ethaddr[1],
725 (int *)&ecm->ethaddr[2], (int *)&ecm->ethaddr[3],
726 (int *)&ecm->ethaddr[4], (int *)&ecm->ethaddr[5]) == 6)
727 return size;
728 return -EINVAL;
729}
730
731static DEVICE_ATTR(ecm_ethaddr, S_IRUGO | S_IWUSR, ecm_ethaddr_show,
732 ecm_ethaddr_store);
733
734static struct device_attribute *ecm_function_attributes[] = {
735 &dev_attr_ecm_ethaddr,
736 NULL
737};
738
739static struct android_usb_function ecm_qc_function = {
740 .name = "ecm_qc",
741 .init = ecm_function_init,
742 .cleanup = ecm_function_cleanup,
743 .bind_config = ecm_qc_function_bind_config,
744 .unbind_config = ecm_qc_function_unbind_config,
745 .attributes = ecm_function_attributes,
746};
Anna Perela8c991d2012-04-09 16:44:46 +0300747
748/* MBIM - used with BAM */
749#define MAX_MBIM_INSTANCES 1
750
751static int mbim_function_init(struct android_usb_function *f,
752 struct usb_composite_dev *cdev)
753{
754 return mbim_init(MAX_MBIM_INSTANCES);
755}
756
757static void mbim_function_cleanup(struct android_usb_function *f)
758{
759 fmbim_cleanup();
760}
761
762static int mbim_function_bind_config(struct android_usb_function *f,
763 struct usb_configuration *c)
764{
765 return mbim_bind_config(c, 0);
766}
767
Jack Pham2df2f702012-10-11 19:08:24 -0700768static int mbim_function_ctrlrequest(struct android_usb_function *f,
769 struct usb_composite_dev *cdev,
770 const struct usb_ctrlrequest *c)
771{
772 return mbim_ctrlrequest(cdev, c);
773}
774
Anna Perela8c991d2012-04-09 16:44:46 +0300775static struct android_usb_function mbim_function = {
776 .name = "usb_mbim",
777 .cleanup = mbim_function_cleanup,
778 .bind_config = mbim_function_bind_config,
779 .init = mbim_function_init,
Jack Pham2df2f702012-10-11 19:08:24 -0700780 .ctrlrequest = mbim_function_ctrlrequest,
Anna Perela8c991d2012-04-09 16:44:46 +0300781};
782
Jack Pham2ec5fdc2012-09-26 10:13:48 -0700783#ifdef CONFIG_SND_PCM
Anna Perel432367a2012-09-20 10:55:32 +0300784/* PERIPHERAL AUDIO */
785static int audio_function_bind_config(struct android_usb_function *f,
786 struct usb_configuration *c)
787{
788 return audio_bind_config(c);
789}
790
791static struct android_usb_function audio_function = {
792 .name = "audio",
793 .bind_config = audio_function_bind_config,
794};
Jack Pham2ec5fdc2012-09-26 10:13:48 -0700795#endif
Anna Perel432367a2012-09-20 10:55:32 +0300796
Anna Perela8c991d2012-04-09 16:44:46 +0300797
Manu Gautam8e0719b2011-09-26 14:47:55 +0530798/* DIAG */
Manu Gautam2b0234a2011-09-07 16:47:52 +0530799static char diag_clients[32]; /*enabled DIAG clients- "diag[,diag_mdm]" */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700800static ssize_t clients_store(
801 struct device *device, struct device_attribute *attr,
802 const char *buff, size_t size)
803{
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +0530804 strlcpy(diag_clients, buff, sizeof(diag_clients));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700805
806 return size;
807}
808
809static DEVICE_ATTR(clients, S_IWUSR, NULL, clients_store);
810static struct device_attribute *diag_function_attributes[] =
811 { &dev_attr_clients, NULL };
812
813static int diag_function_init(struct android_usb_function *f,
814 struct usb_composite_dev *cdev)
815{
816 return diag_setup();
817}
818
819static void diag_function_cleanup(struct android_usb_function *f)
820{
821 diag_cleanup();
822}
823
824static int diag_function_bind_config(struct android_usb_function *f,
825 struct usb_configuration *c)
826{
827 char *name;
828 char buf[32], *b;
Manu Gautamc5760302011-08-25 14:30:24 +0530829 int once = 0, err = -1;
Jack Phamb830a6c2011-12-12 22:35:27 -0800830 int (*notify)(uint32_t, const char *);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +0300831 struct android_dev *dev = cdev_to_android_dev(c->cdev);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700832
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +0530833 strlcpy(buf, diag_clients, sizeof(buf));
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700834 b = strim(buf);
835
836 while (b) {
Jack Phamb830a6c2011-12-12 22:35:27 -0800837 notify = NULL;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700838 name = strsep(&b, ",");
Manu Gautamc5760302011-08-25 14:30:24 +0530839 /* Allow only first diag channel to update pid and serial no */
Manu Gautam43c61a12012-08-22 17:09:37 -0700840 if (!once++) {
841 if (dev->pdata && dev->pdata->update_pid_and_serial_num)
842 notify = dev->pdata->update_pid_and_serial_num;
843 else
844 notify = usb_diag_update_pid_and_serial_num;
845 }
Manu Gautamc5760302011-08-25 14:30:24 +0530846
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700847 if (name) {
Manu Gautamc5760302011-08-25 14:30:24 +0530848 err = diag_function_add(c, name, notify);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700849 if (err)
850 pr_err("diag: Cannot open channel '%s'", name);
851 }
852 }
853
854 return err;
855}
856
857static struct android_usb_function diag_function = {
858 .name = "diag",
859 .init = diag_function_init,
860 .cleanup = diag_function_cleanup,
861 .bind_config = diag_function_bind_config,
862 .attributes = diag_function_attributes,
863};
864
Shimrit Malichia00d7322012-08-05 13:56:28 +0300865/* DEBUG */
866static int qdss_function_init(struct android_usb_function *f,
867 struct usb_composite_dev *cdev)
868{
869 return qdss_setup();
870}
871
872static void qdss_function_cleanup(struct android_usb_function *f)
873{
874 qdss_cleanup();
875}
876
877static int qdss_function_bind_config(struct android_usb_function *f,
878 struct usb_configuration *c)
879{
880 int err = -1;
881
882 err = qdss_bind_config(c, "qdss");
883 if (err)
884 pr_err("qdss: Cannot open channel qdss");
885
886 return err;
887}
888
889static struct android_usb_function qdss_function = {
890 .name = "qdss",
891 .init = qdss_function_init,
892 .cleanup = qdss_function_cleanup,
893 .bind_config = qdss_function_bind_config,
894};
895
Manu Gautam8e0719b2011-09-26 14:47:55 +0530896/* SERIAL */
Manu Gautam2b0234a2011-09-07 16:47:52 +0530897static char serial_transports[32]; /*enabled FSERIAL ports - "tty[,sdio]"*/
Manu Gautama4d993f2011-08-30 18:25:55 +0530898static ssize_t serial_transports_store(
899 struct device *device, struct device_attribute *attr,
900 const char *buff, size_t size)
901{
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +0530902 strlcpy(serial_transports, buff, sizeof(serial_transports));
Manu Gautama4d993f2011-08-30 18:25:55 +0530903
904 return size;
905}
906
907static DEVICE_ATTR(transports, S_IWUSR, NULL, serial_transports_store);
908static struct device_attribute *serial_function_attributes[] =
909 { &dev_attr_transports, NULL };
910
911static void serial_function_cleanup(struct android_usb_function *f)
912{
913 gserial_cleanup();
914}
915
916static int serial_function_bind_config(struct android_usb_function *f,
917 struct usb_configuration *c)
918{
919 char *name;
920 char buf[32], *b;
921 int err = -1, i;
922 static int serial_initialized = 0, ports = 0;
923
924 if (serial_initialized)
925 goto bind_config;
926
927 serial_initialized = 1;
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +0530928 strlcpy(buf, serial_transports, sizeof(buf));
Manu Gautama4d993f2011-08-30 18:25:55 +0530929 b = strim(buf);
930
931 while (b) {
932 name = strsep(&b, ",");
933
934 if (name) {
935 err = gserial_init_port(ports, name);
936 if (err) {
937 pr_err("serial: Cannot open port '%s'", name);
938 goto out;
939 }
940 ports++;
941 }
942 }
943 err = gport_setup(c);
944 if (err) {
945 pr_err("serial: Cannot setup transports");
946 goto out;
947 }
948
949bind_config:
Lena Salmand092f2d2012-03-12 17:27:24 +0200950 for (i = 0; i < ports; i++) {
Manu Gautama4d993f2011-08-30 18:25:55 +0530951 err = gser_bind_config(c, i);
952 if (err) {
953 pr_err("serial: bind_config failed for port %d", i);
954 goto out;
955 }
956 }
957
958out:
959 return err;
960}
961
962static struct android_usb_function serial_function = {
963 .name = "serial",
964 .cleanup = serial_function_cleanup,
965 .bind_config = serial_function_bind_config,
966 .attributes = serial_function_attributes,
967};
968
Anji jonnala92be1b42011-12-19 09:44:41 +0530969/* ACM */
970static char acm_transports[32]; /*enabled ACM ports - "tty[,sdio]"*/
971static ssize_t acm_transports_store(
972 struct device *device, struct device_attribute *attr,
973 const char *buff, size_t size)
974{
975 strlcpy(acm_transports, buff, sizeof(acm_transports));
976
977 return size;
978}
979
980static DEVICE_ATTR(acm_transports, S_IWUSR, NULL, acm_transports_store);
981static struct device_attribute *acm_function_attributes[] = {
982 &dev_attr_acm_transports, NULL };
983
Benoit Goby1e8ce152011-12-12 13:01:23 -0800984static void acm_function_cleanup(struct android_usb_function *f)
985{
986 gserial_cleanup();
Benoit Goby1e8ce152011-12-12 13:01:23 -0800987}
988
Anji jonnala92be1b42011-12-19 09:44:41 +0530989static int acm_function_bind_config(struct android_usb_function *f,
990 struct usb_configuration *c)
Benoit Goby1e8ce152011-12-12 13:01:23 -0800991{
Anji jonnala92be1b42011-12-19 09:44:41 +0530992 char *name;
993 char buf[32], *b;
994 int err = -1, i;
995 static int acm_initialized, ports;
Benoit Goby1e8ce152011-12-12 13:01:23 -0800996
Anji jonnala92be1b42011-12-19 09:44:41 +0530997 if (acm_initialized)
998 goto bind_config;
999
1000 acm_initialized = 1;
1001 strlcpy(buf, acm_transports, sizeof(buf));
1002 b = strim(buf);
1003
1004 while (b) {
1005 name = strsep(&b, ",");
1006
1007 if (name) {
1008 err = acm_init_port(ports, name);
1009 if (err) {
1010 pr_err("acm: Cannot open port '%s'", name);
1011 goto out;
1012 }
1013 ports++;
1014 }
1015 }
1016 err = acm_port_setup(c);
1017 if (err) {
1018 pr_err("acm: Cannot setup transports");
1019 goto out;
1020 }
1021
1022bind_config:
1023 for (i = 0; i < ports; i++) {
1024 err = acm_bind_config(c, i);
1025 if (err) {
1026 pr_err("acm: bind_config failed for port %d", i);
1027 goto out;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001028 }
1029 }
1030
Anji jonnala92be1b42011-12-19 09:44:41 +05301031out:
1032 return err;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001033}
Benoit Goby1e8ce152011-12-12 13:01:23 -08001034static struct android_usb_function acm_function = {
1035 .name = "acm",
Benoit Goby1e8ce152011-12-12 13:01:23 -08001036 .cleanup = acm_function_cleanup,
1037 .bind_config = acm_function_bind_config,
1038 .attributes = acm_function_attributes,
1039};
1040
Chiranjeevi Velempatie130fd02011-11-29 05:06:13 +05301041/* CCID */
1042static int ccid_function_init(struct android_usb_function *f,
1043 struct usb_composite_dev *cdev)
1044{
1045 return ccid_setup();
1046}
Benoit Goby1e8ce152011-12-12 13:01:23 -08001047
Chiranjeevi Velempatie130fd02011-11-29 05:06:13 +05301048static void ccid_function_cleanup(struct android_usb_function *f)
1049{
1050 ccid_cleanup();
1051}
1052
1053static int ccid_function_bind_config(struct android_usb_function *f,
1054 struct usb_configuration *c)
1055{
1056 return ccid_bind_config(c);
1057}
1058
1059static struct android_usb_function ccid_function = {
1060 .name = "ccid",
1061 .init = ccid_function_init,
1062 .cleanup = ccid_function_cleanup,
1063 .bind_config = ccid_function_bind_config,
1064};
1065
Steve Mucklef132c6c2012-06-06 18:30:57 -07001066static int mtp_function_init(struct android_usb_function *f,
Benoit Gobyf0fbc482011-12-19 14:37:50 -08001067 struct usb_composite_dev *cdev)
1068{
1069 return mtp_setup();
1070}
1071
1072static void mtp_function_cleanup(struct android_usb_function *f)
1073{
1074 mtp_cleanup();
1075}
1076
Steve Mucklef132c6c2012-06-06 18:30:57 -07001077static int mtp_function_bind_config(struct android_usb_function *f,
Benoit Gobyf0fbc482011-12-19 14:37:50 -08001078 struct usb_configuration *c)
1079{
1080 return mtp_bind_config(c, false);
1081}
1082
Mike Lockwoodcf7addf2011-06-01 22:17:36 -04001083static int ptp_function_init(struct android_usb_function *f, struct usb_composite_dev *cdev)
Benoit Gobyf0fbc482011-12-19 14:37:50 -08001084{
1085 /* nothing to do - initialization is handled by mtp_function_init */
1086 return 0;
1087}
1088
1089static void ptp_function_cleanup(struct android_usb_function *f)
1090{
1091 /* nothing to do - cleanup is handled by mtp_function_cleanup */
1092}
1093
Mike Lockwoodcf7addf2011-06-01 22:17:36 -04001094static int ptp_function_bind_config(struct android_usb_function *f, struct usb_configuration *c)
Benoit Gobyf0fbc482011-12-19 14:37:50 -08001095{
1096 return mtp_bind_config(c, true);
1097}
1098
1099static int mtp_function_ctrlrequest(struct android_usb_function *f,
1100 struct usb_composite_dev *cdev,
1101 const struct usb_ctrlrequest *c)
1102{
1103 return mtp_ctrlrequest(cdev, c);
1104}
1105
1106static struct android_usb_function mtp_function = {
1107 .name = "mtp",
1108 .init = mtp_function_init,
1109 .cleanup = mtp_function_cleanup,
1110 .bind_config = mtp_function_bind_config,
1111 .ctrlrequest = mtp_function_ctrlrequest,
1112};
1113
1114/* PTP function is same as MTP with slightly different interface descriptor */
1115static struct android_usb_function ptp_function = {
1116 .name = "ptp",
1117 .init = ptp_function_init,
1118 .cleanup = ptp_function_cleanup,
1119 .bind_config = ptp_function_bind_config,
1120};
1121
1122
Benoit Goby1e8ce152011-12-12 13:01:23 -08001123struct rndis_function_config {
1124 u8 ethaddr[ETH_ALEN];
1125 u32 vendorID;
Ofir Cohenaef90b72012-07-31 12:37:04 +02001126 u8 max_pkt_per_xfer;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001127 char manufacturer[256];
1128 /* "Wireless" RNDIS; auto-detected by Windows */
1129 bool wceis;
1130};
1131
1132static int
1133rndis_function_init(struct android_usb_function *f,
1134 struct usb_composite_dev *cdev)
1135{
1136 f->config = kzalloc(sizeof(struct rndis_function_config), GFP_KERNEL);
1137 if (!f->config)
1138 return -ENOMEM;
1139 return 0;
1140}
1141
1142static void rndis_function_cleanup(struct android_usb_function *f)
1143{
1144 kfree(f->config);
1145 f->config = NULL;
1146}
1147
Ofir Cohenaef90b72012-07-31 12:37:04 +02001148static int rndis_qc_function_init(struct android_usb_function *f,
1149 struct usb_composite_dev *cdev)
1150{
1151 f->config = kzalloc(sizeof(struct rndis_function_config), GFP_KERNEL);
1152 if (!f->config)
1153 return -ENOMEM;
1154
1155 return rndis_qc_init();
1156}
1157
1158static void rndis_qc_function_cleanup(struct android_usb_function *f)
1159{
1160 rndis_qc_cleanup();
1161 kfree(f->config);
1162}
1163
Benoit Goby1e8ce152011-12-12 13:01:23 -08001164static int
1165rndis_function_bind_config(struct android_usb_function *f,
1166 struct usb_configuration *c)
1167{
1168 int ret;
1169 struct rndis_function_config *rndis = f->config;
1170
1171 if (!rndis) {
1172 pr_err("%s: rndis_pdata\n", __func__);
1173 return -1;
1174 }
1175
1176 pr_info("%s MAC: %02X:%02X:%02X:%02X:%02X:%02X\n", __func__,
1177 rndis->ethaddr[0], rndis->ethaddr[1], rndis->ethaddr[2],
1178 rndis->ethaddr[3], rndis->ethaddr[4], rndis->ethaddr[5]);
1179
1180 ret = gether_setup_name(c->cdev->gadget, rndis->ethaddr, "rndis");
1181 if (ret) {
1182 pr_err("%s: gether_setup failed\n", __func__);
1183 return ret;
1184 }
1185
1186 if (rndis->wceis) {
1187 /* "Wireless" RNDIS; auto-detected by Windows */
1188 rndis_iad_descriptor.bFunctionClass =
1189 USB_CLASS_WIRELESS_CONTROLLER;
1190 rndis_iad_descriptor.bFunctionSubClass = 0x01;
1191 rndis_iad_descriptor.bFunctionProtocol = 0x03;
1192 rndis_control_intf.bInterfaceClass =
1193 USB_CLASS_WIRELESS_CONTROLLER;
1194 rndis_control_intf.bInterfaceSubClass = 0x01;
1195 rndis_control_intf.bInterfaceProtocol = 0x03;
1196 }
1197
1198 return rndis_bind_config_vendor(c, rndis->ethaddr, rndis->vendorID,
1199 rndis->manufacturer);
1200}
1201
Ofir Cohenaef90b72012-07-31 12:37:04 +02001202static int rndis_qc_function_bind_config(struct android_usb_function *f,
1203 struct usb_configuration *c)
1204{
1205 int ret;
1206 struct rndis_function_config *rndis = f->config;
1207
1208 if (!rndis) {
1209 pr_err("%s: rndis_pdata\n", __func__);
1210 return -EINVAL;
1211 }
1212
1213 pr_info("%s MAC: %02X:%02X:%02X:%02X:%02X:%02X\n", __func__,
1214 rndis->ethaddr[0], rndis->ethaddr[1], rndis->ethaddr[2],
1215 rndis->ethaddr[3], rndis->ethaddr[4], rndis->ethaddr[5]);
1216
1217 ret = gether_qc_setup_name(c->cdev->gadget, rndis->ethaddr, "rndis");
1218 if (ret) {
1219 pr_err("%s: gether_setup failed\n", __func__);
1220 return ret;
1221 }
1222
1223 if (rndis->wceis) {
1224 /* "Wireless" RNDIS; auto-detected by Windows */
1225 rndis_qc_iad_descriptor.bFunctionClass =
1226 USB_CLASS_WIRELESS_CONTROLLER;
1227 rndis_qc_iad_descriptor.bFunctionSubClass = 0x01;
1228 rndis_qc_iad_descriptor.bFunctionProtocol = 0x03;
1229 rndis_qc_control_intf.bInterfaceClass =
1230 USB_CLASS_WIRELESS_CONTROLLER;
1231 rndis_qc_control_intf.bInterfaceSubClass = 0x01;
1232 rndis_qc_control_intf.bInterfaceProtocol = 0x03;
1233 }
1234
1235 return rndis_qc_bind_config_vendor(c, rndis->ethaddr, rndis->vendorID,
1236 rndis->manufacturer,
1237 rndis->max_pkt_per_xfer);
1238}
1239
Benoit Goby1e8ce152011-12-12 13:01:23 -08001240static void rndis_function_unbind_config(struct android_usb_function *f,
1241 struct usb_configuration *c)
1242{
1243 gether_cleanup();
1244}
1245
Ofir Cohenaef90b72012-07-31 12:37:04 +02001246static void rndis_qc_function_unbind_config(struct android_usb_function *f,
1247 struct usb_configuration *c)
1248{
Amit Blayd6d690a2012-10-16 13:37:42 +02001249 gether_qc_cleanup_name("rndis0");
Ofir Cohenaef90b72012-07-31 12:37:04 +02001250}
1251
Benoit Goby1e8ce152011-12-12 13:01:23 -08001252static ssize_t rndis_manufacturer_show(struct device *dev,
1253 struct device_attribute *attr, char *buf)
1254{
1255 struct android_usb_function *f = dev_get_drvdata(dev);
1256 struct rndis_function_config *config = f->config;
Steve Mucklef132c6c2012-06-06 18:30:57 -07001257
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301258 return snprintf(buf, PAGE_SIZE, "%s\n", config->manufacturer);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001259}
1260
1261static ssize_t rndis_manufacturer_store(struct device *dev,
1262 struct device_attribute *attr, const char *buf, size_t size)
1263{
1264 struct android_usb_function *f = dev_get_drvdata(dev);
1265 struct rndis_function_config *config = f->config;
1266
1267 if (size >= sizeof(config->manufacturer))
1268 return -EINVAL;
Steve Mucklef132c6c2012-06-06 18:30:57 -07001269
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301270 if (sscanf(buf, "%255s", config->manufacturer) == 1)
Benoit Goby1e8ce152011-12-12 13:01:23 -08001271 return size;
1272 return -1;
1273}
1274
1275static DEVICE_ATTR(manufacturer, S_IRUGO | S_IWUSR, rndis_manufacturer_show,
1276 rndis_manufacturer_store);
1277
1278static ssize_t rndis_wceis_show(struct device *dev,
1279 struct device_attribute *attr, char *buf)
1280{
1281 struct android_usb_function *f = dev_get_drvdata(dev);
1282 struct rndis_function_config *config = f->config;
Steve Mucklef132c6c2012-06-06 18:30:57 -07001283
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301284 return snprintf(buf, PAGE_SIZE, "%d\n", config->wceis);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001285}
1286
1287static ssize_t rndis_wceis_store(struct device *dev,
1288 struct device_attribute *attr, const char *buf, size_t size)
1289{
1290 struct android_usb_function *f = dev_get_drvdata(dev);
1291 struct rndis_function_config *config = f->config;
1292 int value;
1293
1294 if (sscanf(buf, "%d", &value) == 1) {
1295 config->wceis = value;
1296 return size;
1297 }
1298 return -EINVAL;
1299}
1300
1301static DEVICE_ATTR(wceis, S_IRUGO | S_IWUSR, rndis_wceis_show,
1302 rndis_wceis_store);
1303
1304static ssize_t rndis_ethaddr_show(struct device *dev,
1305 struct device_attribute *attr, char *buf)
1306{
1307 struct android_usb_function *f = dev_get_drvdata(dev);
1308 struct rndis_function_config *rndis = f->config;
Steve Mucklef132c6c2012-06-06 18:30:57 -07001309
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301310 return snprintf(buf, PAGE_SIZE, "%02x:%02x:%02x:%02x:%02x:%02x\n",
Benoit Goby1e8ce152011-12-12 13:01:23 -08001311 rndis->ethaddr[0], rndis->ethaddr[1], rndis->ethaddr[2],
1312 rndis->ethaddr[3], rndis->ethaddr[4], rndis->ethaddr[5]);
1313}
1314
1315static ssize_t rndis_ethaddr_store(struct device *dev,
1316 struct device_attribute *attr, const char *buf, size_t size)
1317{
1318 struct android_usb_function *f = dev_get_drvdata(dev);
1319 struct rndis_function_config *rndis = f->config;
1320
1321 if (sscanf(buf, "%02x:%02x:%02x:%02x:%02x:%02x\n",
1322 (int *)&rndis->ethaddr[0], (int *)&rndis->ethaddr[1],
1323 (int *)&rndis->ethaddr[2], (int *)&rndis->ethaddr[3],
1324 (int *)&rndis->ethaddr[4], (int *)&rndis->ethaddr[5]) == 6)
1325 return size;
1326 return -EINVAL;
1327}
1328
1329static DEVICE_ATTR(ethaddr, S_IRUGO | S_IWUSR, rndis_ethaddr_show,
1330 rndis_ethaddr_store);
1331
1332static ssize_t rndis_vendorID_show(struct device *dev,
1333 struct device_attribute *attr, char *buf)
1334{
1335 struct android_usb_function *f = dev_get_drvdata(dev);
1336 struct rndis_function_config *config = f->config;
Steve Mucklef132c6c2012-06-06 18:30:57 -07001337
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301338 return snprintf(buf, PAGE_SIZE, "%04x\n", config->vendorID);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001339}
1340
1341static ssize_t rndis_vendorID_store(struct device *dev,
1342 struct device_attribute *attr, const char *buf, size_t size)
1343{
1344 struct android_usb_function *f = dev_get_drvdata(dev);
1345 struct rndis_function_config *config = f->config;
1346 int value;
1347
1348 if (sscanf(buf, "%04x", &value) == 1) {
1349 config->vendorID = value;
1350 return size;
1351 }
1352 return -EINVAL;
1353}
1354
1355static DEVICE_ATTR(vendorID, S_IRUGO | S_IWUSR, rndis_vendorID_show,
1356 rndis_vendorID_store);
1357
Ofir Cohenaef90b72012-07-31 12:37:04 +02001358static ssize_t rndis_max_pkt_per_xfer_show(struct device *dev,
1359 struct device_attribute *attr, char *buf)
1360{
1361 struct android_usb_function *f = dev_get_drvdata(dev);
1362 struct rndis_function_config *config = f->config;
1363 return snprintf(buf, PAGE_SIZE, "%d\n", config->max_pkt_per_xfer);
1364}
1365
1366static ssize_t rndis_max_pkt_per_xfer_store(struct device *dev,
1367 struct device_attribute *attr, const char *buf, size_t size)
1368{
1369 struct android_usb_function *f = dev_get_drvdata(dev);
1370 struct rndis_function_config *config = f->config;
1371 int value;
1372
1373 if (sscanf(buf, "%d", &value) == 1) {
1374 config->max_pkt_per_xfer = value;
1375 return size;
1376 }
1377 return -EINVAL;
1378}
1379
1380static DEVICE_ATTR(max_pkt_per_xfer, S_IRUGO | S_IWUSR,
1381 rndis_max_pkt_per_xfer_show,
1382 rndis_max_pkt_per_xfer_store);
1383
Benoit Goby1e8ce152011-12-12 13:01:23 -08001384static struct device_attribute *rndis_function_attributes[] = {
1385 &dev_attr_manufacturer,
1386 &dev_attr_wceis,
1387 &dev_attr_ethaddr,
1388 &dev_attr_vendorID,
Ofir Cohenaef90b72012-07-31 12:37:04 +02001389 &dev_attr_max_pkt_per_xfer,
Benoit Goby1e8ce152011-12-12 13:01:23 -08001390 NULL
1391};
1392
1393static struct android_usb_function rndis_function = {
1394 .name = "rndis",
1395 .init = rndis_function_init,
1396 .cleanup = rndis_function_cleanup,
1397 .bind_config = rndis_function_bind_config,
1398 .unbind_config = rndis_function_unbind_config,
1399 .attributes = rndis_function_attributes,
1400};
1401
Ofir Cohenaef90b72012-07-31 12:37:04 +02001402static struct android_usb_function rndis_qc_function = {
1403 .name = "rndis_qc",
1404 .init = rndis_qc_function_init,
1405 .cleanup = rndis_qc_function_cleanup,
1406 .bind_config = rndis_qc_function_bind_config,
1407 .unbind_config = rndis_qc_function_unbind_config,
1408 .attributes = rndis_function_attributes,
1409};
Benoit Goby1e8ce152011-12-12 13:01:23 -08001410
Anna Perelf9d01552012-11-20 15:56:32 +02001411static int ecm_function_bind_config(struct android_usb_function *f,
1412 struct usb_configuration *c)
1413{
1414 int ret;
1415 struct ecm_function_config *ecm = f->config;
1416
1417 if (!ecm) {
1418 pr_err("%s: ecm_pdata\n", __func__);
1419 return -EINVAL;
1420 }
1421
1422 pr_info("%s MAC: %02X:%02X:%02X:%02X:%02X:%02X\n", __func__,
1423 ecm->ethaddr[0], ecm->ethaddr[1], ecm->ethaddr[2],
1424 ecm->ethaddr[3], ecm->ethaddr[4], ecm->ethaddr[5]);
1425
1426 ret = gether_setup_name(c->cdev->gadget, ecm->ethaddr, "ecm");
1427 if (ret) {
1428 pr_err("%s: gether_setup failed\n", __func__);
1429 return ret;
1430 }
1431
1432 ret = ecm_bind_config(c, ecm->ethaddr);
1433 if (ret) {
1434 pr_err("%s: ecm_bind_config failed\n", __func__);
1435 gether_cleanup();
1436 }
1437 return ret;
1438}
1439
1440static void ecm_function_unbind_config(struct android_usb_function *f,
1441 struct usb_configuration *c)
1442{
1443 gether_cleanup();
1444}
1445
1446static struct android_usb_function ecm_function = {
1447 .name = "ecm",
1448 .init = ecm_function_init,
1449 .cleanup = ecm_function_cleanup,
1450 .bind_config = ecm_function_bind_config,
1451 .unbind_config = ecm_function_unbind_config,
1452 .attributes = ecm_function_attributes,
1453};
1454
Benoit Goby1e8ce152011-12-12 13:01:23 -08001455struct mass_storage_function_config {
1456 struct fsg_config fsg;
1457 struct fsg_common *common;
1458};
1459
1460static int mass_storage_function_init(struct android_usb_function *f,
1461 struct usb_composite_dev *cdev)
1462{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001463 struct android_dev *dev = cdev_to_android_dev(cdev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001464 struct mass_storage_function_config *config;
1465 struct fsg_common *common;
1466 int err;
Rajkumar Raghupathyc9cb2052012-04-26 13:14:10 +05301467 int i;
1468 const char *name[2];
Benoit Goby1e8ce152011-12-12 13:01:23 -08001469
1470 config = kzalloc(sizeof(struct mass_storage_function_config),
1471 GFP_KERNEL);
1472 if (!config)
1473 return -ENOMEM;
1474
1475 config->fsg.nluns = 1;
Rajkumar Raghupathyc9cb2052012-04-26 13:14:10 +05301476 name[0] = "lun";
Pavankumar Kondeti2043e302012-07-19 08:54:04 +05301477 if (dev->pdata && dev->pdata->cdrom) {
Rajkumar Raghupathyc9cb2052012-04-26 13:14:10 +05301478 config->fsg.nluns = 2;
1479 config->fsg.luns[1].cdrom = 1;
1480 config->fsg.luns[1].ro = 1;
Rajkumar Raghupathy39595002012-08-24 16:34:03 +05301481 config->fsg.luns[1].removable = 0;
Rajkumar Raghupathyc9cb2052012-04-26 13:14:10 +05301482 name[1] = "lun0";
1483 }
1484
Benoit Goby1e8ce152011-12-12 13:01:23 -08001485 config->fsg.luns[0].removable = 1;
1486
1487 common = fsg_common_init(NULL, cdev, &config->fsg);
1488 if (IS_ERR(common)) {
1489 kfree(config);
1490 return PTR_ERR(common);
1491 }
1492
Rajkumar Raghupathyc9cb2052012-04-26 13:14:10 +05301493 for (i = 0; i < config->fsg.nluns; i++) {
1494 err = sysfs_create_link(&f->dev->kobj,
1495 &common->luns[i].dev.kobj,
1496 name[i]);
1497 if (err)
1498 goto error;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001499 }
1500
1501 config->common = common;
1502 f->config = config;
1503 return 0;
Rajkumar Raghupathyc9cb2052012-04-26 13:14:10 +05301504error:
1505 for (; i > 0 ; i--)
1506 sysfs_remove_link(&f->dev->kobj, name[i-1]);
1507
1508 fsg_common_release(&common->ref);
1509 kfree(config);
1510 return err;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001511}
1512
1513static void mass_storage_function_cleanup(struct android_usb_function *f)
1514{
1515 kfree(f->config);
1516 f->config = NULL;
1517}
1518
1519static int mass_storage_function_bind_config(struct android_usb_function *f,
1520 struct usb_configuration *c)
1521{
1522 struct mass_storage_function_config *config = f->config;
1523 return fsg_bind_config(c->cdev, c, config->common);
1524}
1525
1526static ssize_t mass_storage_inquiry_show(struct device *dev,
1527 struct device_attribute *attr, char *buf)
1528{
1529 struct android_usb_function *f = dev_get_drvdata(dev);
1530 struct mass_storage_function_config *config = f->config;
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301531 return snprintf(buf, PAGE_SIZE, "%s\n", config->common->inquiry_string);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001532}
1533
1534static ssize_t mass_storage_inquiry_store(struct device *dev,
1535 struct device_attribute *attr, const char *buf, size_t size)
1536{
1537 struct android_usb_function *f = dev_get_drvdata(dev);
1538 struct mass_storage_function_config *config = f->config;
1539 if (size >= sizeof(config->common->inquiry_string))
1540 return -EINVAL;
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301541 if (sscanf(buf, "%28s", config->common->inquiry_string) != 1)
Benoit Goby1e8ce152011-12-12 13:01:23 -08001542 return -EINVAL;
1543 return size;
1544}
1545
1546static DEVICE_ATTR(inquiry_string, S_IRUGO | S_IWUSR,
1547 mass_storage_inquiry_show,
1548 mass_storage_inquiry_store);
1549
1550static struct device_attribute *mass_storage_function_attributes[] = {
1551 &dev_attr_inquiry_string,
1552 NULL
1553};
1554
1555static struct android_usb_function mass_storage_function = {
1556 .name = "mass_storage",
1557 .init = mass_storage_function_init,
1558 .cleanup = mass_storage_function_cleanup,
1559 .bind_config = mass_storage_function_bind_config,
1560 .attributes = mass_storage_function_attributes,
1561};
1562
1563
Benoit Gobycf3fc062011-12-19 14:39:37 -08001564static int accessory_function_init(struct android_usb_function *f,
1565 struct usb_composite_dev *cdev)
1566{
1567 return acc_setup();
1568}
1569
1570static void accessory_function_cleanup(struct android_usb_function *f)
1571{
1572 acc_cleanup();
1573}
1574
1575static int accessory_function_bind_config(struct android_usb_function *f,
1576 struct usb_configuration *c)
1577{
1578 return acc_bind_config(c);
1579}
1580
1581static int accessory_function_ctrlrequest(struct android_usb_function *f,
1582 struct usb_composite_dev *cdev,
1583 const struct usb_ctrlrequest *c)
1584{
1585 return acc_ctrlrequest(cdev, c);
1586}
1587
1588static struct android_usb_function accessory_function = {
1589 .name = "accessory",
1590 .init = accessory_function_init,
1591 .cleanup = accessory_function_cleanup,
1592 .bind_config = accessory_function_bind_config,
1593 .ctrlrequest = accessory_function_ctrlrequest,
1594};
1595
Anna Perel3ee23dd2013-02-26 16:06:40 +02001596#ifdef CONFIG_SND_PCM
Mike Lockwood11874822012-08-27 16:43:53 +05301597static int audio_source_function_init(struct android_usb_function *f,
1598 struct usb_composite_dev *cdev)
1599{
1600 struct audio_source_config *config;
1601
1602 config = kzalloc(sizeof(struct audio_source_config), GFP_KERNEL);
1603 if (!config)
1604 return -ENOMEM;
1605 config->card = -1;
1606 config->device = -1;
1607 f->config = config;
1608 return 0;
1609}
1610
1611static void audio_source_function_cleanup(struct android_usb_function *f)
1612{
1613 kfree(f->config);
1614}
1615
1616static int audio_source_function_bind_config(struct android_usb_function *f,
1617 struct usb_configuration *c)
1618{
1619 struct audio_source_config *config = f->config;
1620
1621 return audio_source_bind_config(c, config);
1622}
1623
1624static void audio_source_function_unbind_config(struct android_usb_function *f,
1625 struct usb_configuration *c)
1626{
1627 struct audio_source_config *config = f->config;
1628
1629 config->card = -1;
1630 config->device = -1;
1631}
1632
1633static ssize_t audio_source_pcm_show(struct device *dev,
1634 struct device_attribute *attr, char *buf)
1635{
1636 struct android_usb_function *f = dev_get_drvdata(dev);
1637 struct audio_source_config *config = f->config;
1638
1639 /* print PCM card and device numbers */
1640 return sprintf(buf, "%d %d\n", config->card, config->device);
1641}
1642
1643static DEVICE_ATTR(pcm, S_IRUGO | S_IWUSR, audio_source_pcm_show, NULL);
1644
1645static struct device_attribute *audio_source_function_attributes[] = {
1646 &dev_attr_pcm,
1647 NULL
1648};
1649
1650static struct android_usb_function audio_source_function = {
1651 .name = "audio_source",
1652 .init = audio_source_function_init,
1653 .cleanup = audio_source_function_cleanup,
1654 .bind_config = audio_source_function_bind_config,
1655 .unbind_config = audio_source_function_unbind_config,
1656 .attributes = audio_source_function_attributes,
1657};
Anna Perel3ee23dd2013-02-26 16:06:40 +02001658#endif
Mike Lockwood11874822012-08-27 16:43:53 +05301659
Pavankumar Kondeti8f6ca4f2012-06-26 09:44:36 +05301660static int android_uasp_connect_cb(bool connect)
1661{
1662 /*
1663 * TODO
1664 * We may have to disable gadget till UASP configfs nodes
1665 * are configured which includes mapping LUN with the
1666 * backing file. It is a fundamental difference between
1667 * f_mass_storage and f_tcp. That means UASP can not be
1668 * in default composition.
1669 *
1670 * For now, assume that UASP configfs nodes are configured
1671 * before enabling android gadget. Or cable should be
1672 * reconnected after mapping the LUN.
1673 *
1674 * Also consider making UASP to respond to Host requests when
1675 * Lun is not mapped.
1676 */
1677 pr_debug("UASP %s\n", connect ? "connect" : "disconnect");
1678
1679 return 0;
1680}
1681
1682static int uasp_function_init(struct android_usb_function *f,
1683 struct usb_composite_dev *cdev)
1684{
1685 return f_tcm_init(&android_uasp_connect_cb);
1686}
1687
1688static void uasp_function_cleanup(struct android_usb_function *f)
1689{
1690 f_tcm_exit();
1691}
1692
1693static int uasp_function_bind_config(struct android_usb_function *f,
1694 struct usb_configuration *c)
1695{
1696 return tcm_bind_config(c);
1697}
1698
1699static struct android_usb_function uasp_function = {
1700 .name = "uasp",
1701 .init = uasp_function_init,
1702 .cleanup = uasp_function_cleanup,
1703 .bind_config = uasp_function_bind_config,
1704};
Benoit Gobycf3fc062011-12-19 14:39:37 -08001705
Benoit Goby1e8ce152011-12-12 13:01:23 -08001706static struct android_usb_function *supported_functions[] = {
Anna Perela8c991d2012-04-09 16:44:46 +03001707 &mbim_function,
Ofir Cohen7b155422012-07-31 13:02:49 +03001708 &ecm_qc_function,
Jack Pham2ec5fdc2012-09-26 10:13:48 -07001709#ifdef CONFIG_SND_PCM
Anna Perel432367a2012-09-20 10:55:32 +03001710 &audio_function,
Jack Pham2ec5fdc2012-09-26 10:13:48 -07001711#endif
Manu Gautam1c8ffd72011-09-02 16:00:49 +05301712 &rmnet_smd_function,
Manu Gautam8e0719b2011-09-26 14:47:55 +05301713 &rmnet_sdio_function,
1714 &rmnet_smd_sdio_function,
Manu Gautam2b0234a2011-09-07 16:47:52 +05301715 &rmnet_function,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001716 &diag_function,
Shimrit Malichia00d7322012-08-05 13:56:28 +03001717 &qdss_function,
Manu Gautama4d993f2011-08-30 18:25:55 +05301718 &serial_function,
Benoit Goby2b6862d2011-12-19 14:38:41 -08001719 &adb_function,
Chiranjeevi Velempatie130fd02011-11-29 05:06:13 +05301720 &ccid_function,
Benoit Goby1e8ce152011-12-12 13:01:23 -08001721 &acm_function,
Benoit Gobyf0fbc482011-12-19 14:37:50 -08001722 &mtp_function,
1723 &ptp_function,
Benoit Goby1e8ce152011-12-12 13:01:23 -08001724 &rndis_function,
Ofir Cohenaef90b72012-07-31 12:37:04 +02001725 &rndis_qc_function,
Anna Perelf9d01552012-11-20 15:56:32 +02001726 &ecm_function,
Benoit Goby1e8ce152011-12-12 13:01:23 -08001727 &mass_storage_function,
Benoit Gobycf3fc062011-12-19 14:39:37 -08001728 &accessory_function,
Anna Perel3ee23dd2013-02-26 16:06:40 +02001729#ifdef CONFIG_SND_PCM
Mike Lockwood11874822012-08-27 16:43:53 +05301730 &audio_source_function,
Anna Perel3ee23dd2013-02-26 16:06:40 +02001731#endif
Pavankumar Kondeti8f6ca4f2012-06-26 09:44:36 +05301732 &uasp_function,
Benoit Goby1e8ce152011-12-12 13:01:23 -08001733 NULL
1734};
1735
Lena Salmand092f2d2012-03-12 17:27:24 +02001736static void android_cleanup_functions(struct android_usb_function **functions)
1737{
1738 struct android_usb_function *f;
1739 struct device_attribute **attrs;
1740 struct device_attribute *attr;
1741
1742 while (*functions) {
1743 f = *functions++;
1744
1745 if (f->dev) {
1746 device_destroy(android_class, f->dev->devt);
1747 kfree(f->dev_name);
1748 } else
1749 continue;
1750
1751 if (f->cleanup)
1752 f->cleanup(f);
1753
1754 attrs = f->attributes;
1755 if (attrs) {
1756 while ((attr = *attrs++))
1757 device_remove_file(f->dev, attr);
1758 }
1759 }
1760}
Benoit Goby1e8ce152011-12-12 13:01:23 -08001761
1762static int android_init_functions(struct android_usb_function **functions,
1763 struct usb_composite_dev *cdev)
1764{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001765 struct android_dev *dev = cdev_to_android_dev(cdev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001766 struct android_usb_function *f;
1767 struct device_attribute **attrs;
1768 struct device_attribute *attr;
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301769 int err = 0;
Lena Salmand092f2d2012-03-12 17:27:24 +02001770 int index = 1; /* index 0 is for android0 device */
Benoit Goby1e8ce152011-12-12 13:01:23 -08001771
1772 for (; (f = *functions++); index++) {
1773 f->dev_name = kasprintf(GFP_KERNEL, "f_%s", f->name);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001774 f->android_dev = NULL;
Lena Salmand092f2d2012-03-12 17:27:24 +02001775 if (!f->dev_name) {
1776 err = -ENOMEM;
1777 goto err_out;
1778 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08001779 f->dev = device_create(android_class, dev->dev,
1780 MKDEV(0, index), f, f->dev_name);
1781 if (IS_ERR(f->dev)) {
1782 pr_err("%s: Failed to create dev %s", __func__,
1783 f->dev_name);
1784 err = PTR_ERR(f->dev);
Lena Salmand092f2d2012-03-12 17:27:24 +02001785 f->dev = NULL;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001786 goto err_create;
1787 }
1788
1789 if (f->init) {
1790 err = f->init(f, cdev);
1791 if (err) {
1792 pr_err("%s: Failed to init %s", __func__,
1793 f->name);
Lena Salmand092f2d2012-03-12 17:27:24 +02001794 goto err_init;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001795 }
1796 }
1797
1798 attrs = f->attributes;
1799 if (attrs) {
1800 while ((attr = *attrs++) && !err)
1801 err = device_create_file(f->dev, attr);
1802 }
1803 if (err) {
1804 pr_err("%s: Failed to create function %s attributes",
1805 __func__, f->name);
Lena Salmand092f2d2012-03-12 17:27:24 +02001806 goto err_attrs;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001807 }
1808 }
1809 return 0;
1810
Lena Salmand092f2d2012-03-12 17:27:24 +02001811err_attrs:
1812 for (attr = *(attrs -= 2); attrs != f->attributes; attr = *(attrs--))
1813 device_remove_file(f->dev, attr);
1814 if (f->cleanup)
1815 f->cleanup(f);
1816err_init:
Benoit Goby1e8ce152011-12-12 13:01:23 -08001817 device_destroy(android_class, f->dev->devt);
1818err_create:
Lena Salmand092f2d2012-03-12 17:27:24 +02001819 f->dev = NULL;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001820 kfree(f->dev_name);
Lena Salmand092f2d2012-03-12 17:27:24 +02001821err_out:
1822 android_cleanup_functions(dev->functions);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001823 return err;
1824}
1825
Benoit Goby1e8ce152011-12-12 13:01:23 -08001826static int
1827android_bind_enabled_functions(struct android_dev *dev,
1828 struct usb_configuration *c)
1829{
Ido Shayevitz68557e32012-11-06 12:40:37 +02001830 struct android_usb_function_holder *f_holder;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001831 struct android_configuration *conf =
1832 container_of(c, struct android_configuration, usb_config);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001833 int ret;
1834
Ido Shayevitz68557e32012-11-06 12:40:37 +02001835 list_for_each_entry(f_holder, &conf->enabled_functions, enabled_list) {
1836 ret = f_holder->f->bind_config(f_holder->f, c);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001837 if (ret) {
Ido Shayevitz68557e32012-11-06 12:40:37 +02001838 pr_err("%s: %s failed", __func__, f_holder->f->name);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001839 return ret;
1840 }
1841 }
1842 return 0;
1843}
1844
1845static void
1846android_unbind_enabled_functions(struct android_dev *dev,
1847 struct usb_configuration *c)
1848{
Ido Shayevitz68557e32012-11-06 12:40:37 +02001849 struct android_usb_function_holder *f_holder;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001850 struct android_configuration *conf =
1851 container_of(c, struct android_configuration, usb_config);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001852
Ido Shayevitz68557e32012-11-06 12:40:37 +02001853 list_for_each_entry(f_holder, &conf->enabled_functions, enabled_list) {
1854 if (f_holder->f->unbind_config)
1855 f_holder->f->unbind_config(f_holder->f, c);
Benoit Goby1e8ce152011-12-12 13:01:23 -08001856 }
1857}
1858
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001859static int android_enable_function(struct android_dev *dev,
1860 struct android_configuration *conf,
1861 char *name)
Benoit Goby1e8ce152011-12-12 13:01:23 -08001862{
1863 struct android_usb_function **functions = dev->functions;
1864 struct android_usb_function *f;
Ido Shayevitz68557e32012-11-06 12:40:37 +02001865 struct android_usb_function_holder *f_holder;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001866 while ((f = *functions++)) {
1867 if (!strcmp(name, f->name)) {
Ido Shayevitz68557e32012-11-06 12:40:37 +02001868 if (f->android_dev && f->android_dev != dev)
1869 pr_err("%s is enabled in other device\n",
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001870 f->name);
1871 else {
Ido Shayevitz68557e32012-11-06 12:40:37 +02001872 f_holder = kzalloc(sizeof(*f_holder),
1873 GFP_KERNEL);
1874 if (!f_holder) {
1875 pr_err("Failed to alloc f_holder\n");
1876 return -ENOMEM;
1877 }
1878
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001879 f->android_dev = dev;
Ido Shayevitz68557e32012-11-06 12:40:37 +02001880 f_holder->f = f;
1881 list_add_tail(&f_holder->enabled_list,
1882 &conf->enabled_functions);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001883 return 0;
1884 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08001885 }
1886 }
1887 return -EINVAL;
1888}
1889
1890/*-------------------------------------------------------------------------*/
1891/* /sys/class/android_usb/android%d/ interface */
1892
Pavankumar Kondeti352396c2011-12-07 13:32:40 +05301893static ssize_t remote_wakeup_show(struct device *pdev,
1894 struct device_attribute *attr, char *buf)
1895{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001896 struct android_dev *dev = dev_get_drvdata(pdev);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001897 struct android_configuration *conf;
1898
1899 /*
1900 * Show the wakeup attribute of the first configuration,
1901 * since all configurations have the same wakeup attribute
1902 */
1903 if (dev->configs_num == 0)
1904 return 0;
1905 conf = list_entry(dev->configs.next,
1906 struct android_configuration,
1907 list_item);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001908
Pavankumar Kondeti352396c2011-12-07 13:32:40 +05301909 return snprintf(buf, PAGE_SIZE, "%d\n",
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001910 !!(conf->usb_config.bmAttributes &
Pavankumar Kondeti352396c2011-12-07 13:32:40 +05301911 USB_CONFIG_ATT_WAKEUP));
1912}
1913
1914static ssize_t remote_wakeup_store(struct device *pdev,
1915 struct device_attribute *attr, const char *buff, size_t size)
1916{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001917 struct android_dev *dev = dev_get_drvdata(pdev);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001918 struct android_configuration *conf;
Pavankumar Kondeti352396c2011-12-07 13:32:40 +05301919 int enable = 0;
1920
1921 sscanf(buff, "%d", &enable);
1922
1923 pr_debug("android_usb: %s remote wakeup\n",
1924 enable ? "enabling" : "disabling");
1925
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001926 list_for_each_entry(conf, &dev->configs, list_item)
1927 if (enable)
1928 conf->usb_config.bmAttributes |=
1929 USB_CONFIG_ATT_WAKEUP;
1930 else
1931 conf->usb_config.bmAttributes &=
1932 ~USB_CONFIG_ATT_WAKEUP;
Pavankumar Kondeti352396c2011-12-07 13:32:40 +05301933
1934 return size;
1935}
1936
Benoit Goby1e8ce152011-12-12 13:01:23 -08001937static ssize_t
1938functions_show(struct device *pdev, struct device_attribute *attr, char *buf)
1939{
1940 struct android_dev *dev = dev_get_drvdata(pdev);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001941 struct android_configuration *conf;
Ido Shayevitz68557e32012-11-06 12:40:37 +02001942 struct android_usb_function_holder *f_holder;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001943 char *buff = buf;
1944
1945 mutex_lock(&dev->mutex);
1946
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001947 list_for_each_entry(conf, &dev->configs, list_item) {
1948 if (buff != buf)
1949 *(buff-1) = ':';
Ido Shayevitz68557e32012-11-06 12:40:37 +02001950 list_for_each_entry(f_holder, &conf->enabled_functions,
1951 enabled_list)
1952 buff += snprintf(buff, PAGE_SIZE, "%s,",
1953 f_holder->f->name);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001954 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08001955
1956 mutex_unlock(&dev->mutex);
1957
1958 if (buff != buf)
1959 *(buff-1) = '\n';
1960 return buff - buf;
1961}
1962
1963static ssize_t
1964functions_store(struct device *pdev, struct device_attribute *attr,
1965 const char *buff, size_t size)
1966{
1967 struct android_dev *dev = dev_get_drvdata(pdev);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001968 struct list_head *curr_conf = &dev->configs;
1969 struct android_configuration *conf;
1970 char *conf_str;
Ido Shayevitz68557e32012-11-06 12:40:37 +02001971 struct android_usb_function_holder *f_holder;
Benoit Goby1e8ce152011-12-12 13:01:23 -08001972 char *name;
1973 char buf[256], *b;
1974 int err;
1975
1976 mutex_lock(&dev->mutex);
1977
1978 if (dev->enabled) {
1979 mutex_unlock(&dev->mutex);
1980 return -EBUSY;
1981 }
1982
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001983 /* Clear previous enabled list */
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001984 list_for_each_entry(conf, &dev->configs, list_item) {
Ido Shayevitz68557e32012-11-06 12:40:37 +02001985 while (conf->enabled_functions.next !=
1986 &conf->enabled_functions) {
1987 f_holder = list_entry(conf->enabled_functions.next,
1988 typeof(*f_holder),
1989 enabled_list);
1990 f_holder->f->android_dev = NULL;
1991 list_del(&f_holder->enabled_list);
1992 kfree(f_holder);
1993 }
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03001994 INIT_LIST_HEAD(&conf->enabled_functions);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03001995 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08001996
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05301997 strlcpy(buf, buff, sizeof(buf));
Benoit Goby1e8ce152011-12-12 13:01:23 -08001998 b = strim(buf);
1999
2000 while (b) {
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002001 conf_str = strsep(&b, ":");
2002 if (conf_str) {
2003 /* If the next not equal to the head, take it */
2004 if (curr_conf->next != &dev->configs)
2005 conf = list_entry(curr_conf->next,
2006 struct android_configuration,
2007 list_item);
2008 else
2009 conf = alloc_android_config(dev);
2010
2011 curr_conf = curr_conf->next;
Benoit Goby1e8ce152011-12-12 13:01:23 -08002012 }
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002013
2014 while (conf_str) {
2015 name = strsep(&conf_str, ",");
2016 if (name) {
2017 err = android_enable_function(dev, conf, name);
2018 if (err)
2019 pr_err("android_usb: Cannot enable %s",
2020 name);
2021 }
2022 }
2023 }
2024
2025 /* Free uneeded configurations if exists */
2026 while (curr_conf->next != &dev->configs) {
2027 conf = list_entry(curr_conf->next,
2028 struct android_configuration, list_item);
2029 free_android_config(dev, conf);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002030 }
2031
2032 mutex_unlock(&dev->mutex);
2033
2034 return size;
2035}
2036
2037static ssize_t enable_show(struct device *pdev, struct device_attribute *attr,
2038 char *buf)
2039{
2040 struct android_dev *dev = dev_get_drvdata(pdev);
Steve Mucklef132c6c2012-06-06 18:30:57 -07002041
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05302042 return snprintf(buf, PAGE_SIZE, "%d\n", dev->enabled);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002043}
2044
2045static ssize_t enable_store(struct device *pdev, struct device_attribute *attr,
2046 const char *buff, size_t size)
2047{
2048 struct android_dev *dev = dev_get_drvdata(pdev);
2049 struct usb_composite_dev *cdev = dev->cdev;
Ido Shayevitz68557e32012-11-06 12:40:37 +02002050 struct android_usb_function_holder *f_holder;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002051 struct android_configuration *conf;
Benoit Goby1e8ce152011-12-12 13:01:23 -08002052 int enabled = 0;
Rajkumar Raghupathya79363b2013-01-02 19:08:49 +05302053 bool audio_enabled = false;
Pavankumar Kondeti19d8bc62013-02-28 10:19:40 +05302054 static DEFINE_RATELIMIT_STATE(rl, 10*HZ, 1);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002055
Benoit Gobycf3fc062011-12-19 14:39:37 -08002056 if (!cdev)
2057 return -ENODEV;
2058
Benoit Goby1e8ce152011-12-12 13:01:23 -08002059 mutex_lock(&dev->mutex);
2060
2061 sscanf(buff, "%d", &enabled);
2062 if (enabled && !dev->enabled) {
Benoit Goby1e8ce152011-12-12 13:01:23 -08002063 /*
2064 * Update values in composite driver's copy of
2065 * device descriptor.
2066 */
2067 cdev->desc.idVendor = device_desc.idVendor;
2068 cdev->desc.idProduct = device_desc.idProduct;
2069 cdev->desc.bcdDevice = device_desc.bcdDevice;
2070 cdev->desc.bDeviceClass = device_desc.bDeviceClass;
2071 cdev->desc.bDeviceSubClass = device_desc.bDeviceSubClass;
2072 cdev->desc.bDeviceProtocol = device_desc.bDeviceProtocol;
Rajkumar Raghupathya79363b2013-01-02 19:08:49 +05302073
2074 /* Audio dock accessory is unable to enumerate device if
2075 * pull-up is enabled immediately. The enumeration is
2076 * reliable with 100 msec delay.
2077 */
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002078 list_for_each_entry(conf, &dev->configs, list_item)
Ido Shayevitz68557e32012-11-06 12:40:37 +02002079 list_for_each_entry(f_holder, &conf->enabled_functions,
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002080 enabled_list) {
Ido Shayevitz68557e32012-11-06 12:40:37 +02002081 if (f_holder->f->enable)
2082 f_holder->f->enable(f_holder->f);
Rajkumar Raghupathya79363b2013-01-02 19:08:49 +05302083 if (!strncmp(f_holder->f->name,
2084 "audio_source", 12))
2085 audio_enabled = true;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002086 }
Rajkumar Raghupathya79363b2013-01-02 19:08:49 +05302087 if (audio_enabled)
2088 msleep(100);
Benoit Goby80ba14d2012-03-19 18:56:52 -07002089 android_enable(dev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002090 dev->enabled = true;
2091 } else if (!enabled && dev->enabled) {
Benoit Goby80ba14d2012-03-19 18:56:52 -07002092 android_disable(dev);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002093 list_for_each_entry(conf, &dev->configs, list_item)
Ido Shayevitz68557e32012-11-06 12:40:37 +02002094 list_for_each_entry(f_holder, &conf->enabled_functions,
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002095 enabled_list) {
Ido Shayevitz68557e32012-11-06 12:40:37 +02002096 if (f_holder->f->disable)
2097 f_holder->f->disable(f_holder->f);
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002098 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08002099 dev->enabled = false;
Pavankumar Kondeti19d8bc62013-02-28 10:19:40 +05302100 } else if (__ratelimit(&rl)) {
Benoit Goby1e8ce152011-12-12 13:01:23 -08002101 pr_err("android_usb: already %s\n",
2102 dev->enabled ? "enabled" : "disabled");
2103 }
2104
2105 mutex_unlock(&dev->mutex);
Steve Mucklef132c6c2012-06-06 18:30:57 -07002106
Benoit Gobyaab96812011-04-19 20:37:33 -07002107 return size;
2108}
2109
Ofir Cohen94213a72012-05-03 14:26:32 +03002110static ssize_t pm_qos_show(struct device *pdev,
2111 struct device_attribute *attr, char *buf)
2112{
2113 struct android_dev *dev = dev_get_drvdata(pdev);
2114
2115 return snprintf(buf, PAGE_SIZE, "%s\n", dev->pm_qos);
2116}
2117
2118static ssize_t pm_qos_store(struct device *pdev,
2119 struct device_attribute *attr,
2120 const char *buff, size_t size)
2121{
2122 struct android_dev *dev = dev_get_drvdata(pdev);
2123
2124 strlcpy(dev->pm_qos, buff, sizeof(dev->pm_qos));
2125
Benoit Goby1e8ce152011-12-12 13:01:23 -08002126 return size;
2127}
2128
2129static ssize_t state_show(struct device *pdev, struct device_attribute *attr,
2130 char *buf)
2131{
2132 struct android_dev *dev = dev_get_drvdata(pdev);
2133 struct usb_composite_dev *cdev = dev->cdev;
2134 char *state = "DISCONNECTED";
2135 unsigned long flags;
2136
2137 if (!cdev)
2138 goto out;
2139
2140 spin_lock_irqsave(&cdev->lock, flags);
2141 if (cdev->config)
2142 state = "CONFIGURED";
2143 else if (dev->connected)
2144 state = "CONNECTED";
2145 spin_unlock_irqrestore(&cdev->lock, flags);
2146out:
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05302147 return snprintf(buf, PAGE_SIZE, "%s\n", state);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002148}
2149
2150#define DESCRIPTOR_ATTR(field, format_string) \
2151static ssize_t \
2152field ## _show(struct device *dev, struct device_attribute *attr, \
2153 char *buf) \
2154{ \
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05302155 return snprintf(buf, PAGE_SIZE, \
2156 format_string, device_desc.field); \
Benoit Goby1e8ce152011-12-12 13:01:23 -08002157} \
2158static ssize_t \
2159field ## _store(struct device *dev, struct device_attribute *attr, \
2160 const char *buf, size_t size) \
2161{ \
2162 int value; \
2163 if (sscanf(buf, format_string, &value) == 1) { \
2164 device_desc.field = value; \
2165 return size; \
2166 } \
2167 return -1; \
2168} \
2169static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, field ## _show, field ## _store);
2170
2171#define DESCRIPTOR_STRING_ATTR(field, buffer) \
2172static ssize_t \
2173field ## _show(struct device *dev, struct device_attribute *attr, \
2174 char *buf) \
2175{ \
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05302176 return snprintf(buf, PAGE_SIZE, "%s", buffer); \
Benoit Goby1e8ce152011-12-12 13:01:23 -08002177} \
2178static ssize_t \
2179field ## _store(struct device *dev, struct device_attribute *attr, \
2180 const char *buf, size_t size) \
2181{ \
2182 if (size >= sizeof(buffer)) \
2183 return -EINVAL; \
Pavankumar Kondetie02a51a2012-06-20 08:52:37 +05302184 strlcpy(buffer, buf, sizeof(buffer)); \
2185 strim(buffer); \
Pavankumar Kondeti4c22c102012-06-15 10:59:05 +05302186 return size; \
Benoit Goby1e8ce152011-12-12 13:01:23 -08002187} \
2188static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, field ## _show, field ## _store);
2189
2190
2191DESCRIPTOR_ATTR(idVendor, "%04x\n")
2192DESCRIPTOR_ATTR(idProduct, "%04x\n")
2193DESCRIPTOR_ATTR(bcdDevice, "%04x\n")
2194DESCRIPTOR_ATTR(bDeviceClass, "%d\n")
2195DESCRIPTOR_ATTR(bDeviceSubClass, "%d\n")
2196DESCRIPTOR_ATTR(bDeviceProtocol, "%d\n")
2197DESCRIPTOR_STRING_ATTR(iManufacturer, manufacturer_string)
2198DESCRIPTOR_STRING_ATTR(iProduct, product_string)
2199DESCRIPTOR_STRING_ATTR(iSerial, serial_string)
2200
2201static DEVICE_ATTR(functions, S_IRUGO | S_IWUSR, functions_show,
2202 functions_store);
2203static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, enable_show, enable_store);
Ofir Cohen94213a72012-05-03 14:26:32 +03002204static DEVICE_ATTR(pm_qos, S_IRUGO | S_IWUSR,
2205 pm_qos_show, pm_qos_store);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002206static DEVICE_ATTR(state, S_IRUGO, state_show, NULL);
Pavankumar Kondeti352396c2011-12-07 13:32:40 +05302207static DEVICE_ATTR(remote_wakeup, S_IRUGO | S_IWUSR,
2208 remote_wakeup_show, remote_wakeup_store);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002209
2210static struct device_attribute *android_usb_attributes[] = {
2211 &dev_attr_idVendor,
2212 &dev_attr_idProduct,
2213 &dev_attr_bcdDevice,
2214 &dev_attr_bDeviceClass,
2215 &dev_attr_bDeviceSubClass,
2216 &dev_attr_bDeviceProtocol,
2217 &dev_attr_iManufacturer,
2218 &dev_attr_iProduct,
2219 &dev_attr_iSerial,
2220 &dev_attr_functions,
2221 &dev_attr_enable,
Ofir Cohen94213a72012-05-03 14:26:32 +03002222 &dev_attr_pm_qos,
Benoit Goby1e8ce152011-12-12 13:01:23 -08002223 &dev_attr_state,
Pavankumar Kondeti352396c2011-12-07 13:32:40 +05302224 &dev_attr_remote_wakeup,
Benoit Goby1e8ce152011-12-12 13:01:23 -08002225 NULL
2226};
2227
2228/*-------------------------------------------------------------------------*/
2229/* Composite driver */
2230
2231static int android_bind_config(struct usb_configuration *c)
2232{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002233 struct android_dev *dev = cdev_to_android_dev(c->cdev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002234 int ret = 0;
2235
2236 ret = android_bind_enabled_functions(dev, c);
2237 if (ret)
2238 return ret;
2239
2240 return 0;
2241}
2242
2243static void android_unbind_config(struct usb_configuration *c)
2244{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002245 struct android_dev *dev = cdev_to_android_dev(c->cdev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002246
2247 android_unbind_enabled_functions(dev, c);
2248}
2249
2250static int android_bind(struct usb_composite_dev *cdev)
2251{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002252 struct android_dev *dev;
Benoit Goby1e8ce152011-12-12 13:01:23 -08002253 struct usb_gadget *gadget = cdev->gadget;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002254 struct android_configuration *conf;
Benoit Goby1e8ce152011-12-12 13:01:23 -08002255 int gcnum, id, ret;
2256
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002257 /* Bind to the last android_dev that was probed */
2258 dev = list_entry(android_dev_list.prev, struct android_dev, list_item);
2259
2260 dev->cdev = cdev;
2261
Benoit Goby1e8ce152011-12-12 13:01:23 -08002262 /*
2263 * Start disconnected. Userspace will connect the gadget once
2264 * it is done configuring the functions.
2265 */
2266 usb_gadget_disconnect(gadget);
2267
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002268 /* Init the supported functions only once, on the first android_dev */
2269 if (android_dev_count == 1) {
2270 ret = android_init_functions(dev->functions, cdev);
2271 if (ret)
2272 return ret;
2273 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08002274
2275 /* Allocate string descriptor numbers ... note that string
2276 * contents can be overridden by the composite_dev glue.
2277 */
2278 id = usb_string_id(cdev);
2279 if (id < 0)
2280 return id;
2281 strings_dev[STRING_MANUFACTURER_IDX].id = id;
2282 device_desc.iManufacturer = id;
2283
2284 id = usb_string_id(cdev);
2285 if (id < 0)
2286 return id;
2287 strings_dev[STRING_PRODUCT_IDX].id = id;
2288 device_desc.iProduct = id;
2289
2290 /* Default strings - should be updated by userspace */
Rajkumar Raghupathy42ec8da2011-10-21 18:58:53 +05302291 strlcpy(manufacturer_string, "Android",
2292 sizeof(manufacturer_string) - 1);
2293 strlcpy(product_string, "Android", sizeof(product_string) - 1);
2294 strlcpy(serial_string, "0123456789ABCDEF", sizeof(serial_string) - 1);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002295
2296 id = usb_string_id(cdev);
2297 if (id < 0)
2298 return id;
2299 strings_dev[STRING_SERIAL_IDX].id = id;
2300 device_desc.iSerialNumber = id;
2301
Vijayavardhan Vennapusa56e60522012-02-16 15:40:16 +05302302 if (gadget_is_otg(cdev->gadget))
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002303 list_for_each_entry(conf, &dev->configs, list_item)
2304 conf->usb_config.descriptors = otg_desc;
Vijayavardhan Vennapusa56e60522012-02-16 15:40:16 +05302305
Benoit Goby1e8ce152011-12-12 13:01:23 -08002306 gcnum = usb_gadget_controller_number(gadget);
2307 if (gcnum >= 0)
2308 device_desc.bcdDevice = cpu_to_le16(0x0200 + gcnum);
2309 else {
2310 pr_warning("%s: controller '%s' not recognized\n",
2311 longname, gadget->name);
2312 device_desc.bcdDevice = __constant_cpu_to_le16(0x9999);
2313 }
2314
Benoit Goby1e8ce152011-12-12 13:01:23 -08002315 return 0;
2316}
2317
2318static int android_usb_unbind(struct usb_composite_dev *cdev)
2319{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002320 struct android_dev *dev = cdev_to_android_dev(cdev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002321
Lena Salmand092f2d2012-03-12 17:27:24 +02002322 manufacturer_string[0] = '\0';
2323 product_string[0] = '\0';
2324 serial_string[0] = '0';
Benoit Goby1e8ce152011-12-12 13:01:23 -08002325 cancel_work_sync(&dev->work);
2326 android_cleanup_functions(dev->functions);
2327 return 0;
2328}
2329
2330static struct usb_composite_driver android_usb_driver = {
2331 .name = "android_usb",
2332 .dev = &device_desc,
2333 .strings = dev_strings,
2334 .unbind = android_usb_unbind,
Tatyana Brokhman3ba28902011-06-29 16:41:49 +03002335 .max_speed = USB_SPEED_SUPER
Benoit Goby1e8ce152011-12-12 13:01:23 -08002336};
2337
2338static int
2339android_setup(struct usb_gadget *gadget, const struct usb_ctrlrequest *c)
2340{
Benoit Goby1e8ce152011-12-12 13:01:23 -08002341 struct usb_composite_dev *cdev = get_gadget_data(gadget);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002342 struct android_dev *dev = cdev_to_android_dev(cdev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002343 struct usb_request *req = cdev->req;
2344 struct android_usb_function *f;
Ido Shayevitz68557e32012-11-06 12:40:37 +02002345 struct android_usb_function_holder *f_holder;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002346 struct android_configuration *conf;
Benoit Goby1e8ce152011-12-12 13:01:23 -08002347 int value = -EOPNOTSUPP;
2348 unsigned long flags;
2349
2350 req->zero = 0;
2351 req->complete = composite_setup_complete;
2352 req->length = 0;
2353 gadget->ep0->driver_data = cdev;
2354
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002355 list_for_each_entry(conf, &dev->configs, list_item)
Ido Shayevitz68557e32012-11-06 12:40:37 +02002356 list_for_each_entry(f_holder,
2357 &conf->enabled_functions,
2358 enabled_list) {
2359 f = f_holder->f;
2360 if (f->ctrlrequest) {
2361 value = f->ctrlrequest(f, cdev, c);
2362 if (value >= 0)
2363 break;
2364 }
2365 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08002366
Benoit Gobycf3fc062011-12-19 14:39:37 -08002367 /* Special case the accessory function.
2368 * It needs to handle control requests before it is enabled.
2369 */
2370 if (value < 0)
2371 value = acc_ctrlrequest(cdev, c);
2372
Benoit Goby1e8ce152011-12-12 13:01:23 -08002373 if (value < 0)
2374 value = composite_setup(gadget, c);
2375
2376 spin_lock_irqsave(&cdev->lock, flags);
2377 if (!dev->connected) {
2378 dev->connected = 1;
2379 schedule_work(&dev->work);
2380 } else if (c->bRequest == USB_REQ_SET_CONFIGURATION &&
2381 cdev->config) {
2382 schedule_work(&dev->work);
2383 }
2384 spin_unlock_irqrestore(&cdev->lock, flags);
2385
2386 return value;
2387}
2388
2389static void android_disconnect(struct usb_gadget *gadget)
2390{
Benoit Goby1e8ce152011-12-12 13:01:23 -08002391 struct usb_composite_dev *cdev = get_gadget_data(gadget);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002392 struct android_dev *dev = cdev_to_android_dev(cdev);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002393 unsigned long flags;
2394
2395 composite_disconnect(gadget);
Mike Lockwoode7558bb2012-08-27 16:23:48 +05302396 /* accessory HID support can be active while the
2397 accessory function is not actually enabled,
2398 so we need to inform it when we are disconnected.
2399 */
2400 acc_disconnect();
Benoit Goby1e8ce152011-12-12 13:01:23 -08002401
2402 spin_lock_irqsave(&cdev->lock, flags);
2403 dev->connected = 0;
2404 schedule_work(&dev->work);
2405 spin_unlock_irqrestore(&cdev->lock, flags);
2406}
2407
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +02002408static void android_suspend(struct usb_gadget *gadget)
2409{
2410 struct usb_composite_dev *cdev = get_gadget_data(gadget);
2411 struct android_dev *dev = cdev_to_android_dev(cdev);
2412 unsigned long flags;
2413
2414 spin_lock_irqsave(&cdev->lock, flags);
2415 dev->suspended = 1;
2416 schedule_work(&dev->work);
2417 spin_unlock_irqrestore(&cdev->lock, flags);
2418
2419 composite_suspend(gadget);
2420}
2421
2422static void android_resume(struct usb_gadget *gadget)
2423{
2424 struct usb_composite_dev *cdev = get_gadget_data(gadget);
2425 struct android_dev *dev = cdev_to_android_dev(cdev);
2426 unsigned long flags;
2427
2428 spin_lock_irqsave(&cdev->lock, flags);
2429 dev->suspended = 0;
2430 schedule_work(&dev->work);
2431 spin_unlock_irqrestore(&cdev->lock, flags);
2432
2433 composite_resume(gadget);
2434}
2435
2436
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002437static int android_create_device(struct android_dev *dev, u8 usb_core_id)
Benoit Goby1e8ce152011-12-12 13:01:23 -08002438{
2439 struct device_attribute **attrs = android_usb_attributes;
2440 struct device_attribute *attr;
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002441 char device_node_name[ANDROID_DEVICE_NODE_NAME_LENGTH];
Benoit Goby1e8ce152011-12-12 13:01:23 -08002442 int err;
2443
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002444 /*
2445 * The primary usb core should always have usb_core_id=0, since
2446 * Android user space is currently interested in android0 events.
2447 */
2448 snprintf(device_node_name, ANDROID_DEVICE_NODE_NAME_LENGTH,
2449 "android%d", usb_core_id);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002450 dev->dev = device_create(android_class, NULL,
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002451 MKDEV(0, 0), NULL, device_node_name);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002452 if (IS_ERR(dev->dev))
2453 return PTR_ERR(dev->dev);
2454
2455 dev_set_drvdata(dev->dev, dev);
2456
2457 while ((attr = *attrs++)) {
2458 err = device_create_file(dev->dev, attr);
2459 if (err) {
2460 device_destroy(android_class, dev->dev->devt);
2461 return err;
2462 }
2463 }
2464 return 0;
2465}
2466
Rajkumar Raghupathya1df77e2012-01-19 17:45:55 +05302467static void android_destroy_device(struct android_dev *dev)
Benoit Goby1e8ce152011-12-12 13:01:23 -08002468{
Rajkumar Raghupathya1df77e2012-01-19 17:45:55 +05302469 struct device_attribute **attrs = android_usb_attributes;
2470 struct device_attribute *attr;
2471
2472 while ((attr = *attrs++))
2473 device_remove_file(dev->dev, attr);
2474 device_destroy(android_class, dev->dev->devt);
2475}
2476
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002477static struct android_dev *cdev_to_android_dev(struct usb_composite_dev *cdev)
2478{
2479 struct android_dev *dev = NULL;
2480
2481 /* Find the android dev from the list */
2482 list_for_each_entry(dev, &android_dev_list, list_item) {
2483 if (dev->cdev == cdev)
2484 break;
2485 }
2486
2487 return dev;
2488}
2489
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002490static struct android_configuration *alloc_android_config
2491 (struct android_dev *dev)
2492{
2493 struct android_configuration *conf;
2494
2495 conf = kzalloc(sizeof(*conf), GFP_KERNEL);
2496 if (!conf) {
2497 pr_err("%s(): Failed to alloc memory for android conf\n",
2498 __func__);
2499 return ERR_PTR(-ENOMEM);
2500 }
2501
2502 dev->configs_num++;
2503 conf->usb_config.label = dev->name;
2504 conf->usb_config.unbind = android_unbind_config;
2505 conf->usb_config.bConfigurationValue = dev->configs_num;
2506
2507 INIT_LIST_HEAD(&conf->enabled_functions);
2508
2509 list_add_tail(&conf->list_item, &dev->configs);
2510
2511 return conf;
2512}
2513
2514static void free_android_config(struct android_dev *dev,
2515 struct android_configuration *conf)
2516{
2517 list_del(&conf->list_item);
2518 dev->configs_num--;
2519 kfree(conf);
2520}
2521
Manu Gautam43c61a12012-08-22 17:09:37 -07002522static int usb_diag_update_pid_and_serial_num(u32 pid, const char *snum)
2523{
2524 struct dload_struct local_diag_dload = { 0 };
2525 int *src, *dst, i;
2526
2527 if (!diag_dload) {
2528 pr_debug("%s: unable to update PID and serial_no\n", __func__);
2529 return -ENODEV;
2530 }
2531
2532 pr_debug("%s: dload:%p pid:%x serial_num:%s\n",
2533 __func__, diag_dload, pid, snum);
2534
2535 /* update pid */
2536 local_diag_dload.magic_struct.pid = PID_MAGIC_ID;
2537 local_diag_dload.pid = pid;
2538
2539 /* update serial number */
2540 if (!snum) {
2541 local_diag_dload.magic_struct.serial_num = 0;
2542 memset(&local_diag_dload.serial_number, 0,
2543 SERIAL_NUMBER_LENGTH);
2544 } else {
2545 local_diag_dload.magic_struct.serial_num = SERIAL_NUM_MAGIC_ID;
2546 strlcpy((char *)&local_diag_dload.serial_number, snum,
2547 SERIAL_NUMBER_LENGTH);
2548 }
2549
2550 /* Copy to shared struct (accesses need to be 32 bit aligned) */
2551 src = (int *)&local_diag_dload;
2552 dst = (int *)diag_dload;
2553
2554 for (i = 0; i < sizeof(*diag_dload) / 4; i++)
2555 *dst++ = *src++;
2556
2557 return 0;
2558}
2559
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002560static int __devinit android_probe(struct platform_device *pdev)
2561{
Vijayavardhan Vennapusa8ceade82012-11-01 15:11:21 +05302562 struct android_usb_platform_data *pdata;
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002563 struct android_dev *android_dev;
Manu Gautam43c61a12012-08-22 17:09:37 -07002564 struct resource *res;
Lena Salmand092f2d2012-03-12 17:27:24 +02002565 int ret = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002566
Vijayavardhan Vennapusa8ceade82012-11-01 15:11:21 +05302567 if (pdev->dev.of_node) {
2568 dev_dbg(&pdev->dev, "device tree enabled\n");
2569 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
2570 if (!pdata) {
2571 pr_err("unable to allocate platform data\n");
2572 return -ENOMEM;
2573 }
2574
2575 of_property_read_u32(pdev->dev.of_node,
2576 "qcom,android-usb-swfi-latency",
2577 &pdata->swfi_latency);
2578 } else {
2579 pdata = pdev->dev.platform_data;
2580 }
2581
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002582 if (!android_class) {
2583 android_class = class_create(THIS_MODULE, "android_usb");
2584 if (IS_ERR(android_class))
2585 return PTR_ERR(android_class);
2586 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08002587
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002588 android_dev = kzalloc(sizeof(*android_dev), GFP_KERNEL);
2589 if (!android_dev) {
2590 pr_err("%s(): Failed to alloc memory for android_dev\n",
2591 __func__);
2592 ret = -ENOMEM;
2593 goto err_alloc;
2594 }
Benoit Goby1e8ce152011-12-12 13:01:23 -08002595
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002596 android_dev->name = pdev->name;
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002597 android_dev->disable_depth = 1;
2598 android_dev->functions = supported_functions;
Ido Shayevitz2a65e7c2012-08-02 13:34:18 +03002599 android_dev->configs_num = 0;
2600 INIT_LIST_HEAD(&android_dev->configs);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002601 INIT_WORK(&android_dev->work, android_work);
2602 mutex_init(&android_dev->mutex);
2603
2604 android_dev->pdata = pdata;
2605
2606 list_add_tail(&android_dev->list_item, &android_dev_list);
2607 android_dev_count++;
2608
2609 if (pdata)
2610 composite_driver.usb_core_id = pdata->usb_core_id;
2611 else
2612 composite_driver.usb_core_id = 0; /*To backward compatibility*/
2613
Manu Gautam43c61a12012-08-22 17:09:37 -07002614 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2615 if (res) {
2616 diag_dload = devm_ioremap(&pdev->dev, res->start,
2617 resource_size(res));
2618 if (!diag_dload) {
2619 dev_err(&pdev->dev, "ioremap failed\n");
2620 ret = -ENOMEM;
2621 goto err_dev;
2622 }
2623 } else {
2624 dev_dbg(&pdev->dev, "failed to get mem resource\n");
2625 }
2626
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002627 ret = android_create_device(android_dev, composite_driver.usb_core_id);
Rajkumar Raghupathy5d3fc392012-04-11 16:53:19 +05302628 if (ret) {
2629 pr_err("%s(): android_create_device failed\n", __func__);
2630 goto err_dev;
2631 }
2632
Lena Salmand092f2d2012-03-12 17:27:24 +02002633 ret = usb_composite_probe(&android_usb_driver, android_bind);
2634 if (ret) {
2635 pr_err("%s(): Failed to register android "
2636 "composite driver\n", __func__);
Rajkumar Raghupathy5d3fc392012-04-11 16:53:19 +05302637 goto err_probe;
Lena Salmand092f2d2012-03-12 17:27:24 +02002638 }
2639
Ofir Cohen94213a72012-05-03 14:26:32 +03002640 /* pm qos request to prevent apps idle power collapse */
Manu Gautam94dc6142012-05-08 14:35:24 +05302641 if (pdata && pdata->swfi_latency)
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002642 pm_qos_add_request(&android_dev->pm_qos_req_dma,
Ofir Cohen94213a72012-05-03 14:26:32 +03002643 PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002644 strlcpy(android_dev->pm_qos, "high", sizeof(android_dev->pm_qos));
Ofir Cohen94213a72012-05-03 14:26:32 +03002645
Lena Salmand092f2d2012-03-12 17:27:24 +02002646 return ret;
Rajkumar Raghupathy5d3fc392012-04-11 16:53:19 +05302647err_probe:
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002648 android_destroy_device(android_dev);
Rajkumar Raghupathy5d3fc392012-04-11 16:53:19 +05302649err_dev:
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002650 list_del(&android_dev->list_item);
2651 android_dev_count--;
2652 kfree(android_dev);
2653err_alloc:
2654 if (list_empty(&android_dev_list)) {
2655 class_destroy(android_class);
2656 android_class = NULL;
2657 }
Rajkumar Raghupathy5d3fc392012-04-11 16:53:19 +05302658 return ret;
Lena Salmand092f2d2012-03-12 17:27:24 +02002659}
2660
2661static int android_remove(struct platform_device *pdev)
2662{
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002663 struct android_dev *dev = NULL;
Ofir Cohen94213a72012-05-03 14:26:32 +03002664 struct android_usb_platform_data *pdata = pdev->dev.platform_data;
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002665 int usb_core_id = 0;
Rajkumar Raghupathy5d3fc392012-04-11 16:53:19 +05302666
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002667 if (pdata)
2668 usb_core_id = pdata->usb_core_id;
2669
2670 /* Find the android dev from the list */
2671 list_for_each_entry(dev, &android_dev_list, list_item) {
2672 if (!dev->pdata)
2673 break; /*To backward compatibility*/
2674 if (dev->pdata->usb_core_id == usb_core_id)
2675 break;
2676 }
2677
2678 if (dev) {
2679 android_destroy_device(dev);
2680 if (pdata && pdata->swfi_latency)
2681 pm_qos_remove_request(&dev->pm_qos_req_dma);
2682 list_del(&dev->list_item);
2683 android_dev_count--;
2684 kfree(dev);
2685 }
2686
2687 if (list_empty(&android_dev_list)) {
2688 class_destroy(android_class);
2689 android_class = NULL;
2690 usb_composite_unregister(&android_usb_driver);
2691 }
Ofir Cohen94213a72012-05-03 14:26:32 +03002692
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002693 return 0;
2694}
2695
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002696static const struct platform_device_id android_id_table[] __devinitconst = {
2697 {
2698 .name = "android_usb",
2699 },
2700 {
2701 .name = "android_usb_hsic",
2702 },
2703};
2704
Manu Gautam43c61a12012-08-22 17:09:37 -07002705static struct of_device_id usb_android_dt_match[] = {
2706 { .compatible = "qcom,android-usb",
2707 },
2708 {}
2709};
2710
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002711static struct platform_driver android_platform_driver = {
Manu Gautam43c61a12012-08-22 17:09:37 -07002712 .driver = {
2713 .name = "android_usb",
2714 .of_match_table = usb_android_dt_match,
2715 },
Lena Salmand092f2d2012-03-12 17:27:24 +02002716 .probe = android_probe,
2717 .remove = android_remove,
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002718 .id_table = android_id_table,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002719};
Mike Lockwood7f0d7bd2008-12-02 22:01:33 -05002720
2721static int __init init(void)
2722{
Rajkumar Raghupathya1df77e2012-01-19 17:45:55 +05302723 int ret;
Mike Lockwood7f0d7bd2008-12-02 22:01:33 -05002724
Benoit Goby1e8ce152011-12-12 13:01:23 -08002725 /* Override composite driver functions */
2726 composite_driver.setup = android_setup;
2727 composite_driver.disconnect = android_disconnect;
Ido Shayevitzfb5edfe2012-12-26 14:26:37 +02002728 composite_driver.suspend = android_suspend;
2729 composite_driver.resume = android_resume;
Benoit Goby1e8ce152011-12-12 13:01:23 -08002730
Ido Shayevitz23dc77c2012-07-18 16:16:06 +03002731 INIT_LIST_HEAD(&android_dev_list);
2732 android_dev_count = 0;
2733
Pavankumar Kondeti044914d2012-01-31 12:56:13 +05302734 ret = platform_driver_register(&android_platform_driver);
Rajkumar Raghupathya1df77e2012-01-19 17:45:55 +05302735 if (ret) {
2736 pr_err("%s(): Failed to register android"
2737 "platform driver\n", __func__);
Rajkumar Raghupathya1df77e2012-01-19 17:45:55 +05302738 }
Lena Salmand092f2d2012-03-12 17:27:24 +02002739
Rajkumar Raghupathya1df77e2012-01-19 17:45:55 +05302740 return ret;
Benoit Goby1e8ce152011-12-12 13:01:23 -08002741}
2742module_init(init);
2743
2744static void __exit cleanup(void)
2745{
Lena Salmand092f2d2012-03-12 17:27:24 +02002746 platform_driver_unregister(&android_platform_driver);
Benoit Goby1e8ce152011-12-12 13:01:23 -08002747}
2748module_exit(cleanup);