serial.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. /*
  2. * USB Serial Converter stuff
  3. *
  4. * Copyright (C) 1999 - 2005
  5. * Greg Kroah-Hartman (greg@kroah.com)
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  10. *
  11. */
  12. #ifndef __LINUX_USB_SERIAL_H
  13. #define __LINUX_USB_SERIAL_H
  14. #include <linux/kref.h>
  15. #include <linux/mutex.h>
  16. #include <linux/sysrq.h>
  17. #include <linux/kfifo.h>
  18. #define SERIAL_TTY_MAJOR 188 /* Nice legal number now */
  19. #define SERIAL_TTY_MINORS 254 /* loads of devices :) */
  20. #define SERIAL_TTY_NO_MINOR 255 /* No minor was assigned */
  21. /* The maximum number of ports one device can grab at once */
  22. #define MAX_NUM_PORTS 8
  23. /* parity check flag */
  24. #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
  25. enum port_dev_state {
  26. PORT_UNREGISTERED,
  27. PORT_REGISTERING,
  28. PORT_REGISTERED,
  29. PORT_UNREGISTERING,
  30. };
  31. /* USB serial flags */
  32. #define USB_SERIAL_WRITE_BUSY 0
  33. /**
  34. * usb_serial_port: structure for the specific ports of a device.
  35. * @serial: pointer back to the struct usb_serial owner of this port.
  36. * @port: pointer to the corresponding tty_port for this port.
  37. * @lock: spinlock to grab when updating portions of this structure.
  38. * @number: the number of the port (the minor number).
  39. * @interrupt_in_buffer: pointer to the interrupt in buffer for this port.
  40. * @interrupt_in_urb: pointer to the interrupt in struct urb for this port.
  41. * @interrupt_in_endpointAddress: endpoint address for the interrupt in pipe
  42. * for this port.
  43. * @interrupt_out_buffer: pointer to the interrupt out buffer for this port.
  44. * @interrupt_out_size: the size of the interrupt_out_buffer, in bytes.
  45. * @interrupt_out_urb: pointer to the interrupt out struct urb for this port.
  46. * @interrupt_out_endpointAddress: endpoint address for the interrupt out pipe
  47. * for this port.
  48. * @bulk_in_buffer: pointer to the bulk in buffer for this port.
  49. * @bulk_in_size: the size of the bulk_in_buffer, in bytes.
  50. * @read_urb: pointer to the bulk in struct urb for this port.
  51. * @bulk_in_endpointAddress: endpoint address for the bulk in pipe for this
  52. * port.
  53. * @bulk_in_buffers: pointers to the bulk in buffers for this port
  54. * @read_urbs: pointers to the bulk in urbs for this port
  55. * @read_urbs_free: status bitmap the for bulk in urbs
  56. * @bulk_out_buffer: pointer to the bulk out buffer for this port.
  57. * @bulk_out_size: the size of the bulk_out_buffer, in bytes.
  58. * @write_urb: pointer to the bulk out struct urb for this port.
  59. * @write_fifo: kfifo used to buffer outgoing data
  60. * @bulk_out_buffers: pointers to the bulk out buffers for this port
  61. * @write_urbs: pointers to the bulk out urbs for this port
  62. * @write_urbs_free: status bitmap the for bulk out urbs
  63. * @tx_bytes: number of bytes currently in host stack queues
  64. * @bulk_out_endpointAddress: endpoint address for the bulk out pipe for this
  65. * port.
  66. * @flags: usb serial port flags
  67. * @write_wait: a wait_queue_head_t used by the port.
  68. * @work: work queue entry for the line discipline waking up.
  69. * @throttled: nonzero if the read urb is inactive to throttle the device
  70. * @throttle_req: nonzero if the tty wants to throttle us
  71. * @dev: pointer to the serial device
  72. *
  73. * This structure is used by the usb-serial core and drivers for the specific
  74. * ports of a device.
  75. */
  76. struct usb_serial_port {
  77. struct usb_serial *serial;
  78. struct tty_port port;
  79. spinlock_t lock;
  80. unsigned char number;
  81. unsigned char *interrupt_in_buffer;
  82. struct urb *interrupt_in_urb;
  83. __u8 interrupt_in_endpointAddress;
  84. unsigned char *interrupt_out_buffer;
  85. int interrupt_out_size;
  86. struct urb *interrupt_out_urb;
  87. __u8 interrupt_out_endpointAddress;
  88. unsigned char *bulk_in_buffer;
  89. int bulk_in_size;
  90. struct urb *read_urb;
  91. __u8 bulk_in_endpointAddress;
  92. unsigned char *bulk_in_buffers[2];
  93. struct urb *read_urbs[2];
  94. unsigned long read_urbs_free;
  95. unsigned char *bulk_out_buffer;
  96. int bulk_out_size;
  97. struct urb *write_urb;
  98. struct kfifo write_fifo;
  99. unsigned char *bulk_out_buffers[2];
  100. struct urb *write_urbs[2];
  101. unsigned long write_urbs_free;
  102. __u8 bulk_out_endpointAddress;
  103. int tx_bytes;
  104. unsigned long flags;
  105. wait_queue_head_t write_wait;
  106. struct work_struct work;
  107. char throttled;
  108. char throttle_req;
  109. unsigned long sysrq; /* sysrq timeout */
  110. struct device dev;
  111. enum port_dev_state dev_state;
  112. };
  113. #define to_usb_serial_port(d) container_of(d, struct usb_serial_port, dev)
  114. /* get and set the port private data pointer helper functions */
  115. static inline void *usb_get_serial_port_data(struct usb_serial_port *port)
  116. {
  117. return dev_get_drvdata(&port->dev);
  118. }
  119. static inline void usb_set_serial_port_data(struct usb_serial_port *port,
  120. void *data)
  121. {
  122. dev_set_drvdata(&port->dev, data);
  123. }
  124. /**
  125. * usb_serial - structure used by the usb-serial core for a device
  126. * @dev: pointer to the struct usb_device for this device
  127. * @type: pointer to the struct usb_serial_driver for this device
  128. * @interface: pointer to the struct usb_interface for this device
  129. * @minor: the starting minor number for this device
  130. * @num_ports: the number of ports this device has
  131. * @num_interrupt_in: number of interrupt in endpoints we have
  132. * @num_interrupt_out: number of interrupt out endpoints we have
  133. * @num_bulk_in: number of bulk in endpoints we have
  134. * @num_bulk_out: number of bulk out endpoints we have
  135. * @port: array of struct usb_serial_port structures for the different ports.
  136. * @private: place to put any driver specific information that is needed. The
  137. * usb-serial driver is required to manage this data, the usb-serial core
  138. * will not touch this. Use usb_get_serial_data() and
  139. * usb_set_serial_data() to access this.
  140. */
  141. struct usb_serial {
  142. struct usb_device *dev;
  143. struct usb_serial_driver *type;
  144. struct usb_interface *interface;
  145. unsigned char disconnected:1;
  146. unsigned char suspending:1;
  147. unsigned char attached:1;
  148. unsigned char minor;
  149. unsigned char num_ports;
  150. unsigned char num_port_pointers;
  151. char num_interrupt_in;
  152. char num_interrupt_out;
  153. char num_bulk_in;
  154. char num_bulk_out;
  155. struct usb_serial_port *port[MAX_NUM_PORTS];
  156. struct kref kref;
  157. struct mutex disc_mutex;
  158. void *private;
  159. };
  160. #define to_usb_serial(d) container_of(d, struct usb_serial, kref)
  161. /* get and set the serial private data pointer helper functions */
  162. static inline void *usb_get_serial_data(struct usb_serial *serial)
  163. {
  164. return serial->private;
  165. }
  166. static inline void usb_set_serial_data(struct usb_serial *serial, void *data)
  167. {
  168. serial->private = data;
  169. }
  170. /**
  171. * usb_serial_driver - describes a usb serial driver
  172. * @description: pointer to a string that describes this driver. This string
  173. * used in the syslog messages when a device is inserted or removed.
  174. * @id_table: pointer to a list of usb_device_id structures that define all
  175. * of the devices this structure can support.
  176. * @num_ports: the number of different ports this device will have.
  177. * @bulk_in_size: minimum number of bytes to allocate for bulk-in buffer
  178. * (0 = end-point size)
  179. * @bulk_out_size: bytes to allocate for bulk-out buffer (0 = end-point size)
  180. * @calc_num_ports: pointer to a function to determine how many ports this
  181. * device has dynamically. It will be called after the probe()
  182. * callback is called, but before attach()
  183. * @probe: pointer to the driver's probe function.
  184. * This will be called when the device is inserted into the system,
  185. * but before the device has been fully initialized by the usb_serial
  186. * subsystem. Use this function to download any firmware to the device,
  187. * or any other early initialization that might be needed.
  188. * Return 0 to continue on with the initialization sequence. Anything
  189. * else will abort it.
  190. * @attach: pointer to the driver's attach function.
  191. * This will be called when the struct usb_serial structure is fully set
  192. * set up. Do any local initialization of the device, or any private
  193. * memory structure allocation at this point in time.
  194. * @disconnect: pointer to the driver's disconnect function. This will be
  195. * called when the device is unplugged or unbound from the driver.
  196. * @release: pointer to the driver's release function. This will be called
  197. * when the usb_serial data structure is about to be destroyed.
  198. * @usb_driver: pointer to the struct usb_driver that controls this
  199. * device. This is necessary to allow dynamic ids to be added to
  200. * the driver from sysfs.
  201. *
  202. * This structure is defines a USB Serial driver. It provides all of
  203. * the information that the USB serial core code needs. If the function
  204. * pointers are defined, then the USB serial core code will call them when
  205. * the corresponding tty port functions are called. If they are not
  206. * called, the generic serial function will be used instead.
  207. *
  208. * The driver.owner field should be set to the module owner of this driver.
  209. * The driver.name field should be set to the name of this driver (remember
  210. * it will show up in sysfs, so it needs to be short and to the point.
  211. * Using the module name is a good idea.)
  212. */
  213. struct usb_serial_driver {
  214. const char *description;
  215. const struct usb_device_id *id_table;
  216. char num_ports;
  217. struct list_head driver_list;
  218. struct device_driver driver;
  219. struct usb_driver *usb_driver;
  220. struct usb_dynids dynids;
  221. size_t bulk_in_size;
  222. size_t bulk_out_size;
  223. int (*probe)(struct usb_serial *serial, const struct usb_device_id *id);
  224. int (*attach)(struct usb_serial *serial);
  225. int (*calc_num_ports) (struct usb_serial *serial);
  226. void (*disconnect)(struct usb_serial *serial);
  227. void (*release)(struct usb_serial *serial);
  228. int (*port_probe)(struct usb_serial_port *port);
  229. int (*port_remove)(struct usb_serial_port *port);
  230. int (*suspend)(struct usb_serial *serial, pm_message_t message);
  231. int (*resume)(struct usb_serial *serial);
  232. /* serial function calls */
  233. /* Called by console and by the tty layer */
  234. int (*open)(struct tty_struct *tty, struct usb_serial_port *port);
  235. void (*close)(struct usb_serial_port *port);
  236. int (*write)(struct tty_struct *tty, struct usb_serial_port *port,
  237. const unsigned char *buf, int count);
  238. /* Called only by the tty layer */
  239. int (*write_room)(struct tty_struct *tty);
  240. int (*ioctl)(struct tty_struct *tty,
  241. unsigned int cmd, unsigned long arg);
  242. void (*set_termios)(struct tty_struct *tty,
  243. struct usb_serial_port *port, struct ktermios *old);
  244. void (*break_ctl)(struct tty_struct *tty, int break_state);
  245. int (*chars_in_buffer)(struct tty_struct *tty);
  246. void (*throttle)(struct tty_struct *tty);
  247. void (*unthrottle)(struct tty_struct *tty);
  248. int (*tiocmget)(struct tty_struct *tty);
  249. int (*tiocmset)(struct tty_struct *tty,
  250. unsigned int set, unsigned int clear);
  251. int (*get_icount)(struct tty_struct *tty,
  252. struct serial_icounter_struct *icount);
  253. /* Called by the tty layer for port level work. There may or may not
  254. be an attached tty at this point */
  255. void (*dtr_rts)(struct usb_serial_port *port, int on);
  256. int (*carrier_raised)(struct usb_serial_port *port);
  257. /* Called by the usb serial hooks to allow the user to rework the
  258. termios state */
  259. void (*init_termios)(struct tty_struct *tty);
  260. /* USB events */
  261. void (*read_int_callback)(struct urb *urb);
  262. void (*write_int_callback)(struct urb *urb);
  263. void (*read_bulk_callback)(struct urb *urb);
  264. void (*write_bulk_callback)(struct urb *urb);
  265. /* Called by the generic read bulk callback */
  266. void (*process_read_urb)(struct urb *urb);
  267. /* Called by the generic write implementation */
  268. int (*prepare_write_buffer)(struct usb_serial_port *port,
  269. void *dest, size_t size);
  270. };
  271. #define to_usb_serial_driver(d) \
  272. container_of(d, struct usb_serial_driver, driver)
  273. extern int usb_serial_register_drivers(struct usb_driver *udriver,
  274. struct usb_serial_driver * const serial_drivers[]);
  275. extern void usb_serial_deregister_drivers(struct usb_driver *udriver,
  276. struct usb_serial_driver * const serial_drivers[]);
  277. extern void usb_serial_port_softint(struct usb_serial_port *port);
  278. extern int usb_serial_probe(struct usb_interface *iface,
  279. const struct usb_device_id *id);
  280. extern void usb_serial_disconnect(struct usb_interface *iface);
  281. extern int usb_serial_suspend(struct usb_interface *intf, pm_message_t message);
  282. extern int usb_serial_resume(struct usb_interface *intf);
  283. extern int ezusb_writememory(struct usb_serial *serial, int address,
  284. unsigned char *data, int length, __u8 bRequest);
  285. extern int ezusb_set_reset(struct usb_serial *serial, unsigned char reset_bit);
  286. /* USB Serial console functions */
  287. #ifdef CONFIG_USB_SERIAL_CONSOLE
  288. extern void usb_serial_console_init(int debug, int minor);
  289. extern void usb_serial_console_exit(void);
  290. extern void usb_serial_console_disconnect(struct usb_serial *serial);
  291. #else
  292. static inline void usb_serial_console_init(int debug, int minor) { }
  293. static inline void usb_serial_console_exit(void) { }
  294. static inline void usb_serial_console_disconnect(struct usb_serial *serial) {}
  295. #endif
  296. /* Functions needed by other parts of the usbserial core */
  297. extern struct usb_serial *usb_serial_get_by_index(unsigned int minor);
  298. extern void usb_serial_put(struct usb_serial *serial);
  299. extern int usb_serial_generic_open(struct tty_struct *tty,
  300. struct usb_serial_port *port);
  301. extern int usb_serial_generic_write(struct tty_struct *tty,
  302. struct usb_serial_port *port, const unsigned char *buf, int count);
  303. extern void usb_serial_generic_close(struct usb_serial_port *port);
  304. extern int usb_serial_generic_resume(struct usb_serial *serial);
  305. extern int usb_serial_generic_write_room(struct tty_struct *tty);
  306. extern int usb_serial_generic_chars_in_buffer(struct tty_struct *tty);
  307. extern void usb_serial_generic_read_bulk_callback(struct urb *urb);
  308. extern void usb_serial_generic_write_bulk_callback(struct urb *urb);
  309. extern void usb_serial_generic_throttle(struct tty_struct *tty);
  310. extern void usb_serial_generic_unthrottle(struct tty_struct *tty);
  311. extern void usb_serial_generic_disconnect(struct usb_serial *serial);
  312. extern void usb_serial_generic_release(struct usb_serial *serial);
  313. extern int usb_serial_generic_register(int debug);
  314. extern void usb_serial_generic_deregister(void);
  315. extern int usb_serial_generic_submit_read_urbs(struct usb_serial_port *port,
  316. gfp_t mem_flags);
  317. extern void usb_serial_generic_process_read_urb(struct urb *urb);
  318. extern int usb_serial_generic_prepare_write_buffer(struct usb_serial_port *port,
  319. void *dest, size_t size);
  320. extern int usb_serial_handle_sysrq_char(struct usb_serial_port *port,
  321. unsigned int ch);
  322. extern int usb_serial_handle_break(struct usb_serial_port *port);
  323. extern void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
  324. struct tty_struct *tty,
  325. unsigned int status);
  326. extern int usb_serial_bus_register(struct usb_serial_driver *device);
  327. extern void usb_serial_bus_deregister(struct usb_serial_driver *device);
  328. extern struct usb_serial_driver usb_serial_generic_device;
  329. extern struct bus_type usb_serial_bus_type;
  330. extern struct tty_driver *usb_serial_tty_driver;
  331. static inline void usb_serial_debug_data(int debug,
  332. struct device *dev,
  333. const char *function, int size,
  334. const unsigned char *data)
  335. {
  336. int i;
  337. if (debug) {
  338. dev_printk(KERN_DEBUG, dev, "%s - length = %d, data = ",
  339. function, size);
  340. for (i = 0; i < size; ++i)
  341. printk("%.2x ", data[i]);
  342. printk("\n");
  343. }
  344. }
  345. /* Use our own dbg macro */
  346. #undef dbg
  347. #define dbg(format, arg...) \
  348. do { \
  349. if (debug) \
  350. printk(KERN_DEBUG "%s: " format "\n", __FILE__, ##arg); \
  351. } while (0)
  352. /*
  353. * Macro for reporting errors in write path to avoid inifinite loop
  354. * when port is used as a console.
  355. */
  356. #define dev_err_console(usport, fmt, ...) \
  357. do { \
  358. static bool __print_once; \
  359. struct usb_serial_port *__port = (usport); \
  360. \
  361. if (!__port->port.console || !__print_once) { \
  362. __print_once = true; \
  363. dev_err(&__port->dev, fmt, ##__VA_ARGS__); \
  364. } \
  365. } while (0)
  366. /*
  367. * module_usb_serial_driver() - Helper macro for registering a USB Serial driver
  368. * @__usb_driver: usb_driver struct to register
  369. * @__serial_drivers: list of usb_serial drivers to register
  370. *
  371. * Helper macro for USB serial drivers which do not do anything special
  372. * in module init/exit. This eliminates a lot of boilerplate. Each
  373. * module may only use this macro once, and calling it replaces
  374. * module_init() and module_exit()
  375. *
  376. * Note, we can't use the generic module_driver() call here, due to the
  377. * two parameters in the usb_serial_* functions, so we roll our own here
  378. * :(
  379. */
  380. #define module_usb_serial_driver(__usb_driver, __serial_drivers) \
  381. static int __init usb_serial_driver_init(void) \
  382. { \
  383. return usb_serial_register_drivers(&(__usb_driver), \
  384. (__serial_drivers)); \
  385. } \
  386. module_init(usb_serial_driver_init); \
  387. static void __exit usb_serial_driver_exit(void) \
  388. { \
  389. return usb_serial_deregister_drivers(&(__usb_driver), \
  390. (__serial_drivers)); \
  391. } \
  392. module_exit(usb_serial_driver_exit);
  393. #endif /* __LINUX_USB_SERIAL_H */