blob: 29a348a2a294fafe37676d260257f90c6332c7b1 [file] [log] [blame]
Felipe Balbi30867752008-08-18 17:39:30 -07001/*
2 * f_obex.c -- USB CDC OBEX function driver
3 *
4 * Copyright (C) 2008 Nokia Corporation
5 * Contact: Felipe Balbi <felipe.balbi@nokia.com>
6 *
7 * Based on f_acm.c by Al Borchers and David Brownell.
8 *
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.
Felipe Balbi30867752008-08-18 17:39:30 -070013 */
14
15/* #define VERBOSE_DEBUG */
16
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Felipe Balbi30867752008-08-18 17:39:30 -070018#include <linux/kernel.h>
Felipe Balbi30867752008-08-18 17:39:30 -070019#include <linux/device.h>
Paul Gortmaker6eb0de82011-07-03 16:09:31 -040020#include <linux/module.h>
Felipe Balbi30867752008-08-18 17:39:30 -070021
22#include "u_serial.h"
23#include "gadget_chips.h"
24
25
26/*
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.
David Brownell21214272008-08-18 17:45:25 -070030 * When possible, we prevent gadget enumeration until that server is
31 * ready to handle the commands.
Felipe Balbi30867752008-08-18 17:39:30 -070032 */
33
Felipe Balbi30867752008-08-18 17:39:30 -070034struct f_obex {
35 struct gserial port;
36 u8 ctrl_id;
37 u8 data_id;
38 u8 port_num;
David Brownell21214272008-08-18 17:45:25 -070039 u8 can_activate;
Felipe Balbi30867752008-08-18 17:39:30 -070040};
41
42static inline struct f_obex *func_to_obex(struct usb_function *f)
43{
44 return container_of(f, struct f_obex, port.func);
45}
46
David Brownell21214272008-08-18 17:45:25 -070047static inline struct f_obex *port_to_obex(struct gserial *p)
48{
49 return container_of(p, struct f_obex, port);
50}
51
Felipe Balbi30867752008-08-18 17:39:30 -070052/*-------------------------------------------------------------------------*/
53
54#define OBEX_CTRL_IDX 0
55#define OBEX_DATA_IDX 1
56
57static 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 */
61};
62
63static struct usb_gadget_strings obex_string_table = {
64 .language = 0x0409, /* en-US */
65 .strings = obex_string_defs,
66};
67
68static struct usb_gadget_strings *obex_strings[] = {
69 &obex_string_table,
70 NULL,
71};
72
73/*-------------------------------------------------------------------------*/
74
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +010075static struct usb_interface_descriptor obex_control_intf = {
Felipe Balbi30867752008-08-18 17:39:30 -070076 .bLength = sizeof(obex_control_intf),
77 .bDescriptorType = USB_DT_INTERFACE,
78 .bInterfaceNumber = 0,
79
80 .bAlternateSetting = 0,
81 .bNumEndpoints = 0,
82 .bInterfaceClass = USB_CLASS_COMM,
83 .bInterfaceSubClass = USB_CDC_SUBCLASS_OBEX,
84};
85
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +010086static struct usb_interface_descriptor obex_data_nop_intf = {
Felipe Balbi30867752008-08-18 17:39:30 -070087 .bLength = sizeof(obex_data_nop_intf),
88 .bDescriptorType = USB_DT_INTERFACE,
89 .bInterfaceNumber = 1,
90
91 .bAlternateSetting = 0,
92 .bNumEndpoints = 0,
93 .bInterfaceClass = USB_CLASS_CDC_DATA,
94};
95
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +010096static struct usb_interface_descriptor obex_data_intf = {
Felipe Balbi30867752008-08-18 17:39:30 -070097 .bLength = sizeof(obex_data_intf),
98 .bDescriptorType = USB_DT_INTERFACE,
99 .bInterfaceNumber = 2,
100
101 .bAlternateSetting = 1,
102 .bNumEndpoints = 2,
103 .bInterfaceClass = USB_CLASS_CDC_DATA,
104};
105
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100106static struct usb_cdc_header_desc obex_cdc_header_desc = {
Felipe Balbi30867752008-08-18 17:39:30 -0700107 .bLength = sizeof(obex_cdc_header_desc),
108 .bDescriptorType = USB_DT_CS_INTERFACE,
109 .bDescriptorSubType = USB_CDC_HEADER_TYPE,
Harvey Harrison551509d2009-02-11 14:11:36 -0800110 .bcdCDC = cpu_to_le16(0x0120),
Felipe Balbi30867752008-08-18 17:39:30 -0700111};
112
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100113static struct usb_cdc_union_desc obex_cdc_union_desc = {
Felipe Balbi30867752008-08-18 17:39:30 -0700114 .bLength = sizeof(obex_cdc_union_desc),
115 .bDescriptorType = USB_DT_CS_INTERFACE,
116 .bDescriptorSubType = USB_CDC_UNION_TYPE,
117 .bMasterInterface0 = 1,
118 .bSlaveInterface0 = 2,
119};
120
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100121static struct usb_cdc_obex_desc obex_desc = {
Felipe Balbi30867752008-08-18 17:39:30 -0700122 .bLength = sizeof(obex_desc),
123 .bDescriptorType = USB_DT_CS_INTERFACE,
124 .bDescriptorSubType = USB_CDC_OBEX_TYPE,
Harvey Harrison551509d2009-02-11 14:11:36 -0800125 .bcdVersion = cpu_to_le16(0x0100),
Felipe Balbi30867752008-08-18 17:39:30 -0700126};
127
128/* High-Speed Support */
129
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100130static struct usb_endpoint_descriptor obex_hs_ep_out_desc = {
Felipe Balbi30867752008-08-18 17:39:30 -0700131 .bLength = USB_DT_ENDPOINT_SIZE,
132 .bDescriptorType = USB_DT_ENDPOINT,
133
134 .bEndpointAddress = USB_DIR_OUT,
135 .bmAttributes = USB_ENDPOINT_XFER_BULK,
Harvey Harrison551509d2009-02-11 14:11:36 -0800136 .wMaxPacketSize = cpu_to_le16(512),
Felipe Balbi30867752008-08-18 17:39:30 -0700137};
138
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100139static struct usb_endpoint_descriptor obex_hs_ep_in_desc = {
Felipe Balbi30867752008-08-18 17:39:30 -0700140 .bLength = USB_DT_ENDPOINT_SIZE,
141 .bDescriptorType = USB_DT_ENDPOINT,
142
143 .bEndpointAddress = USB_DIR_IN,
144 .bmAttributes = USB_ENDPOINT_XFER_BULK,
Harvey Harrison551509d2009-02-11 14:11:36 -0800145 .wMaxPacketSize = cpu_to_le16(512),
Felipe Balbi30867752008-08-18 17:39:30 -0700146};
147
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100148static struct usb_descriptor_header *hs_function[] = {
Felipe Balbi30867752008-08-18 17:39:30 -0700149 (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,
153
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,
158 NULL,
159};
160
161/* Full-Speed Support */
162
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100163static struct usb_endpoint_descriptor obex_fs_ep_in_desc = {
Felipe Balbi30867752008-08-18 17:39:30 -0700164 .bLength = USB_DT_ENDPOINT_SIZE,
165 .bDescriptorType = USB_DT_ENDPOINT,
166
167 .bEndpointAddress = USB_DIR_IN,
168 .bmAttributes = USB_ENDPOINT_XFER_BULK,
169};
170
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100171static struct usb_endpoint_descriptor obex_fs_ep_out_desc = {
Felipe Balbi30867752008-08-18 17:39:30 -0700172 .bLength = USB_DT_ENDPOINT_SIZE,
173 .bDescriptorType = USB_DT_ENDPOINT,
174
175 .bEndpointAddress = USB_DIR_OUT,
176 .bmAttributes = USB_ENDPOINT_XFER_BULK,
177};
178
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100179static struct usb_descriptor_header *fs_function[] = {
Felipe Balbi30867752008-08-18 17:39:30 -0700180 (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,
184
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,
189 NULL,
190};
191
192/*-------------------------------------------------------------------------*/
193
194static int obex_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
195{
196 struct f_obex *obex = func_to_obex(f);
197 struct usb_composite_dev *cdev = f->config->cdev;
198
199 if (intf == obex->ctrl_id) {
200 if (alt != 0)
201 goto fail;
202 /* NOP */
203 DBG(cdev, "reset obex ttyGS%d control\n", obex->port_num);
204
205 } else if (intf == obex->data_id) {
206 if (alt > 1)
207 goto fail;
208
209 if (obex->port.in->driver_data) {
210 DBG(cdev, "reset obex ttyGS%d\n", obex->port_num);
211 gserial_disconnect(&obex->port);
212 }
213
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +0300214 if (!obex->port.in->desc || !obex->port.out->desc) {
Felipe Balbi30867752008-08-18 17:39:30 -0700215 DBG(cdev, "init obex ttyGS%d\n", obex->port_num);
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +0300216 if (config_ep_by_speed(cdev->gadget, f,
217 obex->port.in) ||
218 config_ep_by_speed(cdev->gadget, f,
219 obex->port.out)) {
220 obex->port.out->desc = NULL;
221 obex->port.in->desc = NULL;
222 goto fail;
223 }
Felipe Balbi30867752008-08-18 17:39:30 -0700224 }
225
226 if (alt == 1) {
227 DBG(cdev, "activate obex ttyGS%d\n", obex->port_num);
228 gserial_connect(&obex->port, obex->port_num);
229 }
230
231 } else
232 goto fail;
233
234 return 0;
235
236fail:
237 return -EINVAL;
238}
239
240static int obex_get_alt(struct usb_function *f, unsigned intf)
241{
242 struct f_obex *obex = func_to_obex(f);
243
244 if (intf == obex->ctrl_id)
245 return 0;
246
247 return obex->port.in->driver_data ? 1 : 0;
248}
249
250static void obex_disable(struct usb_function *f)
251{
252 struct f_obex *obex = func_to_obex(f);
253 struct usb_composite_dev *cdev = f->config->cdev;
254
255 DBG(cdev, "obex ttyGS%d disable\n", obex->port_num);
256 gserial_disconnect(&obex->port);
257}
258
259/*-------------------------------------------------------------------------*/
260
David Brownell21214272008-08-18 17:45:25 -0700261static void obex_connect(struct gserial *g)
262{
263 struct f_obex *obex = port_to_obex(g);
264 struct usb_composite_dev *cdev = g->func.config->cdev;
265 int status;
266
267 if (!obex->can_activate)
268 return;
269
270 status = usb_function_activate(&g->func);
271 if (status)
272 DBG(cdev, "obex ttyGS%d function activate --> %d\n",
273 obex->port_num, status);
274}
275
276static void obex_disconnect(struct gserial *g)
277{
278 struct f_obex *obex = port_to_obex(g);
279 struct usb_composite_dev *cdev = g->func.config->cdev;
280 int status;
281
282 if (!obex->can_activate)
283 return;
284
285 status = usb_function_deactivate(&g->func);
286 if (status)
287 DBG(cdev, "obex ttyGS%d function deactivate --> %d\n",
288 obex->port_num, status);
289}
290
291/*-------------------------------------------------------------------------*/
292
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100293/* Some controllers can't support CDC OBEX ... */
294static inline bool can_support_obex(struct usb_configuration *c)
295{
296 /* Since the first interface is a NOP, we can ignore the
297 * issue of multi-interface support on most controllers.
298 *
299 * Altsettings are mandatory, however...
300 */
301 if (!gadget_supports_altsettings(c->cdev->gadget))
302 return false;
303
304 /* everything else is *probably* fine ... */
305 return true;
306}
307
308static int obex_bind(struct usb_configuration *c, struct usb_function *f)
Felipe Balbi30867752008-08-18 17:39:30 -0700309{
310 struct usb_composite_dev *cdev = c->cdev;
311 struct f_obex *obex = func_to_obex(f);
312 int status;
313 struct usb_ep *ep;
314
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100315 if (!can_support_obex(c))
316 return -EINVAL;
317
318 if (obex_string_defs[OBEX_CTRL_IDX].id == 0) {
319 status = usb_string_ids_tab(c->cdev, obex_string_defs);
320 if (status < 0)
321 return status;
322 obex_control_intf.iInterface =
323 obex_string_defs[OBEX_CTRL_IDX].id;
324
325 status = obex_string_defs[OBEX_DATA_IDX].id;
326 obex_data_nop_intf.iInterface = status;
327 obex_data_intf.iInterface = status;
328 }
329
Felipe Balbi30867752008-08-18 17:39:30 -0700330 /* allocate instance-specific interface IDs, and patch descriptors */
331
332 status = usb_interface_id(c, f);
333 if (status < 0)
334 goto fail;
335 obex->ctrl_id = status;
336
337 obex_control_intf.bInterfaceNumber = status;
338 obex_cdc_union_desc.bMasterInterface0 = status;
339
340 status = usb_interface_id(c, f);
341 if (status < 0)
342 goto fail;
343 obex->data_id = status;
344
345 obex_data_nop_intf.bInterfaceNumber = status;
346 obex_data_intf.bInterfaceNumber = status;
347 obex_cdc_union_desc.bSlaveInterface0 = status;
348
349 /* allocate instance-specific endpoints */
350
351 ep = usb_ep_autoconfig(cdev->gadget, &obex_fs_ep_in_desc);
352 if (!ep)
353 goto fail;
354 obex->port.in = ep;
355 ep->driver_data = cdev; /* claim */
356
357 ep = usb_ep_autoconfig(cdev->gadget, &obex_fs_ep_out_desc);
358 if (!ep)
359 goto fail;
360 obex->port.out = ep;
361 ep->driver_data = cdev; /* claim */
362
Felipe Balbi30867752008-08-18 17:39:30 -0700363 /* support all relevant hardware speeds... we expect that when
364 * hardware is dual speed, all bulk-capable endpoints work at
365 * both speeds
366 */
Felipe Balbi30867752008-08-18 17:39:30 -0700367
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200368 obex_hs_ep_in_desc.bEndpointAddress =
369 obex_fs_ep_in_desc.bEndpointAddress;
370 obex_hs_ep_out_desc.bEndpointAddress =
371 obex_fs_ep_out_desc.bEndpointAddress;
Felipe Balbi30867752008-08-18 17:39:30 -0700372
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200373 status = usb_assign_descriptors(f, fs_function, hs_function, NULL);
374 if (status)
375 goto fail;
Felipe Balbi30867752008-08-18 17:39:30 -0700376
David Brownell21214272008-08-18 17:45:25 -0700377 /* Avoid letting this gadget enumerate until the userspace
378 * OBEX server is active.
379 */
380 status = usb_function_deactivate(f);
381 if (status < 0)
382 WARNING(cdev, "obex ttyGS%d: can't prevent enumeration, %d\n",
383 obex->port_num, status);
384 else
385 obex->can_activate = true;
386
387
Felipe Balbi30867752008-08-18 17:39:30 -0700388 DBG(cdev, "obex ttyGS%d: %s speed IN/%s OUT/%s\n",
389 obex->port_num,
390 gadget_is_dualspeed(c->cdev->gadget) ? "dual" : "full",
391 obex->port.in->name, obex->port.out->name);
392
393 return 0;
394
395fail:
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200396 usb_free_all_descriptors(f);
Felipe Balbi30867752008-08-18 17:39:30 -0700397 /* we might as well release our claims on endpoints */
398 if (obex->port.out)
399 obex->port.out->driver_data = NULL;
400 if (obex->port.in)
401 obex->port.in->driver_data = NULL;
402
403 ERROR(cdev, "%s/%p: can't bind, err %d\n", f->name, f, status);
404
405 return status;
406}
407
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100408#ifdef USBF_OBEX_INCLUDED
409
Felipe Balbi30867752008-08-18 17:39:30 -0700410static void
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100411obex_old_unbind(struct usb_configuration *c, struct usb_function *f)
Felipe Balbi30867752008-08-18 17:39:30 -0700412{
Sebastian Andrzej Siewior1616e992012-10-22 22:15:10 +0200413 obex_string_defs[OBEX_CTRL_IDX].id = 0;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +0200414 usb_free_all_descriptors(f);
Felipe Balbi30867752008-08-18 17:39:30 -0700415 kfree(func_to_obex(f));
416}
417
Felipe Balbi30867752008-08-18 17:39:30 -0700418/**
419 * obex_bind_config - add a CDC OBEX function to a configuration
420 * @c: the configuration to support the CDC OBEX instance
421 * @port_num: /dev/ttyGS* port this interface will use
422 * Context: single threaded during gadget setup
423 *
424 * Returns zero on success, else negative errno.
Felipe Balbi30867752008-08-18 17:39:30 -0700425 */
426int __init obex_bind_config(struct usb_configuration *c, u8 port_num)
427{
428 struct f_obex *obex;
429 int status;
430
Felipe Balbi30867752008-08-18 17:39:30 -0700431 /* allocate and initialize one new instance */
432 obex = kzalloc(sizeof *obex, GFP_KERNEL);
433 if (!obex)
434 return -ENOMEM;
435
436 obex->port_num = port_num;
437
David Brownell21214272008-08-18 17:45:25 -0700438 obex->port.connect = obex_connect;
439 obex->port.disconnect = obex_disconnect;
440
Felipe Balbi30867752008-08-18 17:39:30 -0700441 obex->port.func.name = "obex";
442 obex->port.func.strings = obex_strings;
443 /* descriptors are per-instance copies */
444 obex->port.func.bind = obex_bind;
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100445 obex->port.func.unbind = obex_old_unbind;
Felipe Balbi30867752008-08-18 17:39:30 -0700446 obex->port.func.set_alt = obex_set_alt;
447 obex->port.func.get_alt = obex_get_alt;
448 obex->port.func.disable = obex_disable;
449
450 status = usb_add_function(c, &obex->port.func);
451 if (status)
452 kfree(obex);
453
454 return status;
455}
456
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100457#else
458
Andrzej Pietrasiewiczecfd3f72013-03-27 12:13:25 +0100459static inline struct f_serial_opts *to_f_serial_opts(struct config_item *item)
460{
461 return container_of(to_config_group(item), struct f_serial_opts,
462 func_inst.group);
463}
464
465CONFIGFS_ATTR_STRUCT(f_serial_opts);
466static ssize_t f_obex_attr_show(struct config_item *item,
467 struct configfs_attribute *attr,
468 char *page)
469{
470 struct f_serial_opts *opts = to_f_serial_opts(item);
471 struct f_serial_opts_attribute *f_serial_opts_attr =
472 container_of(attr, struct f_serial_opts_attribute, attr);
473 ssize_t ret = 0;
474
475 if (f_serial_opts_attr->show)
476 ret = f_serial_opts_attr->show(opts, page);
477
478 return ret;
479}
480
481static void obex_attr_release(struct config_item *item)
482{
483 struct f_serial_opts *opts = to_f_serial_opts(item);
484
485 usb_put_function_instance(&opts->func_inst);
486}
487
488static struct configfs_item_operations obex_item_ops = {
489 .release = obex_attr_release,
490 .show_attribute = f_obex_attr_show,
491};
492
493static ssize_t f_obex_port_num_show(struct f_serial_opts *opts, char *page)
494{
495 return sprintf(page, "%u\n", opts->port_num);
496}
497
498static struct f_serial_opts_attribute f_obex_port_num =
499 __CONFIGFS_ATTR_RO(port_num, f_obex_port_num_show);
500
501static struct configfs_attribute *acm_attrs[] = {
502 &f_obex_port_num.attr,
503 NULL,
504};
505
506static struct config_item_type obex_func_type = {
507 .ct_item_ops = &obex_item_ops,
508 .ct_attrs = acm_attrs,
509 .ct_owner = THIS_MODULE,
510};
511
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100512static void obex_free_inst(struct usb_function_instance *f)
513{
514 struct f_serial_opts *opts;
515
516 opts = container_of(f, struct f_serial_opts, func_inst);
517 gserial_free_line(opts->port_num);
518 kfree(opts);
519}
520
521static struct usb_function_instance *obex_alloc_inst(void)
522{
523 struct f_serial_opts *opts;
524 int ret;
525
526 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
527 if (!opts)
528 return ERR_PTR(-ENOMEM);
529
530 opts->func_inst.free_func_inst = obex_free_inst;
531 ret = gserial_alloc_line(&opts->port_num);
532 if (ret) {
533 kfree(opts);
534 return ERR_PTR(ret);
535 }
Andrzej Pietrasiewiczecfd3f72013-03-27 12:13:25 +0100536 config_group_init_type_name(&opts->func_inst.group, "",
537 &obex_func_type);
Andrzej Pietrasiewicz1d8fc252013-03-21 15:33:42 +0100538
539 return &opts->func_inst;
540}
541
542static void obex_free(struct usb_function *f)
543{
544 struct f_obex *obex;
545
546 obex = func_to_obex(f);
547 kfree(obex);
548}
549
550static void obex_unbind(struct usb_configuration *c, struct usb_function *f)
551{
552 obex_string_defs[OBEX_CTRL_IDX].id = 0;
553 usb_free_all_descriptors(f);
554}
555
556struct usb_function *obex_alloc(struct usb_function_instance *fi)
557{
558 struct f_obex *obex;
559 struct f_serial_opts *opts;
560
561 /* allocate and initialize one new instance */
562 obex = kzalloc(sizeof(*obex), GFP_KERNEL);
563 if (!obex)
564 return ERR_PTR(-ENOMEM);
565
566 opts = container_of(fi, struct f_serial_opts, func_inst);
567
568 obex->port_num = opts->port_num;
569
570 obex->port.connect = obex_connect;
571 obex->port.disconnect = obex_disconnect;
572
573 obex->port.func.name = "obex";
574 obex->port.func.strings = obex_strings;
575 /* descriptors are per-instance copies */
576 obex->port.func.bind = obex_bind;
577 obex->port.func.unbind = obex_unbind;
578 obex->port.func.set_alt = obex_set_alt;
579 obex->port.func.get_alt = obex_get_alt;
580 obex->port.func.disable = obex_disable;
581 obex->port.func.free_func = obex_free;
582
583 return &obex->port.func;
584}
585
586DECLARE_USB_FUNCTION_INIT(obex, obex_alloc_inst, obex_alloc);
587
588#endif
589
Felipe Balbi30867752008-08-18 17:39:30 -0700590MODULE_AUTHOR("Felipe Balbi");
591MODULE_LICENSE("GPL");