1 // SPDX-License-Identifier: GPL-2.0
3 * Fintek F81232 USB to serial adaptor driver
4 * Fintek F81532A/534A/535/536 USB to 2/4/8/12 serial adaptor driver
6 * Copyright (C) 2012 Greg Kroah-Hartman (gregkh@linuxfoundation.org)
7 * Copyright (C) 2012 Linux Foundation
10 #include <linux/kernel.h>
11 #include <linux/errno.h>
12 #include <linux/slab.h>
13 #include <linux/tty.h>
14 #include <linux/tty_driver.h>
15 #include <linux/tty_flip.h>
16 #include <linux/serial.h>
17 #include <linux/module.h>
18 #include <linux/moduleparam.h>
19 #include <linux/mutex.h>
20 #include <linux/uaccess.h>
21 #include <linux/usb.h>
22 #include <linux/usb/serial.h>
23 #include <linux/serial_reg.h>
26 { USB_DEVICE(0x1934, 0x0706) } /* 1 port UART device */
28 #define F81534A_SERIES_ID \
29 { USB_DEVICE(0x2c42, 0x1602) }, /* In-Box 2 port UART device */ \
30 { USB_DEVICE(0x2c42, 0x1604) }, /* In-Box 4 port UART device */ \
31 { USB_DEVICE(0x2c42, 0x1605) }, /* In-Box 8 port UART device */ \
32 { USB_DEVICE(0x2c42, 0x1606) }, /* In-Box 12 port UART device */ \
33 { USB_DEVICE(0x2c42, 0x1608) }, /* Non-Flash type */ \
34 { USB_DEVICE(0x2c42, 0x1632) }, /* 2 port UART device */ \
35 { USB_DEVICE(0x2c42, 0x1634) }, /* 4 port UART device */ \
36 { USB_DEVICE(0x2c42, 0x1635) }, /* 8 port UART device */ \
37 { USB_DEVICE(0x2c42, 0x1636) } /* 12 port UART device */
39 #define F81534A_CTRL_ID \
40 { USB_DEVICE(0x2c42, 0x16f8) } /* Global control device */
42 static const struct usb_device_id f81232_id_table[] = {
44 { } /* Terminating entry */
47 static const struct usb_device_id f81534a_id_table[] = {
49 { } /* Terminating entry */
52 static const struct usb_device_id f81534a_ctrl_id_table[] = {
54 { } /* Terminating entry */
57 static const struct usb_device_id combined_id_table[] = {
61 { } /* Terminating entry */
63 MODULE_DEVICE_TABLE(usb, combined_id_table);
65 /* Maximum baudrate for F81232 */
66 #define F81232_MAX_BAUDRATE 1500000
67 #define F81232_DEF_BAUDRATE 9600
69 /* USB Control EP parameter */
70 #define F81232_REGISTER_REQUEST 0xa0
71 #define F81232_GET_REGISTER 0xc0
72 #define F81232_SET_REGISTER 0x40
73 #define F81534A_ACCESS_REG_RETRY 2
75 #define SERIAL_BASE_ADDRESS 0x0120
76 #define RECEIVE_BUFFER_REGISTER (0x00 + SERIAL_BASE_ADDRESS)
77 #define INTERRUPT_ENABLE_REGISTER (0x01 + SERIAL_BASE_ADDRESS)
78 #define FIFO_CONTROL_REGISTER (0x02 + SERIAL_BASE_ADDRESS)
79 #define LINE_CONTROL_REGISTER (0x03 + SERIAL_BASE_ADDRESS)
80 #define MODEM_CONTROL_REGISTER (0x04 + SERIAL_BASE_ADDRESS)
81 #define LINE_STATUS_REGISTER (0x05 + SERIAL_BASE_ADDRESS)
82 #define MODEM_STATUS_REGISTER (0x06 + SERIAL_BASE_ADDRESS)
85 * F81232 Clock registers (106h)
87 * Bit1-0: Clock source selector
93 #define F81232_CLK_REGISTER 0x106
94 #define F81232_CLK_1_846_MHZ 0
95 #define F81232_CLK_18_46_MHZ BIT(0)
96 #define F81232_CLK_24_MHZ BIT(1)
97 #define F81232_CLK_14_77_MHZ (BIT(1) | BIT(0))
98 #define F81232_CLK_MASK GENMASK(1, 0)
100 #define F81534A_MODE_REG 0x107
101 #define F81534A_TRIGGER_MASK GENMASK(3, 2)
102 #define F81534A_TRIGGER_MULTIPLE_4X BIT(3)
103 #define F81534A_FIFO_128BYTE (BIT(1) | BIT(0))
105 /* Serial port self GPIO control, 2bytes [control&output data][input data] */
106 #define F81534A_GPIO_REG 0x10e
107 #define F81534A_GPIO_MODE2_DIR BIT(6) /* 1: input, 0: output */
108 #define F81534A_GPIO_MODE1_DIR BIT(5)
109 #define F81534A_GPIO_MODE0_DIR BIT(4)
110 #define F81534A_GPIO_MODE2_OUTPUT BIT(2)
111 #define F81534A_GPIO_MODE1_OUTPUT BIT(1)
112 #define F81534A_GPIO_MODE0_OUTPUT BIT(0)
114 #define F81534A_CTRL_CMD_ENABLE_PORT 0x116
116 struct f81232_private {
122 struct work_struct lsr_work;
123 struct work_struct interrupt_work;
124 struct usb_serial_port *port;
127 static u32 const baudrate_table[] = { 115200, 921600, 1152000, 1500000 };
128 static u8 const clock_table[] = { F81232_CLK_1_846_MHZ, F81232_CLK_14_77_MHZ,
129 F81232_CLK_18_46_MHZ, F81232_CLK_24_MHZ };
131 static int calc_baud_divisor(speed_t baudrate, speed_t clockrate)
136 return DIV_ROUND_CLOSEST(clockrate, baudrate);
139 static int f81232_get_register(struct usb_serial_port *port, u16 reg, u8 *val)
143 struct usb_device *dev = port->serial->dev;
145 tmp = kmalloc(sizeof(*val), GFP_KERNEL);
149 status = usb_control_msg(dev,
150 usb_rcvctrlpipe(dev, 0),
151 F81232_REGISTER_REQUEST,
157 USB_CTRL_GET_TIMEOUT);
158 if (status != sizeof(*val)) {
159 dev_err(&port->dev, "%s failed status: %d\n", __func__, status);
162 status = usb_translate_errors(status);
174 static int f81232_set_register(struct usb_serial_port *port, u16 reg, u8 val)
178 struct usb_device *dev = port->serial->dev;
180 tmp = kmalloc(sizeof(val), GFP_KERNEL);
186 status = usb_control_msg(dev,
187 usb_sndctrlpipe(dev, 0),
188 F81232_REGISTER_REQUEST,
194 USB_CTRL_SET_TIMEOUT);
196 dev_err(&port->dev, "%s failed status: %d\n", __func__, status);
197 status = usb_translate_errors(status);
206 static int f81232_set_mask_register(struct usb_serial_port *port, u16 reg,
212 status = f81232_get_register(port, reg, &tmp);
216 tmp = (tmp & ~mask) | (val & mask);
218 return f81232_set_register(port, reg, tmp);
221 static void f81232_read_msr(struct usb_serial_port *port)
225 struct tty_struct *tty;
226 struct f81232_private *priv = usb_get_serial_port_data(port);
228 mutex_lock(&priv->lock);
229 status = f81232_get_register(port, MODEM_STATUS_REGISTER,
232 dev_err(&port->dev, "%s fail, status: %d\n", __func__, status);
233 mutex_unlock(&priv->lock);
237 if (!(current_msr & UART_MSR_ANY_DELTA)) {
238 mutex_unlock(&priv->lock);
242 priv->modem_status = current_msr;
244 if (current_msr & UART_MSR_DCTS)
246 if (current_msr & UART_MSR_DDSR)
248 if (current_msr & UART_MSR_TERI)
250 if (current_msr & UART_MSR_DDCD) {
252 tty = tty_port_tty_get(&port->port);
254 usb_serial_handle_dcd_change(port, tty,
255 current_msr & UART_MSR_DCD);
261 wake_up_interruptible(&port->port.delta_msr_wait);
262 mutex_unlock(&priv->lock);
265 static int f81232_set_mctrl(struct usb_serial_port *port,
266 unsigned int set, unsigned int clear)
270 struct f81232_private *priv = usb_get_serial_port_data(port);
272 if (((set | clear) & (TIOCM_DTR | TIOCM_RTS)) == 0)
273 return 0; /* no change */
275 /* 'set' takes precedence over 'clear' */
278 /* force enable interrupt with OUT2 */
279 mutex_lock(&priv->lock);
280 val = UART_MCR_OUT2 | priv->modem_control;
282 if (clear & TIOCM_DTR)
283 val &= ~UART_MCR_DTR;
285 if (clear & TIOCM_RTS)
286 val &= ~UART_MCR_RTS;
294 dev_dbg(&port->dev, "%s new:%02x old:%02x\n", __func__,
295 val, priv->modem_control);
297 status = f81232_set_register(port, MODEM_CONTROL_REGISTER, val);
299 dev_err(&port->dev, "%s set MCR status < 0\n", __func__);
300 mutex_unlock(&priv->lock);
304 priv->modem_control = val;
305 mutex_unlock(&priv->lock);
310 static void f81232_update_line_status(struct usb_serial_port *port,
312 size_t actual_length)
314 struct f81232_private *priv = usb_get_serial_port_data(port);
319 switch (data[0] & 0x07) {
320 case 0x00: /* msr change */
321 dev_dbg(&port->dev, "IIR: MSR Change: %02x\n", data[0]);
322 schedule_work(&priv->interrupt_work);
324 case 0x02: /* tx-empty */
326 case 0x04: /* rx data available */
328 case 0x06: /* lsr change */
329 /* we can forget it. the LSR will read from bulk-in */
330 dev_dbg(&port->dev, "IIR: LSR Change: %02x\n", data[0]);
335 static void f81232_read_int_callback(struct urb *urb)
337 struct usb_serial_port *port = urb->context;
338 unsigned char *data = urb->transfer_buffer;
339 unsigned int actual_length = urb->actual_length;
340 int status = urb->status;
350 /* this urb is terminated, clean up */
351 dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n",
355 dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n",
360 usb_serial_debug_data(&port->dev, __func__,
361 urb->actual_length, urb->transfer_buffer);
363 f81232_update_line_status(port, data, actual_length);
366 retval = usb_submit_urb(urb, GFP_ATOMIC);
368 dev_err(&urb->dev->dev,
369 "%s - usb_submit_urb failed with result %d\n",
373 static char f81232_handle_lsr(struct usb_serial_port *port, u8 lsr)
375 struct f81232_private *priv = usb_get_serial_port_data(port);
376 char tty_flag = TTY_NORMAL;
378 if (!(lsr & UART_LSR_BRK_ERROR_BITS))
381 if (lsr & UART_LSR_BI) {
382 tty_flag = TTY_BREAK;
384 usb_serial_handle_break(port);
385 } else if (lsr & UART_LSR_PE) {
386 tty_flag = TTY_PARITY;
387 port->icount.parity++;
388 } else if (lsr & UART_LSR_FE) {
389 tty_flag = TTY_FRAME;
390 port->icount.frame++;
393 if (lsr & UART_LSR_OE) {
394 port->icount.overrun++;
395 schedule_work(&priv->lsr_work);
396 tty_insert_flip_char(&port->port, 0, TTY_OVERRUN);
402 static void f81232_process_read_urb(struct urb *urb)
404 struct usb_serial_port *port = urb->context;
405 unsigned char *data = urb->transfer_buffer;
411 * When opening the port we get a 1-byte packet with the current LSR,
414 if ((urb->actual_length < 2) || (urb->actual_length % 2))
417 /* bulk-in data: [LSR(1Byte)+DATA(1Byte)][LSR(1Byte)+DATA(1Byte)]... */
419 for (i = 0; i < urb->actual_length; i += 2) {
421 tty_flag = f81232_handle_lsr(port, lsr);
424 if (usb_serial_handle_sysrq_char(port, data[i + 1]))
428 tty_insert_flip_char(&port->port, data[i + 1], tty_flag);
431 tty_flip_buffer_push(&port->port);
434 static void f81534a_process_read_urb(struct urb *urb)
436 struct usb_serial_port *port = urb->context;
437 unsigned char *data = urb->transfer_buffer;
443 if (urb->actual_length < 3) {
444 dev_err(&port->dev, "short message received: %d\n",
450 if (len != urb->actual_length) {
451 dev_err(&port->dev, "malformed message received: %d (%d)\n",
452 urb->actual_length, len);
456 /* bulk-in data: [LEN][Data.....][LSR] */
458 tty_flag = f81232_handle_lsr(port, lsr);
461 for (i = 1; i < len - 1; ++i) {
462 if (!usb_serial_handle_sysrq_char(port, data[i])) {
463 tty_insert_flip_char(&port->port, data[i],
468 tty_insert_flip_string_fixed_flag(&port->port, &data[1],
472 tty_flip_buffer_push(&port->port);
475 static void f81232_break_ctl(struct tty_struct *tty, int break_state)
477 struct usb_serial_port *port = tty->driver_data;
478 struct f81232_private *priv = usb_get_serial_port_data(port);
481 mutex_lock(&priv->lock);
484 priv->shadow_lcr |= UART_LCR_SBC;
486 priv->shadow_lcr &= ~UART_LCR_SBC;
488 status = f81232_set_register(port, LINE_CONTROL_REGISTER,
491 dev_err(&port->dev, "set break failed: %d\n", status);
493 mutex_unlock(&priv->lock);
496 static int f81232_find_clk(speed_t baudrate)
500 for (idx = 0; idx < ARRAY_SIZE(baudrate_table); ++idx) {
501 if (baudrate <= baudrate_table[idx] &&
502 baudrate_table[idx] % baudrate == 0)
509 static void f81232_set_baudrate(struct tty_struct *tty,
510 struct usb_serial_port *port, speed_t baudrate,
511 speed_t old_baudrate)
513 struct f81232_private *priv = usb_get_serial_port_data(port);
519 speed_t baud_list[] = { baudrate, old_baudrate, F81232_DEF_BAUDRATE };
521 for (i = 0; i < ARRAY_SIZE(baud_list); ++i) {
522 idx = f81232_find_clk(baud_list[i]);
524 baudrate = baud_list[i];
525 tty_encode_baud_rate(tty, baudrate, baudrate);
533 priv->baud_base = baudrate_table[idx];
534 divisor = calc_baud_divisor(baudrate, priv->baud_base);
536 status = f81232_set_mask_register(port, F81232_CLK_REGISTER,
537 F81232_CLK_MASK, clock_table[idx]);
539 dev_err(&port->dev, "%s failed to set CLK_REG: %d\n",
544 status = f81232_get_register(port, LINE_CONTROL_REGISTER,
547 dev_err(&port->dev, "%s failed to get LCR: %d\n",
552 status = f81232_set_register(port, LINE_CONTROL_REGISTER,
553 lcr | UART_LCR_DLAB); /* Enable DLAB */
555 dev_err(&port->dev, "%s failed to set DLAB: %d\n",
560 status = f81232_set_register(port, RECEIVE_BUFFER_REGISTER,
561 divisor & 0x00ff); /* low */
563 dev_err(&port->dev, "%s failed to set baudrate MSB: %d\n",
568 status = f81232_set_register(port, INTERRUPT_ENABLE_REGISTER,
569 (divisor & 0xff00) >> 8); /* high */
571 dev_err(&port->dev, "%s failed to set baudrate LSB: %d\n",
576 status = f81232_set_register(port, LINE_CONTROL_REGISTER,
577 lcr & ~UART_LCR_DLAB);
579 dev_err(&port->dev, "%s failed to set DLAB: %d\n",
584 static int f81232_port_enable(struct usb_serial_port *port)
589 /* fifo on, trigger8, clear TX/RX*/
590 val = UART_FCR_TRIGGER_8 | UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR |
593 status = f81232_set_register(port, FIFO_CONTROL_REGISTER, val);
595 dev_err(&port->dev, "%s failed to set FCR: %d\n",
600 /* MSR Interrupt only, LSR will read from Bulk-in odd byte */
601 status = f81232_set_register(port, INTERRUPT_ENABLE_REGISTER,
604 dev_err(&port->dev, "%s failed to set IER: %d\n",
612 static int f81232_port_disable(struct usb_serial_port *port)
616 status = f81232_set_register(port, INTERRUPT_ENABLE_REGISTER, 0);
618 dev_err(&port->dev, "%s failed to set IER: %d\n",
626 static void f81232_set_termios(struct tty_struct *tty,
627 struct usb_serial_port *port, struct ktermios *old_termios)
629 struct f81232_private *priv = usb_get_serial_port_data(port);
635 /* Don't change anything if nothing has changed */
636 if (old_termios && !tty_termios_hw_change(&tty->termios, old_termios))
639 if (C_BAUD(tty) == B0)
640 f81232_set_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
641 else if (old_termios && (old_termios->c_cflag & CBAUD) == B0)
642 f81232_set_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
644 baudrate = tty_get_baud_rate(tty);
647 old_baud = tty_termios_baud_rate(old_termios);
649 old_baud = F81232_DEF_BAUDRATE;
651 f81232_set_baudrate(tty, port, baudrate, old_baud);
655 new_lcr |= UART_LCR_PARITY;
658 new_lcr |= UART_LCR_EPAR;
661 new_lcr |= UART_LCR_SPAR;
665 new_lcr |= UART_LCR_STOP;
667 switch (C_CSIZE(tty)) {
669 new_lcr |= UART_LCR_WLEN5;
672 new_lcr |= UART_LCR_WLEN6;
675 new_lcr |= UART_LCR_WLEN7;
679 new_lcr |= UART_LCR_WLEN8;
683 mutex_lock(&priv->lock);
685 new_lcr |= (priv->shadow_lcr & UART_LCR_SBC);
686 status = f81232_set_register(port, LINE_CONTROL_REGISTER, new_lcr);
688 dev_err(&port->dev, "%s failed to set LCR: %d\n",
692 priv->shadow_lcr = new_lcr;
694 mutex_unlock(&priv->lock);
697 static int f81232_tiocmget(struct tty_struct *tty)
700 struct usb_serial_port *port = tty->driver_data;
701 struct f81232_private *port_priv = usb_get_serial_port_data(port);
704 /* force get current MSR changed state */
705 f81232_read_msr(port);
707 mutex_lock(&port_priv->lock);
708 mcr = port_priv->modem_control;
709 msr = port_priv->modem_status;
710 mutex_unlock(&port_priv->lock);
712 r = (mcr & UART_MCR_DTR ? TIOCM_DTR : 0) |
713 (mcr & UART_MCR_RTS ? TIOCM_RTS : 0) |
714 (msr & UART_MSR_CTS ? TIOCM_CTS : 0) |
715 (msr & UART_MSR_DCD ? TIOCM_CAR : 0) |
716 (msr & UART_MSR_RI ? TIOCM_RI : 0) |
717 (msr & UART_MSR_DSR ? TIOCM_DSR : 0);
722 static int f81232_tiocmset(struct tty_struct *tty,
723 unsigned int set, unsigned int clear)
725 struct usb_serial_port *port = tty->driver_data;
727 return f81232_set_mctrl(port, set, clear);
730 static int f81232_open(struct tty_struct *tty, struct usb_serial_port *port)
734 result = f81232_port_enable(port);
740 f81232_set_termios(tty, port, NULL);
742 result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
744 dev_err(&port->dev, "%s - failed submitting interrupt urb,"
745 " error %d\n", __func__, result);
749 result = usb_serial_generic_open(tty, port);
751 usb_kill_urb(port->interrupt_in_urb);
758 static int f81534a_open(struct tty_struct *tty, struct usb_serial_port *port)
764 val = F81534A_TRIGGER_MULTIPLE_4X | F81534A_FIFO_128BYTE;
765 mask = F81534A_TRIGGER_MASK | F81534A_FIFO_128BYTE;
767 status = f81232_set_mask_register(port, F81534A_MODE_REG, mask, val);
769 dev_err(&port->dev, "failed to set MODE_REG: %d\n", status);
773 return f81232_open(tty, port);
776 static void f81232_close(struct usb_serial_port *port)
778 struct f81232_private *port_priv = usb_get_serial_port_data(port);
780 f81232_port_disable(port);
781 usb_serial_generic_close(port);
782 usb_kill_urb(port->interrupt_in_urb);
783 flush_work(&port_priv->interrupt_work);
784 flush_work(&port_priv->lsr_work);
787 static void f81232_dtr_rts(struct usb_serial_port *port, int on)
790 f81232_set_mctrl(port, TIOCM_DTR | TIOCM_RTS, 0);
792 f81232_set_mctrl(port, 0, TIOCM_DTR | TIOCM_RTS);
795 static bool f81232_tx_empty(struct usb_serial_port *port)
800 status = f81232_get_register(port, LINE_STATUS_REGISTER, &tmp);
802 if ((tmp & UART_LSR_TEMT) != UART_LSR_TEMT)
809 static int f81232_carrier_raised(struct usb_serial_port *port)
812 struct f81232_private *priv = usb_get_serial_port_data(port);
814 mutex_lock(&priv->lock);
815 msr = priv->modem_status;
816 mutex_unlock(&priv->lock);
818 if (msr & UART_MSR_DCD)
823 static void f81232_get_serial(struct tty_struct *tty, struct serial_struct *ss)
825 struct usb_serial_port *port = tty->driver_data;
826 struct f81232_private *priv = usb_get_serial_port_data(port);
828 ss->baud_base = priv->baud_base;
831 static void f81232_interrupt_work(struct work_struct *work)
833 struct f81232_private *priv =
834 container_of(work, struct f81232_private, interrupt_work);
836 f81232_read_msr(priv->port);
839 static void f81232_lsr_worker(struct work_struct *work)
841 struct f81232_private *priv;
842 struct usb_serial_port *port;
846 priv = container_of(work, struct f81232_private, lsr_work);
849 status = f81232_get_register(port, LINE_STATUS_REGISTER, &tmp);
851 dev_warn(&port->dev, "read LSR failed: %d\n", status);
854 static int f81534a_ctrl_set_register(struct usb_interface *intf, u16 reg,
857 struct usb_device *dev = interface_to_usbdev(intf);
858 int retry = F81534A_ACCESS_REG_RETRY;
862 tmp = kmemdup(val, size, GFP_KERNEL);
867 status = usb_control_msg(dev,
868 usb_sndctrlpipe(dev, 0),
869 F81232_REGISTER_REQUEST,
875 USB_CTRL_SET_TIMEOUT);
877 status = usb_translate_errors(status);
888 dev_err(&intf->dev, "failed to set register 0x%x: %d\n",
896 static int f81534a_ctrl_enable_all_ports(struct usb_interface *intf, bool en)
898 unsigned char enable[2] = {0};
902 * Enable all available serial ports, define as following:
903 * bit 15 : Reset behavior (when HUB got soft reset)
904 * 0: maintain all serial port enabled state.
905 * 1: disable all serial port.
906 * bit 0~11 : Serial port enable bit.
913 status = f81534a_ctrl_set_register(intf, F81534A_CTRL_CMD_ENABLE_PORT,
914 sizeof(enable), enable);
916 dev_err(&intf->dev, "failed to enable ports: %d\n", status);
921 static int f81534a_ctrl_probe(struct usb_interface *intf,
922 const struct usb_device_id *id)
924 return f81534a_ctrl_enable_all_ports(intf, true);
927 static void f81534a_ctrl_disconnect(struct usb_interface *intf)
929 f81534a_ctrl_enable_all_ports(intf, false);
932 static int f81534a_ctrl_resume(struct usb_interface *intf)
934 return f81534a_ctrl_enable_all_ports(intf, true);
937 static int f81232_port_probe(struct usb_serial_port *port)
939 struct f81232_private *priv;
941 priv = devm_kzalloc(&port->dev, sizeof(*priv), GFP_KERNEL);
945 mutex_init(&priv->lock);
946 INIT_WORK(&priv->interrupt_work, f81232_interrupt_work);
947 INIT_WORK(&priv->lsr_work, f81232_lsr_worker);
949 usb_set_serial_port_data(port, priv);
956 static int f81534a_port_probe(struct usb_serial_port *port)
960 /* tri-state with pull-high, default RS232 Mode */
961 status = f81232_set_register(port, F81534A_GPIO_REG,
962 F81534A_GPIO_MODE2_DIR);
966 return f81232_port_probe(port);
969 static int f81232_suspend(struct usb_serial *serial, pm_message_t message)
971 struct usb_serial_port *port = serial->port[0];
972 struct f81232_private *port_priv = usb_get_serial_port_data(port);
975 for (i = 0; i < ARRAY_SIZE(port->read_urbs); ++i)
976 usb_kill_urb(port->read_urbs[i]);
978 usb_kill_urb(port->interrupt_in_urb);
981 flush_work(&port_priv->interrupt_work);
982 flush_work(&port_priv->lsr_work);
988 static int f81232_resume(struct usb_serial *serial)
990 struct usb_serial_port *port = serial->port[0];
993 if (tty_port_initialized(&port->port)) {
994 result = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
996 dev_err(&port->dev, "submit interrupt urb failed: %d\n",
1002 return usb_serial_generic_resume(serial);
1005 static struct usb_serial_driver f81232_device = {
1007 .owner = THIS_MODULE,
1010 .id_table = f81232_id_table,
1012 .bulk_in_size = 256,
1013 .bulk_out_size = 256,
1014 .open = f81232_open,
1015 .close = f81232_close,
1016 .dtr_rts = f81232_dtr_rts,
1017 .carrier_raised = f81232_carrier_raised,
1018 .get_serial = f81232_get_serial,
1019 .break_ctl = f81232_break_ctl,
1020 .set_termios = f81232_set_termios,
1021 .tiocmget = f81232_tiocmget,
1022 .tiocmset = f81232_tiocmset,
1023 .tiocmiwait = usb_serial_generic_tiocmiwait,
1024 .tx_empty = f81232_tx_empty,
1025 .process_read_urb = f81232_process_read_urb,
1026 .read_int_callback = f81232_read_int_callback,
1027 .port_probe = f81232_port_probe,
1028 .suspend = f81232_suspend,
1029 .resume = f81232_resume,
1032 static struct usb_serial_driver f81534a_device = {
1034 .owner = THIS_MODULE,
1037 .id_table = f81534a_id_table,
1039 .open = f81534a_open,
1040 .close = f81232_close,
1041 .dtr_rts = f81232_dtr_rts,
1042 .carrier_raised = f81232_carrier_raised,
1043 .get_serial = f81232_get_serial,
1044 .break_ctl = f81232_break_ctl,
1045 .set_termios = f81232_set_termios,
1046 .tiocmget = f81232_tiocmget,
1047 .tiocmset = f81232_tiocmset,
1048 .tiocmiwait = usb_serial_generic_tiocmiwait,
1049 .tx_empty = f81232_tx_empty,
1050 .process_read_urb = f81534a_process_read_urb,
1051 .read_int_callback = f81232_read_int_callback,
1052 .port_probe = f81534a_port_probe,
1053 .suspend = f81232_suspend,
1054 .resume = f81232_resume,
1057 static struct usb_serial_driver * const serial_drivers[] = {
1063 static struct usb_driver f81534a_ctrl_driver = {
1064 .name = "f81534a_ctrl",
1065 .id_table = f81534a_ctrl_id_table,
1066 .probe = f81534a_ctrl_probe,
1067 .disconnect = f81534a_ctrl_disconnect,
1068 .resume = f81534a_ctrl_resume,
1071 static int __init f81232_init(void)
1075 status = usb_register_driver(&f81534a_ctrl_driver, THIS_MODULE,
1080 status = usb_serial_register_drivers(serial_drivers, KBUILD_MODNAME,
1083 usb_deregister(&f81534a_ctrl_driver);
1090 static void __exit f81232_exit(void)
1092 usb_serial_deregister_drivers(serial_drivers);
1093 usb_deregister(&f81534a_ctrl_driver);
1096 module_init(f81232_init);
1097 module_exit(f81232_exit);
1099 MODULE_DESCRIPTION("Fintek F81232/532A/534A/535/536 USB to serial driver");
1100 MODULE_AUTHOR("Greg Kroah-Hartman <gregkh@linuxfoundation.org>");
1101 MODULE_AUTHOR("Peter Hong <peter_hong@fintek.com.tw>");
1102 MODULE_LICENSE("GPL v2");