2 * nokia.c -- Nokia Composite Gadget Driver
4 * Copyright (C) 2008-2010 Nokia Corporation
5 * Contact: Felipe Balbi <felipe.balbi@nokia.com>
7 * This gadget driver borrows from serial.c which is:
9 * Copyright (C) 2003 Al Borchers (alborchers@steinerpoint.com)
10 * Copyright (C) 2008 by David Brownell
11 * Copyright (C) 2008 by Nokia Corporation
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.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/device.h>
26 #include "f_mass_storage.h"
30 #define NOKIA_VERSION_NUM 0x0211
31 #define NOKIA_LONG_NAME "N900 (PC-Suite Mode)"
33 USB_GADGET_COMPOSITE_OPTIONS();
35 USB_ETHERNET_MODULE_PARAMETERS();
37 static struct fsg_module_parameters fsg_mod_data
= {
41 .removable
= { 1, 1, },
44 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
46 static unsigned int fsg_num_buffers
= CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS
;
51 * Number of buffers we will use.
52 * 2 is usually enough for good buffering pipeline
54 #define fsg_num_buffers CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS
56 #endif /* CONFIG_USB_DEBUG */
58 FSG_MODULE_PARAMETERS(/* no prefix */, fsg_mod_data
);
60 #define NOKIA_VENDOR_ID 0x0421 /* Nokia */
61 #define NOKIA_PRODUCT_ID 0x01c8 /* Nokia Gadget */
63 /* string IDs are assigned dynamically */
65 #define STRING_DESCRIPTION_IDX USB_GADGET_FIRST_AVAIL_IDX
67 static char manufacturer_nokia
[] = "Nokia";
68 static const char product_nokia
[] = NOKIA_LONG_NAME
;
69 static const char description_nokia
[] = "PC-Suite Configuration";
71 static struct usb_string strings_dev
[] = {
72 [USB_GADGET_MANUFACTURER_IDX
].s
= manufacturer_nokia
,
73 [USB_GADGET_PRODUCT_IDX
].s
= NOKIA_LONG_NAME
,
74 [USB_GADGET_SERIAL_IDX
].s
= "",
75 [STRING_DESCRIPTION_IDX
].s
= description_nokia
,
79 static struct usb_gadget_strings stringtab_dev
= {
80 .language
= 0x0409, /* en-us */
81 .strings
= strings_dev
,
84 static struct usb_gadget_strings
*dev_strings
[] = {
89 static struct usb_device_descriptor device_desc
= {
90 .bLength
= USB_DT_DEVICE_SIZE
,
91 .bDescriptorType
= USB_DT_DEVICE
,
92 /* .bcdUSB = DYNAMIC */
93 .bDeviceClass
= USB_CLASS_COMM
,
94 .idVendor
= cpu_to_le16(NOKIA_VENDOR_ID
),
95 .idProduct
= cpu_to_le16(NOKIA_PRODUCT_ID
),
96 .bcdDevice
= cpu_to_le16(NOKIA_VERSION_NUM
),
97 /* .iManufacturer = DYNAMIC */
98 /* .iProduct = DYNAMIC */
99 .bNumConfigurations
= 1,
102 /*-------------------------------------------------------------------------*/
105 MODULE_DESCRIPTION("Nokia composite gadget driver for N900");
106 MODULE_AUTHOR("Felipe Balbi");
107 MODULE_LICENSE("GPL");
109 /*-------------------------------------------------------------------------*/
110 static struct usb_function
*f_acm_cfg1
;
111 static struct usb_function
*f_acm_cfg2
;
112 static struct usb_function
*f_ecm_cfg1
;
113 static struct usb_function
*f_ecm_cfg2
;
114 static struct usb_function
*f_obex1_cfg1
;
115 static struct usb_function
*f_obex2_cfg1
;
116 static struct usb_function
*f_obex1_cfg2
;
117 static struct usb_function
*f_obex2_cfg2
;
118 static struct usb_function
*f_phonet_cfg1
;
119 static struct usb_function
*f_phonet_cfg2
;
120 static struct usb_function
*f_msg_cfg1
;
121 static struct usb_function
*f_msg_cfg2
;
124 static struct usb_configuration nokia_config_500ma_driver
= {
125 .label
= "Bus Powered",
126 .bConfigurationValue
= 1,
127 /* .iConfiguration = DYNAMIC */
128 .bmAttributes
= USB_CONFIG_ATT_ONE
,
132 static struct usb_configuration nokia_config_100ma_driver
= {
133 .label
= "Self Powered",
134 .bConfigurationValue
= 2,
135 /* .iConfiguration = DYNAMIC */
136 .bmAttributes
= USB_CONFIG_ATT_ONE
| USB_CONFIG_ATT_SELFPOWER
,
140 static struct usb_function_instance
*fi_acm
;
141 static struct usb_function_instance
*fi_ecm
;
142 static struct usb_function_instance
*fi_obex1
;
143 static struct usb_function_instance
*fi_obex2
;
144 static struct usb_function_instance
*fi_phonet
;
145 static struct usb_function_instance
*fi_msg
;
147 static int nokia_bind_config(struct usb_configuration
*c
)
149 struct usb_function
*f_acm
;
150 struct usb_function
*f_phonet
= NULL
;
151 struct usb_function
*f_obex1
= NULL
;
152 struct usb_function
*f_ecm
;
153 struct usb_function
*f_obex2
= NULL
;
154 struct usb_function
*f_msg
;
155 struct fsg_opts
*fsg_opts
;
159 int phonet_stat
= -1;
161 if (!IS_ERR(fi_phonet
)) {
162 f_phonet
= usb_get_function(fi_phonet
);
163 if (IS_ERR(f_phonet
))
164 pr_debug("could not get phonet function\n");
167 if (!IS_ERR(fi_obex1
)) {
168 f_obex1
= usb_get_function(fi_obex1
);
170 pr_debug("could not get obex function 0\n");
173 if (!IS_ERR(fi_obex2
)) {
174 f_obex2
= usb_get_function(fi_obex2
);
176 pr_debug("could not get obex function 1\n");
179 f_acm
= usb_get_function(fi_acm
);
181 status
= PTR_ERR(f_acm
);
185 f_ecm
= usb_get_function(fi_ecm
);
187 status
= PTR_ERR(f_ecm
);
191 f_msg
= usb_get_function(fi_msg
);
193 status
= PTR_ERR(f_msg
);
197 if (!IS_ERR_OR_NULL(f_phonet
)) {
198 phonet_stat
= usb_add_function(c
, f_phonet
);
200 pr_debug("could not add phonet function\n");
203 if (!IS_ERR_OR_NULL(f_obex1
)) {
204 obex1_stat
= usb_add_function(c
, f_obex1
);
206 pr_debug("could not add obex function 0\n");
209 if (!IS_ERR_OR_NULL(f_obex2
)) {
210 obex2_stat
= usb_add_function(c
, f_obex2
);
212 pr_debug("could not add obex function 1\n");
215 status
= usb_add_function(c
, f_acm
);
219 status
= usb_add_function(c
, f_ecm
);
221 pr_debug("could not bind ecm config %d\n", status
);
225 fsg_opts
= fsg_opts_from_func_inst(fi_msg
);
227 status
= fsg_common_run_thread(fsg_opts
->common
);
231 status
= usb_add_function(c
, f_msg
);
235 if (c
== &nokia_config_500ma_driver
) {
238 f_phonet_cfg1
= f_phonet
;
239 f_obex1_cfg1
= f_obex1
;
240 f_obex2_cfg1
= f_obex2
;
245 f_phonet_cfg2
= f_phonet
;
246 f_obex1_cfg2
= f_obex1
;
247 f_obex2_cfg2
= f_obex2
;
253 usb_remove_function(c
, f_ecm
);
255 usb_remove_function(c
, f_acm
);
258 usb_remove_function(c
, f_obex2
);
260 usb_remove_function(c
, f_obex1
);
262 usb_remove_function(c
, f_phonet
);
263 usb_put_function(f_msg
);
265 usb_put_function(f_ecm
);
267 usb_put_function(f_acm
);
269 if (!IS_ERR_OR_NULL(f_obex2
))
270 usb_put_function(f_obex2
);
271 if (!IS_ERR_OR_NULL(f_obex1
))
272 usb_put_function(f_obex1
);
273 if (!IS_ERR_OR_NULL(f_phonet
))
274 usb_put_function(f_phonet
);
278 static int nokia_bind(struct usb_composite_dev
*cdev
)
280 struct usb_gadget
*gadget
= cdev
->gadget
;
281 struct fsg_opts
*fsg_opts
;
282 struct fsg_config fsg_config
;
285 status
= usb_string_ids_tab(cdev
, strings_dev
);
288 device_desc
.iManufacturer
= strings_dev
[USB_GADGET_MANUFACTURER_IDX
].id
;
289 device_desc
.iProduct
= strings_dev
[USB_GADGET_PRODUCT_IDX
].id
;
290 status
= strings_dev
[STRING_DESCRIPTION_IDX
].id
;
291 nokia_config_500ma_driver
.iConfiguration
= status
;
292 nokia_config_100ma_driver
.iConfiguration
= status
;
294 if (!gadget_is_altset_supported(gadget
)) {
299 fi_phonet
= usb_get_function_instance("phonet");
300 if (IS_ERR(fi_phonet
))
301 pr_debug("could not find phonet function\n");
303 fi_obex1
= usb_get_function_instance("obex");
304 if (IS_ERR(fi_obex1
))
305 pr_debug("could not find obex function 1\n");
307 fi_obex2
= usb_get_function_instance("obex");
308 if (IS_ERR(fi_obex2
))
309 pr_debug("could not find obex function 2\n");
311 fi_acm
= usb_get_function_instance("acm");
312 if (IS_ERR(fi_acm
)) {
313 status
= PTR_ERR(fi_acm
);
317 fi_ecm
= usb_get_function_instance("ecm");
318 if (IS_ERR(fi_ecm
)) {
319 status
= PTR_ERR(fi_ecm
);
323 fi_msg
= usb_get_function_instance("mass_storage");
324 if (IS_ERR(fi_msg
)) {
325 status
= PTR_ERR(fi_msg
);
329 /* set up mass storage function */
330 fsg_config_from_params(&fsg_config
, &fsg_mod_data
, fsg_num_buffers
);
331 fsg_config
.vendor_name
= "Nokia";
332 fsg_config
.product_name
= "N900";
334 fsg_opts
= fsg_opts_from_func_inst(fi_msg
);
335 fsg_opts
->no_configfs
= true;
337 status
= fsg_common_set_num_buffers(fsg_opts
->common
, fsg_num_buffers
);
341 status
= fsg_common_set_cdev(fsg_opts
->common
, cdev
, fsg_config
.can_stall
);
345 fsg_common_set_sysfs(fsg_opts
->common
, true);
347 status
= fsg_common_create_luns(fsg_opts
->common
, &fsg_config
);
351 fsg_common_set_inquiry_string(fsg_opts
->common
, fsg_config
.vendor_name
,
352 fsg_config
.product_name
);
354 /* finally register the configuration */
355 status
= usb_add_config(cdev
, &nokia_config_500ma_driver
,
360 status
= usb_add_config(cdev
, &nokia_config_100ma_driver
,
365 usb_composite_overwrite_options(cdev
, &coverwrite
);
366 dev_info(&gadget
->dev
, "%s\n", NOKIA_LONG_NAME
);
371 usb_put_function(f_acm_cfg1
);
372 if (!IS_ERR_OR_NULL(f_obex1_cfg1
))
373 usb_put_function(f_obex1_cfg1
);
374 if (!IS_ERR_OR_NULL(f_obex2_cfg1
))
375 usb_put_function(f_obex2_cfg1
);
376 if (!IS_ERR_OR_NULL(f_phonet_cfg1
))
377 usb_put_function(f_phonet_cfg1
);
378 usb_put_function(f_ecm_cfg1
);
380 fsg_common_remove_luns(fsg_opts
->common
);
382 fsg_common_free_buffers(fsg_opts
->common
);
384 usb_put_function_instance(fi_msg
);
386 usb_put_function_instance(fi_ecm
);
388 usb_put_function_instance(fi_acm
);
390 if (!IS_ERR(fi_obex2
))
391 usb_put_function_instance(fi_obex2
);
392 if (!IS_ERR(fi_obex1
))
393 usb_put_function_instance(fi_obex1
);
394 if (!IS_ERR(fi_phonet
))
395 usb_put_function_instance(fi_phonet
);
400 static int nokia_unbind(struct usb_composite_dev
*cdev
)
402 if (!IS_ERR_OR_NULL(f_obex1_cfg2
))
403 usb_put_function(f_obex1_cfg2
);
404 if (!IS_ERR_OR_NULL(f_obex2_cfg2
))
405 usb_put_function(f_obex2_cfg2
);
406 if (!IS_ERR_OR_NULL(f_obex1_cfg1
))
407 usb_put_function(f_obex1_cfg1
);
408 if (!IS_ERR_OR_NULL(f_obex2_cfg1
))
409 usb_put_function(f_obex2_cfg1
);
410 if (!IS_ERR_OR_NULL(f_phonet_cfg1
))
411 usb_put_function(f_phonet_cfg1
);
412 if (!IS_ERR_OR_NULL(f_phonet_cfg2
))
413 usb_put_function(f_phonet_cfg2
);
414 usb_put_function(f_acm_cfg1
);
415 usb_put_function(f_acm_cfg2
);
416 usb_put_function(f_ecm_cfg1
);
417 usb_put_function(f_ecm_cfg2
);
418 usb_put_function(f_msg_cfg1
);
419 usb_put_function(f_msg_cfg2
);
421 usb_put_function_instance(fi_msg
);
422 usb_put_function_instance(fi_ecm
);
423 if (!IS_ERR(fi_obex2
))
424 usb_put_function_instance(fi_obex2
);
425 if (!IS_ERR(fi_obex1
))
426 usb_put_function_instance(fi_obex1
);
427 if (!IS_ERR(fi_phonet
))
428 usb_put_function_instance(fi_phonet
);
429 usb_put_function_instance(fi_acm
);
434 static struct usb_composite_driver nokia_driver
= {
437 .strings
= dev_strings
,
438 .max_speed
= USB_SPEED_HIGH
,
440 .unbind
= nokia_unbind
,
443 module_usb_composite_driver(nokia_driver
);