blob: c20210c0babdb10c2aac26a8d94c0ee6f020db8e [file] [log] [blame]
David Brownellc1dca562008-06-19 17:51:44 -07001/*
2 * u_serial.h - interface to USB gadget "serial port"/TTY utilities
3 *
4 * Copyright (C) 2008 David Brownell
5 * Copyright (C) 2008 by Nokia Corporation
6 *
7 * This software is distributed under the terms of the GNU General
8 * Public License ("GPL") as published by the Free Software Foundation,
9 * either version 2 of that License or (at your option) any later version.
10 */
11
12#ifndef __U_SERIAL_H
13#define __U_SERIAL_H
14
David Brownell4d5a73d2008-06-19 18:18:40 -070015#include <linux/usb/composite.h>
David Brownellc1dca562008-06-19 17:51:44 -070016#include <linux/usb/cdc.h>
17
Sebastian Andrzej Siewior19b10a82012-12-23 21:10:06 +010018#define MAX_U_SERIAL_PORTS 4
19
Sebastian Andrzej Siewiorff47f592012-12-23 21:10:07 +010020struct f_serial_opts {
21 struct usb_function_instance func_inst;
22 u8 port_num;
23};
24
David Brownellc1dca562008-06-19 17:51:44 -070025/*
26 * One non-multiplexed "serial" I/O port ... there can be several of these
27 * on any given USB peripheral device, if it provides enough endpoints.
28 *
29 * The "u_serial" utility component exists to do one thing: manage TTY
30 * style I/O using the USB peripheral endpoints listed here, including
31 * hookups to sysfs and /dev for each logical "tty" device.
32 *
David Brownell1f1ba112008-08-06 18:49:57 -070033 * REVISIT at least ACM could support tiocmget() if needed.
David Brownellc1dca562008-06-19 17:51:44 -070034 *
35 * REVISIT someday, allow multiplexing several TTYs over these endpoints.
36 */
37struct gserial {
David Brownell4d5a73d2008-06-19 18:18:40 -070038 struct usb_function func;
David Brownellc1dca562008-06-19 17:51:44 -070039
40 /* port is managed by gserial_{connect,disconnect} */
41 struct gs_port *ioport;
42
43 struct usb_ep *in;
44 struct usb_ep *out;
David Brownellc1dca562008-06-19 17:51:44 -070045
46 /* REVISIT avoid this CDC-ACM support harder ... */
47 struct usb_cdc_line_coding port_line_coding; /* 9600-8-N-1 etc */
David Brownell1f1ba112008-08-06 18:49:57 -070048
49 /* notification callbacks */
50 void (*connect)(struct gserial *p);
51 void (*disconnect)(struct gserial *p);
52 int (*send_break)(struct gserial *p, int duration);
David Brownellc1dca562008-06-19 17:51:44 -070053};
54
David Brownell1f1ba112008-08-06 18:49:57 -070055/* utilities to allocate/free request and buffer */
56struct usb_request *gs_alloc_req(struct usb_ep *ep, unsigned len, gfp_t flags);
57void gs_free_req(struct usb_ep *, struct usb_request *req);
58
Sebastian Andrzej Siewior19b10a82012-12-23 21:10:06 +010059/* management of individual TTY ports */
60int gserial_alloc_line(unsigned char *port_line);
61void gserial_free_line(unsigned char port_line);
David Brownellc1dca562008-06-19 17:51:44 -070062
63/* connect/disconnect is handled by individual functions */
64int gserial_connect(struct gserial *, u8 port_num);
65void gserial_disconnect(struct gserial *);
66
David Brownell4d5a73d2008-06-19 18:18:40 -070067/* functions are bound to configurations by a config or gadget driver */
David Brownell61d8bae2008-06-19 18:18:50 -070068int gser_bind_config(struct usb_configuration *c, u8 port_num);
Felipe Balbi30867752008-08-18 17:39:30 -070069int obex_bind_config(struct usb_configuration *c, u8 port_num);
David Brownell4d5a73d2008-06-19 18:18:40 -070070
David Brownellc1dca562008-06-19 17:51:44 -070071#endif /* __U_SERIAL_H */