blob: b1e535f4022e41a826ddc0751797611017d7bd6a [file] [log] [blame]
Felipe Balbif358f5b2010-01-05 16:10:13 +02001/*
2 * nokia.c -- Nokia Composite Gadget Driver
3 *
4 * Copyright (C) 2008-2010 Nokia Corporation
5 * Contact: Felipe Balbi <felipe.balbi@nokia.com>
6 *
7 * This gadget driver borrows from serial.c which is:
8 *
9 * Copyright (C) 2003 Al Borchers (alborchers@steinerpoint.com)
10 * Copyright (C) 2008 by David Brownell
11 * Copyright (C) 2008 by Nokia Corporation
12 *
13 * This software is distributed under the terms of the GNU General
14 * Public License ("GPL") as published by the Free Software Foundation,
15 * version 2 of that License.
16 */
17
18#include <linux/kernel.h>
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +020019#include <linux/module.h>
Felipe Balbif358f5b2010-01-05 16:10:13 +020020#include <linux/device.h>
21
22#include "u_serial.h"
23#include "u_ether.h"
24#include "u_phonet.h"
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +020025#include "u_ecm.h"
Pali Rohár5ea75092015-06-08 08:20:05 +020026#include "f_mass_storage.h"
Felipe Balbif358f5b2010-01-05 16:10:13 +020027
28/* Defines */
29
30#define NOKIA_VERSION_NUM 0x0211
31#define NOKIA_LONG_NAME "N900 (PC-Suite Mode)"
32
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +020033USB_GADGET_COMPOSITE_OPTIONS();
Felipe Balbif358f5b2010-01-05 16:10:13 +020034
Andrzej Pietrasiewiczf1a18232013-05-23 09:22:03 +020035USB_ETHERNET_MODULE_PARAMETERS();
36
Pali Rohár5ea75092015-06-08 08:20:05 +020037static struct fsg_module_parameters fsg_mod_data = {
38 .stall = 0,
39 .luns = 2,
40 .removable_count = 2,
41 .removable = { 1, 1, },
42};
43
44#ifdef CONFIG_USB_GADGET_DEBUG_FILES
45
46static unsigned int fsg_num_buffers = CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS;
47
48#else
49
50/*
51 * Number of buffers we will use.
52 * 2 is usually enough for good buffering pipeline
53 */
54#define fsg_num_buffers CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS
55
56#endif /* CONFIG_USB_DEBUG */
57
58FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data);
59
Felipe Balbif358f5b2010-01-05 16:10:13 +020060#define NOKIA_VENDOR_ID 0x0421 /* Nokia */
61#define NOKIA_PRODUCT_ID 0x01c8 /* Nokia Gadget */
62
63/* string IDs are assigned dynamically */
64
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +020065#define STRING_DESCRIPTION_IDX USB_GADGET_FIRST_AVAIL_IDX
Felipe Balbif358f5b2010-01-05 16:10:13 +020066
67static char manufacturer_nokia[] = "Nokia";
68static const char product_nokia[] = NOKIA_LONG_NAME;
69static const char description_nokia[] = "PC-Suite Configuration";
70
71static struct usb_string strings_dev[] = {
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +020072 [USB_GADGET_MANUFACTURER_IDX].s = manufacturer_nokia,
73 [USB_GADGET_PRODUCT_IDX].s = NOKIA_LONG_NAME,
74 [USB_GADGET_SERIAL_IDX].s = "",
Felipe Balbif358f5b2010-01-05 16:10:13 +020075 [STRING_DESCRIPTION_IDX].s = description_nokia,
76 { } /* end of list */
77};
78
79static struct usb_gadget_strings stringtab_dev = {
80 .language = 0x0409, /* en-us */
81 .strings = strings_dev,
82};
83
84static struct usb_gadget_strings *dev_strings[] = {
85 &stringtab_dev,
86 NULL,
87};
88
89static struct usb_device_descriptor device_desc = {
90 .bLength = USB_DT_DEVICE_SIZE,
91 .bDescriptorType = USB_DT_DEVICE,
Igor Kotrasinski0aecfc12015-10-20 18:33:13 +020092 /* .bcdUSB = DYNAMIC */
Felipe Balbif358f5b2010-01-05 16:10:13 +020093 .bDeviceClass = USB_CLASS_COMM,
Vaishali Thakkarb8464bc2015-06-06 07:02:53 +053094 .idVendor = cpu_to_le16(NOKIA_VENDOR_ID),
95 .idProduct = cpu_to_le16(NOKIA_PRODUCT_ID),
Sebastian Andrzej Siewiored9cbda2012-09-10 09:16:07 +020096 .bcdDevice = cpu_to_le16(NOKIA_VERSION_NUM),
Felipe Balbif358f5b2010-01-05 16:10:13 +020097 /* .iManufacturer = DYNAMIC */
98 /* .iProduct = DYNAMIC */
99 .bNumConfigurations = 1,
100};
101
102/*-------------------------------------------------------------------------*/
103
104/* Module */
105MODULE_DESCRIPTION("Nokia composite gadget driver for N900");
106MODULE_AUTHOR("Felipe Balbi");
107MODULE_LICENSE("GPL");
108
109/*-------------------------------------------------------------------------*/
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100110static struct usb_function *f_acm_cfg1;
111static struct usb_function *f_acm_cfg2;
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200112static struct usb_function *f_ecm_cfg1;
113static struct usb_function *f_ecm_cfg2;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200114static struct usb_function *f_obex1_cfg1;
115static struct usb_function *f_obex2_cfg1;
116static struct usb_function *f_obex1_cfg2;
117static struct usb_function *f_obex2_cfg2;
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200118static struct usb_function *f_phonet_cfg1;
119static struct usb_function *f_phonet_cfg2;
Pali Rohár5ea75092015-06-08 08:20:05 +0200120static struct usb_function *f_msg_cfg1;
121static struct usb_function *f_msg_cfg2;
Andrzej Pietrasiewicz0189e632013-05-23 10:51:10 +0200122
Felipe Balbif358f5b2010-01-05 16:10:13 +0200123
Felipe Balbif358f5b2010-01-05 16:10:13 +0200124static struct usb_configuration nokia_config_500ma_driver = {
125 .label = "Bus Powered",
Felipe Balbif358f5b2010-01-05 16:10:13 +0200126 .bConfigurationValue = 1,
127 /* .iConfiguration = DYNAMIC */
128 .bmAttributes = USB_CONFIG_ATT_ONE,
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100129 .MaxPower = 500,
Felipe Balbif358f5b2010-01-05 16:10:13 +0200130};
131
132static struct usb_configuration nokia_config_100ma_driver = {
133 .label = "Self Powered",
Felipe Balbif358f5b2010-01-05 16:10:13 +0200134 .bConfigurationValue = 2,
135 /* .iConfiguration = DYNAMIC */
136 .bmAttributes = USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER,
Sebastian Andrzej Siewior8f900a92012-12-03 20:07:05 +0100137 .MaxPower = 100,
Felipe Balbif358f5b2010-01-05 16:10:13 +0200138};
139
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100140static struct usb_function_instance *fi_acm;
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200141static struct usb_function_instance *fi_ecm;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200142static struct usb_function_instance *fi_obex1;
143static struct usb_function_instance *fi_obex2;
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200144static struct usb_function_instance *fi_phonet;
Pali Rohár5ea75092015-06-08 08:20:05 +0200145static struct usb_function_instance *fi_msg;
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100146
Arnd Bergmannc94e289f2015-04-11 00:14:21 +0200147static int nokia_bind_config(struct usb_configuration *c)
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100148{
149 struct usb_function *f_acm;
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200150 struct usb_function *f_phonet = NULL;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200151 struct usb_function *f_obex1 = NULL;
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200152 struct usb_function *f_ecm;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200153 struct usb_function *f_obex2 = NULL;
Pali Rohár5ea75092015-06-08 08:20:05 +0200154 struct usb_function *f_msg;
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100155 int status = 0;
Andrzej Pietrasiewicz45ab4602013-12-13 14:46:40 +0100156 int obex1_stat = -1;
157 int obex2_stat = -1;
158 int phonet_stat = -1;
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100159
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200160 if (!IS_ERR(fi_phonet)) {
161 f_phonet = usb_get_function(fi_phonet);
162 if (IS_ERR(f_phonet))
163 pr_debug("could not get phonet function\n");
164 }
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100165
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200166 if (!IS_ERR(fi_obex1)) {
167 f_obex1 = usb_get_function(fi_obex1);
168 if (IS_ERR(f_obex1))
169 pr_debug("could not get obex function 0\n");
170 }
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100171
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200172 if (!IS_ERR(fi_obex2)) {
173 f_obex2 = usb_get_function(fi_obex2);
174 if (IS_ERR(f_obex2))
175 pr_debug("could not get obex function 1\n");
176 }
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100177
178 f_acm = usb_get_function(fi_acm);
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200179 if (IS_ERR(f_acm)) {
180 status = PTR_ERR(f_acm);
181 goto err_get_acm;
182 }
183
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200184 f_ecm = usb_get_function(fi_ecm);
185 if (IS_ERR(f_ecm)) {
186 status = PTR_ERR(f_ecm);
187 goto err_get_ecm;
188 }
189
Pali Rohár5ea75092015-06-08 08:20:05 +0200190 f_msg = usb_get_function(fi_msg);
191 if (IS_ERR(f_msg)) {
192 status = PTR_ERR(f_msg);
193 goto err_get_msg;
194 }
195
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200196 if (!IS_ERR_OR_NULL(f_phonet)) {
197 phonet_stat = usb_add_function(c, f_phonet);
198 if (phonet_stat)
199 pr_debug("could not add phonet function\n");
200 }
201
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200202 if (!IS_ERR_OR_NULL(f_obex1)) {
203 obex1_stat = usb_add_function(c, f_obex1);
204 if (obex1_stat)
205 pr_debug("could not add obex function 0\n");
206 }
207
208 if (!IS_ERR_OR_NULL(f_obex2)) {
209 obex2_stat = usb_add_function(c, f_obex2);
210 if (obex2_stat)
211 pr_debug("could not add obex function 1\n");
212 }
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100213
214 status = usb_add_function(c, f_acm);
215 if (status)
216 goto err_conf;
217
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200218 status = usb_add_function(c, f_ecm);
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100219 if (status) {
220 pr_debug("could not bind ecm config %d\n", status);
221 goto err_ecm;
222 }
Pali Rohár5ea75092015-06-08 08:20:05 +0200223
Pali Rohár5ea75092015-06-08 08:20:05 +0200224 status = usb_add_function(c, f_msg);
225 if (status)
226 goto err_msg;
227
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200228 if (c == &nokia_config_500ma_driver) {
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100229 f_acm_cfg1 = f_acm;
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200230 f_ecm_cfg1 = f_ecm;
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200231 f_phonet_cfg1 = f_phonet;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200232 f_obex1_cfg1 = f_obex1;
233 f_obex2_cfg1 = f_obex2;
Pali Rohár5ea75092015-06-08 08:20:05 +0200234 f_msg_cfg1 = f_msg;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200235 } else {
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100236 f_acm_cfg2 = f_acm;
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200237 f_ecm_cfg2 = f_ecm;
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200238 f_phonet_cfg2 = f_phonet;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200239 f_obex1_cfg2 = f_obex1;
240 f_obex2_cfg2 = f_obex2;
Pali Rohár5ea75092015-06-08 08:20:05 +0200241 f_msg_cfg2 = f_msg;
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200242 }
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100243
244 return status;
Pali Rohár5ea75092015-06-08 08:20:05 +0200245err_msg:
246 usb_remove_function(c, f_ecm);
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100247err_ecm:
248 usb_remove_function(c, f_acm);
249err_conf:
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200250 if (!obex2_stat)
251 usb_remove_function(c, f_obex2);
252 if (!obex1_stat)
253 usb_remove_function(c, f_obex1);
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200254 if (!phonet_stat)
255 usb_remove_function(c, f_phonet);
Pali Rohár5ea75092015-06-08 08:20:05 +0200256 usb_put_function(f_msg);
257err_get_msg:
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200258 usb_put_function(f_ecm);
259err_get_ecm:
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100260 usb_put_function(f_acm);
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200261err_get_acm:
262 if (!IS_ERR_OR_NULL(f_obex2))
263 usb_put_function(f_obex2);
264 if (!IS_ERR_OR_NULL(f_obex1))
265 usb_put_function(f_obex1);
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200266 if (!IS_ERR_OR_NULL(f_phonet))
267 usb_put_function(f_phonet);
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100268 return status;
269}
270
Arnd Bergmannc94e289f2015-04-11 00:14:21 +0200271static int nokia_bind(struct usb_composite_dev *cdev)
Felipe Balbif358f5b2010-01-05 16:10:13 +0200272{
Felipe Balbif358f5b2010-01-05 16:10:13 +0200273 struct usb_gadget *gadget = cdev->gadget;
Pali Rohár5ea75092015-06-08 08:20:05 +0200274 struct fsg_opts *fsg_opts;
275 struct fsg_config fsg_config;
Felipe Balbif358f5b2010-01-05 16:10:13 +0200276 int status;
277
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200278 status = usb_string_ids_tab(cdev, strings_dev);
Felipe Balbif358f5b2010-01-05 16:10:13 +0200279 if (status < 0)
280 goto err_usb;
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200281 device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id;
282 device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200283 status = strings_dev[STRING_DESCRIPTION_IDX].id;
Felipe Balbif358f5b2010-01-05 16:10:13 +0200284 nokia_config_500ma_driver.iConfiguration = status;
285 nokia_config_100ma_driver.iConfiguration = status;
286
Robert Baldyga736d0932015-07-28 07:20:03 +0200287 if (!gadget_is_altset_supported(gadget)) {
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200288 status = -ENODEV;
Felipe Balbif358f5b2010-01-05 16:10:13 +0200289 goto err_usb;
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200290 }
Felipe Balbif358f5b2010-01-05 16:10:13 +0200291
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200292 fi_phonet = usb_get_function_instance("phonet");
293 if (IS_ERR(fi_phonet))
294 pr_debug("could not find phonet function\n");
295
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200296 fi_obex1 = usb_get_function_instance("obex");
297 if (IS_ERR(fi_obex1))
298 pr_debug("could not find obex function 1\n");
299
300 fi_obex2 = usb_get_function_instance("obex");
301 if (IS_ERR(fi_obex2))
302 pr_debug("could not find obex function 2\n");
303
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100304 fi_acm = usb_get_function_instance("acm");
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200305 if (IS_ERR(fi_acm)) {
306 status = PTR_ERR(fi_acm);
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200307 goto err_obex2_inst;
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200308 }
309
310 fi_ecm = usb_get_function_instance("ecm");
311 if (IS_ERR(fi_ecm)) {
312 status = PTR_ERR(fi_ecm);
313 goto err_acm_inst;
314 }
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100315
Pali Rohár5ea75092015-06-08 08:20:05 +0200316 fi_msg = usb_get_function_instance("mass_storage");
317 if (IS_ERR(fi_msg)) {
318 status = PTR_ERR(fi_msg);
319 goto err_ecm_inst;
320 }
321
322 /* set up mass storage function */
323 fsg_config_from_params(&fsg_config, &fsg_mod_data, fsg_num_buffers);
324 fsg_config.vendor_name = "Nokia";
325 fsg_config.product_name = "N900";
326
327 fsg_opts = fsg_opts_from_func_inst(fi_msg);
328 fsg_opts->no_configfs = true;
329
330 status = fsg_common_set_num_buffers(fsg_opts->common, fsg_num_buffers);
331 if (status)
332 goto err_msg_inst;
333
Pali Rohár5ea75092015-06-08 08:20:05 +0200334 status = fsg_common_set_cdev(fsg_opts->common, cdev, fsg_config.can_stall);
335 if (status)
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +0200336 goto err_msg_buf;
Pali Rohár5ea75092015-06-08 08:20:05 +0200337
338 fsg_common_set_sysfs(fsg_opts->common, true);
339
340 status = fsg_common_create_luns(fsg_opts->common, &fsg_config);
341 if (status)
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +0200342 goto err_msg_buf;
Pali Rohár5ea75092015-06-08 08:20:05 +0200343
344 fsg_common_set_inquiry_string(fsg_opts->common, fsg_config.vendor_name,
345 fsg_config.product_name);
346
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300347 /* finally register the configuration */
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200348 status = usb_add_config(cdev, &nokia_config_500ma_driver,
349 nokia_bind_config);
Felipe Balbif358f5b2010-01-05 16:10:13 +0200350 if (status < 0)
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +0200351 goto err_msg_luns;
Felipe Balbif358f5b2010-01-05 16:10:13 +0200352
Uwe Kleine-Königc9bfff92010-08-12 17:43:55 +0200353 status = usb_add_config(cdev, &nokia_config_100ma_driver,
354 nokia_bind_config);
Felipe Balbif358f5b2010-01-05 16:10:13 +0200355 if (status < 0)
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100356 goto err_put_cfg1;
Felipe Balbif358f5b2010-01-05 16:10:13 +0200357
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200358 usb_composite_overwrite_options(cdev, &coverwrite);
Felipe Balbif358f5b2010-01-05 16:10:13 +0200359 dev_info(&gadget->dev, "%s\n", NOKIA_LONG_NAME);
360
361 return 0;
362
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100363err_put_cfg1:
364 usb_put_function(f_acm_cfg1);
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200365 if (!IS_ERR_OR_NULL(f_obex1_cfg1))
366 usb_put_function(f_obex1_cfg1);
367 if (!IS_ERR_OR_NULL(f_obex2_cfg1))
368 usb_put_function(f_obex2_cfg1);
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200369 if (!IS_ERR_OR_NULL(f_phonet_cfg1))
370 usb_put_function(f_phonet_cfg1);
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200371 usb_put_function(f_ecm_cfg1);
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +0200372err_msg_luns:
Pali Rohár5ea75092015-06-08 08:20:05 +0200373 fsg_common_remove_luns(fsg_opts->common);
Pali Rohár5ea75092015-06-08 08:20:05 +0200374err_msg_buf:
375 fsg_common_free_buffers(fsg_opts->common);
376err_msg_inst:
377 usb_put_function_instance(fi_msg);
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200378err_ecm_inst:
379 usb_put_function_instance(fi_ecm);
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100380err_acm_inst:
381 usb_put_function_instance(fi_acm);
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200382err_obex2_inst:
383 if (!IS_ERR(fi_obex2))
384 usb_put_function_instance(fi_obex2);
385 if (!IS_ERR(fi_obex1))
386 usb_put_function_instance(fi_obex1);
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200387 if (!IS_ERR(fi_phonet))
388 usb_put_function_instance(fi_phonet);
Felipe Balbif358f5b2010-01-05 16:10:13 +0200389err_usb:
Felipe Balbif358f5b2010-01-05 16:10:13 +0200390 return status;
391}
392
Arnd Bergmannc94e289f2015-04-11 00:14:21 +0200393static int nokia_unbind(struct usb_composite_dev *cdev)
Felipe Balbif358f5b2010-01-05 16:10:13 +0200394{
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200395 if (!IS_ERR_OR_NULL(f_obex1_cfg2))
396 usb_put_function(f_obex1_cfg2);
397 if (!IS_ERR_OR_NULL(f_obex2_cfg2))
398 usb_put_function(f_obex2_cfg2);
399 if (!IS_ERR_OR_NULL(f_obex1_cfg1))
400 usb_put_function(f_obex1_cfg1);
401 if (!IS_ERR_OR_NULL(f_obex2_cfg1))
402 usb_put_function(f_obex2_cfg1);
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200403 if (!IS_ERR_OR_NULL(f_phonet_cfg1))
404 usb_put_function(f_phonet_cfg1);
405 if (!IS_ERR_OR_NULL(f_phonet_cfg2))
406 usb_put_function(f_phonet_cfg2);
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100407 usb_put_function(f_acm_cfg1);
408 usb_put_function(f_acm_cfg2);
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200409 usb_put_function(f_ecm_cfg1);
410 usb_put_function(f_ecm_cfg2);
Pali Rohár5ea75092015-06-08 08:20:05 +0200411 usb_put_function(f_msg_cfg1);
412 usb_put_function(f_msg_cfg2);
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200413
Pali Rohár5ea75092015-06-08 08:20:05 +0200414 usb_put_function_instance(fi_msg);
Andrzej Pietrasiewiczb904d082013-05-23 10:51:14 +0200415 usb_put_function_instance(fi_ecm);
Andrzej Pietrasiewicz3a343442013-05-23 10:51:08 +0200416 if (!IS_ERR(fi_obex2))
417 usb_put_function_instance(fi_obex2);
Andrzej Pietrasiewicz83167f12013-05-23 10:51:12 +0200418 if (!IS_ERR(fi_obex1))
419 usb_put_function_instance(fi_obex1);
420 if (!IS_ERR(fi_phonet))
421 usb_put_function_instance(fi_phonet);
Sebastian Andrzej Siewior15761822013-01-25 14:09:17 +0100422 usb_put_function_instance(fi_acm);
Sebastian Andrzej Siewior19b10a82012-12-23 21:10:06 +0100423
Felipe Balbif358f5b2010-01-05 16:10:13 +0200424 return 0;
425}
426
Arnd Bergmannc94e289f2015-04-11 00:14:21 +0200427static struct usb_composite_driver nokia_driver = {
Felipe Balbif358f5b2010-01-05 16:10:13 +0200428 .name = "g_nokia",
429 .dev = &device_desc,
430 .strings = dev_strings,
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300431 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200432 .bind = nokia_bind,
Arnd Bergmannc94e289f2015-04-11 00:14:21 +0200433 .unbind = nokia_unbind,
Felipe Balbif358f5b2010-01-05 16:10:13 +0200434};
435
Tobias Klauser909346a2014-07-09 18:09:56 +0200436module_usb_composite_driver(nokia_driver);