2 * f_obex.c -- USB CDC OBEX function driver
4 * Copyright (C) 2008 Nokia Corporation
5 * Contact: Felipe Balbi <felipe.balbi@nokia.com>
7 * Based on f_acm.c by Al Borchers and David Brownell.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
15 /* #define VERBOSE_DEBUG */
17 #include <linux/slab.h>
18 #include <linux/kernel.h>
19 #include <linux/device.h>
20 #include <linux/module.h>
23 #include "gadget_chips.h"
27 * This CDC OBEX function support just packages a TTY-ish byte stream.
28 * A user mode server will put it into "raw" mode and handle all the
29 * relevant protocol details ... this is just a kernel passthrough.
30 * When possible, we prevent gadget enumeration until that server is
31 * ready to handle the commands.
42 static inline struct f_obex
*func_to_obex(struct usb_function
*f
)
44 return container_of(f
, struct f_obex
, port
.func
);
47 static inline struct f_obex
*port_to_obex(struct gserial
*p
)
49 return container_of(p
, struct f_obex
, port
);
52 /*-------------------------------------------------------------------------*/
54 #define OBEX_CTRL_IDX 0
55 #define OBEX_DATA_IDX 1
57 static struct usb_string obex_string_defs
[] = {
58 [OBEX_CTRL_IDX
].s
= "CDC Object Exchange (OBEX)",
59 [OBEX_DATA_IDX
].s
= "CDC OBEX Data",
60 { }, /* end of list */
63 static struct usb_gadget_strings obex_string_table
= {
64 .language
= 0x0409, /* en-US */
65 .strings
= obex_string_defs
,
68 static struct usb_gadget_strings
*obex_strings
[] = {
73 /*-------------------------------------------------------------------------*/
75 static struct usb_interface_descriptor obex_control_intf
= {
76 .bLength
= sizeof(obex_control_intf
),
77 .bDescriptorType
= USB_DT_INTERFACE
,
78 .bInterfaceNumber
= 0,
80 .bAlternateSetting
= 0,
82 .bInterfaceClass
= USB_CLASS_COMM
,
83 .bInterfaceSubClass
= USB_CDC_SUBCLASS_OBEX
,
86 static struct usb_interface_descriptor obex_data_nop_intf
= {
87 .bLength
= sizeof(obex_data_nop_intf
),
88 .bDescriptorType
= USB_DT_INTERFACE
,
89 .bInterfaceNumber
= 1,
91 .bAlternateSetting
= 0,
93 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
96 static struct usb_interface_descriptor obex_data_intf
= {
97 .bLength
= sizeof(obex_data_intf
),
98 .bDescriptorType
= USB_DT_INTERFACE
,
99 .bInterfaceNumber
= 2,
101 .bAlternateSetting
= 1,
103 .bInterfaceClass
= USB_CLASS_CDC_DATA
,
106 static struct usb_cdc_header_desc obex_cdc_header_desc
= {
107 .bLength
= sizeof(obex_cdc_header_desc
),
108 .bDescriptorType
= USB_DT_CS_INTERFACE
,
109 .bDescriptorSubType
= USB_CDC_HEADER_TYPE
,
110 .bcdCDC
= cpu_to_le16(0x0120),
113 static struct usb_cdc_union_desc obex_cdc_union_desc
= {
114 .bLength
= sizeof(obex_cdc_union_desc
),
115 .bDescriptorType
= USB_DT_CS_INTERFACE
,
116 .bDescriptorSubType
= USB_CDC_UNION_TYPE
,
117 .bMasterInterface0
= 1,
118 .bSlaveInterface0
= 2,
121 static struct usb_cdc_obex_desc obex_desc
= {
122 .bLength
= sizeof(obex_desc
),
123 .bDescriptorType
= USB_DT_CS_INTERFACE
,
124 .bDescriptorSubType
= USB_CDC_OBEX_TYPE
,
125 .bcdVersion
= cpu_to_le16(0x0100),
128 /* High-Speed Support */
130 static struct usb_endpoint_descriptor obex_hs_ep_out_desc
= {
131 .bLength
= USB_DT_ENDPOINT_SIZE
,
132 .bDescriptorType
= USB_DT_ENDPOINT
,
134 .bEndpointAddress
= USB_DIR_OUT
,
135 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
136 .wMaxPacketSize
= cpu_to_le16(512),
139 static struct usb_endpoint_descriptor obex_hs_ep_in_desc
= {
140 .bLength
= USB_DT_ENDPOINT_SIZE
,
141 .bDescriptorType
= USB_DT_ENDPOINT
,
143 .bEndpointAddress
= USB_DIR_IN
,
144 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
145 .wMaxPacketSize
= cpu_to_le16(512),
148 static struct usb_descriptor_header
*hs_function
[] = {
149 (struct usb_descriptor_header
*) &obex_control_intf
,
150 (struct usb_descriptor_header
*) &obex_cdc_header_desc
,
151 (struct usb_descriptor_header
*) &obex_desc
,
152 (struct usb_descriptor_header
*) &obex_cdc_union_desc
,
154 (struct usb_descriptor_header
*) &obex_data_nop_intf
,
155 (struct usb_descriptor_header
*) &obex_data_intf
,
156 (struct usb_descriptor_header
*) &obex_hs_ep_in_desc
,
157 (struct usb_descriptor_header
*) &obex_hs_ep_out_desc
,
161 /* Full-Speed Support */
163 static struct usb_endpoint_descriptor obex_fs_ep_in_desc
= {
164 .bLength
= USB_DT_ENDPOINT_SIZE
,
165 .bDescriptorType
= USB_DT_ENDPOINT
,
167 .bEndpointAddress
= USB_DIR_IN
,
168 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
171 static struct usb_endpoint_descriptor obex_fs_ep_out_desc
= {
172 .bLength
= USB_DT_ENDPOINT_SIZE
,
173 .bDescriptorType
= USB_DT_ENDPOINT
,
175 .bEndpointAddress
= USB_DIR_OUT
,
176 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
179 static struct usb_descriptor_header
*fs_function
[] = {
180 (struct usb_descriptor_header
*) &obex_control_intf
,
181 (struct usb_descriptor_header
*) &obex_cdc_header_desc
,
182 (struct usb_descriptor_header
*) &obex_desc
,
183 (struct usb_descriptor_header
*) &obex_cdc_union_desc
,
185 (struct usb_descriptor_header
*) &obex_data_nop_intf
,
186 (struct usb_descriptor_header
*) &obex_data_intf
,
187 (struct usb_descriptor_header
*) &obex_fs_ep_in_desc
,
188 (struct usb_descriptor_header
*) &obex_fs_ep_out_desc
,
192 /*-------------------------------------------------------------------------*/
194 static int obex_set_alt(struct usb_function
*f
, unsigned intf
, unsigned alt
)
196 struct f_obex
*obex
= func_to_obex(f
);
197 struct usb_composite_dev
*cdev
= f
->config
->cdev
;
199 if (intf
== obex
->ctrl_id
) {
203 DBG(cdev
, "reset obex ttyGS%d control\n", obex
->port_num
);
205 } else if (intf
== obex
->data_id
) {
209 if (obex
->port
.in
->driver_data
) {
210 DBG(cdev
, "reset obex ttyGS%d\n", obex
->port_num
);
211 gserial_disconnect(&obex
->port
);
214 if (!obex
->port
.in
->desc
|| !obex
->port
.out
->desc
) {
215 DBG(cdev
, "init obex ttyGS%d\n", obex
->port_num
);
216 if (config_ep_by_speed(cdev
->gadget
, f
,
218 config_ep_by_speed(cdev
->gadget
, f
,
220 obex
->port
.out
->desc
= NULL
;
221 obex
->port
.in
->desc
= NULL
;
227 DBG(cdev
, "activate obex ttyGS%d\n", obex
->port_num
);
228 gserial_connect(&obex
->port
, obex
->port_num
);
240 static int obex_get_alt(struct usb_function
*f
, unsigned intf
)
242 struct f_obex
*obex
= func_to_obex(f
);
244 if (intf
== obex
->ctrl_id
)
247 return obex
->port
.in
->driver_data
? 1 : 0;
250 static void obex_disable(struct usb_function
*f
)
252 struct f_obex
*obex
= func_to_obex(f
);
253 struct usb_composite_dev
*cdev
= f
->config
->cdev
;
255 DBG(cdev
, "obex ttyGS%d disable\n", obex
->port_num
);
256 gserial_disconnect(&obex
->port
);
259 /*-------------------------------------------------------------------------*/
261 static void obex_connect(struct gserial
*g
)
263 struct f_obex
*obex
= port_to_obex(g
);
264 struct usb_composite_dev
*cdev
= g
->func
.config
->cdev
;
267 if (!obex
->can_activate
)
270 status
= usb_function_activate(&g
->func
);
272 DBG(cdev
, "obex ttyGS%d function activate --> %d\n",
273 obex
->port_num
, status
);
276 static void obex_disconnect(struct gserial
*g
)
278 struct f_obex
*obex
= port_to_obex(g
);
279 struct usb_composite_dev
*cdev
= g
->func
.config
->cdev
;
282 if (!obex
->can_activate
)
285 status
= usb_function_deactivate(&g
->func
);
287 DBG(cdev
, "obex ttyGS%d function deactivate --> %d\n",
288 obex
->port_num
, status
);
291 /*-------------------------------------------------------------------------*/
293 /* Some controllers can't support CDC OBEX ... */
294 static inline bool can_support_obex(struct usb_configuration
*c
)
296 /* Since the first interface is a NOP, we can ignore the
297 * issue of multi-interface support on most controllers.
299 * Altsettings are mandatory, however...
301 if (!gadget_supports_altsettings(c
->cdev
->gadget
))
304 /* everything else is *probably* fine ... */
308 static int obex_bind(struct usb_configuration
*c
, struct usb_function
*f
)
310 struct usb_composite_dev
*cdev
= c
->cdev
;
311 struct f_obex
*obex
= func_to_obex(f
);
312 struct usb_string
*us
;
316 if (!can_support_obex(c
))
319 us
= usb_gstrings_attach(cdev
, obex_strings
,
320 ARRAY_SIZE(obex_string_defs
));
323 obex_control_intf
.iInterface
= us
[OBEX_CTRL_IDX
].id
;
324 obex_data_nop_intf
.iInterface
= us
[OBEX_DATA_IDX
].id
;
325 obex_data_intf
.iInterface
= us
[OBEX_DATA_IDX
].id
;
327 /* allocate instance-specific interface IDs, and patch descriptors */
329 status
= usb_interface_id(c
, f
);
332 obex
->ctrl_id
= status
;
334 obex_control_intf
.bInterfaceNumber
= status
;
335 obex_cdc_union_desc
.bMasterInterface0
= status
;
337 status
= usb_interface_id(c
, f
);
340 obex
->data_id
= status
;
342 obex_data_nop_intf
.bInterfaceNumber
= status
;
343 obex_data_intf
.bInterfaceNumber
= status
;
344 obex_cdc_union_desc
.bSlaveInterface0
= status
;
346 /* allocate instance-specific endpoints */
349 ep
= usb_ep_autoconfig(cdev
->gadget
, &obex_fs_ep_in_desc
);
353 ep
->driver_data
= cdev
; /* claim */
355 ep
= usb_ep_autoconfig(cdev
->gadget
, &obex_fs_ep_out_desc
);
359 ep
->driver_data
= cdev
; /* claim */
361 /* support all relevant hardware speeds... we expect that when
362 * hardware is dual speed, all bulk-capable endpoints work at
366 obex_hs_ep_in_desc
.bEndpointAddress
=
367 obex_fs_ep_in_desc
.bEndpointAddress
;
368 obex_hs_ep_out_desc
.bEndpointAddress
=
369 obex_fs_ep_out_desc
.bEndpointAddress
;
371 status
= usb_assign_descriptors(f
, fs_function
, hs_function
, NULL
);
375 /* Avoid letting this gadget enumerate until the userspace
376 * OBEX server is active.
378 status
= usb_function_deactivate(f
);
380 WARNING(cdev
, "obex ttyGS%d: can't prevent enumeration, %d\n",
381 obex
->port_num
, status
);
383 obex
->can_activate
= true;
386 DBG(cdev
, "obex ttyGS%d: %s speed IN/%s OUT/%s\n",
388 gadget_is_dualspeed(c
->cdev
->gadget
) ? "dual" : "full",
389 obex
->port
.in
->name
, obex
->port
.out
->name
);
394 usb_free_all_descriptors(f
);
395 /* we might as well release our claims on endpoints */
397 obex
->port
.out
->driver_data
= NULL
;
399 obex
->port
.in
->driver_data
= NULL
;
401 ERROR(cdev
, "%s/%p: can't bind, err %d\n", f
->name
, f
, status
);
406 static inline struct f_serial_opts
*to_f_serial_opts(struct config_item
*item
)
408 return container_of(to_config_group(item
), struct f_serial_opts
,
412 CONFIGFS_ATTR_STRUCT(f_serial_opts
);
413 static ssize_t
f_obex_attr_show(struct config_item
*item
,
414 struct configfs_attribute
*attr
,
417 struct f_serial_opts
*opts
= to_f_serial_opts(item
);
418 struct f_serial_opts_attribute
*f_serial_opts_attr
=
419 container_of(attr
, struct f_serial_opts_attribute
, attr
);
422 if (f_serial_opts_attr
->show
)
423 ret
= f_serial_opts_attr
->show(opts
, page
);
428 static void obex_attr_release(struct config_item
*item
)
430 struct f_serial_opts
*opts
= to_f_serial_opts(item
);
432 usb_put_function_instance(&opts
->func_inst
);
435 static struct configfs_item_operations obex_item_ops
= {
436 .release
= obex_attr_release
,
437 .show_attribute
= f_obex_attr_show
,
440 static ssize_t
f_obex_port_num_show(struct f_serial_opts
*opts
, char *page
)
442 return sprintf(page
, "%u\n", opts
->port_num
);
445 static struct f_serial_opts_attribute f_obex_port_num
=
446 __CONFIGFS_ATTR_RO(port_num
, f_obex_port_num_show
);
448 static struct configfs_attribute
*acm_attrs
[] = {
449 &f_obex_port_num
.attr
,
453 static struct config_item_type obex_func_type
= {
454 .ct_item_ops
= &obex_item_ops
,
455 .ct_attrs
= acm_attrs
,
456 .ct_owner
= THIS_MODULE
,
459 static void obex_free_inst(struct usb_function_instance
*f
)
461 struct f_serial_opts
*opts
;
463 opts
= container_of(f
, struct f_serial_opts
, func_inst
);
464 gserial_free_line(opts
->port_num
);
468 static struct usb_function_instance
*obex_alloc_inst(void)
470 struct f_serial_opts
*opts
;
473 opts
= kzalloc(sizeof(*opts
), GFP_KERNEL
);
475 return ERR_PTR(-ENOMEM
);
477 opts
->func_inst
.free_func_inst
= obex_free_inst
;
478 ret
= gserial_alloc_line(&opts
->port_num
);
483 config_group_init_type_name(&opts
->func_inst
.group
, "",
486 return &opts
->func_inst
;
489 static void obex_free(struct usb_function
*f
)
493 obex
= func_to_obex(f
);
497 static void obex_unbind(struct usb_configuration
*c
, struct usb_function
*f
)
499 usb_free_all_descriptors(f
);
502 static struct usb_function
*obex_alloc(struct usb_function_instance
*fi
)
505 struct f_serial_opts
*opts
;
507 /* allocate and initialize one new instance */
508 obex
= kzalloc(sizeof(*obex
), GFP_KERNEL
);
510 return ERR_PTR(-ENOMEM
);
512 opts
= container_of(fi
, struct f_serial_opts
, func_inst
);
514 obex
->port_num
= opts
->port_num
;
516 obex
->port
.connect
= obex_connect
;
517 obex
->port
.disconnect
= obex_disconnect
;
519 obex
->port
.func
.name
= "obex";
520 /* descriptors are per-instance copies */
521 obex
->port
.func
.bind
= obex_bind
;
522 obex
->port
.func
.unbind
= obex_unbind
;
523 obex
->port
.func
.set_alt
= obex_set_alt
;
524 obex
->port
.func
.get_alt
= obex_get_alt
;
525 obex
->port
.func
.disable
= obex_disable
;
526 obex
->port
.func
.free_func
= obex_free
;
528 return &obex
->port
.func
;
531 DECLARE_USB_FUNCTION_INIT(obex
, obex_alloc_inst
, obex_alloc
);
532 MODULE_AUTHOR("Felipe Balbi");
533 MODULE_LICENSE("GPL");